author | wenzelm |
Sun, 08 Sep 2019 17:49:35 +0200 | |
changeset 70678 | 36c8c32346cb |
parent 70668 | 9cac4dec0da9 |
child 70681 | a6c0f2d106c8 |
permissions | -rw-r--r-- |
67215 | 1 |
(* Title: Pure/Thy/sessions.ML |
2 |
Author: Makarius |
|
3 |
||
4 |
Support for session ROOT syntax. |
|
5 |
*) |
|
6 |
||
7 |
signature SESSIONS = |
|
8 |
sig |
|
9 |
val root_name: string |
|
10 |
val theory_name: string |
|
11 |
val command_parser: (Toplevel.transition -> Toplevel.transition) parser |
|
12 |
end; |
|
13 |
||
14 |
structure Sessions: SESSIONS = |
|
15 |
struct |
|
16 |
||
17 |
val root_name = "ROOT"; |
|
18 |
val theory_name = "Pure.Sessions"; |
|
19 |
||
20 |
local |
|
21 |
||
70668 | 22 |
val directory = Parse.position Parse.path -- Parse.opt_keyword "overlapping"; |
67215 | 23 |
|
70668 | 24 |
val theory_entry = Parse.theory_name --| Parse.opt_keyword "global"; |
67215 | 25 |
|
26 |
val theories = |
|
27 |
Parse.$$$ "theories" |-- Parse.!!! (Scan.optional Parse.options [] -- Scan.repeat1 theory_entry); |
|
28 |
||
68292 | 29 |
val in_path = |
30 |
Parse.$$$ "(" |-- Parse.!!! (Parse.$$$ "in" |-- Parse.position Parse.path --| Parse.$$$ ")"); |
|
31 |
||
67215 | 32 |
val document_files = |
33 |
Parse.$$$ "document_files" |-- |
|
68292 | 34 |
Parse.!!! (Scan.optional in_path ("document", Position.none) |
67215 | 35 |
-- Scan.repeat1 (Parse.position Parse.path)); |
36 |
||
69671 | 37 |
val prune = |
38 |
Scan.optional (Parse.$$$ "[" |-- Parse.!!! (Parse.nat --| Parse.$$$ "]")) 0; |
|
39 |
||
68292 | 40 |
val export_files = |
41 |
Parse.$$$ "export_files" |-- |
|
69671 | 42 |
Parse.!!! |
43 |
(Scan.optional in_path ("export", Position.none) -- prune -- Scan.repeat1 Parse.embedded); |
|
68292 | 44 |
|
67215 | 45 |
in |
46 |
||
47 |
val command_parser = |
|
48 |
Parse.session_name -- |
|
49 |
Scan.optional (Parse.$$$ "(" |-- Parse.!!! (Scan.repeat1 Parse.name --| Parse.$$$ ")")) [] -- |
|
50 |
Scan.optional (Parse.$$$ "in" |-- Parse.!!! (Parse.position Parse.path)) (".", Position.none) -- |
|
67220 | 51 |
(Parse.$$$ "=" |-- |
69349
7cef9e386ffe
more accurate positions for "name" (quoted string) and "embedded" (cartouche): refer to content without delimiters, which is e.g. relevant for systematic selection/renaming of scope groups;
wenzelm
parents:
68808
diff
changeset
|
52 |
Parse.!!! (Scan.option (Parse.session_name --| Parse.!!! (Parse.$$$ "+")) -- |
67220 | 53 |
Scan.optional (Parse.$$$ "description" |-- Parse.!!! (Parse.input Parse.text)) Input.empty -- |
54 |
Scan.optional (Parse.$$$ "options" |-- Parse.!!! Parse.options) [] -- |
|
55 |
Scan.optional (Parse.$$$ "sessions" |-- |
|
69349
7cef9e386ffe
more accurate positions for "name" (quoted string) and "embedded" (cartouche): refer to content without delimiters, which is e.g. relevant for systematic selection/renaming of scope groups;
wenzelm
parents:
68808
diff
changeset
|
56 |
Parse.!!! (Scan.repeat1 Parse.session_name)) [] -- |
70678
36c8c32346cb
clarified syntax: 'directories' and 'theories' belong together;
wenzelm
parents:
70668
diff
changeset
|
57 |
Scan.optional (Parse.$$$ "directories" |-- Parse.!!! (Scan.repeat1 directory)) [] -- |
67220 | 58 |
Scan.repeat theories -- |
68292 | 59 |
Scan.repeat document_files -- |
60 |
Scan.repeat export_files)) |
|
69349
7cef9e386ffe
more accurate positions for "name" (quoted string) and "embedded" (cartouche): refer to content without delimiters, which is e.g. relevant for systematic selection/renaming of scope groups;
wenzelm
parents:
68808
diff
changeset
|
61 |
>> (fn ((((session, _), _), dir), |
70678
36c8c32346cb
clarified syntax: 'directories' and 'theories' belong together;
wenzelm
parents:
70668
diff
changeset
|
62 |
((((((((parent, descr), options), sessions), directories), theories), |
70668 | 63 |
document_files), export_files))) => |
67215 | 64 |
Toplevel.keep (fn state => |
65 |
let |
|
66 |
val ctxt = Toplevel.context_of state; |
|
70049 | 67 |
val session_dir = Resources.check_dir ctxt NONE dir; |
67215 | 68 |
|
69 |
val _ = |
|
67220 | 70 |
(the_list parent @ sessions) |> List.app (fn arg => |
71 |
ignore (Resources.check_session ctxt arg) |
|
72 |
handle ERROR msg => Output.error_message msg); |
|
73 |
||
74 |
val _ = |
|
67215 | 75 |
Context_Position.report ctxt |
76 |
(Position.range_position (Symbol_Pos.range (Input.source_explode descr))) |
|
77 |
Markup.comment; |
|
78 |
||
79 |
val _ = |
|
80 |
(options @ maps #1 theories) |> List.app (fn (x, y) => |
|
67220 | 81 |
ignore (Completion.check_option_value ctxt x y (Options.default ())) |
82 |
handle ERROR msg => Output.error_message msg); |
|
67215 | 83 |
|
84 |
val _ = |
|
85 |
maps #2 theories |> List.app (fn (s, pos) => |
|
86 |
let |
|
87 |
val {node_name, theory_name, ...} = |
|
88 |
Resources.import_name session session_dir s |
|
89 |
handle ERROR msg => error (msg ^ Position.here pos); |
|
90 |
val theory_path = the_default node_name (Resources.known_theory theory_name); |
|
70049 | 91 |
val _ = Resources.check_file ctxt (SOME Path.current) (Path.implode theory_path, pos); |
67215 | 92 |
in () end); |
93 |
||
94 |
val _ = |
|
70668 | 95 |
directories |> List.app (ignore o Resources.check_dir ctxt (SOME session_dir) o #1); |
96 |
||
97 |
val _ = |
|
67215 | 98 |
document_files |> List.app (fn (doc_dir, doc_files) => |
99 |
let |
|
70049 | 100 |
val dir = Resources.check_dir ctxt (SOME session_dir) doc_dir; |
101 |
val _ = List.app (ignore o Resources.check_file ctxt (SOME dir)) doc_files; |
|
67215 | 102 |
in () end); |
68292 | 103 |
|
104 |
val _ = |
|
69671 | 105 |
export_files |> List.app (fn ((export_dir, _), _) => |
70049 | 106 |
ignore (Resources.check_path ctxt (SOME session_dir) export_dir)); |
67215 | 107 |
in () end)); |
108 |
||
109 |
end; |
|
110 |
||
111 |
end; |