]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_library/nCicLibrary.ml
6987ec1aa698e8b9560854754acc22063947eb43
[helm.git] / helm / software / components / ng_library / nCicLibrary.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id$ *)
13
14 exception LibraryOutOfSync of string Lazy.t
15
16 let magic = 2;;
17
18 let refresh_uri uri = NUri.uri_of_string (NUri.string_of_uri uri);;
19
20 let refresh_uri_in_universe =
21  List.map (fun (x,u) -> x, refresh_uri u)
22 ;;
23
24 let rec refresh_uri_in_term =
25  function
26   | NCic.Meta (i,(n,NCic.Ctx l)) ->
27      NCic.Meta (i,(n,NCic.Ctx (List.map refresh_uri_in_term l)))
28   | NCic.Meta _ as t -> t
29   | NCic.Const (NReference.Ref (u,spec)) ->
30      NCic.Const (NReference.reference_of_spec (refresh_uri u) spec)
31   | NCic.Sort (NCic.Type l) -> NCic.Sort (NCic.Type (refresh_uri_in_universe l))
32   | NCic.Match (NReference.Ref (uri,spec),outtype,term,pl) ->
33      let r = NReference.reference_of_spec (refresh_uri uri) spec in
34      let outtype = refresh_uri_in_term outtype in
35      let term = refresh_uri_in_term term in
36      let pl = List.map refresh_uri_in_term pl in
37       NCic.Match (r,outtype,term,pl)
38   | t -> NCicUtils.map (fun _ _ -> ()) () (fun _ -> refresh_uri_in_term) t
39 ;;
40
41 let refresh_uri_in_obj (uri,height,metasenv,subst,obj_kind) =
42  assert (metasenv = []);
43  assert (subst = []);
44  refresh_uri uri,height,metasenv,subst,
45   NCicUntrusted.map_obj_kind refresh_uri_in_term obj_kind
46 ;;
47
48 let path_of_baseuri ?(no_suffix=false) baseuri =
49  let uri = NUri.string_of_uri baseuri in
50  let path = String.sub uri 4 (String.length uri - 4) in
51  let path = Helm_registry.get "matita.basedir" ^ path in
52  let dirname = Filename.dirname path in
53   HExtlib.mkdir dirname;
54   if no_suffix then
55    path
56   else
57    path ^ ".ng"
58 ;;
59
60 let require_path path =
61  let ch = open_in path in
62  let mmagic,dump = Marshal.from_channel ch in
63   close_in ch;
64   if mmagic <> magic then
65    raise (LibraryOutOfSync (lazy "The library is out of sync with the implementation. Please recompile the library."))
66   else
67    dump
68 ;;
69
70 let require0 ~baseuri = require_path (path_of_baseuri baseuri);;
71
72 let db_path () = Helm_registry.get "matita.basedir" ^ "/ng_db.ng";;
73
74
75 type timestamp =
76  [ `Obj of NUri.uri * NCic.obj 
77  | `Constr of NCic.universe * NCic.universe] list *
78  (NUri.uri * string * NReference.reference) list *
79  NCic.obj NUri.UriMap.t *
80  NUri.uri list
81 ;;
82
83 let time0 = [],[],NUri.UriMap.empty,[];;
84 let storage = ref [];;
85 let local_aliases = ref [];;
86 let cache = ref NUri.UriMap.empty;;
87 let includes = ref [];;
88
89 let load_db,set_global_aliases,get_global_aliases,add_deps,get_deps,remove_deps=
90  let global_aliases = ref [] in
91  let rev_includes_map = ref NUri.UriMap.empty in
92  let store_db () =
93   let ch = open_out (db_path ()) in
94   Marshal.to_channel ch (magic,(!global_aliases,!rev_includes_map)) [];
95   close_out ch in
96  let load_db () =
97   HExtlib.mkdir (Helm_registry.get "matita.basedir");
98   try
99    let ga,im = require_path (db_path ()) in
100    let ga =
101     List.map
102      (fun (uri,name,NReference.Ref (uri2,spec)) ->
103        refresh_uri uri,name,NReference.reference_of_spec (refresh_uri uri2) spec
104      ) ga in
105    let im =
106     NUri.UriMap.fold
107      (fun u l im -> NUri.UriMap.add (refresh_uri u) (List.map refresh_uri l) im
108      ) im NUri.UriMap.empty
109    in
110     global_aliases := ga;
111     rev_includes_map := im
112   with
113    Sys_error _ -> () in
114  let get_deps u =
115   let get_deps_one_step u =
116     try NUri.UriMap.find u !rev_includes_map with Not_found -> [] in
117   let rec aux res =
118    function
119       [] -> res
120     | he::tl ->
121        if List.mem he res then
122         aux res tl
123        else
124         aux (he::res) (get_deps_one_step he @ tl)
125   in
126    aux [] [u] in
127  let remove_deps u =
128   rev_includes_map := NUri.UriMap.remove u !rev_includes_map;
129   rev_includes_map :=
130    NUri.UriMap.map
131     (fun l -> List.filter (fun uri -> not (NUri.eq u uri)) l) !rev_includes_map;
132   store_db ()
133  in
134   load_db,
135   (fun ga -> global_aliases := ga; store_db ()),
136   (fun () -> !global_aliases),
137   (fun u l ->
138     rev_includes_map := NUri.UriMap.add u (l @ get_deps u) !rev_includes_map;
139     store_db ()),
140   get_deps,
141   remove_deps
142 ;;
143
144 let init = load_db;;
145
146 class type g_status =
147  object
148   inherit NRstatus.g_status
149   method timestamp: timestamp
150  end
151
152 class status =
153  object
154   inherit NRstatus.status
155   val timestamp = (time0 : timestamp)
156   method timestamp = timestamp
157   method set_timestamp v = {< timestamp = v >}
158   method set_library_status
159    : 'status. #g_status as 'status -> 'self
160    = fun o -> {< timestamp = o#timestamp >}
161  end
162
163
164 module type SerializerT =
165  sig
166   type status
167   type obj
168   val register:
169    string ->
170     ('a -> refresh_uri_in_universe:(NCic.universe -> NCic.universe) -> refresh_uri_in_term:(NCic.term -> NCic.term) -> status -> status) ->
171     ('a -> obj)
172   val serialize: baseuri:NUri.uri -> obj list -> unit
173   val require: baseuri:NUri.uri -> status -> status
174  end
175
176 let time_travel status =
177  let sto,ali,cac,inc = status#timestamp in
178   let diff_len = List.length !storage - List.length sto in
179   let to_be_deleted,_ = HExtlib.split_nth diff_len !storage in
180    if List.length to_be_deleted > 0 then
181      NCicEnvironment.invalidate_item (HExtlib.list_last to_be_deleted);
182    storage := sto; local_aliases := ali; cache := cac; includes := inc
183 ;;
184
185 let serialize ~baseuri dump =
186  let ch = open_out (path_of_baseuri baseuri) in
187  Marshal.to_channel ch (magic,dump) [];
188  close_out ch;
189  List.iter
190   (function 
191    | `Obj (uri,obj) ->
192        let ch = open_out (path_of_baseuri uri) in
193        Marshal.to_channel ch (magic,obj) [];
194        close_out ch
195    | `Constr _ -> ()
196   ) !storage;
197  set_global_aliases (!local_aliases @ get_global_aliases ());
198  List.iter (fun u -> add_deps u [baseuri]) !includes;
199  time_travel (new status)
200 ;;
201
202 module SerializerF(S: sig type status end) =
203  struct
204   type status = S.status
205   type obj = string * Obj.t
206
207   let require1 = ref (fun _ -> assert false (* unknown data*))
208   let already_registered = ref []
209
210   let register tag require =
211    assert (not (List.mem tag !already_registered));
212    already_registered := tag :: !already_registered;
213    let old_require1 = !require1 in
214    require1 :=
215      (fun (tag',data) as x ->
216       if tag=tag' then
217        require (Obj.magic data) ~refresh_uri_in_universe ~refresh_uri_in_term 
218       else
219        old_require1 x);
220    (fun x -> tag,Obj.repr x)
221
222   let serialize = serialize
223
224   let require ~baseuri status =
225    includes := baseuri::!includes;
226    let dump = require0 ~baseuri in
227     List.fold_right !require1 dump status
228 end
229
230 type sstatus = status
231
232 module Serializer =
233  struct
234   include SerializerF(struct type status = sstatus end)
235
236   let require ~baseuri status = 
237    let rstatus = require ~baseuri (status : #status :> status) in
238    let status = status#set_coerc_db (rstatus#coerc_db) in
239    let status = status#set_uhint_db (rstatus#uhint_db) in
240    let status = status#set_timestamp (rstatus#timestamp) in
241     status 
242  end
243
244 class type g_dumpable_status =
245  object
246   inherit g_status
247   method dump: Serializer.obj list
248  end
249
250 class dumpable_status =
251  object(self)
252   inherit status
253   val dump = ([] : Serializer.obj list)
254   method dump = dump
255   method set_dump v = {< dump = v >}
256   method set_dumpable_status : 'status. #g_dumpable_status as 'status -> 'self
257    = fun o -> (self#set_dump o#dump)#set_coercion_status o
258  end
259
260
261 let decompile ~baseuri =
262  let baseuris = get_deps baseuri in
263  List.iter (fun baseuri ->
264   remove_deps baseuri;
265   HExtlib.safe_remove (path_of_baseuri baseuri);
266   let basepath = path_of_baseuri ~no_suffix:true baseuri in
267   try
268    let od = Unix.opendir basepath in
269    let rec aux names =
270     try
271      let name = Unix.readdir od in
272       if name <> "." && name <> ".." then aux (name::names) else aux names
273     with
274      End_of_file -> names in
275    let names = List.map (fun name -> basepath ^ "/" ^ name) (aux []) in
276     Unix.closedir od;
277     List.iter Unix.unlink names;
278     HExtlib.rmdir_descend basepath;
279     set_global_aliases
280      (List.filter
281       (fun (_,_,NReference.Ref (nuri,_)) ->
282         Filename.dirname (NUri.string_of_uri nuri) <> NUri.string_of_uri baseuri
283       ) (get_global_aliases ()))
284   with
285    Unix.Unix_error _ -> () (* raised by Unix.opendir, we hope :-) *)
286  ) baseuris
287 ;;
288
289 LibraryClean.set_decompile_cb
290  (fun ~baseuri -> decompile ~baseuri:(NUri.uri_of_string baseuri));;
291
292 let fetch_obj uri =
293  let obj = require0 ~baseuri:uri in
294   refresh_uri_in_obj obj
295 ;;
296
297 let resolve name =
298  try
299   HExtlib.filter_map
300    (fun (_,name',nref) -> if name'=name then Some nref else None)
301    (!local_aliases @ get_global_aliases ())
302  with
303   Not_found -> raise (NCicEnvironment.ObjectNotFound (lazy name))
304 ;;
305
306 let aliases_of uri =
307   HExtlib.filter_map
308    (fun (uri',_,nref) ->
309      if NUri.eq uri' uri then Some nref else None) !local_aliases
310 ;;
311
312 let add_obj status ((u,_,_,_,_) as obj) =
313  NCicEnvironment.check_and_add_obj obj;
314  storage := (`Obj (u,obj))::!storage;
315   let _,height,_,_,obj = obj in
316   let references =
317    match obj with
318       NCic.Constant (_,name,None,_,_) ->
319        [u,name,NReference.reference_of_spec u NReference.Decl]
320     | NCic.Constant (_,name,Some _,_,_) ->
321        [u,name,NReference.reference_of_spec u (NReference.Def height)]
322     | NCic.Fixpoint (is_ind,fl,_) ->
323        HExtlib.list_mapi
324         (fun (_,name,recno,_,_) i ->
325           if is_ind then
326            u,name,NReference.reference_of_spec u(NReference.Fix(i,recno,height))
327           else
328            u,name,NReference.reference_of_spec u (NReference.CoFix i)) fl
329     | NCic.Inductive (inductive,leftno,il,_) ->
330        List.flatten
331         (HExtlib.list_mapi
332          (fun (_,iname,_,cl) i ->
333            HExtlib.list_mapi
334             (fun (_,cname,_) j->
335               u,cname,
336                NReference.reference_of_spec u (NReference.Con (i,j+1,leftno))
337             ) cl @
338            [u,iname,
339              NReference.reference_of_spec u
340               (NReference.Ind (inductive,i,leftno))]
341          ) il)
342   in
343   local_aliases := references @ !local_aliases;
344   status#set_timestamp (!storage,!local_aliases,!cache,!includes)
345 ;;
346
347 let add_constraint status u1 u2 = 
348   NCicEnvironment.add_lt_constraint u1 u2;
349   storage := (`Constr (u1,u2)) :: !storage;
350   status#set_timestamp (!storage,!local_aliases,!cache,!includes)
351 ;;
352
353 let get_obj u =
354  try 
355   List.assq u 
356    (HExtlib.filter_map 
357     (function `Obj (u,o) -> Some (u,o) | _ -> None )
358     !storage)
359  with Not_found ->
360   try fetch_obj u
361   with Sys_error _ ->
362    try NUri.UriMap.find u !cache
363    with Not_found ->
364     let ouri = NCic2OCic.ouri_of_nuri u in
365     try
366       let o,_ = CicEnvironment.get_obj CicUniv.oblivion_ugraph ouri in
367       let l = OCic2NCic.convert_obj ouri o in
368       List.iter (fun (u,_,_,_,_ as o) -> cache:= NUri.UriMap.add u o !cache) l;
369       HExtlib.list_last l
370     with CicEnvironment.Object_not_found u -> 
371       raise (NCicEnvironment.ObjectNotFound 
372                (lazy (NUri.string_of_uri (OCic2NCic.nuri_of_ouri u))))
373 ;;
374
375 let clear_cache () = cache := NUri.UriMap.empty;;
376
377 NCicEnvironment.set_get_obj get_obj;;
378 NCicPp.set_get_obj get_obj;;