]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_kernel/nCicLibrary.mli
Initial implementation of statuses using objects in place of nested records.
[helm.git] / helm / software / components / ng_kernel / nCicLibrary.mli
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 type timestamp
17
18 class status :
19  object ('self)
20   method timestamp: timestamp
21   method set_timestamp: timestamp -> 'self
22  end
23
24 val add_obj: #status as 'status -> NUri.uri -> NCic.obj -> 'status
25 val aliases_of: NUri.uri -> NReference.reference list
26 val resolve: string -> NReference.reference list
27 (* warning: get_obj may raise (NCicEnvironment.ObjectNotFoud l) *)
28 val get_obj: NUri.uri -> NCic.obj (* changes the current timestamp *)
29
30 val clear_cache : unit -> unit
31
32 val time_travel: #status -> unit
33 val decompile: baseuri:NUri.uri -> unit
34
35 module type Serializer =
36  sig
37   type status
38   type obj
39   val register:
40    string ->
41     ('a -> refresh_uri_in_term:(NCic.term -> NCic.term) -> status -> status) ->
42     ('a -> obj)
43   val serialize: baseuri:NUri.uri -> obj list -> unit
44   val require: baseuri:NUri.uri -> status -> status
45  end
46
47 module Serializer(S: sig type status end): Serializer with type status= S.status
48
49 (* EOF *)