aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Readconfig.mli
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2014-12-19 14:47:01 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2014-12-19 14:47:01 +0100
commit7e71f5071b19415b4b285702e1753c9a82523acb (patch)
treed6e1b4c29d3e8b3543329a81657ffddb514f0c2c /lib/Readconfig.mli
parentc8287e6578f313769c794fd407868b1ecb51c43f (diff)
downloadcompcert-7e71f5071b19415b4b285702e1753c9a82523acb.tar.gz
compcert-7e71f5071b19415b4b285702e1753c9a82523acb.zip
Use Unix.create_process instead of Sys.command to run external tools.
Revised parsing of compcert.ini file to split arguments into words like POSIX shell does (including quotes).
Diffstat (limited to 'lib/Readconfig.mli')
-rw-r--r--lib/Readconfig.mli39
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/Readconfig.mli b/lib/Readconfig.mli
new file mode 100644
index 00000000..c81e7786
--- /dev/null
+++ b/lib/Readconfig.mli
@@ -0,0 +1,39 @@
+(* *********************************************************************)
+(* *)
+(* The Compcert verified compiler *)
+(* *)
+(* Xavier Leroy, INRIA Paris-Rocquencourt *)
+(* *)
+(* Copyright Institut National de Recherche en Informatique et en *)
+(* Automatique. All rights reserved. This file is distributed *)
+(* under the terms of the GNU General Public License as published by *)
+(* the Free Software Foundation, either version 2 of the License, or *)
+(* (at your option) any later version. This file is also distributed *)
+(* under the terms of the INRIA Non-Commercial License Agreement. *)
+(* *)
+(* *********************************************************************)
+
+(* Reading configuration files *)
+
+(* The format of a configuration file is a list of lines
+ variable=value
+ The "value" on the right hand side is a list of whitespace-separated
+ words. Quoting is honored with the same rules as POSIX shell:
+ \<newline> for multi-line values
+ single quotes no escapes within
+ double quotes \$ \` \<doublequote> \\ \<newline> as escapes
+ Finally, lines starting with '#' are comments.
+*)
+
+val read_config_file: string -> unit
+ (** Read (key, value) pairs from the given file name. Raise [Error]
+ if file is ill-formed. *)
+
+val key_val: string -> string list option
+ (** [key_val k] returns the value associated with key [k], if any.
+ Otherwise, [None] is returned. *)
+
+exception Error of string * int * string
+ (** Raised in case of error.
+ First argument is file name, second argument is line number,
+ third argument is an explanation of the error. *)