From: Stefano Zacchiroli Date: Tue, 6 Sep 2005 09:06:38 +0000 (+0000) Subject: added support X-Git-Tag: V_0_1_2_1~85 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=67e223f6d9a8a08a855885bbbedf18c3dcd192cd;p=helm.git added support --- diff --git a/helm/ocaml/registry/helm_registry.ml b/helm/ocaml/registry/helm_registry.ml index 8ee95ca30..09582eafe 100644 --- a/helm/ocaml/registry/helm_registry.ml +++ b/helm/ocaml/registry/helm_registry.ml @@ -25,7 +25,7 @@ open Printf -let debug = false +let debug = true let debug_print s = if debug then prerr_endline ("Helm_registry debugging: " ^ s) @@ -262,17 +262,21 @@ let save_to registry fname = Xml.pp_to_outchan token_stream oc; close_out oc -let load_from_absolute registry fname = - let path = ref [] in (*
elements entered so far *) +let rec load_from_absolute ?path registry fname = + let _path = ref (match path with None -> [] | Some p -> p)in + (*
elements entered so far *) let in_key = ref false in (* have we entered a element? *) let cdata = ref "" in (* collected cdata (inside *) - let push_path name = path := name :: !path in - let pop_path () = path := List.tl !path in + let push_path name = _path := name :: !_path in + let pop_path () = _path := List.tl !_path in let start_element tag attrs = match tag, attrs with | "section", ["name", name] -> push_path name | "key", ["name", name] -> in_key := true; push_path name | "helm_registry", _ -> () + | "include", ["href", fname] -> + debug_print ("including file " ^ fname); + load_from_absolute ~path:!_path registry fname | tag, _ -> raise (Parse_error (fname, ~-1, ~-1, (sprintf "unexpected element <%s> or wrong attribute set" tag))) @@ -281,12 +285,12 @@ let load_from_absolute registry fname = match tag with | "section" -> pop_path () | "key" -> - let key = String.concat "." (List.rev !path) in + let key = String.concat "." (List.rev !_path) in set registry ~key ~value:!cdata; cdata := ""; in_key := false; pop_path () - | "helm_registry" -> () + | "include" | "helm_registry" -> () | _ -> assert false in let character_data text = @@ -300,7 +304,7 @@ let load_from_absolute registry fname = } in let xml_parser = XmlPushParser.create_parser callbacks in let backup = backup_registry registry in - Hashtbl.clear registry; + if path = None then Hashtbl.clear registry; try XmlPushParser.parse xml_parser (`File fname) with exn -> diff --git a/helm/ocaml/registry/tests/sample.xml b/helm/ocaml/registry/tests/sample.xml index 33e1c6589..a72546bf7 100644 --- a/helm/ocaml/registry/tests/sample.xml +++ b/helm/ocaml/registry/tests/sample.xml @@ -8,6 +8,9 @@ remote http://localhost:58081
+
+ +
debian 1 @@ -19,21 +22,6 @@ 19 19 23.2
-
-
- aaa - bbb -
-
- quux -
- /public/helm_library - $(triciclo.basedir)/constanttype - $(triciclo.basedir)/environment - $(triciclo.basedir)/innertypes - $(triciclo.basedir)/currentproof - $(triciclo.basedir)/currentprooftype -
http://localhost:58080/
diff --git a/helm/ocaml/registry/tests/sample_include.xml b/helm/ocaml/registry/tests/sample_include.xml new file mode 100644 index 000000000..8a6851998 --- /dev/null +++ b/helm/ocaml/registry/tests/sample_include.xml @@ -0,0 +1,15 @@ + +
+ aaa + bbb +
+
+ quux +
+ /public/helm_library + $(triciclo.basedir)/constanttype + $(triciclo.basedir)/environment + $(triciclo.basedir)/innertypes + $(triciclo.basedir)/currentproof + $(triciclo.basedir)/currentprooftype +