blob: 017650e76b2bfb7a10b8b9f6de8022aabe43a20d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
(***********************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
(* \VV/ *************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(***********************************************************************)
(*i $Id$ i*)
(*i*)
open Names
(*i*)
(* [Libobject] declares persistent objects, given with three methods:
a caching function specifying how to add the object in the current
scope of theory modules;
a loading function, specifying what to do when the object is loaded
from the disk;
an opening function, specifying what to do when the module containing
the object is opened;
a specification function, to extract its specification when writing
the specification of a module to the disk (.vi) *)
type 'a object_declaration = {
cache_function : section_path * 'a -> unit;
load_function : section_path * 'a -> unit;
open_function : section_path * 'a -> unit;
export_function : 'a -> 'a option }
(*s Given an object name and a declaration, the function [declare_object]
will hand back two functions, the "injection" and "projection"
functions for dynamically typed library-objects. *)
type obj
val declare_object :
(string * 'a object_declaration) -> ('a -> obj) * (obj -> 'a)
val object_tag : obj -> string
val cache_object : section_path * obj -> unit
val load_object : section_path * obj -> unit
val open_object : section_path * obj -> unit
val export_object : obj -> obj option
val relax : bool -> unit
|