1 (* Copyright (C) 2004-2005, HELM Team.
3 * This file is part of HELM, an Hypertextual, Electronic
4 * Library of Mathematics, developed at the Computer Science
5 * Department, University of Bologna, Italy.
7 * HELM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * HELM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with HELM; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
29 let strip_trailing_slash =
30 let rex = Pcre.regexp "/$" in
31 fun s -> Pcre.replace ~rex s
33 let baseuri_of_baseuri_decl st =
35 | GrafiteAst.Executable (_, GrafiteAst.Command (_, GrafiteAst.Set (_, "baseuri", buri))) ->
39 let baseuri_of_file file =
41 let ic = open_in file in
42 let istream = Stream.of_channel ic in
46 let stm = GrafiteParser.parse_statement istream in
47 match baseuri_of_baseuri_decl stm with
49 let u = strip_trailing_slash buri in
50 if String.length u < 5 || String.sub u 0 5 <> "cic:/" then
51 MatitaLog.error (file ^ " sets an incorrect baseuri: " ^ buri);
53 ignore(Http_getter.resolve u)
55 | Http_getter_types.Unresolvable_URI _ ->
56 MatitaLog.error (file ^ " sets an unresolvable baseuri: "^buri)
57 | Http_getter_types.Key_not_found _ -> ());
62 CicNotationParser.Parse_error _ as exn ->
63 prerr_endline ("Unable to parse: " ^ file);
64 prerr_endline (MatitaExcPp.to_string exn);
67 with End_of_file -> close_in ic);
70 | None -> failwith ("No baseuri defined in " ^ file)
75 Http_getter_types.Ls_section _ -> true
76 | Http_getter_types.Ls_object _ -> false)
77 (Http_getter.ls (Http_getter_misc.strip_trailing_slash buri ^ "/"))
79 let safe_remove fname = if Sys.file_exists fname then Sys.remove fname
83 (Unix.stat fname).Unix.st_kind = Unix.S_DIR
84 with Unix.Unix_error _ -> false
86 let is_regular fname =
88 (Unix.stat fname).Unix.st_kind = Unix.S_REG
89 with Unix.Unix_error _ -> false
91 let input_file fname =
92 let size = (Unix.stat fname).Unix.st_size in
93 let buf = Buffer.create size in
94 let ic = open_in fname in
95 Buffer.add_channel buf ic size;
99 let output_file data file =
100 let oc = open_out file in
101 output_string oc data;
105 let absolute_path file =
106 if file.[0] = '/' then file else Unix.getcwd () ^ "/" ^ file
108 let is_proof_script fname = true (** TODO Zack *)
109 let is_proof_object fname = true (** TODO Zack *)
111 let append_phrase_sep s =
112 if not (Pcre.pmatch ~pat:(sprintf "%s$" BuildTimeConf.phrase_sep) s) then
113 s ^ BuildTimeConf.phrase_sep
118 let components = Str.split (Str.regexp "/") path in
119 let rec aux where = function
122 let path = where ^ "/" ^ piece in
124 Unix.mkdir path 0o755
126 | Unix.Unix_error (Unix.EEXIST,_,_) -> ()
127 | Unix.Unix_error (e,_,_) -> raise (Failure (Unix.error_message e)));
132 let strip_trailing_blanks =
133 let rex = Pcre.regexp "\\s*$" in
134 fun s -> Pcre.replace ~rex s
136 let split ?(char = ' ') s =
137 let pieces = ref [] in
139 match (try Some (String.index_from s idx char) with Not_found -> None) with
141 pieces := String.sub s idx (pos - idx) :: !pieces;
143 | None -> pieces := String.sub s idx (String.length s - idx) :: !pieces
148 let empty_mathml () =
149 DomMisc.domImpl#createDocument ~namespaceURI:(Some DomMisc.mathml_ns)
150 ~qualifiedName:(Gdome.domString "math") ~doctype:None
153 DomMisc.domImpl#createDocument ~namespaceURI:(Some DomMisc.boxml_ns)
154 ~qualifiedName:(Gdome.domString "box") ~doctype:None
156 exception History_failure
158 type 'a memento = 'a array * int * int * int (* data, hd, tl, cur *)
160 class type ['a] history =
162 method add : 'a -> unit
165 method load: 'a memento -> unit
166 method save: 'a memento
167 method is_begin: bool
171 class basic_history (head, tail, cur) =
173 val mutable hd = head (* insertion point *)
174 val mutable tl = tail (* oldest inserted item *)
175 val mutable cur = cur (* current item for the history *)
177 method is_begin = cur <= tl
178 method is_end = cur >= hd
182 class shell_history size =
183 let size = size + 1 in
184 let decr x = let x' = x - 1 in if x' < 0 then size + x' else x' in
185 let incr x = (x + 1) mod size in
187 val data = Array.create size ""
189 inherit basic_history (0, -1 , -1)
193 if tl = -1 then tl <- hd;
195 if hd = tl then tl <- incr tl;
198 if cur = tl then raise History_failure;
202 if cur = hd then raise History_failure;
204 if cur = hd then "" else data.(cur)
205 method load (data', hd', tl', cur') =
206 assert (Array.length data = Array.length data');
207 hd <- hd'; tl <- tl'; cur <- cur';
208 Array.blit data' 0 data 0 (Array.length data')
209 method save = (Array.copy data, hd, tl, cur)
212 class ['a] browser_history ?memento size init =
214 initializer match memento with Some m -> self#load m | _ -> ()
215 val data = Array.create size init
217 inherit basic_history (0, 0, 0)
220 if cur = tl then raise History_failure;
222 if cur = ~-1 then cur <- size - 1;
225 if cur = hd then raise History_failure;
227 if cur = size then cur <- 0;
230 if e <> data.(cur) then
233 if cur = size then cur <- 0;
234 if cur = tl then tl <- tl + 1;
235 if tl = size then tl <- 0;
239 method load (data', hd', tl', cur') =
240 assert (Array.length data = Array.length data');
241 hd <- hd'; tl <- tl'; cur <- cur';
242 Array.blit data' 0 data 0 (Array.length data')
243 method save = (Array.copy data, hd, tl, cur)
247 let instance = lazy (f ()) in
248 fun () -> Lazy.force instance
250 let get_proof_status status =
251 match status.proof_status with
252 | Incomplete_proof s -> s
253 | _ -> statement_error "no ongoing proof"
255 let get_proof_metasenv status =
256 match status.proof_status with
258 | Incomplete_proof ((_, metasenv, _, _), _) -> metasenv
259 | Proof (_, metasenv, _, _) -> metasenv
260 | Intermediate m -> m
262 let get_proof_context status =
263 match status.proof_status with
264 | Incomplete_proof ((_, metasenv, _, _), goal) ->
265 let (_, context, _) = CicUtil.lookup_meta goal metasenv in
269 let get_proof_conclusion status =
270 match status.proof_status with
271 | Incomplete_proof ((_, metasenv, _, _), goal) ->
272 let (_, _, conclusion) = CicUtil.lookup_meta goal metasenv in
274 | _ -> statement_error "no ongoing proof"
276 let get_proof_aliases status = status.aliases
278 let qualify status name = get_string_option status "baseuri" ^ "/" ^ name
280 let unopt = function None -> failwith "unopt: None" | Some v -> v
282 let image_path n = sprintf "%s/%s" BuildTimeConf.images_dir n
284 let end_ma_RE = Pcre.regexp "\\.ma$"
286 let obj_file_of_baseuri baseuri =
288 Helm_registry.get "matita.basedir" ^ "/xml" ^
289 Pcre.replace ~pat:"^cic:" ~templ:"" baseuri
293 let obj_file_of_script f =
294 if f = "coq.ma" then BuildTimeConf.coq_notation_script else
295 let baseuri = baseuri_of_file f in
296 obj_file_of_baseuri baseuri
298 let rec list_uniq = function
301 | h1::h2::tl when h1 = h2 -> list_uniq (h2 :: tl)
302 | h1::tl (* when h1 <> h2 *) -> h1 :: list_uniq tl
304 let list_tl_at ?(equality=(==)) e l =
307 | [] -> raise Not_found
308 | hd :: tl as l when equality hd e -> l
313 let debug_wrap name f =
314 prerr_endline (sprintf "debug_wrap: ==>> %s" name);
316 prerr_endline (sprintf "debug_wrap: <<== %s" name);