2007-02-07 00:59:16 -08:00
|
|
|
(***********************************************************************)
|
2012-08-01 07:47:00 -07:00
|
|
|
(* *)
|
2007-02-07 00:59:16 -08:00
|
|
|
(* ocamlbuild *)
|
|
|
|
(* *)
|
|
|
|
(* Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 2007 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
2009-03-03 08:54:58 -08:00
|
|
|
|
2007-02-07 00:59:16 -08:00
|
|
|
(* Original author: Nicolas Pouillard *)
|
|
|
|
(* Configuration *)
|
|
|
|
|
|
|
|
(** Handles the "_tags" file mechanism. *)
|
|
|
|
|
|
|
|
(** Incorporate a newline-separated configuration string into the current configuration.
|
|
|
|
Will usually raising an [Invalid_arg] with an appropriately explicit message in case of error. *)
|
|
|
|
val parse_string : string -> unit
|
|
|
|
|
|
|
|
(** [parse_file ?dir fn] incorporates the configuration file named [fn], prefixing its glob patterns
|
|
|
|
with [dir] if given. *)
|
|
|
|
val parse_file : ?dir:string -> string -> unit
|
|
|
|
|
|
|
|
(** Return the set of tags that apply to a given filename under the current configuration. *)
|
|
|
|
val tags_of_filename : string -> Tags.t
|
|
|
|
|
|
|
|
val has_tag : string -> bool
|
2007-11-28 08:03:48 -08:00
|
|
|
|
|
|
|
(** [tag_file filename tag_list] Tag the given filename with all given tags. *)
|
|
|
|
val tag_file : Pathname.t -> Tags.elt list -> unit
|
|
|
|
|
|
|
|
(** [tag_any tag_list] Tag anything with all given tags. *)
|
|
|
|
val tag_any : Tags.elt list -> unit
|
2013-08-19 00:42:36 -07:00
|
|
|
|
|
|
|
(** the tags that apply to any file *)
|
|
|
|
val global_tags : unit -> Tags.t
|
2013-09-15 04:36:43 -07:00
|
|
|
|
|
|
|
(** Given the list of all tags that are really used by an existing
|
|
|
|
flagset, traverse existing configuration files and warns on tags
|
|
|
|
that will never get used. *)
|
|
|
|
val check_tags_usage : Tags.t -> unit
|