author | Manuel Eberl <eberlm@in.tum.de> |
Mon, 02 Dec 2019 14:22:28 +0100 | |
changeset 71193 | 777d673fa672 |
parent 70586 | 57df8a85317a |
child 71257 | b1f3e86a4745 |
permissions | -rw-r--r-- |
6118 | 1 |
(* Title: Pure/General/name_space.ML |
5012 | 2 |
Author: Markus Wenzel, TU Muenchen |
3 |
||
55742
a989bdaf8121
modernized Method.check_name/check_source (with reports) vs. strict Method.the_method (without interning nor reports), e.g. relevant for semantic completion;
wenzelm
parents:
55696
diff
changeset
|
4 |
Generic name spaces with declared and hidden entries; no support for |
a989bdaf8121
modernized Method.check_name/check_source (with reports) vs. strict Method.the_method (without interning nor reports), e.g. relevant for semantic completion;
wenzelm
parents:
55696
diff
changeset
|
5 |
absolute addressing. |
16137 | 6 |
*) |
7 |
||
26440 | 8 |
type xstring = string; (*external names*) |
5012 | 9 |
|
10 |
signature NAME_SPACE = |
|
11 |
sig |
|
12 |
type T |
|
33096 | 13 |
val empty: string -> T |
14 |
val kind_of: T -> string |
|
59889 | 15 |
val markup: T -> string -> Markup.T |
62987
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62967
diff
changeset
|
16 |
val markup_def: T -> string -> Markup.T |
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
17 |
val the_entry: T -> string -> |
57899
5867d1306712
clarified signature: entity serial number is not position id;
wenzelm
parents:
56438
diff
changeset
|
18 |
{concealed: bool, group: serial option, theory_name: string, pos: Position.T, serial: serial} |
70586 | 19 |
val entry_ord: T -> string ord |
33157
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
20 |
val is_concealed: T -> string -> bool |
16137 | 21 |
val intern: T -> xstring -> string |
42669
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
22 |
val names_long: bool Config.T |
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
23 |
val names_short: bool Config.T |
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
24 |
val names_unique: bool Config.T |
42358
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents:
42327
diff
changeset
|
25 |
val extern: Proof.context -> T -> string -> xstring |
70586 | 26 |
val extern_ord: Proof.context -> T -> string ord |
55672
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
27 |
val extern_shortest: Proof.context -> T -> string -> xstring |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
50301
diff
changeset
|
28 |
val markup_extern: Proof.context -> T -> string -> Markup.T * xstring |
53539 | 29 |
val pretty: Proof.context -> T -> string -> Pretty.T |
69185 | 30 |
val completion: Context.generic -> T -> (string -> bool) -> xstring * Position.T -> Completion.T |
5012 | 31 |
val merge: T * T -> T |
16137 | 32 |
type naming |
59912 | 33 |
val get_scopes: naming -> Binding.scope list |
59886 | 34 |
val get_scope: naming -> Binding.scope option |
35 |
val new_scope: naming -> Binding.scope * naming |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
36 |
val restricted: bool -> Position.T -> naming -> naming |
59923
b21c82422d65
support private scope for individual local theory commands;
wenzelm
parents:
59917
diff
changeset
|
37 |
val private_scope: Binding.scope -> naming -> naming |
b21c82422d65
support private scope for individual local theory commands;
wenzelm
parents:
59917
diff
changeset
|
38 |
val private: Position.T -> naming -> naming |
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
39 |
val qualified_scope: Binding.scope -> naming -> naming |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
40 |
val qualified: Position.T -> naming -> naming |
59859 | 41 |
val concealed: naming -> naming |
33724 | 42 |
val get_group: naming -> serial option |
43 |
val set_group: serial option -> naming -> naming |
|
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
44 |
val set_theory_name: string -> naming -> naming |
33724 | 45 |
val new_group: naming -> naming |
46 |
val reset_group: naming -> naming |
|
16137 | 47 |
val add_path: string -> naming -> naming |
30418
b5044aca0729
add_path: discontinued special meaning of "//", "/", "..";
wenzelm
parents:
30412
diff
changeset
|
48 |
val root_path: naming -> naming |
b5044aca0729
add_path: discontinued special meaning of "//", "/", "..";
wenzelm
parents:
30412
diff
changeset
|
49 |
val parent_path: naming -> naming |
30469 | 50 |
val mandatory_path: string -> naming -> naming |
35200
aaddb2b526d6
more systematic treatment of qualified names derived from binding;
wenzelm
parents:
33724
diff
changeset
|
51 |
val qualified_path: bool -> binding -> naming -> naming |
58668 | 52 |
val global_naming: naming |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
53 |
val local_naming: naming |
59887 | 54 |
val transform_naming: naming -> naming -> naming |
33281
223ef9bc399a
let naming transform binding beforehand -- covering only the "conceal" flag for now;
wenzelm
parents:
33164
diff
changeset
|
55 |
val transform_binding: naming -> binding -> binding |
33157
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
56 |
val full_name: naming -> binding -> string |
47021
f35f654f297d
clarified Binding.name_of vs Name_Space.base_name vs Variable.check_name (see also 9bd8d4addd6e, 3305f573294e);
wenzelm
parents:
47005
diff
changeset
|
57 |
val base_name: binding -> string |
56168
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
58 |
val hide: bool -> string -> T -> T |
47003 | 59 |
val alias: naming -> binding -> string -> T -> T |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
60 |
val naming_of: Context.generic -> naming |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
61 |
val map_naming: (naming -> naming) -> Context.generic -> Context.generic |
68163 | 62 |
val declared: T -> string -> bool |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
63 |
val declare: Context.generic -> bool -> binding -> T -> string * T |
56025 | 64 |
type 'a table |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
65 |
val change_base: bool -> 'a table -> 'a table |
56139
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
wenzelm
parents:
56056
diff
changeset
|
66 |
val change_ignore: 'a table -> 'a table |
56025 | 67 |
val space_of_table: 'a table -> T |
55922
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
wenzelm
parents:
55845
diff
changeset
|
68 |
val check_reports: Context.generic -> 'a table -> |
55956
94d384d621b0
reject internal term names outright, and complete consts instead;
wenzelm
parents:
55923
diff
changeset
|
69 |
xstring * Position.T list -> (string * Position.report list) * 'a |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
70 |
val check: Context.generic -> 'a table -> xstring * Position.T -> string * 'a |
59883 | 71 |
val defined: 'a table -> string -> bool |
59884 | 72 |
val lookup: 'a table -> string -> 'a option |
56025 | 73 |
val lookup_key: 'a table -> string -> (string * 'a) option |
42466 | 74 |
val get: 'a table -> string -> 'a |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
75 |
val define: Context.generic -> bool -> binding * 'a -> 'a table -> string * 'a table |
56025 | 76 |
val alias_table: naming -> binding -> string -> 'a table -> 'a table |
77 |
val hide_table: bool -> string -> 'a table -> 'a table |
|
78 |
val del_table: string -> 'a table -> 'a table |
|
79 |
val map_table_entry: string -> ('a -> 'a) -> 'a table -> 'a table |
|
80 |
val fold_table: (string * 'a -> 'b -> 'b) -> 'a table -> 'b -> 'b |
|
68163 | 81 |
val dest_table: 'a table -> (string * 'a) list |
33096 | 82 |
val empty_table: string -> 'a table |
33091
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
83 |
val merge_tables: 'a table * 'a table -> 'a table |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
84 |
val join_tables: (string -> 'a * 'a -> 'a) (*exception Change_Table.SAME*) -> |
33097
9d501e11084a
maintain position of formal entities via name space;
wenzelm
parents:
33096
diff
changeset
|
85 |
'a table * 'a table -> 'a table |
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
86 |
val extern_entries: bool -> Proof.context -> T -> (string * 'a) list -> |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
87 |
((string * xstring) * 'a) list |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
88 |
val markup_entries: bool -> Proof.context -> T -> (string * 'a) list -> |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
89 |
((Markup.T * xstring) * 'a) list |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
90 |
val extern_table: bool -> Proof.context -> 'a table -> ((string * xstring) * 'a) list |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
91 |
val markup_table: bool -> Proof.context -> 'a table -> ((Markup.T * xstring) * 'a) list |
5012 | 92 |
end; |
93 |
||
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
33091
diff
changeset
|
94 |
structure Name_Space: NAME_SPACE = |
5012 | 95 |
struct |
96 |
||
30412
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
97 |
|
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
98 |
(** name spaces **) |
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
99 |
|
33091
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
100 |
(* datatype entry *) |
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
101 |
|
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
102 |
type entry = |
35679
da87ffdcf7ea
added Name_Space.alias -- additional accesses for an existing entry;
wenzelm
parents:
35432
diff
changeset
|
103 |
{concealed: bool, |
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
104 |
group: serial option, |
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
105 |
theory_name: string, |
33091
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
106 |
pos: Position.T, |
57899
5867d1306712
clarified signature: entity serial number is not position id;
wenzelm
parents:
56438
diff
changeset
|
107 |
serial: serial}; |
33091
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
108 |
|
57899
5867d1306712
clarified signature: entity serial number is not position id;
wenzelm
parents:
56438
diff
changeset
|
109 |
fun entry_markup def kind (name, {pos, serial, ...}: entry) = |
5867d1306712
clarified signature: entity serial number is not position id;
wenzelm
parents:
56438
diff
changeset
|
110 |
Markup.properties (Position.entity_properties_of def serial pos) (Markup.entity kind name); |
42135 | 111 |
|
49816
e63d6c55ad6d
more position information for hyperlink and placement of message;
wenzelm
parents:
49528
diff
changeset
|
112 |
fun print_entry_ref kind (name, entry) = |
e63d6c55ad6d
more position information for hyperlink and placement of message;
wenzelm
parents:
49528
diff
changeset
|
113 |
quote (Markup.markup (entry_markup false kind (name, entry)) name); |
33091
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
114 |
|
49816
e63d6c55ad6d
more position information for hyperlink and placement of message;
wenzelm
parents:
49528
diff
changeset
|
115 |
fun err_dup kind entry1 entry2 pos = |
56038
0e2dec666152
tuned messages -- in accordance to Isabelle/Scala;
wenzelm
parents:
56025
diff
changeset
|
116 |
error ("Duplicate " ^ plain_words kind ^ " declaration " ^ |
49816
e63d6c55ad6d
more position information for hyperlink and placement of message;
wenzelm
parents:
49528
diff
changeset
|
117 |
print_entry_ref kind entry1 ^ " vs. " ^ print_entry_ref kind entry2 ^ Position.here pos); |
33096 | 118 |
|
33091
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
119 |
|
56164 | 120 |
(* internal names *) |
121 |
||
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
122 |
type internals = (string list * string list) Change_Table.T; (*xname -> visible, hidden*) |
56164 | 123 |
|
124 |
fun map_internals f xname : internals -> internals = |
|
125 |
Change_Table.map_default (xname, ([], [])) f; |
|
126 |
||
127 |
val del_name = map_internals o apfst o remove (op =); |
|
128 |
fun del_name_extra name = |
|
129 |
map_internals (apfst (fn [] => [] | x :: xs => x :: remove (op =) name xs)); |
|
130 |
val add_name = map_internals o apfst o update (op =); |
|
59881 | 131 |
fun hide_name name = map_internals (apsnd (update (op =) name)) name; |
56164 | 132 |
|
133 |
||
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
134 |
(* external accesses *) |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
135 |
|
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
136 |
type accesses = (xstring list * xstring list); (*input / output fragments*) |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
137 |
type entries = (accesses * entry) Change_Table.T; (*name -> accesses, entry*) |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
138 |
|
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
139 |
|
5012 | 140 |
(* datatype T *) |
141 |
||
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
142 |
datatype T = Name_Space of {kind: string, internals: internals, entries: entries}; |
33096 | 143 |
|
144 |
fun make_name_space (kind, internals, entries) = |
|
145 |
Name_Space {kind = kind, internals = internals, entries = entries}; |
|
146 |
||
147 |
fun map_name_space f (Name_Space {kind = kind, internals = internals, entries = entries}) = |
|
148 |
make_name_space (f (kind, internals, entries)); |
|
149 |
||
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
150 |
fun change_base_space begin = map_name_space (fn (kind, internals, entries) => |
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
151 |
(kind, Change_Table.change_base begin internals, Change_Table.change_base begin entries)); |
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
152 |
|
56139
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
wenzelm
parents:
56056
diff
changeset
|
153 |
val change_ignore_space = map_name_space (fn (kind, internals, entries) => |
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
wenzelm
parents:
56056
diff
changeset
|
154 |
(kind, Change_Table.change_ignore internals, Change_Table.change_ignore entries)); |
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
wenzelm
parents:
56056
diff
changeset
|
155 |
|
5012 | 156 |
|
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
157 |
fun empty kind = make_name_space (kind, Change_Table.empty, Change_Table.empty); |
33096 | 158 |
|
159 |
fun kind_of (Name_Space {kind, ...}) = kind; |
|
5012 | 160 |
|
62987
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62967
diff
changeset
|
161 |
fun gen_markup def (Name_Space {kind, entries, ...}) name = |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
162 |
(case Change_Table.lookup entries name of |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49816
diff
changeset
|
163 |
NONE => Markup.intensify |
62987
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62967
diff
changeset
|
164 |
| SOME (_, entry) => entry_markup def kind (name, entry)); |
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62967
diff
changeset
|
165 |
|
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62967
diff
changeset
|
166 |
val markup = gen_markup false; |
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62967
diff
changeset
|
167 |
val markup_def = gen_markup true; |
42135 | 168 |
|
59889 | 169 |
fun undefined (space as Name_Space {kind, entries, ...}) bad = |
170 |
let |
|
171 |
val (prfx, sfx) = |
|
172 |
(case Long_Name.dest_hidden bad of |
|
173 |
SOME name => |
|
174 |
if Change_Table.defined entries name |
|
175 |
then ("Inaccessible", Markup.markup (markup space name) (quote name)) |
|
176 |
else ("Undefined", quote name) |
|
177 |
| NONE => ("Undefined", quote bad)); |
|
178 |
in prfx ^ " " ^ plain_words kind ^ ": " ^ sfx end; |
|
179 |
||
180 |
fun the_entry (space as Name_Space {entries, ...}) name = |
|
181 |
(case Change_Table.lookup entries name of |
|
182 |
NONE => error (undefined space name) |
|
183 |
| SOME (_, entry) => entry); |
|
184 |
||
185 |
fun entry_ord space = int_ord o apply2 (#serial o the_entry space); |
|
186 |
||
60282
496fa0fc91b1
more permissive operation: allow to print undeclared name space entries, e.g. print_simpset with "record" simproc;
wenzelm
parents:
59990
diff
changeset
|
187 |
fun is_concealed space name = |
496fa0fc91b1
more permissive operation: allow to print undeclared name space entries, e.g. print_simpset with "record" simproc;
wenzelm
parents:
59990
diff
changeset
|
188 |
#concealed (the_entry space name) handle ERROR _ => false; |
33096 | 189 |
|
190 |
||
59884 | 191 |
(* intern *) |
33096 | 192 |
|
59884 | 193 |
fun intern' (Name_Space {internals, ...}) xname = |
59885
3470a265d404
subtle change of long-standing name space policy: unknown entries are treated as hidden, consequently "private" is understood in the strict sense;
wenzelm
parents:
59884
diff
changeset
|
194 |
(case the_default ([], []) (Change_Table.lookup internals xname) of |
3470a265d404
subtle change of long-standing name space policy: unknown entries are treated as hidden, consequently "private" is understood in the strict sense;
wenzelm
parents:
59884
diff
changeset
|
195 |
([name], _) => (name, true) |
3470a265d404
subtle change of long-standing name space policy: unknown entries are treated as hidden, consequently "private" is understood in the strict sense;
wenzelm
parents:
59884
diff
changeset
|
196 |
| (name :: _, _) => (name, false) |
3470a265d404
subtle change of long-standing name space policy: unknown entries are treated as hidden, consequently "private" is understood in the strict sense;
wenzelm
parents:
59884
diff
changeset
|
197 |
| ([], []) => (Long_Name.hidden xname, true) |
3470a265d404
subtle change of long-standing name space policy: unknown entries are treated as hidden, consequently "private" is understood in the strict sense;
wenzelm
parents:
59884
diff
changeset
|
198 |
| ([], name' :: _) => (Long_Name.hidden name', true)); |
8728 | 199 |
|
59884 | 200 |
val intern = #1 oo intern'; |
201 |
||
33096 | 202 |
fun get_accesses (Name_Space {entries, ...}) name = |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
203 |
(case Change_Table.lookup entries name of |
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
204 |
NONE => ([], []) |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
205 |
| SOME (accesses, _) => accesses); |
25072
03f57b516e12
store external accesses within name space (as produced by naming policy);
wenzelm
parents:
24361
diff
changeset
|
206 |
|
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
207 |
fun is_valid_access (Name_Space {internals, ...}) name xname = |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
208 |
(case Change_Table.lookup internals xname of |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
209 |
SOME (name' :: _, _) => name = name' |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
210 |
| _ => false); |
8728 | 211 |
|
212 |
||
55672
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
213 |
(* extern *) |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
214 |
|
69575 | 215 |
val names_long = Config.declare_option_bool ("names_long", \<^here>); |
216 |
val names_short = Config.declare_option_bool ("names_short", \<^here>); |
|
217 |
val names_unique = Config.declare_option_bool ("names_unique", \<^here>); |
|
42358
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents:
42327
diff
changeset
|
218 |
|
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents:
42327
diff
changeset
|
219 |
fun extern ctxt space name = |
16137 | 220 |
let |
42669
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
221 |
val names_long = Config.get ctxt names_long; |
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
222 |
val names_short = Config.get ctxt names_short; |
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
223 |
val names_unique = Config.get ctxt names_unique; |
42358
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents:
42327
diff
changeset
|
224 |
|
30277 | 225 |
fun valid require_unique xname = |
59884 | 226 |
let val (name', is_unique) = intern' space xname |
30277 | 227 |
in name = name' andalso (not require_unique orelse is_unique) end; |
8728 | 228 |
|
55669 | 229 |
fun ext [] = if valid false name then name else Long_Name.hidden name |
42669
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
230 |
| ext (nm :: nms) = if valid names_unique nm then nm else ext nms; |
16137 | 231 |
in |
42669
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
232 |
if names_long then name |
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42493
diff
changeset
|
233 |
else if names_short then Long_Name.base_name name |
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
234 |
else ext (#2 (get_accesses space name)) |
16137 | 235 |
end; |
236 |
||
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
58668
diff
changeset
|
237 |
fun extern_ord ctxt space = string_ord o apply2 (extern ctxt space); |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
50301
diff
changeset
|
238 |
|
55672
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
239 |
fun extern_shortest ctxt = |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
240 |
extern |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
241 |
(ctxt |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
242 |
|> Config.put names_long false |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
243 |
|> Config.put names_short false |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
244 |
|> Config.put names_unique false); |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
245 |
|
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
50301
diff
changeset
|
246 |
fun markup_extern ctxt space name = (markup space name, extern ctxt space name); |
55672
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
247 |
fun pretty ctxt space name = Pretty.mark_str (markup_extern ctxt space name); |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
248 |
|
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
50301
diff
changeset
|
249 |
|
55672
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
250 |
(* completion *) |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
251 |
|
69185 | 252 |
fun completion context space pred (xname, pos) = |
59812 | 253 |
Completion.make (xname, pos) (fn completed => |
55672
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
254 |
let |
66249 | 255 |
fun result_ord ((pri1, (xname1, (_, name1))), (pri2, (xname2, (_, name2)))) = |
256 |
(case int_ord (pri2, pri1) of |
|
56162
ea6303e2261b
clarified completion ordering: prefer local names;
wenzelm
parents:
56160
diff
changeset
|
257 |
EQUAL => |
62967
5e8b1aead28f
more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents:
62241
diff
changeset
|
258 |
(case bool_ord (apply2 (is_some o Long_Name.dest_local) (name2, name1)) of |
5e8b1aead28f
more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents:
62241
diff
changeset
|
259 |
EQUAL => |
5e8b1aead28f
more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents:
62241
diff
changeset
|
260 |
(case int_ord (apply2 Long_Name.qualification (xname1, xname2)) of |
5e8b1aead28f
more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents:
62241
diff
changeset
|
261 |
EQUAL => string_ord (xname1, xname2) |
5e8b1aead28f
more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents:
62241
diff
changeset
|
262 |
| ord => ord) |
56162
ea6303e2261b
clarified completion ordering: prefer local names;
wenzelm
parents:
56160
diff
changeset
|
263 |
| ord => ord) |
56024 | 264 |
| ord => ord); |
55975 | 265 |
val Name_Space {kind, internals, ...} = space; |
55694
a1184dfb8e00
clarified semantic completion: retain kind.full_name as official item name for history;
wenzelm
parents:
55687
diff
changeset
|
266 |
val ext = extern_shortest (Context.proof_of context) space; |
63232 | 267 |
val full = Name.clean xname = ""; |
66247 | 268 |
|
66249 | 269 |
fun complete xname' name = |
270 |
if (completed xname' orelse exists completed (Long_Name.explode xname')) andalso |
|
69185 | 271 |
not (is_concealed space name) andalso pred name |
66249 | 272 |
then |
273 |
let |
|
274 |
val xname'' = ext name; |
|
275 |
val pri = (if xname' = xname'' then 1 else 0) + (if completed xname' then 1 else 0); |
|
276 |
in |
|
66247 | 277 |
if xname' <> xname'' andalso full then I |
66249 | 278 |
else cons (pri, (xname', (kind, name))) |
66247 | 279 |
end |
280 |
else I; |
|
59812 | 281 |
in |
66249 | 282 |
Change_Table.fold (fn (xname', (name :: _, _)) => complete xname' name | _ => I) internals [] |
59812 | 283 |
|> sort_distinct result_ord |
62967
5e8b1aead28f
more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents:
62241
diff
changeset
|
284 |
|> map #2 |
59812 | 285 |
end); |
53539 | 286 |
|
5012 | 287 |
|
16137 | 288 |
(* merge *) |
5012 | 289 |
|
33096 | 290 |
fun merge |
291 |
(Name_Space {kind = kind1, internals = internals1, entries = entries1}, |
|
292 |
Name_Space {kind = kind2, internals = internals2, entries = entries2}) = |
|
25072
03f57b516e12
store external accesses within name space (as produced by naming policy);
wenzelm
parents:
24361
diff
changeset
|
293 |
let |
33096 | 294 |
val kind' = |
295 |
if kind1 = kind2 then kind1 |
|
296 |
else error ("Attempt to merge different kinds of name spaces " ^ |
|
297 |
quote kind1 ^ " vs. " ^ quote kind2); |
|
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
298 |
val internals' = (internals1, internals2) |> Change_Table.join |
30465 | 299 |
(K (fn ((names1, names1'), (names2, names2')) => |
33091
d23e75d4f7da
maintain abstract entry, with position, identity etc.;
wenzelm
parents:
33049
diff
changeset
|
300 |
if pointer_eq (names1, names2) andalso pointer_eq (names1', names2') |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
301 |
then raise Change_Table.SAME |
30233
6eb726e43ed1
eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents:
30222
diff
changeset
|
302 |
else (Library.merge (op =) (names1, names2), Library.merge (op =) (names1', names2')))); |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
303 |
val entries' = (entries1, entries2) |> Change_Table.join |
35679
da87ffdcf7ea
added Name_Space.alias -- additional accesses for an existing entry;
wenzelm
parents:
35432
diff
changeset
|
304 |
(fn name => fn ((_, entry1), (_, entry2)) => |
57899
5867d1306712
clarified signature: entity serial number is not position id;
wenzelm
parents:
56438
diff
changeset
|
305 |
if #serial entry1 = #serial entry2 then raise Change_Table.SAME |
49816
e63d6c55ad6d
more position information for hyperlink and placement of message;
wenzelm
parents:
49528
diff
changeset
|
306 |
else err_dup kind' (name, entry1) (name, entry2) Position.none); |
33096 | 307 |
in make_name_space (kind', internals', entries') end; |
5012 | 308 |
|
16137 | 309 |
|
26440 | 310 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
311 |
(** naming context **) |
16137 | 312 |
|
313 |
(* datatype naming *) |
|
314 |
||
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
315 |
datatype naming = Naming of |
59886 | 316 |
{scopes: Binding.scope list, |
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
317 |
restricted: (bool * Binding.scope) option, |
59859 | 318 |
concealed: bool, |
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
319 |
group: serial option, |
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
320 |
theory_name: string, |
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
321 |
path: (string * bool) list}; |
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
322 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
323 |
fun make_naming (scopes, restricted, concealed, group, theory_name, path) = |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
324 |
Naming {scopes = scopes, restricted = restricted, concealed = concealed, |
59886 | 325 |
group = group, theory_name = theory_name, path = path}; |
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
326 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
327 |
fun map_naming f (Naming {scopes, restricted, concealed, group, theory_name, path}) = |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
328 |
make_naming (f (scopes, restricted, concealed, group, theory_name, path)); |
16137 | 329 |
|
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
330 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
331 |
(* scope and access restriction *) |
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
332 |
|
59886 | 333 |
fun get_scopes (Naming {scopes, ...}) = scopes; |
334 |
val get_scope = try hd o get_scopes; |
|
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
335 |
|
59886 | 336 |
fun new_scope naming = |
337 |
let |
|
338 |
val scope = Binding.new_scope (); |
|
339 |
val naming' = |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
340 |
naming |> map_naming (fn (scopes, restricted, concealed, group, theory_name, path) => |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
341 |
(scope :: scopes, restricted, concealed, group, theory_name, path)); |
59886 | 342 |
in (scope, naming') end; |
59858 | 343 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
344 |
fun restricted_scope strict scope = |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
345 |
map_naming (fn (scopes, _, concealed, group, theory_name, path) => |
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
346 |
(scopes, SOME (strict, scope), concealed, group, theory_name, path)); |
16137 | 347 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
348 |
fun restricted strict pos naming = |
59923
b21c82422d65
support private scope for individual local theory commands;
wenzelm
parents:
59917
diff
changeset
|
349 |
(case get_scope naming of |
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
350 |
SOME scope => restricted_scope strict scope naming |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
351 |
| NONE => error ("Missing local scope -- cannot restrict name space accesses" ^ Position.here pos)); |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
352 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
353 |
val private_scope = restricted_scope true; |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
354 |
val private = restricted true; |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
355 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
356 |
val qualified_scope = restricted_scope false; |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
357 |
val qualified = restricted false; |
59923
b21c82422d65
support private scope for individual local theory commands;
wenzelm
parents:
59917
diff
changeset
|
358 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
359 |
val concealed = map_naming (fn (scopes, restricted, _, group, theory_name, path) => |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
360 |
(scopes, restricted, true, group, theory_name, path)); |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
361 |
|
59886 | 362 |
|
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
363 |
(* additional structural info *) |
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
364 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
365 |
fun set_theory_name theory_name = map_naming (fn (scopes, restricted, concealed, group, _, path) => |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
366 |
(scopes, restricted, concealed, group, theory_name, path)); |
33724 | 367 |
|
368 |
fun get_group (Naming {group, ...}) = group; |
|
369 |
||
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
370 |
fun set_group group = map_naming (fn (scopes, restricted, concealed, _, theory_name, path) => |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
371 |
(scopes, restricted, concealed, group, theory_name, path)); |
33724 | 372 |
|
373 |
fun new_group naming = set_group (SOME (serial ())) naming; |
|
374 |
val reset_group = set_group NONE; |
|
375 |
||
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
376 |
|
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
377 |
(* name entry path *) |
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
378 |
|
59874 | 379 |
fun get_path (Naming {path, ...}) = path; |
380 |
||
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
381 |
fun map_path f = map_naming (fn (scopes, restricted, concealed, group, theory_name, path) => |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
382 |
(scopes, restricted, concealed, group, theory_name, f path)); |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
383 |
|
33157
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
384 |
fun add_path elems = map_path (fn path => path @ [(elems, false)]); |
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
385 |
val root_path = map_path (fn _ => []); |
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
386 |
val parent_path = map_path (perhaps (try (#1 o split_last))); |
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
387 |
fun mandatory_path elems = map_path (fn path => path @ [(elems, true)]); |
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
388 |
|
35200
aaddb2b526d6
more systematic treatment of qualified names derived from binding;
wenzelm
parents:
33724
diff
changeset
|
389 |
fun qualified_path mandatory binding = map_path (fn path => |
63003 | 390 |
path @ Binding.path_of (Binding.qualify_name mandatory binding "")); |
35200
aaddb2b526d6
more systematic treatment of qualified names derived from binding;
wenzelm
parents:
33724
diff
changeset
|
391 |
|
59886 | 392 |
val global_naming = make_naming ([], NONE, false, NONE, "", []); |
58668 | 393 |
val local_naming = global_naming |> add_path Long_Name.localN; |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
394 |
|
28860 | 395 |
|
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
396 |
(* transform *) |
59887 | 397 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
398 |
fun transform_naming (Naming {restricted = restricted', concealed = concealed', ...}) = |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
399 |
(case restricted' of |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
400 |
SOME (strict, scope) => restricted_scope strict scope |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
401 |
| NONE => I) #> |
59887 | 402 |
concealed' ? concealed; |
30233
6eb726e43ed1
eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents:
30222
diff
changeset
|
403 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
404 |
fun transform_binding (Naming {restricted, concealed, ...}) = |
62241 | 405 |
Binding.restricted restricted #> |
59859 | 406 |
concealed ? Binding.concealed; |
33281
223ef9bc399a
let naming transform binding beforehand -- covering only the "conceal" flag for now;
wenzelm
parents:
33164
diff
changeset
|
407 |
|
59887 | 408 |
|
409 |
(* full name *) |
|
410 |
||
59874 | 411 |
fun name_spec naming binding = |
59886 | 412 |
Binding.name_spec (get_scopes naming) (get_path naming) (transform_binding naming binding); |
30412
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
413 |
|
33157
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
414 |
fun full_name naming = |
59858 | 415 |
name_spec naming #> #spec #> map #1 #> Long_Name.implode; |
30412
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
416 |
|
58668 | 417 |
val base_name = full_name global_naming #> Long_Name.base_name; |
47021
f35f654f297d
clarified Binding.name_of vs Name_Space.base_name vs Variable.check_name (see also 9bd8d4addd6e, 3305f573294e);
wenzelm
parents:
47005
diff
changeset
|
418 |
|
30412
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
419 |
|
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
420 |
(* accesses *) |
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
421 |
|
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
422 |
fun mandatory xs = map_filter (fn (x, true) => SOME x | _ => NONE) xs; |
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
423 |
|
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
424 |
fun mandatory_prefixes xs = mandatory xs :: mandatory_prefixes1 xs |
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
425 |
and mandatory_prefixes1 [] = [] |
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
426 |
| mandatory_prefixes1 ((x, true) :: xs) = map (cons x) (mandatory_prefixes1 xs) |
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
427 |
| mandatory_prefixes1 ((x, false) :: xs) = map (cons x) (mandatory_prefixes xs); |
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
428 |
|
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
429 |
fun mandatory_suffixes xs = map rev (mandatory_prefixes (rev xs)); |
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
430 |
|
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
431 |
fun make_accesses naming binding = |
59858 | 432 |
(case name_spec naming binding of |
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
433 |
{restriction = SOME true, ...} => ([], []) |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
434 |
| {restriction, spec, ...} => |
59858 | 435 |
let |
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59939
diff
changeset
|
436 |
val restrict = is_some restriction ? filter (fn [_] => false | _ => true); |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
437 |
val sfxs = restrict (mandatory_suffixes spec); |
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59925
diff
changeset
|
438 |
val pfxs = restrict (mandatory_prefixes spec); |
59858 | 439 |
in apply2 (map Long_Name.implode) (sfxs @ pfxs, sfxs) end); |
30412
7f5b0a020ccd
just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents:
30359
diff
changeset
|
440 |
|
30233
6eb726e43ed1
eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents:
30222
diff
changeset
|
441 |
|
56168
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
442 |
(* hide *) |
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
443 |
|
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
444 |
fun hide fully name space = |
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
445 |
space |> map_name_space (fn (kind, internals, entries) => |
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
446 |
let |
59889 | 447 |
val _ = the_entry space name; |
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
448 |
val (accs, accs') = get_accesses space name; |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
449 |
val xnames = filter (is_valid_access space name) accs; |
56168
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
450 |
val internals' = internals |
59881 | 451 |
|> hide_name name |
56168
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
452 |
|> fold (del_name name) |
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
453 |
(if fully then xnames else inter (op =) [Long_Name.base_name name] xnames) |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
454 |
|> fold (del_name_extra name) accs'; |
56168
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
455 |
in (kind, internals', entries) end); |
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
456 |
|
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
457 |
|
47003 | 458 |
(* alias *) |
459 |
||
460 |
fun alias naming binding name space = |
|
56168
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
461 |
space |> map_name_space (fn (kind, internals, entries) => |
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
462 |
let |
59889 | 463 |
val _ = the_entry space name; |
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
464 |
val (more_accs, more_accs') = make_accesses naming binding; |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
465 |
val internals' = internals |> fold (add_name name) more_accs; |
56168
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
466 |
val entries' = entries |
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
467 |
|> Change_Table.map_entry name (apfst (fn (accs, accs') => |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
468 |
(fold_rev (update op =) more_accs accs, |
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
469 |
fold_rev (update op =) more_accs' accs'))) |
56168
088b64497a61
more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents:
56164
diff
changeset
|
470 |
in (kind, internals', entries') end); |
47003 | 471 |
|
472 |
||
473 |
||
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
474 |
(** context naming **) |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
475 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
476 |
structure Data_Args = |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
477 |
struct |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
478 |
type T = naming; |
58668 | 479 |
val empty = global_naming; |
480 |
fun extend _ = global_naming; |
|
481 |
fun merge _ = global_naming; |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
482 |
fun init _ = local_naming; |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
483 |
end; |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
484 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
485 |
structure Global_Naming = Theory_Data(Data_Args); |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
486 |
structure Local_Naming = Proof_Data(Data_Args); |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
487 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
488 |
fun naming_of (Context.Theory thy) = Global_Naming.get thy |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
489 |
| naming_of (Context.Proof ctxt) = Local_Naming.get ctxt; |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
490 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
491 |
fun map_naming f (Context.Theory thy) = Context.Theory (Global_Naming.map f thy) |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
492 |
| map_naming f (Context.Proof ctxt) = Context.Proof (Local_Naming.map f ctxt); |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
493 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
494 |
|
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
495 |
|
47003 | 496 |
(** entry definition **) |
497 |
||
30233
6eb726e43ed1
eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents:
30222
diff
changeset
|
498 |
(* declaration *) |
28860 | 499 |
|
68163 | 500 |
fun declared (Name_Space {entries, ...}) = Change_Table.defined entries; |
501 |
||
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
502 |
fun declare context strict binding space = |
30233
6eb726e43ed1
eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents:
30222
diff
changeset
|
503 |
let |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
504 |
val naming = naming_of context; |
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
505 |
val Naming {group, theory_name, ...} = naming; |
59859 | 506 |
val {concealed, spec, ...} = name_spec naming binding; |
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
507 |
val accesses = make_accesses naming binding; |
33157
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
508 |
|
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
509 |
val name = Long_Name.implode (map fst spec); |
59874 | 510 |
val _ = name = "" andalso error (Binding.bad binding); |
33157
56f836b9414f
allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents:
33097
diff
changeset
|
511 |
|
49528
789b73fcca72
report proper binding positions only -- avoid swamping document model with unspecific information;
wenzelm
parents:
49358
diff
changeset
|
512 |
val (proper_pos, pos) = Position.default (Binding.pos_of binding); |
33096 | 513 |
val entry = |
59859 | 514 |
{concealed = concealed, |
33164
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
515 |
group = group, |
b8fd9b6bba7c
Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents:
33157
diff
changeset
|
516 |
theory_name = theory_name, |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42358
diff
changeset
|
517 |
pos = pos, |
57899
5867d1306712
clarified signature: entity serial number is not position id;
wenzelm
parents:
56438
diff
changeset
|
518 |
serial = serial ()}; |
56164 | 519 |
val space' = |
520 |
space |> map_name_space (fn (kind, internals, entries) => |
|
521 |
let |
|
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
522 |
val internals' = internals |> fold (add_name name) (#1 accesses); |
56164 | 523 |
val entries' = |
524 |
(if strict then Change_Table.update_new else Change_Table.update) |
|
64307
c4d16f35c6e7
replaced inefficient valid_accesses by is_valid_access, based on stored input accesses: e.g. relevant for Proof_Context.update_thms;
wenzelm
parents:
63232
diff
changeset
|
525 |
(name, (accesses, entry)) entries |
56164 | 526 |
handle Change_Table.DUP dup => |
527 |
err_dup kind (dup, #2 (the (Change_Table.lookup entries dup))) |
|
528 |
(name, entry) (#pos entry); |
|
529 |
in (kind, internals', entries') end); |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47003
diff
changeset
|
530 |
val _ = |
56160 | 531 |
if proper_pos andalso Context_Position.is_reported_generic context pos then |
532 |
Position.report pos (entry_markup true (kind_of space) (name, entry)) |
|
49528
789b73fcca72
report proper binding positions only -- avoid swamping document model with unspecific information;
wenzelm
parents:
49358
diff
changeset
|
533 |
else (); |
30233
6eb726e43ed1
eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents:
30222
diff
changeset
|
534 |
in (name, space') end; |
28860 | 535 |
|
16137 | 536 |
|
47003 | 537 |
(* definition in symbol table *) |
16341
e573e5167eda
added type NameSpace.table with basic operations;
wenzelm
parents:
16262
diff
changeset
|
538 |
|
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
539 |
datatype 'a table = Table of T * 'a Change_Table.T; |
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
540 |
|
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
541 |
fun change_base begin (Table (space, tab)) = |
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
542 |
Table (change_base_space begin space, Change_Table.change_base begin tab); |
16341
e573e5167eda
added type NameSpace.table with basic operations;
wenzelm
parents:
16262
diff
changeset
|
543 |
|
56139
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
wenzelm
parents:
56056
diff
changeset
|
544 |
fun change_ignore (Table (space, tab)) = |
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
wenzelm
parents:
56056
diff
changeset
|
545 |
Table (change_ignore_space space, Change_Table.change_ignore tab); |
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
wenzelm
parents:
56056
diff
changeset
|
546 |
|
56025 | 547 |
fun space_of_table (Table (space, _)) = space; |
548 |
||
549 |
fun check_reports context (Table (space, tab)) (xname, ps) = |
|
42466 | 550 |
let val name = intern space xname in |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
551 |
(case Change_Table.lookup tab name of |
55696 | 552 |
SOME x => |
55922
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
wenzelm
parents:
55845
diff
changeset
|
553 |
let |
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
wenzelm
parents:
55845
diff
changeset
|
554 |
val reports = |
55956
94d384d621b0
reject internal term names outright, and complete consts instead;
wenzelm
parents:
55923
diff
changeset
|
555 |
filter (Context_Position.is_reported_generic context) ps |
94d384d621b0
reject internal term names outright, and complete consts instead;
wenzelm
parents:
55923
diff
changeset
|
556 |
|> map (fn pos => (pos, markup space name)); |
55922
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
wenzelm
parents:
55845
diff
changeset
|
557 |
in ((name, reports), x) end |
55672
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
55669
diff
changeset
|
558 |
| NONE => |
69289 | 559 |
error (undefined space name ^ Position.here_list ps ^ |
560 |
Completion.markup_report |
|
561 |
(map (fn pos => completion context space (K true) (xname, pos)) ps))) |
|
42466 | 562 |
end; |
563 |
||
55956
94d384d621b0
reject internal term names outright, and complete consts instead;
wenzelm
parents:
55923
diff
changeset
|
564 |
fun check context table (xname, pos) = |
55922
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
wenzelm
parents:
55845
diff
changeset
|
565 |
let |
55956
94d384d621b0
reject internal term names outright, and complete consts instead;
wenzelm
parents:
55923
diff
changeset
|
566 |
val ((name, reports), x) = check_reports context table (xname, [pos]); |
55922
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
wenzelm
parents:
55845
diff
changeset
|
567 |
val _ = Position.reports reports; |
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
wenzelm
parents:
55845
diff
changeset
|
568 |
in (name, x) end; |
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
wenzelm
parents:
55845
diff
changeset
|
569 |
|
59883 | 570 |
fun defined (Table (_, tab)) name = Change_Table.defined tab name; |
59884 | 571 |
fun lookup (Table (_, tab)) name = Change_Table.lookup tab name; |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
572 |
fun lookup_key (Table (_, tab)) name = Change_Table.lookup_key tab name; |
56025 | 573 |
|
574 |
fun get table name = |
|
575 |
(case lookup_key table name of |
|
576 |
SOME (_, x) => x |
|
59889 | 577 |
| NONE => error (undefined (space_of_table table) name)); |
42466 | 578 |
|
56025 | 579 |
fun define context strict (binding, x) (Table (space, tab)) = |
580 |
let |
|
581 |
val (name, space') = declare context strict binding space; |
|
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
582 |
val tab' = Change_Table.update (name, x) tab; |
56025 | 583 |
in (name, Table (space', tab')) end; |
584 |
||
585 |
||
586 |
(* derived table operations *) |
|
587 |
||
588 |
fun alias_table naming binding name (Table (space, tab)) = |
|
589 |
Table (alias naming binding name space, tab); |
|
590 |
||
591 |
fun hide_table fully name (Table (space, tab)) = |
|
592 |
Table (hide fully name space, tab); |
|
16341
e573e5167eda
added type NameSpace.table with basic operations;
wenzelm
parents:
16262
diff
changeset
|
593 |
|
56025 | 594 |
fun del_table name (Table (space, tab)) = |
595 |
let |
|
596 |
val space' = hide true name space handle ERROR _ => space; |
|
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
597 |
val tab' = Change_Table.delete_safe name tab; |
56025 | 598 |
in Table (space', tab') end; |
28860 | 599 |
|
56025 | 600 |
fun map_table_entry name f (Table (space, tab)) = |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
601 |
Table (space, Change_Table.map_entry name f tab); |
56025 | 602 |
|
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
603 |
fun fold_table f (Table (_, tab)) = Change_Table.fold f tab; |
68163 | 604 |
fun dest_table (Table (_, tab)) = Change_Table.dest tab; |
16341
e573e5167eda
added type NameSpace.table with basic operations;
wenzelm
parents:
16262
diff
changeset
|
605 |
|
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
606 |
fun empty_table kind = Table (empty kind, Change_Table.empty); |
56025 | 607 |
|
608 |
fun merge_tables (Table (space1, tab1), Table (space2, tab2)) = |
|
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
609 |
Table (merge (space1, space2), Change_Table.merge (K true) (tab1, tab2)); |
28991 | 610 |
|
56025 | 611 |
fun join_tables f (Table (space1, tab1), Table (space2, tab2)) = |
56056
4d46d53566e6
more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents:
56052
diff
changeset
|
612 |
Table (merge (space1, space2), Change_Table.join f (tab1, tab2)); |
56025 | 613 |
|
614 |
||
615 |
(* present table content *) |
|
616 |
||
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
617 |
fun extern_entries verbose ctxt space entries = |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
618 |
fold (fn (name, x) => |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
619 |
(verbose orelse not (is_concealed space name)) ? |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
620 |
cons ((name, extern ctxt space name), x)) entries [] |
60924
610794dff23c
tuned signature, in accordance to sortBy in Scala;
wenzelm
parents:
60284
diff
changeset
|
621 |
|> sort_by (#2 o #1); |
16848 | 622 |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
623 |
fun markup_entries verbose ctxt space entries = |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
624 |
extern_entries verbose ctxt space entries |
56025 | 625 |
|> map (fn ((name, xname), x) => ((markup space name, xname), x)); |
626 |
||
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
627 |
fun extern_table verbose ctxt (Table (space, tab)) = |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
628 |
extern_entries verbose ctxt space (Change_Table.dest tab); |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
629 |
|
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
630 |
fun markup_table verbose ctxt (Table (space, tab)) = |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59912
diff
changeset
|
631 |
markup_entries verbose ctxt space (Change_Table.dest tab); |
16341
e573e5167eda
added type NameSpace.table with basic operations;
wenzelm
parents:
16262
diff
changeset
|
632 |
|
5012 | 633 |
end; |