author | wenzelm |
Thu, 19 Jul 2012 16:09:48 +0200 | |
changeset 48351 | a0b95a762abb |
parent 48350 | 09bf3b73e446 |
child 48352 | 7fbf98ee265f |
permissions | -rw-r--r-- |
48276 | 1 |
/* Title: Pure/System/build.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Build and manage Isabelle sessions. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
48335 | 10 |
import java.io.File |
11 |
||
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
12 |
import scala.collection.mutable |
48340
6f4fc030882a
allow explicit specification of additional session directories;
wenzelm
parents:
48339
diff
changeset
|
13 |
import scala.annotation.tailrec |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
14 |
|
48335 | 15 |
|
48276 | 16 |
object Build |
17 |
{ |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
18 |
/** session information **/ |
48334 | 19 |
|
20 |
type Options = List[(String, Option[String])] |
|
21 |
||
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
22 |
object Session |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
23 |
{ |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
24 |
object Key |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
25 |
{ |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
26 |
object Ordering extends scala.math.Ordering[Key] |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
27 |
{ |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
28 |
def compare(key1: Key, key2: Key): Int = |
48350
09bf3b73e446
clarified topological ordering: preserve order of adjacency via reverse fold;
wenzelm
parents:
48349
diff
changeset
|
29 |
key1.order compare key2.order match { |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
30 |
case 0 => key1.name compare key2.name |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
31 |
case ord => ord |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
32 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
33 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
34 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
35 |
|
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
36 |
sealed case class Key(name: String, order: Int) |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
37 |
{ |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
38 |
override def toString: String = name |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
39 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
40 |
|
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
41 |
sealed case class Info( |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
42 |
dir: Path, |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
43 |
description: String, |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
44 |
options: Options, |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
45 |
theories: List[(Options, String)], |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
46 |
files: List[String]) |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
47 |
|
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
48 |
object Queue |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
49 |
{ |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
50 |
val empty: Queue = new Queue() |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
51 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
52 |
|
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
53 |
final class Queue private( |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
54 |
keys: Map[String, Key] = Map.empty, |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
55 |
graph: Graph[Key, Info] = Graph.empty(Key.Ordering)) |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
56 |
{ |
48351 | 57 |
def defined(name: String): Boolean = keys.isDefinedAt(name) |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
58 |
|
48351 | 59 |
def + (key: Key, info: Info, parent: Option[String]): Queue = |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
60 |
{ |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
61 |
val keys1 = |
48351 | 62 |
if (defined(key.name)) error("Duplicate session: " + quote(key.name)) |
63 |
else keys + (key.name -> key) |
|
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
64 |
|
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
65 |
val graph1 = |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
66 |
try { |
48351 | 67 |
graph.new_node(key, info).add_deps_acyclic(key, parent.toList.map(keys(_))) |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
68 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
69 |
catch { |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
70 |
case exn: Graph.Cycles[_] => |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
71 |
error(cat_lines(exn.cycles.map(cycle => |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
72 |
"Cyclic session dependency of " + |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
73 |
cycle.map(key => quote(key.toString)).mkString(" via ")))) |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
74 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
75 |
new Queue(keys1, graph1) |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
76 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
77 |
|
48351 | 78 |
def topological_order: List[(Key, Info)] = |
79 |
graph.topological_order.map(key => (key, graph.get_node(key))) |
|
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
80 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
81 |
} |
48334 | 82 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
83 |
|
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
84 |
/* parsing */ |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
85 |
|
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
86 |
val ROOT_NAME = "ROOT" |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
87 |
|
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
88 |
private case class Session_Entry( |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
89 |
name: String, |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
90 |
reset: Boolean, |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
91 |
order: Int, |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
92 |
path: Option[String], |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
93 |
parent: Option[String], |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
94 |
description: String, |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
95 |
options: Options, |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
96 |
theories: List[(Options, List[String])], |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
97 |
files: List[String]) |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
98 |
|
48334 | 99 |
private object Parser extends Parse.Parser |
100 |
{ |
|
101 |
val SESSION = "session" |
|
102 |
val IN = "in" |
|
103 |
val DESCRIPTION = "description" |
|
104 |
val OPTIONS = "options" |
|
105 |
val THEORIES = "theories" |
|
106 |
val FILES = "files" |
|
107 |
||
108 |
val syntax = |
|
48336 | 109 |
Outer_Syntax.empty + "!" + "(" + ")" + "+" + "," + "=" + "[" + "]" + |
110 |
SESSION + IN + DESCRIPTION + OPTIONS + THEORIES + FILES |
|
48334 | 111 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
112 |
val session_entry: Parser[Session_Entry] = |
48334 | 113 |
{ |
114 |
val session_name = atom("session name", _.is_name) |
|
115 |
val theory_name = atom("theory name", _.is_name) |
|
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
116 |
|
48334 | 117 |
val option = |
118 |
name ~ opt(keyword("=") ~! name ^^ { case _ ~ x => x }) ^^ { case x ~ y => (x, y) } |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
119 |
val options = keyword("[") ~> repsep(option, keyword(",")) <~ keyword("]") |
48334 | 120 |
|
121 |
val theories = |
|
122 |
keyword(THEORIES) ~! ((options | success(Nil)) ~ rep1(theory_name)) ^^ |
|
123 |
{ case _ ~ (x ~ y) => (x, y) } |
|
124 |
||
125 |
((keyword(SESSION) ~! session_name) ^^ { case _ ~ x => x }) ~ |
|
48336 | 126 |
(keyword("!") ^^^ true | success(false)) ~ |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
127 |
(keyword("(") ~! (nat <~ keyword(")")) ^^ { case _ ~ x => x } | success(Integer.MAX_VALUE)) ~ |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
128 |
(opt(keyword(IN) ~! string ^^ { case _ ~ x => x })) ~ |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
129 |
(keyword("=") ~> opt(session_name <~ keyword("+"))) ~ |
48334 | 130 |
(keyword(DESCRIPTION) ~! text ^^ { case _ ~ x => x } | success("")) ~ |
131 |
(keyword(OPTIONS) ~! options ^^ { case _ ~ x => x } | success(Nil)) ~ |
|
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
132 |
rep(theories) ~ |
48336 | 133 |
(keyword(FILES) ~! rep1(path) ^^ { case _ ~ x => x } | success(Nil)) ^^ |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
134 |
{ case a ~ b ~ c ~ d ~ e ~ f ~ g ~ h ~ i => Session_Entry(a, b, c, d, e, f, g, h, i) } |
48334 | 135 |
} |
136 |
||
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
137 |
def parse_entries(root: File): List[Session_Entry] = |
48334 | 138 |
{ |
48335 | 139 |
val toks = syntax.scan(Standard_System.read_file(root)) |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
140 |
parse_all(rep(session_entry), Token.reader(toks, root.toString)) match { |
48334 | 141 |
case Success(result, _) => result |
142 |
case bad => error(bad.toString) |
|
143 |
} |
|
144 |
} |
|
145 |
} |
|
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
146 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
147 |
|
48341 | 148 |
/* find sessions */ |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
149 |
|
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
150 |
def find_sessions(more_dirs: List[Path]): Session.Queue = |
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
151 |
{ |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
152 |
var sessions = Session.Queue.empty |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
153 |
|
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
154 |
for { |
48340
6f4fc030882a
allow explicit specification of additional session directories;
wenzelm
parents:
48339
diff
changeset
|
155 |
(dir, strict) <- Isabelle_System.components().map((_, false)) ++ more_dirs.map((_, true)) |
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
156 |
root = Isabelle_System.platform_file(dir + Path.basic(ROOT_NAME)) |
48340
6f4fc030882a
allow explicit specification of additional session directories;
wenzelm
parents:
48339
diff
changeset
|
157 |
_ = (strict && !root.isFile && error("Bad session root file: " + quote(root.toString))) |
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
158 |
if root.isFile |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
159 |
entry <- Parser.parse_entries(root) |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
160 |
} |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
161 |
{ |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
162 |
try { |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
163 |
if (entry.name == "") error("Bad session name") |
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
164 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
165 |
val full_name = |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
166 |
if (entry.name == "RAW" || entry.name == "Pure") { |
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
167 |
if (entry.parent.isDefined) error("Illegal parent session") |
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
168 |
else entry.name |
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
169 |
} |
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
170 |
else |
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
171 |
entry.parent match { |
48351 | 172 |
case Some(parent_name) if sessions.defined(parent_name) => |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
173 |
if (entry.reset) entry.name |
48351 | 174 |
else parent_name + "-" + entry.name |
175 |
case _ => error("Bad parent session") |
|
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
176 |
} |
48339 | 177 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
178 |
val path = |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
179 |
entry.path match { |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
180 |
case Some(p) => Path.explode(p) |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
181 |
case None => Path.basic(entry.name) |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
182 |
} |
48339 | 183 |
|
48351 | 184 |
val key = Session.Key(full_name, entry.order) |
185 |
val info = Session.Info(dir + path, entry.description, entry.options, |
|
186 |
entry.theories.map({ case (x, ys) => ys.map(y => (x, y)) }).flatten, entry.files) |
|
187 |
||
188 |
sessions += (key, info, entry.parent) |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
189 |
} |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
190 |
catch { |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
191 |
case ERROR(msg) => |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
192 |
error(msg + "\nThe error(s) above occurred in session entry " + |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
193 |
quote(entry.name) + " (file " + quote(root.toString) + ")") |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
194 |
} |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
195 |
} |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
196 |
sessions |
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
197 |
} |
48341 | 198 |
|
199 |
||
200 |
||
201 |
/** build **/ |
|
202 |
||
203 |
def build(all_sessions: Boolean, build_images: Boolean, list_only: Boolean, |
|
204 |
more_dirs: List[Path], options: List[String], sessions: List[String]): Int = |
|
205 |
{ |
|
206 |
println("more_dirs = " + more_dirs.toString) |
|
207 |
println("options = " + options.toString) |
|
208 |
println("sessions = " + sessions.toString) |
|
209 |
||
48351 | 210 |
for ((key, info) <- find_sessions(more_dirs).topological_order) |
211 |
println(key.name + " in " + info.dir) |
|
48341 | 212 |
|
213 |
0 |
|
214 |
} |
|
215 |
||
216 |
||
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
217 |
/* command line entry point */ |
48341 | 218 |
|
219 |
def main(args: Array[String]) |
|
220 |
{ |
|
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
221 |
Command_Line.tool { |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
222 |
args.toList match { |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
223 |
case |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
224 |
Properties.Value.Boolean(all_sessions) :: |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
225 |
Properties.Value.Boolean(build_images) :: |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
226 |
Properties.Value.Boolean(list_only) :: |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
227 |
Command_Line.Chunks(more_dirs, options, sessions) => |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
228 |
build(all_sessions, build_images, list_only, |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
229 |
more_dirs.map(Path.explode), options, sessions) |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
230 |
case _ => error("Bad arguments:\n" + cat_lines(args)) |
48341 | 231 |
} |
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
232 |
} |
48341 | 233 |
} |
48276 | 234 |
} |
235 |