author | wenzelm |
Sat, 13 Aug 2022 17:18:45 +0200 | |
changeset 75847 | 93436389db1c |
parent 75846 | d9926523855e |
child 76579 | c79b43c1c7ab |
permissions | -rw-r--r-- |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
1 |
/* Title: Pure/System/options.scala |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
3 |
|
51945 | 4 |
System options with external string representation. |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
5 |
*/ |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
6 |
|
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
7 |
package isabelle |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
8 |
|
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
9 |
|
75393 | 10 |
object Options { |
48421 | 11 |
type Spec = (String, Option[String]) |
12 |
||
13 |
val empty: Options = new Options() |
|
14 |
||
15 |
||
75847 | 16 |
/* typed access */ |
75842 | 17 |
|
75846 | 18 |
abstract class Access[A](val options: Options) { |
75842 | 19 |
def apply(name: String): A |
20 |
def update(name: String, x: A): Options |
|
75847 | 21 |
def change(name: String, f: A => A): Options = update(name, f(apply(name))) |
75842 | 22 |
} |
23 |
||
75847 | 24 |
class Access_Variable[A]( |
25 |
val options: Options_Variable, |
|
26 |
val pure_access: Options => Access[A] |
|
27 |
) { |
|
28 |
def apply(name: String): A = pure_access(options.value)(name) |
|
29 |
def update(name: String, x: A): Unit = |
|
30 |
options.change(options => pure_access(options).update(name, x)) |
|
31 |
def change(name: String, f: A => A): Unit = update(name, f(apply(name))) |
|
75842 | 32 |
} |
33 |
||
34 |
||
48421 | 35 |
/* representation */ |
36 |
||
75393 | 37 |
sealed abstract class Type { |
56599 | 38 |
def print: String = Word.lowercase(toString) |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
39 |
} |
49246 | 40 |
case object Bool extends Type |
41 |
case object Int extends Type |
|
42 |
case object Real extends Type |
|
43 |
case object String extends Type |
|
44 |
case object Unknown extends Type |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
45 |
|
56465 | 46 |
case class Opt( |
47 |
public: Boolean, |
|
48 |
pos: Position.T, |
|
49 |
name: String, |
|
50 |
typ: Type, |
|
51 |
value: String, |
|
52 |
default_value: String, |
|
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
53 |
standard_value: Option[String], |
56465 | 54 |
description: String, |
75393 | 55 |
section: String |
56 |
) { |
|
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
57 |
private def print_value(x: String): String = if (typ == Options.String) quote(x) else x |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
58 |
private def print_standard: String = |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
59 |
standard_value match { |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
60 |
case None => "" |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
61 |
case Some(s) if s == default_value => " (standard)" |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
62 |
case Some(s) => " (standard " + print_value(s) + ")" |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
63 |
} |
75393 | 64 |
private def print(default: Boolean): String = { |
49289 | 65 |
val x = if (default) default_value else value |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
66 |
"option " + name + " : " + typ.print + " = " + print_value(x) + print_standard + |
49289 | 67 |
(if (description == "") "" else "\n -- " + quote(description)) |
68 |
} |
|
69 |
||
70 |
def print: String = print(false) |
|
71 |
def print_default: String = print(true) |
|
49247 | 72 |
|
75393 | 73 |
def title(strip: String = ""): String = { |
56600 | 74 |
val words = Word.explode('_', name) |
49270 | 75 |
val words1 = |
76 |
words match { |
|
77 |
case word :: rest if word == strip => rest |
|
78 |
case _ => words |
|
79 |
} |
|
71601 | 80 |
Word.implode(words1.map(Word.perhaps_capitalize)) |
49270 | 81 |
} |
82 |
||
48860 | 83 |
def unknown: Boolean = typ == Unknown |
84 |
} |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
85 |
|
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
86 |
|
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
87 |
/* parsing */ |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
88 |
|
49270 | 89 |
private val SECTION = "section" |
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
51945
diff
changeset
|
90 |
private val PUBLIC = "public" |
48795
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48718
diff
changeset
|
91 |
private val OPTION = "option" |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
92 |
private val STANDARD = "standard" |
48807 | 93 |
private val OPTIONS = Path.explode("etc/options") |
67845 | 94 |
private val PREFS = Path.explode("$ISABELLE_HOME_USER/etc/preferences") |
48713
de26cf3191a3
more token markers, based on actual outer syntax;
wenzelm
parents:
48693
diff
changeset
|
95 |
|
71601 | 96 |
val options_syntax: Outer_Syntax = |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
97 |
Outer_Syntax.empty + ":" + "=" + "--" + "(" + ")" + |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
98 |
Symbol.comment + Symbol.comment_decoded + |
63441 | 99 |
(SECTION, Keyword.DOCUMENT_HEADING) + |
100 |
(PUBLIC, Keyword.BEFORE_COMMAND) + |
|
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
101 |
(OPTION, Keyword.THY_DECL) + |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
102 |
STANDARD |
49270 | 103 |
|
71601 | 104 |
val prefs_syntax: Outer_Syntax = Outer_Syntax.empty + "=" |
48713
de26cf3191a3
more token markers, based on actual outer syntax;
wenzelm
parents:
48693
diff
changeset
|
105 |
|
75405 | 106 |
trait Parsers extends Parse.Parsers { |
71601 | 107 |
val option_name: Parser[String] = atom("option name", _.is_name) |
108 |
val option_type: Parser[String] = atom("option type", _.is_name) |
|
109 |
val option_value: Parser[String] = |
|
48807 | 110 |
opt(token("-", tok => tok.is_sym_ident && tok.content == "-")) ~ atom("nat", _.is_nat) ^^ |
111 |
{ case s ~ n => if (s.isDefined) "-" + n else n } | |
|
112 |
atom("option value", tok => tok.is_name || tok.is_float) |
|
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
113 |
val option_standard: Parser[Option[String]] = |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
114 |
$$$("(") ~! $$$(STANDARD) ~ opt(option_value) ~ $$$(")") ^^ { case _ ~ _ ~ a ~ _ => a } |
62968 | 115 |
} |
48807 | 116 |
|
75405 | 117 |
private object Parsers extends Parsers { |
61579 | 118 |
def comment_marker: Parser[String] = |
119 |
$$$("--") | $$$(Symbol.comment) | $$$(Symbol.comment_decoded) |
|
120 |
||
75393 | 121 |
val option_entry: Parser[Options => Options] = { |
49270 | 122 |
command(SECTION) ~! text ^^ |
49295 | 123 |
{ case _ ~ a => (options: Options) => options.set_section(a) } | |
60133
a90982bbe8b4
clarified keywords for quasi-command spans and Sidekick structure;
wenzelm
parents:
59811
diff
changeset
|
124 |
opt($$$(PUBLIC)) ~ command(OPTION) ~! (position(option_name) ~ $$$(":") ~ option_type ~ |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
125 |
$$$("=") ~ option_value ~ opt(option_standard) ~ |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
126 |
(comment_marker ~! text ^^ { case _ ~ x => x } | success(""))) ^^ |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
127 |
{ case a ~ _ ~ ((b, pos) ~ _ ~ c ~ _ ~ d ~ e ~ f) => |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
128 |
(options: Options) => options.declare(a.isDefined, pos, b, c, d, e, f) } |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
129 |
} |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
130 |
|
75393 | 131 |
val prefs_entry: Parser[Options => Options] = { |
58908 | 132 |
option_name ~ ($$$("=") ~! option_value) ^^ |
48860 | 133 |
{ case a ~ (_ ~ b) => (options: Options) => options.add_permissive(a, b) } |
48807 | 134 |
} |
135 |
||
75393 | 136 |
def parse_file( |
137 |
options: Options, |
|
138 |
file_name: String, |
|
139 |
content: String, |
|
67845 | 140 |
syntax: Outer_Syntax = options_syntax, |
75393 | 141 |
parser: Parser[Options => Options] = option_entry |
142 |
): Options = { |
|
67845 | 143 |
val toks = Token.explode(syntax.keywords, content) |
48807 | 144 |
val ops = |
67845 | 145 |
parse_all(rep(parser), Token.reader(toks, Token.Pos.file(file_name))) match { |
48807 | 146 |
case Success(result, _) => result |
147 |
case bad => error(bad.toString) |
|
148 |
} |
|
73359 | 149 |
try { ops.foldLeft(options.set_section("")) { case (opts, op) => op(opts) } } |
73166 | 150 |
catch { case ERROR(msg) => error(msg + Position.here(Position.File(file_name))) } |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
151 |
} |
67845 | 152 |
|
153 |
def parse_prefs(options: Options, content: String): Options = |
|
69366 | 154 |
parse_file(options, PREFS.file_name, content, syntax = prefs_syntax, parser = prefs_entry) |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
155 |
} |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
156 |
|
67845 | 157 |
def read_prefs(file: Path = PREFS): String = |
158 |
if (file.is_file) File.read(file) else "" |
|
64186
49816908ae42
support for separate sub-system options, independent of main Isabelle options;
wenzelm
parents:
64151
diff
changeset
|
159 |
|
75393 | 160 |
def init(prefs: String = read_prefs(PREFS), opts: List[String] = Nil): Options = { |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
161 |
var options = empty |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
162 |
for { |
73815 | 163 |
dir <- Components.directories() |
48548 | 164 |
file = dir + OPTIONS if file.is_file |
75405 | 165 |
} { options = Parsers.parse_file(options, file.implode, File.read(file)) } |
166 |
opts.foldLeft(Parsers.parse_prefs(options, prefs))(_ + _) |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
167 |
} |
48457 | 168 |
|
169 |
||
62832 | 170 |
/* Isabelle tool wrapper */ |
48693
ceeea46bdeba
"isabelle options" prints Isabelle system options;
wenzelm
parents:
48605
diff
changeset
|
171 |
|
72763 | 172 |
val isabelle_tool = Isabelle_Tool("options", "print Isabelle system options", |
75394 | 173 |
Scala_Project.here, |
174 |
{ args => |
|
175 |
var build_options = false |
|
176 |
var get_option = "" |
|
177 |
var list_options = false |
|
178 |
var export_file = "" |
|
62437 | 179 |
|
75394 | 180 |
val getopts = Getopts(""" |
62437 | 181 |
Usage: isabelle options [OPTIONS] [MORE_OPTIONS ...] |
48693
ceeea46bdeba
"isabelle options" prints Isabelle system options;
wenzelm
parents:
48605
diff
changeset
|
182 |
|
62437 | 183 |
Options are: |
184 |
-b include $ISABELLE_BUILD_OPTIONS |
|
185 |
-g OPTION get value of OPTION |
|
186 |
-l list options |
|
187 |
-x FILE export options to FILE in YXML format |
|
188 |
||
189 |
Report Isabelle system options, augmented by MORE_OPTIONS given as |
|
190 |
arguments NAME=VAL or NAME. |
|
191 |
""", |
|
75394 | 192 |
"b" -> (_ => build_options = true), |
193 |
"g:" -> (arg => get_option = arg), |
|
194 |
"l" -> (_ => list_options = true), |
|
195 |
"x:" -> (arg => export_file = arg)) |
|
52737
7b396ef36af6
clarified meaning of options for "isabelle options";
wenzelm
parents:
52735
diff
changeset
|
196 |
|
75394 | 197 |
val more_options = getopts(args) |
198 |
if (get_option == "" && !list_options && export_file == "") getopts.usage() |
|
52737
7b396ef36af6
clarified meaning of options for "isabelle options";
wenzelm
parents:
52735
diff
changeset
|
199 |
|
75394 | 200 |
val options = { |
201 |
val options0 = Options.init() |
|
202 |
val options1 = |
|
203 |
if (build_options) |
|
204 |
Word.explode(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS")).foldLeft(options0)(_ + _) |
|
205 |
else options0 |
|
206 |
more_options.foldLeft(options1)(_ + _) |
|
207 |
} |
|
48693
ceeea46bdeba
"isabelle options" prints Isabelle system options;
wenzelm
parents:
48605
diff
changeset
|
208 |
|
75394 | 209 |
if (get_option != "") |
210 |
Output.writeln(options.check_name(get_option).value, stdout = true) |
|
62437 | 211 |
|
75394 | 212 |
if (export_file != "") |
213 |
File.write(Path.explode(export_file), YXML.string_of_body(options.encode)) |
|
62437 | 214 |
|
75394 | 215 |
if (get_option == "" && export_file == "") |
216 |
Output.writeln(options.print, stdout = true) |
|
217 |
}) |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
218 |
} |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
219 |
|
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
220 |
|
49270 | 221 |
final class Options private( |
75844
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
222 |
options: Map[String, Options.Opt] = Map.empty, |
75393 | 223 |
val section: String = "" |
224 |
) { |
|
75844
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
225 |
def opt_iterator: Iterator[(String, Options.Opt)] = options.iterator |
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
226 |
|
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
227 |
override def toString: String = opt_iterator.mkString("Options(", ",", ")") |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
228 |
|
54347 | 229 |
private def print_opt(opt: Options.Opt): String = |
230 |
if (opt.public) "public " + opt.print else opt.print |
|
231 |
||
75844
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
232 |
def print: String = cat_lines(opt_iterator.toList.sortBy(_._1).map(p => print_opt(p._2))) |
48693
ceeea46bdeba
"isabelle options" prints Isabelle system options;
wenzelm
parents:
48605
diff
changeset
|
233 |
|
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
234 |
def description(name: String): String = check_name(name).description |
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
235 |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
236 |
|
48370 | 237 |
/* check */ |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
238 |
|
75844
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
239 |
def get(name: String): Option[Options.Opt] = options.get(name) |
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
240 |
|
49246 | 241 |
def check_name(name: String): Options.Opt = |
75844
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
242 |
get(name) match { |
48860 | 243 |
case Some(opt) if !opt.unknown => opt |
244 |
case _ => error("Unknown option " + quote(name)) |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
245 |
} |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
246 |
|
75393 | 247 |
private def check_type(name: String, typ: Options.Type): Options.Opt = { |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
248 |
val opt = check_name(name) |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
249 |
if (opt.typ == typ) opt |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
250 |
else error("Ill-typed option " + quote(name) + " : " + opt.typ.print + " vs. " + typ.print) |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
251 |
} |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
252 |
|
48370 | 253 |
|
254 |
/* basic operations */ |
|
255 |
||
75843 | 256 |
private def put(name: String, typ: Options.Type, value: String): Options = { |
48370 | 257 |
val opt = check_type(name, typ) |
49270 | 258 |
new Options(options + (name -> opt.copy(value = value)), section) |
48370 | 259 |
} |
260 |
||
75393 | 261 |
private def get[A](name: String, typ: Options.Type, parse: String => Option[A]): A = { |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
262 |
val opt = check_type(name, typ) |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
263 |
parse(opt.value) match { |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
264 |
case Some(x) => x |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
265 |
case None => |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
266 |
error("Malformed value for option " + quote(name) + |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
267 |
" : " + typ.print + " =\n" + quote(opt.value)) |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
268 |
} |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
269 |
} |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
270 |
|
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
271 |
|
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
272 |
/* internal lookup and update */ |
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
273 |
|
75846 | 274 |
val bool: Options.Access[Boolean] = |
275 |
new Options.Access[Boolean](this) { |
|
276 |
def apply(name: String): Boolean = get(name, Options.Bool, Value.Boolean.unapply) |
|
277 |
def update(name: String, x: Boolean): Options = put(name, Options.Bool, Value.Boolean(x)) |
|
278 |
} |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
279 |
|
75846 | 280 |
val int: Options.Access[Int] = |
281 |
new Options.Access[Int](this) { |
|
282 |
def apply(name: String): Int = get(name, Options.Int, Value.Int.unapply) |
|
283 |
def update(name: String, x: Int): Options = put(name, Options.Int, Value.Int(x)) |
|
284 |
} |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
285 |
|
75846 | 286 |
val real: Options.Access[Double] = |
287 |
new Options.Access[Double](this) { |
|
288 |
def apply(name: String): Double = get(name, Options.Real, Value.Double.unapply) |
|
289 |
def update(name: String, x: Double): Options = put(name, Options.Real, Value.Double(x)) |
|
290 |
} |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
291 |
|
75846 | 292 |
val string: Options.Access[String] = |
293 |
new Options.Access[String](this) { |
|
294 |
def apply(name: String): String = get(name, Options.String, Some(_)) |
|
295 |
def update(name: String, x: String): Options = put(name, Options.String, x) |
|
296 |
} |
|
48370 | 297 |
|
69074 | 298 |
def proper_string(name: String): Option[String] = |
299 |
Library.proper_string(string(name)) |
|
300 |
||
69073 | 301 |
def seconds(name: String): Time = Time.seconds(real(name)) |
50207 | 302 |
|
48370 | 303 |
|
48807 | 304 |
/* external updates */ |
48370 | 305 |
|
75393 | 306 |
private def check_value(name: String): Options = { |
48370 | 307 |
val opt = check_name(name) |
308 |
opt.typ match { |
|
309 |
case Options.Bool => bool(name); this |
|
310 |
case Options.Int => int(name); this |
|
311 |
case Options.Real => real(name); this |
|
312 |
case Options.String => string(name); this |
|
48860 | 313 |
case Options.Unknown => this |
48370 | 314 |
} |
315 |
} |
|
316 |
||
56465 | 317 |
def declare( |
318 |
public: Boolean, |
|
319 |
pos: Position.T, |
|
320 |
name: String, |
|
321 |
typ_name: String, |
|
322 |
value: String, |
|
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
323 |
standard: Option[Option[String]], |
75393 | 324 |
description: String |
325 |
): Options = { |
|
75844
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
326 |
get(name) match { |
56465 | 327 |
case Some(other) => |
328 |
error("Duplicate declaration of option " + quote(name) + Position.here(pos) + |
|
329 |
Position.here(other.pos)) |
|
48370 | 330 |
case None => |
331 |
val typ = |
|
332 |
typ_name match { |
|
333 |
case "bool" => Options.Bool |
|
334 |
case "int" => Options.Int |
|
335 |
case "real" => Options.Real |
|
336 |
case "string" => Options.String |
|
56465 | 337 |
case _ => |
338 |
error("Unknown type for option " + quote(name) + " : " + quote(typ_name) + |
|
339 |
Position.here(pos)) |
|
48370 | 340 |
} |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
341 |
val standard_value = |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
342 |
standard match { |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
343 |
case None => None |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
344 |
case Some(_) if typ == Options.Bool => |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
345 |
error("Illegal standard value for option " + quote(name) + " : " + typ_name + |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
346 |
Position.here) |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
347 |
case Some(s) => Some(s.getOrElse(value)) |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
348 |
} |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
349 |
val opt = |
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
350 |
Options.Opt(public, pos, name, typ, value, value, standard_value, description, section) |
49270 | 351 |
(new Options(options + (name -> opt), section)).check_value(name) |
48370 | 352 |
} |
353 |
} |
|
354 |
||
75393 | 355 |
def add_permissive(name: String, value: String): Options = { |
48860 | 356 |
if (options.isDefinedAt(name)) this + (name, value) |
56465 | 357 |
else { |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
358 |
val opt = Options.Opt(false, Position.none, name, Options.Unknown, value, value, None, "", "") |
56465 | 359 |
new Options(options + (name -> opt), section) |
360 |
} |
|
48860 | 361 |
} |
362 |
||
75393 | 363 |
def + (name: String, value: String): Options = { |
48370 | 364 |
val opt = check_name(name) |
49270 | 365 |
(new Options(options + (name -> opt.copy(value = value)), section)).check_value(name) |
48370 | 366 |
} |
367 |
||
75393 | 368 |
def + (name: String, opt_value: Option[String]): Options = { |
48370 | 369 |
val opt = check_name(name) |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
370 |
opt_value orElse opt.standard_value match { |
48807 | 371 |
case Some(value) => this + (name, value) |
74827
c1b5d6e6ff74
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents:
74144
diff
changeset
|
372 |
case None if opt.typ == Options.Bool => this + (name, "true") |
48370 | 373 |
case None => error("Missing value for option " + quote(name) + " : " + opt.typ.print) |
374 |
} |
|
375 |
} |
|
376 |
||
48807 | 377 |
def + (str: String): Options = |
73712 | 378 |
str match { |
73715
bf51c23f3f99
clarified signature -- avoid odd warning about scala/bug#6675;
wenzelm
parents:
73712
diff
changeset
|
379 |
case Properties.Eq(a, b) => this + (a, b) |
73712 | 380 |
case _ => this + (str, None) |
48370 | 381 |
} |
48456
d8ff14f44a40
added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
48421
diff
changeset
|
382 |
|
48807 | 383 |
def ++ (specs: List[Options.Spec]): Options = |
73359 | 384 |
specs.foldLeft(this) { case (x, (y, z)) => x + (y, z) } |
48807 | 385 |
|
48456
d8ff14f44a40
added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
48421
diff
changeset
|
386 |
|
49270 | 387 |
/* sections */ |
388 |
||
389 |
def set_section(new_section: String): Options = |
|
390 |
new Options(options, new_section) |
|
391 |
||
392 |
def sections: List[(String, List[Options.Opt])] = |
|
393 |
options.groupBy(_._2.section).toList.map({ case (a, opts) => (a, opts.toList.map(_._2)) }) |
|
394 |
||
395 |
||
48456
d8ff14f44a40
added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
48421
diff
changeset
|
396 |
/* encode */ |
d8ff14f44a40
added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
48421
diff
changeset
|
397 |
|
75393 | 398 |
def encode: XML.Body = { |
48860 | 399 |
val opts = |
56465 | 400 |
for ((_, opt) <- options.toList; if !opt.unknown) |
401 |
yield (opt.pos, (opt.name, (opt.typ.print, opt.value))) |
|
48860 | 402 |
|
56465 | 403 |
import XML.Encode.{string => string_, _} |
404 |
list(pair(properties, pair(string_, pair(string_, string_))))(opts) |
|
48456
d8ff14f44a40
added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
48421
diff
changeset
|
405 |
} |
48807 | 406 |
|
407 |
||
67845 | 408 |
/* save preferences */ |
48807 | 409 |
|
75393 | 410 |
def save_prefs(file: Path = Options.PREFS): Unit = { |
67845 | 411 |
val defaults: Options = Options.init(prefs = "") |
48807 | 412 |
val changed = |
413 |
(for { |
|
48860 | 414 |
(name, opt2) <- options.iterator |
75844
7d27944d7141
clarified signature: avoid public representation;
wenzelm
parents:
75843
diff
changeset
|
415 |
opt1 = defaults.get(name) |
60215 | 416 |
if opt1.isEmpty || opt1.get.value != opt2.value |
48860 | 417 |
} yield (name, opt2.value, if (opt1.isEmpty) " (* unknown *)" else "")).toList |
418 |
||
48807 | 419 |
val prefs = |
420 |
changed.sortBy(_._1) |
|
48860 | 421 |
.map({ case (x, y, z) => x + " = " + Outer_Syntax.quote_string(y) + z + "\n" }).mkString |
48807 | 422 |
|
72375 | 423 |
Isabelle_System.make_directory(file.dir) |
67845 | 424 |
File.write_backup(file, "(* generated by Isabelle " + Date.now() + " *)\n\n" + prefs) |
48807 | 425 |
} |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
diff
changeset
|
426 |
} |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
427 |
|
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
428 |
|
75393 | 429 |
class Options_Variable(init_options: Options) { |
75846 | 430 |
private var _options = init_options |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
431 |
|
75846 | 432 |
def value: Options = synchronized { _options } |
433 |
def change(f: Options => Options): Unit = synchronized { _options = f(_options) } |
|
434 |
def += (name: String, x: String): Unit = change(options => options + (name, x)) |
|
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
435 |
|
75846 | 436 |
val bool: Options.Access_Variable[Boolean] = |
75847 | 437 |
new Options.Access_Variable[Boolean](this, _.bool) |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
438 |
|
75846 | 439 |
val int: Options.Access_Variable[Int] = |
75847 | 440 |
new Options.Access_Variable[Int](this, _.int) |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
441 |
|
75846 | 442 |
val real: Options.Access_Variable[Double] = |
75847 | 443 |
new Options.Access_Variable[Double](this, _.real) |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
444 |
|
75846 | 445 |
val string: Options.Access_Variable[String] = |
75847 | 446 |
new Options.Access_Variable[String](this, _.string) |
50207 | 447 |
|
69074 | 448 |
def proper_string(name: String): Option[String] = |
449 |
Library.proper_string(string(name)) |
|
450 |
||
69073 | 451 |
def seconds(name: String): Time = value.seconds(name) |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
48992
diff
changeset
|
452 |
} |