src/Pure/General/name_space.ML
author wenzelm
Mon, 06 Jun 2016 08:36:03 +0200
changeset 63231 54197a7c1bbd
parent 63003 bf5fcc65586b
child 63232 7238ed9a27ab
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6118
caa439435666 fixed titles;
wenzelm
parents: 5682
diff changeset
     1
(*  Title:      Pure/General/name_space.ML
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
     2
    Author:     Markus Wenzel, TU Muenchen
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
     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
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
     6
*)
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
     7
26440
feeb83f9657f tuned comments;
wenzelm
parents: 25225
diff changeset
     8
type xstring = string;    (*external names*)
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
     9
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
    10
signature NAME_SPACE =
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
    11
sig
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
    12
  type T
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
    13
  val empty: string -> T
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
    14
  val kind_of: T -> string
59889
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
    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}
42487
398d7d6bba42 export Name_Space.entry_ord;
wenzelm
parents: 42466
diff changeset
    19
  val entry_ord: T -> string * string -> order
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
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
    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_raw: Config.raw
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
    23
  val names_long: bool Config.T
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
    24
  val names_short_raw: Config.raw
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
    25
  val names_short: bool Config.T
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
    26
  val names_unique_raw: Config.raw
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
    27
  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
    28
  val extern: Proof.context -> T -> string -> xstring
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 50301
diff changeset
    29
  val extern_ord: Proof.context -> T -> string * string -> order
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
    30
  val extern_shortest: Proof.context -> T -> string -> xstring
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 50301
diff changeset
    31
  val markup_extern: Proof.context -> T -> string -> Markup.T * xstring
53539
51157ee7f5ba tuned signature;
wenzelm
parents: 51949
diff changeset
    32
  val pretty: Proof.context -> T -> string -> Pretty.T
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
    33
  val completion: Context.generic -> T -> xstring * Position.T -> Completion.T
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
    34
  val merge: T * T -> T
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
    35
  type naming
59912
c7ba9b133bd4 export for informative purposes;
wenzelm
parents: 59889
diff changeset
    36
  val get_scopes: naming -> Binding.scope list
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
    37
  val get_scope: naming -> Binding.scope option
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
    38
  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
    39
  val restricted: bool -> Position.T -> naming -> naming
59923
b21c82422d65 support private scope for individual local theory commands;
wenzelm
parents: 59917
diff changeset
    40
  val private_scope: Binding.scope -> naming -> naming
b21c82422d65 support private scope for individual local theory commands;
wenzelm
parents: 59917
diff changeset
    41
  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
    42
  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
    43
  val qualified: Position.T -> naming -> naming
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59858
diff changeset
    44
  val concealed: naming -> naming
33724
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
    45
  val get_group: naming -> serial option
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
    46
  val set_group: serial option -> naming -> naming
33164
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
    47
  val set_theory_name: string -> naming -> naming
33724
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
    48
  val new_group: naming -> naming
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
    49
  val reset_group: naming -> naming
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
    50
  val add_path: string -> naming -> naming
30418
b5044aca0729 add_path: discontinued special meaning of "//", "/", "..";
wenzelm
parents: 30412
diff changeset
    51
  val root_path: naming -> naming
b5044aca0729 add_path: discontinued special meaning of "//", "/", "..";
wenzelm
parents: 30412
diff changeset
    52
  val parent_path: naming -> naming
30469
de9e8f1d927c renamed sticky_prefix to mandatory_path;
wenzelm
parents: 30465
diff changeset
    53
  val mandatory_path: string -> naming -> naming
35200
aaddb2b526d6 more systematic treatment of qualified names derived from binding;
wenzelm
parents: 33724
diff changeset
    54
  val qualified_path: bool -> binding -> naming -> naming
58668
1891f17c6124 tuned signature;
wenzelm
parents: 57899
diff changeset
    55
  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
    56
  val local_naming: naming
59887
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
    57
  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
    58
  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
    59
  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
    60
  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
    61
  val hide: bool -> string -> T -> T
47003
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
    62
  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
    63
  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
    64
  val map_naming: (naming -> naming) -> Context.generic -> Context.generic
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
    65
  val declare: Context.generic -> bool -> binding -> T -> string * T
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
    66
  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
    67
  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
    68
  val change_ignore: 'a table -> 'a table
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
    69
  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
    70
  val check_reports: Context.generic -> 'a table ->
55956
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
    71
    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
    72
  val check: Context.generic -> 'a table -> xstring * Position.T -> string * 'a
59883
12a89103cae6 tuned signature;
wenzelm
parents: 59881
diff changeset
    73
  val defined: 'a table -> string -> bool
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
    74
  val lookup: 'a table -> string -> 'a option
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
    75
  val lookup_key: 'a table -> string -> (string * 'a) option
42466
bbce02fcba60 added Name_Space.check/get convenience;
wenzelm
parents: 42379
diff changeset
    76
  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
    77
  val define: Context.generic -> bool -> binding * 'a -> 'a table -> string * 'a table
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
    78
  val alias_table: naming -> binding -> string -> 'a table -> 'a table
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
    79
  val hide_table: bool -> string -> 'a table -> 'a table
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
    80
  val del_table: string -> 'a table -> 'a table
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
    81
  val map_table_entry: string -> ('a -> 'a) -> 'a table -> 'a table
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
    82
  val fold_table: (string * 'a -> 'b -> 'b) -> 'a table -> 'b -> 'b
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
    83
  val empty_table: string -> 'a table
33091
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
    84
  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
    85
  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
    86
    'a table * 'a table -> 'a table
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
    87
  val extern_entries: bool -> Proof.context -> T -> (string * 'a) list ->
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
    88
    ((string * xstring) * 'a) list
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
    89
  val markup_entries: bool -> Proof.context -> T -> (string * 'a) list ->
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
    90
    ((Markup.T * xstring) * 'a) list
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
    91
  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
    92
  val markup_table: bool -> Proof.context -> 'a table -> ((Markup.T * xstring) * 'a) list
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
    93
end;
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
    94
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33091
diff changeset
    95
structure Name_Space: NAME_SPACE =
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
    96
struct
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
    97
30412
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
    98
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
    99
(** name spaces **)
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
   100
33091
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
   101
(* datatype entry *)
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
   102
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
   103
type entry =
35679
da87ffdcf7ea added Name_Space.alias -- additional accesses for an existing entry;
wenzelm
parents: 35432
diff changeset
   104
 {concealed: bool,
33164
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   105
  group: serial option,
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   106
  theory_name: string,
33091
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
   107
  pos: Position.T,
57899
5867d1306712 clarified signature: entity serial number is not position id;
wenzelm
parents: 56438
diff changeset
   108
  serial: serial};
33091
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
   109
57899
5867d1306712 clarified signature: entity serial number is not position id;
wenzelm
parents: 56438
diff changeset
   110
fun entry_markup def kind (name, {pos, serial, ...}: entry) =
5867d1306712 clarified signature: entity serial number is not position id;
wenzelm
parents: 56438
diff changeset
   111
  Markup.properties (Position.entity_properties_of def serial pos) (Markup.entity kind name);
42135
da200fa2768c decode_term: some context-sensitive markup;
wenzelm
parents: 41254
diff changeset
   112
49816
e63d6c55ad6d more position information for hyperlink and placement of message;
wenzelm
parents: 49528
diff changeset
   113
fun print_entry_ref kind (name, entry) =
e63d6c55ad6d more position information for hyperlink and placement of message;
wenzelm
parents: 49528
diff changeset
   114
  quote (Markup.markup (entry_markup false kind (name, entry)) name);
33091
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
   115
49816
e63d6c55ad6d more position information for hyperlink and placement of message;
wenzelm
parents: 49528
diff changeset
   116
fun err_dup kind entry1 entry2 pos =
56038
0e2dec666152 tuned messages -- in accordance to Isabelle/Scala;
wenzelm
parents: 56025
diff changeset
   117
  error ("Duplicate " ^ plain_words kind ^ " declaration " ^
49816
e63d6c55ad6d more position information for hyperlink and placement of message;
wenzelm
parents: 49528
diff changeset
   118
    print_entry_ref kind entry1 ^ " vs. " ^ print_entry_ref kind entry2 ^ Position.here pos);
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   119
33091
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
   120
56164
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   121
(* internal names *)
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   122
59881
wenzelm
parents: 59874
diff changeset
   123
type internals = (string list * string list) Change_Table.T;
56164
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   124
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   125
fun map_internals f xname : internals -> internals =
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   126
  Change_Table.map_default (xname, ([], [])) f;
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   127
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   128
val del_name = map_internals o apfst o remove (op =);
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   129
fun del_name_extra name =
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   130
  map_internals (apfst (fn [] => [] | x :: xs => x :: remove (op =) name xs));
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   131
val add_name = map_internals o apfst o update (op =);
59881
wenzelm
parents: 59874
diff changeset
   132
fun hide_name name = map_internals (apsnd (update (op =) name)) name;
56164
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   133
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   134
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   135
(* datatype T *)
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   136
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   137
datatype T =
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33091
diff changeset
   138
  Name_Space of
59881
wenzelm
parents: 59874
diff changeset
   139
   {kind: string,
wenzelm
parents: 59874
diff changeset
   140
    internals: internals,  (*xname -> visible, hidden*)
56164
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   141
    entries: (xstring list * entry) Change_Table.T};  (*name -> externals, entry*)
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   142
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   143
fun make_name_space (kind, internals, entries) =
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   144
  Name_Space {kind = kind, internals = internals, entries = entries};
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   145
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   146
fun map_name_space f (Name_Space {kind = kind, internals = internals, entries = entries}) =
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   147
  make_name_space (f (kind, internals, entries));
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   148
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
   149
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
   150
  (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
   151
56139
b7add947a6ef more frugal recording of changes: join merely requires information from one side;
wenzelm
parents: 56056
diff changeset
   152
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
   153
  (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
   154
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   155
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
   156
fun empty kind = make_name_space (kind, Change_Table.empty, Change_Table.empty);
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   157
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   158
fun kind_of (Name_Space {kind, ...}) = kind;
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   159
62987
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62967
diff changeset
   160
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
   161
  (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
   162
    NONE => Markup.intensify
62987
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62967
diff changeset
   163
  | SOME (_, entry) => entry_markup def kind (name, entry));
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62967
diff changeset
   164
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62967
diff changeset
   165
val markup = gen_markup false;
dc8a8a7559e7 highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents: 62967
diff changeset
   166
val markup_def = gen_markup true;
42135
da200fa2768c decode_term: some context-sensitive markup;
wenzelm
parents: 41254
diff changeset
   167
59889
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   168
fun undefined (space as Name_Space {kind, entries, ...}) bad =
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   169
  let
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   170
    val (prfx, sfx) =
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   171
      (case Long_Name.dest_hidden bad of
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   172
        SOME name =>
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   173
          if Change_Table.defined entries name
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   174
          then ("Inaccessible", Markup.markup (markup space name) (quote name))
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   175
          else ("Undefined", quote name)
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   176
      | NONE => ("Undefined", quote bad));
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   177
  in prfx ^ " " ^ plain_words kind ^ ": " ^ sfx end;
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   178
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   179
fun the_entry (space as Name_Space {entries, ...}) name =
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   180
  (case Change_Table.lookup entries name of
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   181
    NONE => error (undefined space name)
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   182
  | SOME (_, entry) => entry);
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   183
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   184
fun entry_ord space = int_ord o apply2 (#serial o the_entry space);
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   185
60282
496fa0fc91b1 more permissive operation: allow to print undeclared name space entries, e.g. print_simpset with "record" simproc;
wenzelm
parents: 59990
diff changeset
   186
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
   187
  #concealed (the_entry space name) handle ERROR _ => false;
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   188
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   189
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   190
(* intern *)
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   191
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   192
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
   193
  (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
   194
    ([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
   195
  | (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
   196
  | ([], []) => (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
   197
  | ([], name' :: _) => (Long_Name.hidden name', true));
8728
33a9643ba626 improved output of ambiguous entries;
wenzelm
parents: 6845
diff changeset
   198
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   199
val intern = #1 oo intern';
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   200
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   201
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
   202
  (case Change_Table.lookup entries name of
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
   203
    NONE => []
35679
da87ffdcf7ea added Name_Space.alias -- additional accesses for an existing entry;
wenzelm
parents: 35432
diff changeset
   204
  | SOME (externals, _) => externals);
25072
03f57b516e12 store external accesses within name space (as produced by naming policy);
wenzelm
parents: 24361
diff changeset
   205
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   206
fun valid_accesses (Name_Space {internals, ...}) 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
   207
  Change_Table.fold (fn (xname, (names, _)) =>
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   208
    if not (null names) andalso hd names = name then cons xname else I) internals [];
8728
33a9643ba626 improved output of ambiguous entries;
wenzelm
parents: 6845
diff changeset
   209
33a9643ba626 improved output of ambiguous entries;
wenzelm
parents: 6845
diff changeset
   210
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   211
(* extern *)
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   212
56438
7f6b2634d853 more source positions;
wenzelm
parents: 56168
diff changeset
   213
val names_long_raw = Config.declare_option ("names_long", @{here});
42669
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
   214
val names_long = Config.bool names_long_raw;
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42327
diff changeset
   215
56438
7f6b2634d853 more source positions;
wenzelm
parents: 56168
diff changeset
   216
val names_short_raw = Config.declare_option ("names_short", @{here});
42669
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
   217
val names_short = Config.bool names_short_raw;
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42327
diff changeset
   218
56438
7f6b2634d853 more source positions;
wenzelm
parents: 56168
diff changeset
   219
val names_unique_raw = Config.declare_option ("names_unique", @{here});
42669
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
   220
val names_unique = Config.bool names_unique_raw;
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42327
diff changeset
   221
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42327
diff changeset
   222
fun extern ctxt space name =
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   223
  let
42669
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
   224
    val names_long = Config.get ctxt names_long;
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
   225
    val names_short = Config.get ctxt names_short;
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
   226
    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
   227
30277
4f2b6ccce047 adapted Binding.dest;
wenzelm
parents: 30242
diff changeset
   228
    fun valid require_unique xname =
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   229
      let val (name', is_unique) = intern' space xname
30277
4f2b6ccce047 adapted Binding.dest;
wenzelm
parents: 30242
diff changeset
   230
      in name = name' andalso (not require_unique orelse is_unique) end;
8728
33a9643ba626 improved output of ambiguous entries;
wenzelm
parents: 6845
diff changeset
   231
55669
4612c450b59c tuned signature;
wenzelm
parents: 53539
diff changeset
   232
    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
   233
      | ext (nm :: nms) = if valid names_unique nm then nm else ext nms;
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   234
  in
42669
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
   235
    if names_long then name
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42493
diff changeset
   236
    else if names_short then Long_Name.base_name name
30213
3951aab916fd reverted change introduced in a7c164e228e1 -- there cannot be a "bug" in a perfectly normal operation on the internal data representation that merely escaped into public by accident (cf. 0a981c596372);
wenzelm
parents: 29848
diff changeset
   237
    else ext (get_accesses space name)
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   238
  end;
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   239
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58668
diff changeset
   240
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
   241
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   242
fun extern_shortest ctxt =
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   243
  extern
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   244
    (ctxt
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   245
      |> Config.put names_long false
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   246
      |> Config.put names_short false
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   247
      |> Config.put names_unique false);
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
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
   250
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
   251
51510
b4f7e6734acc tuned print_classes: more standard order, markup, formatting;
wenzelm
parents: 50301
diff changeset
   252
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   253
(* completion *)
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   254
55694
a1184dfb8e00 clarified semantic completion: retain kind.full_name as official item name for history;
wenzelm
parents: 55687
diff changeset
   255
fun completion context space (xname, pos) =
59812
675d0c692c41 semantic completion for @{system_option};
wenzelm
parents: 59058
diff changeset
   256
  Completion.make (xname, pos) (fn completed =>
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   257
    let
62967
5e8b1aead28f more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents: 62241
diff changeset
   258
      fun result_ord ((precise1, (xname1, (_, name1))), (precise2, (xname2, (_, name2)))) =
5e8b1aead28f more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents: 62241
diff changeset
   259
        (case bool_ord (precise2, precise1) of
56162
ea6303e2261b clarified completion ordering: prefer local names;
wenzelm
parents: 56160
diff changeset
   260
          EQUAL =>
62967
5e8b1aead28f more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents: 62241
diff changeset
   261
            (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
   262
              EQUAL =>
5e8b1aead28f more completions, independently on accidental external form (e.g. "Map.empty" with its redundant prefix);
wenzelm
parents: 62241
diff changeset
   263
                (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
   264
                  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
   265
                | ord => ord)
56162
ea6303e2261b clarified completion ordering: prefer local names;
wenzelm
parents: 56160
diff changeset
   266
            | ord => ord)
56024
0921c1dc344c more structured order;
wenzelm
parents: 56022
diff changeset
   267
        | ord => ord);
55975
9962ca0875c9 no completion of concealed names;
wenzelm
parents: 55962
diff changeset
   268
      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
   269
      val ext = extern_shortest (Context.proof_of context) space;
59812
675d0c692c41 semantic completion for @{system_option};
wenzelm
parents: 59058
diff changeset
   270
    in
675d0c692c41 semantic completion for @{system_option};
wenzelm
parents: 59058
diff changeset
   271
      Change_Table.fold
63231
wenzelm
parents: 63003
diff changeset
   272
        (fn (xname', (name :: _, _)) =>
wenzelm
parents: 63003
diff changeset
   273
            if completed xname' andalso not (is_concealed space name) then
wenzelm
parents: 63003
diff changeset
   274
              cons (xname' = ext name, (xname', (kind, name)))
59812
675d0c692c41 semantic completion for @{system_option};
wenzelm
parents: 59058
diff changeset
   275
            else I
675d0c692c41 semantic completion for @{system_option};
wenzelm
parents: 59058
diff changeset
   276
          | _ => I) internals []
675d0c692c41 semantic completion for @{system_option};
wenzelm
parents: 59058
diff changeset
   277
      |> 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
   278
      |> map #2
59812
675d0c692c41 semantic completion for @{system_option};
wenzelm
parents: 59058
diff changeset
   279
    end);
53539
51157ee7f5ba tuned signature;
wenzelm
parents: 51949
diff changeset
   280
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   281
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   282
(* merge *)
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   283
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   284
fun merge
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   285
  (Name_Space {kind = kind1, internals = internals1, entries = entries1},
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   286
    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
   287
  let
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   288
    val kind' =
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   289
      if kind1 = kind2 then kind1
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   290
      else error ("Attempt to merge different kinds of name spaces " ^
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   291
        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
   292
    val internals' = (internals1, internals2) |> Change_Table.join
30465
038839f111a1 renamed bind to define;
wenzelm
parents: 30438
diff changeset
   293
      (K (fn ((names1, names1'), (names2, names2')) =>
33091
d23e75d4f7da maintain abstract entry, with position, identity etc.;
wenzelm
parents: 33049
diff changeset
   294
        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
   295
        then raise Change_Table.SAME
30233
6eb726e43ed1 eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents: 30222
diff changeset
   296
        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
   297
    val entries' = (entries1, entries2) |> Change_Table.join
35679
da87ffdcf7ea added Name_Space.alias -- additional accesses for an existing entry;
wenzelm
parents: 35432
diff changeset
   298
      (fn name => fn ((_, entry1), (_, entry2)) =>
57899
5867d1306712 clarified signature: entity serial number is not position id;
wenzelm
parents: 56438
diff changeset
   299
        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
   300
        else err_dup kind' (name, entry1) (name, entry2) Position.none);
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   301
  in make_name_space (kind', internals', entries') end;
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   302
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   303
26440
feeb83f9657f tuned comments;
wenzelm
parents: 25225
diff changeset
   304
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   305
(** naming context **)
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   306
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   307
(* datatype naming *)
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   308
33164
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   309
datatype naming = Naming of
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   310
 {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
   311
  restricted: (bool * Binding.scope) option,
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59858
diff changeset
   312
  concealed: bool,
33164
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   313
  group: serial option,
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   314
  theory_name: string,
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   315
  path: (string * bool) list};
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   316
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
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
   318
  Naming {scopes = scopes, restricted = restricted, concealed = concealed,
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   319
    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
   320
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
   321
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
   322
  make_naming (f (scopes, restricted, concealed, group, theory_name, path));
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   323
33164
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   324
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
   325
(* scope and access restriction *)
33164
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   326
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   327
fun get_scopes (Naming {scopes, ...}) = scopes;
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   328
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
   329
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   330
fun new_scope naming =
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   331
  let
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   332
    val scope = Binding.new_scope ();
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   333
    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
   334
      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
   335
        (scope :: scopes, restricted, concealed, group, theory_name, path));
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   336
  in (scope, naming') end;
59858
890b68e1e8b6 support for strictly private name space entries;
wenzelm
parents: 59812
diff changeset
   337
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
   338
fun restricted_scope strict scope =
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
diff changeset
   339
  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
   340
    (scopes, SOME (strict, scope), concealed, group, theory_name, path));
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   341
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
   342
fun restricted strict pos naming =
59923
b21c82422d65 support private scope for individual local theory commands;
wenzelm
parents: 59917
diff changeset
   343
  (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
   344
    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
   345
  | 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
   346
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
   347
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
   348
val private = restricted true;
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
diff changeset
   349
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
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
   351
val qualified = restricted false;
59923
b21c82422d65 support private scope for individual local theory commands;
wenzelm
parents: 59917
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 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
   354
  (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
   355
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   356
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
diff changeset
   357
(* additional structural info *)
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
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
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
   360
  (scopes, restricted, concealed, group, theory_name, path));
33724
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
   361
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
   362
fun get_group (Naming {group, ...}) = group;
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
   363
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
   364
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
   365
  (scopes, restricted, concealed, group, theory_name, path));
33724
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
   366
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
   367
fun new_group naming = set_group (SOME (serial ())) naming;
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
   368
val reset_group = set_group NONE;
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33281
diff changeset
   369
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
diff changeset
   370
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
diff changeset
   371
(* name entry path *)
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
diff changeset
   372
59874
3ecb48ce92d7 tuned signature;
wenzelm
parents: 59859
diff changeset
   373
fun get_path (Naming {path, ...}) = path;
3ecb48ce92d7 tuned signature;
wenzelm
parents: 59859
diff changeset
   374
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
   375
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
   376
  (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
   377
33157
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33097
diff changeset
   378
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
   379
val root_path = map_path (fn _ => []);
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33097
diff changeset
   380
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
   381
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
   382
35200
aaddb2b526d6 more systematic treatment of qualified names derived from binding;
wenzelm
parents: 33724
diff changeset
   383
fun qualified_path mandatory binding = map_path (fn path =>
63003
bf5fcc65586b clarified signature;
wenzelm
parents: 62987
diff changeset
   384
  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
   385
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   386
val global_naming = make_naming ([], NONE, false, NONE, "", []);
58668
1891f17c6124 tuned signature;
wenzelm
parents: 57899
diff changeset
   387
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
   388
28860
b1d46059d502 name spaces and name bindings
haftmann
parents: 27196
diff changeset
   389
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
diff changeset
   390
(* transform *)
59887
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   391
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
   392
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
   393
  (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
   394
    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
   395
  | NONE => I) #>
59887
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   396
  concealed' ? concealed;
30233
6eb726e43ed1 eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents: 30222
diff changeset
   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_binding (Naming {restricted, concealed, ...}) =
62241
a4a1f282bcd5 tuned signature;
wenzelm
parents: 60924
diff changeset
   399
  Binding.restricted restricted #>
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59858
diff changeset
   400
  concealed ? Binding.concealed;
33281
223ef9bc399a let naming transform binding beforehand -- covering only the "conceal" flag for now;
wenzelm
parents: 33164
diff changeset
   401
59887
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   402
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   403
(* full name *)
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   404
59874
3ecb48ce92d7 tuned signature;
wenzelm
parents: 59859
diff changeset
   405
fun name_spec naming binding =
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59885
diff changeset
   406
  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
   407
33157
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33097
diff changeset
   408
fun full_name naming =
59858
890b68e1e8b6 support for strictly private name space entries;
wenzelm
parents: 59812
diff changeset
   409
  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
   410
58668
1891f17c6124 tuned signature;
wenzelm
parents: 57899
diff changeset
   411
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
   412
30412
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
   413
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
   414
(* accesses *)
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
   415
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
   416
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
   417
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
   418
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
   419
and mandatory_prefixes1 [] = []
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
   420
  | 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
   421
  | 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
   422
7f5b0a020ccd just one naming policy based on binding content -- eliminated odd "object-oriented" style;
wenzelm
parents: 30359
diff changeset
   423
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
   424
30522
e26b80647189 removed obsolete no_base_names naming policy;
wenzelm
parents: 30469
diff changeset
   425
fun accesses naming binding =
59858
890b68e1e8b6 support for strictly private name space entries;
wenzelm
parents: 59812
diff changeset
   426
  (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
   427
    {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
   428
  | {restriction, spec, ...} =>
59858
890b68e1e8b6 support for strictly private name space entries;
wenzelm
parents: 59812
diff changeset
   429
      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
   430
        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
   431
        val sfxs = restrict (mandatory_suffixes spec);
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59925
diff changeset
   432
        val pfxs = restrict (mandatory_prefixes spec);
59858
890b68e1e8b6 support for strictly private name space entries;
wenzelm
parents: 59812
diff changeset
   433
      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
   434
30233
6eb726e43ed1 eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents: 30222
diff changeset
   435
56168
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   436
(* hide *)
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   437
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   438
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
   439
  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
   440
    let
59889
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   441
      val _ = the_entry space name;
56168
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   442
      val names = valid_accesses space name;
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   443
      val internals' = internals
59881
wenzelm
parents: 59874
diff changeset
   444
        |> hide_name name
56168
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   445
        |> fold (del_name name)
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   446
          (if fully then names else inter (op =) [Long_Name.base_name name] names)
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   447
        |> fold (del_name_extra name) (get_accesses space name);
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   448
    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
   449
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   450
47003
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   451
(* alias *)
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   452
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   453
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
   454
  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
   455
    let
59889
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   456
      val _ = the_entry space name;
56168
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   457
      val (accs, accs') = accesses naming binding;
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   458
      val internals' = internals |> fold (add_name name) accs;
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   459
      val entries' = entries
60284
014b86186c49 clarified alias: proper update of new accesses instead of conservative insert (via merge), otherwise "local.foo" could take precedence over "foo";
wenzelm
parents: 60282
diff changeset
   460
        |> Change_Table.map_entry name (apfst (fold_rev (update op =) accs'));
56168
088b64497a61 more uniform alias vs. hide: proper check, allow to hide global names as well;
wenzelm
parents: 56164
diff changeset
   461
    in (kind, internals', entries') end);
47003
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   462
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   463
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   464
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   465
(** context naming **)
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   466
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   467
structure Data_Args =
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   468
struct
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   469
  type T = naming;
58668
1891f17c6124 tuned signature;
wenzelm
parents: 57899
diff changeset
   470
  val empty = global_naming;
1891f17c6124 tuned signature;
wenzelm
parents: 57899
diff changeset
   471
  fun extend _ = global_naming;
1891f17c6124 tuned signature;
wenzelm
parents: 57899
diff changeset
   472
  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
   473
  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
   474
end;
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 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
   477
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
   478
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   479
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
   480
  | 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
   481
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   482
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
   483
  | 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
   484
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   485
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   486
47003
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   487
(** entry definition **)
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   488
30233
6eb726e43ed1 eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents: 30222
diff changeset
   489
(* declaration *)
28860
b1d46059d502 name spaces and name bindings
haftmann
parents: 27196
diff changeset
   490
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   491
fun declare context strict binding space =
30233
6eb726e43ed1 eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents: 30222
diff changeset
   492
  let
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 47003
diff changeset
   493
    val naming = naming_of context;
33164
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   494
    val Naming {group, theory_name, ...} = naming;
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59858
diff changeset
   495
    val {concealed, spec, ...} = name_spec naming binding;
33157
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33097
diff changeset
   496
    val (accs, accs') = accesses naming binding;
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33097
diff changeset
   497
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33097
diff changeset
   498
    val name = Long_Name.implode (map fst spec);
59874
3ecb48ce92d7 tuned signature;
wenzelm
parents: 59859
diff changeset
   499
    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
   500
49528
789b73fcca72 report proper binding positions only -- avoid swamping document model with unspecific information;
wenzelm
parents: 49358
diff changeset
   501
    val (proper_pos, pos) = Position.default (Binding.pos_of binding);
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   502
    val entry =
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59858
diff changeset
   503
     {concealed = concealed,
33164
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   504
      group = group,
b8fd9b6bba7c Name_Space.naming: maintain group and theory_name as well;
wenzelm
parents: 33157
diff changeset
   505
      theory_name = theory_name,
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42358
diff changeset
   506
      pos = pos,
57899
5867d1306712 clarified signature: entity serial number is not position id;
wenzelm
parents: 56438
diff changeset
   507
      serial = serial ()};
56164
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   508
    val space' =
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   509
      space |> map_name_space (fn (kind, internals, entries) =>
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   510
        let
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   511
          val internals' = internals |> fold (add_name name) accs;
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   512
          val entries' =
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   513
            (if strict then Change_Table.update_new else Change_Table.update)
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   514
              (name, (accs', entry)) entries
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   515
            handle Change_Table.DUP dup =>
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   516
              err_dup kind (dup, #2 (the (Change_Table.lookup entries dup)))
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   517
                (name, entry) (#pos entry);
c7805a88f952 minor tuning;
wenzelm
parents: 56162
diff changeset
   518
        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
   519
    val _ =
56160
d348378ddf47 tuned -- avoid vacuous reports;
wenzelm
parents: 56139
diff changeset
   520
      if proper_pos andalso Context_Position.is_reported_generic context pos then
d348378ddf47 tuned -- avoid vacuous reports;
wenzelm
parents: 56139
diff changeset
   521
        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
   522
      else ();
30233
6eb726e43ed1 eliminated internal stamp equality, replaced by bare-metal pointer_eq;
wenzelm
parents: 30222
diff changeset
   523
  in (name, space') end;
28860
b1d46059d502 name spaces and name bindings
haftmann
parents: 27196
diff changeset
   524
16137
00e9ca1e7261 renamed cond_extern to extern;
wenzelm
parents: 16002
diff changeset
   525
47003
3094745a41ef tuned structure;
wenzelm
parents: 46869
diff changeset
   526
(* definition in symbol table *)
16341
e573e5167eda added type NameSpace.table with basic operations;
wenzelm
parents: 16262
diff changeset
   527
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
   528
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
   529
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
   530
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
   531
  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
   532
56139
b7add947a6ef more frugal recording of changes: join merely requires information from one side;
wenzelm
parents: 56056
diff changeset
   533
fun change_ignore (Table (space, tab)) =
b7add947a6ef more frugal recording of changes: join merely requires information from one side;
wenzelm
parents: 56056
diff changeset
   534
  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
   535
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   536
fun space_of_table (Table (space, _)) = space;
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   537
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   538
fun check_reports context (Table (space, tab)) (xname, ps) =
42466
bbce02fcba60 added Name_Space.check/get convenience;
wenzelm
parents: 42379
diff changeset
   539
  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
   540
    (case Change_Table.lookup tab name of
55696
de2668c50403 tuned whitespace;
wenzelm
parents: 55694
diff changeset
   541
      SOME x =>
55922
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55845
diff changeset
   542
        let
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55845
diff changeset
   543
          val reports =
55956
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
   544
            filter (Context_Position.is_reported_generic context) ps
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
   545
            |> 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
   546
        in ((name, reports), x) end
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55669
diff changeset
   547
    | NONE =>
55956
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
   548
        let
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
   549
          val completions = map (fn pos => completion context space (xname, pos)) ps;
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
   550
        in
59889
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   551
          error (undefined space name ^ Position.here_list ps ^
55957
cffb46aea3d1 more compact Markup.markup_report: message body may consist of multiple elements;
wenzelm
parents: 55956
diff changeset
   552
            Markup.markup_report (implode (map Completion.reported_text completions)))
55956
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
   553
        end)
42466
bbce02fcba60 added Name_Space.check/get convenience;
wenzelm
parents: 42379
diff changeset
   554
  end;
bbce02fcba60 added Name_Space.check/get convenience;
wenzelm
parents: 42379
diff changeset
   555
55956
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
   556
fun check context table (xname, pos) =
55922
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55845
diff changeset
   557
  let
55956
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55923
diff changeset
   558
    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
   559
    val _ = Position.reports reports;
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55845
diff changeset
   560
  in (name, x) end;
710bc66f432c more markup for inner syntax class/type names (notably for completion);
wenzelm
parents: 55845
diff changeset
   561
59883
12a89103cae6 tuned signature;
wenzelm
parents: 59881
diff changeset
   562
fun defined (Table (_, tab)) name = Change_Table.defined tab name;
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59883
diff changeset
   563
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
   564
fun lookup_key (Table (_, tab)) name = Change_Table.lookup_key tab name;
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   565
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   566
fun get table name =
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   567
  (case lookup_key table name of
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   568
    SOME (_, x) => x
59889
30eef3e45bd0 tuned message;
wenzelm
parents: 59888
diff changeset
   569
  | NONE => error (undefined (space_of_table table) name));
42466
bbce02fcba60 added Name_Space.check/get convenience;
wenzelm
parents: 42379
diff changeset
   570
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   571
fun define context strict (binding, x) (Table (space, tab)) =
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   572
  let
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   573
    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
   574
    val tab' = Change_Table.update (name, x) tab;
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   575
  in (name, Table (space', tab')) end;
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   576
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   577
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   578
(* derived table operations *)
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   579
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   580
fun alias_table naming binding name (Table (space, tab)) =
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   581
  Table (alias naming binding name space, tab);
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   582
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   583
fun hide_table fully name (Table (space, tab)) =
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   584
  Table (hide fully name space, tab);
16341
e573e5167eda added type NameSpace.table with basic operations;
wenzelm
parents: 16262
diff changeset
   585
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   586
fun del_table name (Table (space, tab)) =
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   587
  let
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   588
    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
   589
    val tab' = Change_Table.delete_safe name tab;
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   590
  in Table (space', tab') end;
28860
b1d46059d502 name spaces and name bindings
haftmann
parents: 27196
diff changeset
   591
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   592
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
   593
  Table (space, Change_Table.map_entry name f tab);
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   594
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
   595
fun fold_table f (Table (_, tab)) = Change_Table.fold f tab;
16341
e573e5167eda added type NameSpace.table with basic operations;
wenzelm
parents: 16262
diff changeset
   596
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
fun empty_table kind = Table (empty kind, Change_Table.empty);
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   598
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   599
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
   600
  Table (merge (space1, space2), Change_Table.merge (K true) (tab1, tab2));
28991
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   601
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   602
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
   603
  Table (merge (space1, space2), Change_Table.join f (tab1, tab2));
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   604
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   605
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   606
(* present table content *)
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   607
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   608
fun extern_entries verbose ctxt space entries =
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   609
  fold (fn (name, x) =>
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   610
    (verbose orelse not (is_concealed space name)) ?
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   611
      cons ((name, extern ctxt space name), x)) entries []
60924
610794dff23c tuned signature, in accordance to sortBy in Scala;
wenzelm
parents: 60284
diff changeset
   612
  |> sort_by (#2 o #1);
16848
1c8a5bb7c688 added dest_table;
wenzelm
parents: 16444
diff changeset
   613
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   614
fun markup_entries verbose ctxt space entries =
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   615
  extern_entries verbose ctxt space entries
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   616
  |> map (fn ((name, xname), x) => ((markup space name, xname), x));
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 56024
diff changeset
   617
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   618
fun extern_table verbose ctxt (Table (space, tab)) =
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   619
  extern_entries verbose ctxt space (Change_Table.dest tab);
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   620
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   621
fun markup_table verbose ctxt (Table (space, tab)) =
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59912
diff changeset
   622
  markup_entries verbose ctxt space (Change_Table.dest tab);
16341
e573e5167eda added type NameSpace.table with basic operations;
wenzelm
parents: 16262
diff changeset
   623
5012
086b055c4d73 moved name_space.ML to General/name_space.ML;
wenzelm
parents:
diff changeset
   624
end;