src/Pure/System/options.scala
author wenzelm
Sun, 21 Nov 2021 17:42:11 +0100
changeset 74827 c1b5d6e6ff74
parent 74144 f9f6a31cc99c
child 75393 87ebf5a50283
permissions -rw-r--r--
clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
5b1ac9843f02 tuned comments;
wenzelm
parents: 51620
diff changeset
     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
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    10
object Options
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    11
{
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48411
diff changeset
    12
  type Spec = (String, Option[String])
c4d337782de4 propagate defined options;
wenzelm
parents: 48411
diff changeset
    13
c4d337782de4 propagate defined options;
wenzelm
parents: 48411
diff changeset
    14
  val empty: Options = new Options()
c4d337782de4 propagate defined options;
wenzelm
parents: 48411
diff changeset
    15
c4d337782de4 propagate defined options;
wenzelm
parents: 48411
diff changeset
    16
c4d337782de4 propagate defined options;
wenzelm
parents: 48411
diff changeset
    17
  /* representation */
c4d337782de4 propagate defined options;
wenzelm
parents: 48411
diff changeset
    18
c4d337782de4 propagate defined options;
wenzelm
parents: 48411
diff changeset
    19
  sealed abstract class Type
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    20
  {
56599
c4424d8c890f tuned signature -- separate module Word;
wenzelm
parents: 56559
diff changeset
    21
    def print: String = Word.lowercase(toString)
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    22
  }
49246
248e66e8321f more systematic JEdit_Options.make_component;
wenzelm
parents: 49245
diff changeset
    23
  case object Bool extends Type
248e66e8321f more systematic JEdit_Options.make_component;
wenzelm
parents: 49245
diff changeset
    24
  case object Int extends Type
248e66e8321f more systematic JEdit_Options.make_component;
wenzelm
parents: 49245
diff changeset
    25
  case object Real extends Type
248e66e8321f more systematic JEdit_Options.make_component;
wenzelm
parents: 49245
diff changeset
    26
  case object String extends Type
248e66e8321f more systematic JEdit_Options.make_component;
wenzelm
parents: 49245
diff changeset
    27
  case object Unknown extends Type
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    28
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    29
  case class Opt(
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    30
    public: Boolean,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    31
    pos: Position.T,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    32
    name: String,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    33
    typ: Type,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    34
    value: String,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    35
    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
    36
    standard_value: Option[String],
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    37
    description: String,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
    38
    section: String)
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
    39
  {
74827
c1b5d6e6ff74 clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents: 74144
diff changeset
    40
    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
    41
    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
    42
      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
    43
        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
    44
        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
    45
        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
    46
      }
49289
60424f123621 more informative tooltip: default value;
wenzelm
parents: 49270
diff changeset
    47
    private def print(default: Boolean): String =
60424f123621 more informative tooltip: default value;
wenzelm
parents: 49270
diff changeset
    48
    {
60424f123621 more informative tooltip: default value;
wenzelm
parents: 49270
diff changeset
    49
      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
    50
      "option " + name + " : " + typ.print + " = " + print_value(x) + print_standard +
49289
60424f123621 more informative tooltip: default value;
wenzelm
parents: 49270
diff changeset
    51
        (if (description == "") "" else "\n  -- " + quote(description))
60424f123621 more informative tooltip: default value;
wenzelm
parents: 49270
diff changeset
    52
    }
60424f123621 more informative tooltip: default value;
wenzelm
parents: 49270
diff changeset
    53
60424f123621 more informative tooltip: default value;
wenzelm
parents: 49270
diff changeset
    54
    def print: String = print(false)
60424f123621 more informative tooltip: default value;
wenzelm
parents: 49270
diff changeset
    55
    def print_default: String = print(true)
49247
ffd9ad9dc35b more detailed option tooltip;
wenzelm
parents: 49246
diff changeset
    56
56559
eece73c31e38 added dictionaries_selector GUI;
wenzelm
parents: 56552
diff changeset
    57
    def title(strip: String = ""): String =
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    58
    {
56600
628e039cc34d more specific support for sequence of words;
wenzelm
parents: 56599
diff changeset
    59
      val words = Word.explode('_', name)
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    60
      val words1 =
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    61
        words match {
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    62
          case word :: rest if word == strip => rest
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    63
          case _ => words
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    64
        }
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69366
diff changeset
    65
      Word.implode(words1.map(Word.perhaps_capitalize))
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    66
    }
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    67
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
    68
    def unknown: Boolean = typ == Unknown
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
    69
  }
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    70
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    71
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    72
  /* parsing */
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    73
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    74
  private val SECTION = "section"
52065
78f2475aa126 explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents: 51945
diff changeset
    75
  private val PUBLIC = "public"
48795
bece259ee055 clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents: 48718
diff changeset
    76
  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
    77
  private val STANDARD = "standard"
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
    78
  private val OPTIONS = Path.explode("etc/options")
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
    79
  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
    80
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69366
diff changeset
    81
  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
    82
    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
    83
      Symbol.comment + Symbol.comment_decoded +
63441
4c3fa4dba79f explicit kind "before_command";
wenzelm
parents: 62968
diff changeset
    84
      (SECTION, Keyword.DOCUMENT_HEADING) +
4c3fa4dba79f explicit kind "before_command";
wenzelm
parents: 62968
diff changeset
    85
      (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
    86
      (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
    87
      STANDARD
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
    88
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69366
diff changeset
    89
  val prefs_syntax: Outer_Syntax = Outer_Syntax.empty + "="
48713
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48693
diff changeset
    90
62968
4e4738698db4 clarified syntax;
wenzelm
parents: 62832
diff changeset
    91
  trait Parser extends Parse.Parser
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
    92
  {
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69366
diff changeset
    93
    val option_name: Parser[String] = atom("option name", _.is_name)
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69366
diff changeset
    94
    val option_type: Parser[String] = atom("option type", _.is_name)
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69366
diff changeset
    95
    val option_value: Parser[String] =
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
    96
      opt(token("-", tok => tok.is_sym_ident && tok.content == "-")) ~ atom("nat", _.is_nat) ^^
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
    97
        { case s ~ n => if (s.isDefined) "-" + n else n } |
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
    98
      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
    99
    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
   100
      $$$("(") ~! $$$(STANDARD) ~ opt(option_value) ~ $$$(")") ^^ { case _ ~ _ ~ a ~ _ => a }
62968
4e4738698db4 clarified syntax;
wenzelm
parents: 62832
diff changeset
   101
  }
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   102
68841
252b43600737 clarified signature;
wenzelm
parents: 67847
diff changeset
   103
  private object Parser extends Parser
62968
4e4738698db4 clarified syntax;
wenzelm
parents: 62832
diff changeset
   104
  {
61579
634cd44bb1d3 symbolic syntax "\<comment> text";
wenzelm
parents: 60215
diff changeset
   105
    def comment_marker: Parser[String] =
634cd44bb1d3 symbolic syntax "\<comment> text";
wenzelm
parents: 60215
diff changeset
   106
      $$$("--") | $$$(Symbol.comment) | $$$(Symbol.comment_decoded)
634cd44bb1d3 symbolic syntax "\<comment> text";
wenzelm
parents: 60215
diff changeset
   107
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   108
    val option_entry: Parser[Options => Options] =
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   109
    {
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   110
      command(SECTION) ~! text ^^
49295
2750756db9c5 more precise sections;
wenzelm
parents: 49289
diff changeset
   111
        { case _ ~ a => (options: Options) => options.set_section(a) } |
60133
a90982bbe8b4 clarified keywords for quasi-command spans and Sidekick structure;
wenzelm
parents: 59811
diff changeset
   112
      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
   113
      $$$("=") ~ 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
   114
        (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
   115
        { 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
   116
            (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
   117
    }
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   118
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   119
    val prefs_entry: Parser[Options => Options] =
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   120
    {
58908
58bedbc18915 tuned signature;
wenzelm
parents: 58868
diff changeset
   121
      option_name ~ ($$$("=") ~! option_value) ^^
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   122
      { case a ~ (_ ~ b) => (options: Options) => options.add_permissive(a, b) }
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   123
    }
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   124
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   125
    def parse_file(options: Options, file_name: String, content: String,
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   126
      syntax: Outer_Syntax = options_syntax,
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   127
      parser: Parser[Options => Options] = option_entry): Options =
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   128
    {
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   129
      val toks = Token.explode(syntax.keywords, content)
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   130
      val ops =
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   131
        parse_all(rep(parser), Token.reader(toks, Token.Pos.file(file_name))) match {
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   132
          case Success(result, _) => result
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   133
          case bad => error(bad.toString)
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   134
        }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   135
      try { ops.foldLeft(options.set_section("")) { case (opts, op) => op(opts) } }
73166
78dd1abfbbe1 proper message;
wenzelm
parents: 72763
diff changeset
   136
      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
   137
    }
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   138
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   139
    def parse_prefs(options: Options, content: String): Options =
69366
b6dacf6eabe3 clarified signature;
wenzelm
parents: 69074
diff changeset
   140
      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
   141
  }
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   142
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   143
  def read_prefs(file: Path = PREFS): String =
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   144
    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
   145
67847
c61acb4855b6 tuned signature;
wenzelm
parents: 67845
diff changeset
   146
  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
   147
  {
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   148
    var options = empty
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   149
    for {
73815
43882e34c038 clarified modules;
wenzelm
parents: 73715
diff changeset
   150
      dir <- Components.directories()
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48457
diff changeset
   151
      file = dir + OPTIONS if file.is_file
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   152
    } { options = Parser.parse_file(options, file.implode, File.read(file)) }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   153
    opts.foldLeft(Options.Parser.parse_prefs(options, prefs))(_ + _)
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   154
  }
48457
fd9e28d5a143 pass build options to ML;
wenzelm
parents: 48456
diff changeset
   155
fd9e28d5a143 pass build options to ML;
wenzelm
parents: 48456
diff changeset
   156
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   157
  /* Isabelle tool wrapper */
48693
ceeea46bdeba "isabelle options" prints Isabelle system options;
wenzelm
parents: 48605
diff changeset
   158
72763
3cc73d00553c added document antiquotation @{tool};
wenzelm
parents: 72375
diff changeset
   159
  val isabelle_tool = Isabelle_Tool("options", "print Isabelle system options",
3cc73d00553c added document antiquotation @{tool};
wenzelm
parents: 72375
diff changeset
   160
    Scala_Project.here, args =>
48693
ceeea46bdeba "isabelle options" prints Isabelle system options;
wenzelm
parents: 48605
diff changeset
   161
  {
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   162
    var build_options = false
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   163
    var get_option = ""
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   164
    var list_options = false
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   165
    var export_file = ""
62437
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   166
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   167
    val getopts = Getopts("""
62437
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   168
Usage: isabelle options [OPTIONS] [MORE_OPTIONS ...]
48693
ceeea46bdeba "isabelle options" prints Isabelle system options;
wenzelm
parents: 48605
diff changeset
   169
62437
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   170
  Options are:
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   171
    -b           include $ISABELLE_BUILD_OPTIONS
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   172
    -g OPTION    get value of OPTION
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   173
    -l           list options
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   174
    -x FILE      export options to FILE in YXML format
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   175
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   176
  Report Isabelle system options, augmented by MORE_OPTIONS given as
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   177
  arguments NAME=VAL or NAME.
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   178
""",
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   179
      "b" -> (_ => build_options = true),
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   180
      "g:" -> (arg => get_option = arg),
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   181
      "l" -> (_ => list_options = true),
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   182
      "x:" -> (arg => export_file = arg))
52737
7b396ef36af6 clarified meaning of options for "isabelle options";
wenzelm
parents: 52735
diff changeset
   183
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   184
    val more_options = getopts(args)
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   185
    if (get_option == "" && !list_options && export_file == "") getopts.usage()
52737
7b396ef36af6 clarified meaning of options for "isabelle options";
wenzelm
parents: 52735
diff changeset
   186
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   187
    val options =
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   188
    {
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   189
      val options0 = Options.init()
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   190
      val options1 =
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   191
        if (build_options)
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   192
          Word.explode(Isabelle_System.getenv("ISABELLE_BUILD_OPTIONS")).foldLeft(options0)(_ + _)
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   193
        else options0
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   194
      more_options.foldLeft(options1)(_ + _)
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   195
    }
48693
ceeea46bdeba "isabelle options" prints Isabelle system options;
wenzelm
parents: 48605
diff changeset
   196
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   197
    if (get_option != "")
67178
70576478bda9 avoid println with its extra CR on Windows;
wenzelm
parents: 67004
diff changeset
   198
      Output.writeln(options.check_name(get_option).value, stdout = true)
62437
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   199
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   200
    if (export_file != "")
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   201
      File.write(Path.explode(export_file), YXML.string_of_body(options.encode))
62437
bccad0374407 moved getopts to Scala;
wenzelm
parents: 62227
diff changeset
   202
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   203
    if (get_option == "" && export_file == "")
67178
70576478bda9 avoid println with its extra CR on Windows;
wenzelm
parents: 67004
diff changeset
   204
      Output.writeln(options.print, stdout = true)
62832
c1410bcf6e87 prefer internal tool;
wenzelm
parents: 62454
diff changeset
   205
  })
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   206
}
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   207
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   208
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   209
final class Options private(
49296
313369027391 some GUI support for color options;
wenzelm
parents: 49295
diff changeset
   210
  val options: Map[String, Options.Opt] = Map.empty,
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   211
  val section: String = "")
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   212
{
64186
49816908ae42 support for separate sub-system options, independent of main Isabelle options;
wenzelm
parents: 64151
diff changeset
   213
  override def toString: String = options.iterator.mkString("Options(", ",", ")")
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   214
54347
d5589530f3ba clarified isabelle options -l;
wenzelm
parents: 53336
diff changeset
   215
  private def print_opt(opt: Options.Opt): String =
d5589530f3ba clarified isabelle options -l;
wenzelm
parents: 53336
diff changeset
   216
    if (opt.public) "public " + opt.print else opt.print
d5589530f3ba clarified isabelle options -l;
wenzelm
parents: 53336
diff changeset
   217
d5589530f3ba clarified isabelle options -l;
wenzelm
parents: 53336
diff changeset
   218
  def print: String = cat_lines(options.toList.sortBy(_._1).map(p => print_opt(p._2)))
48693
ceeea46bdeba "isabelle options" prints Isabelle system options;
wenzelm
parents: 48605
diff changeset
   219
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   220
  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
   221
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   222
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   223
  /* check */
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   224
49246
248e66e8321f more systematic JEdit_Options.make_component;
wenzelm
parents: 49245
diff changeset
   225
  def check_name(name: String): Options.Opt =
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   226
    options.get(name) match {
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   227
      case Some(opt) if !opt.unknown => opt
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   228
      case _ => error("Unknown option " + quote(name))
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   229
    }
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   230
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   231
  private def check_type(name: String, typ: Options.Type): Options.Opt =
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   232
  {
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   233
    val opt = check_name(name)
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   234
    if (opt.typ == typ) opt
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   235
    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
   236
  }
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   237
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   238
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   239
  /* basic operations */
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   240
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   241
  private def put[A](name: String, typ: Options.Type, value: String): Options =
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   242
  {
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   243
    val opt = check_type(name, typ)
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   244
    new Options(options + (name -> opt.copy(value = value)), section)
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   245
  }
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   246
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   247
  private def get[A](name: String, typ: Options.Type, parse: String => Option[A]): A =
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   248
  {
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   249
    val opt = check_type(name, typ)
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   250
    parse(opt.value) match {
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   251
      case Some(x) => x
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   252
      case None =>
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   253
        error("Malformed value for option " + quote(name) +
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   254
          " : " + typ.print + " =\n" + quote(opt.value))
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   255
    }
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   256
  }
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   257
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   258
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   259
  /* internal lookup and update */
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   260
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   261
  class Bool_Access
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   262
  {
63805
c272680df665 clarified modules;
wenzelm
parents: 63441
diff changeset
   263
    def apply(name: String): Boolean = get(name, Options.Bool, Value.Boolean.unapply)
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   264
    def update(name: String, x: Boolean): Options =
63805
c272680df665 clarified modules;
wenzelm
parents: 63441
diff changeset
   265
      put(name, Options.Bool, Value.Boolean(x))
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   266
  }
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   267
  val bool = new Bool_Access
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   268
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   269
  class Int_Access
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   270
  {
63805
c272680df665 clarified modules;
wenzelm
parents: 63441
diff changeset
   271
    def apply(name: String): Int = get(name, Options.Int, Value.Int.unapply)
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   272
    def update(name: String, x: Int): Options =
63805
c272680df665 clarified modules;
wenzelm
parents: 63441
diff changeset
   273
      put(name, Options.Int, Value.Int(x))
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   274
  }
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   275
  val int = new Int_Access
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   276
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   277
  class Real_Access
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   278
  {
63805
c272680df665 clarified modules;
wenzelm
parents: 63441
diff changeset
   279
    def apply(name: String): Double = get(name, Options.Real, Value.Double.unapply)
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   280
    def update(name: String, x: Double): Options =
63805
c272680df665 clarified modules;
wenzelm
parents: 63441
diff changeset
   281
      put(name, Options.Real, Value.Double(x))
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   282
  }
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   283
  val real = new Real_Access
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   284
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   285
  class String_Access
48365
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   286
  {
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   287
    def apply(name: String): String = get(name, Options.String, s => Some(s))
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   288
    def update(name: String, x: String): Options = put(name, Options.String, x)
d88aefda01c4 basic support for stand-alone options with external string representation;
wenzelm
parents:
diff changeset
   289
  }
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   290
  val string = new String_Access
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   291
69074
787f3db8e313 tuned signature;
wenzelm
parents: 69073
diff changeset
   292
  def proper_string(name: String): Option[String] =
787f3db8e313 tuned signature;
wenzelm
parents: 69073
diff changeset
   293
    Library.proper_string(string(name))
787f3db8e313 tuned signature;
wenzelm
parents: 69073
diff changeset
   294
69073
d05defa39e3d tuned signature;
wenzelm
parents: 68841
diff changeset
   295
  def seconds(name: String): Time = Time.seconds(real(name))
50207
54be125d8cdc tuned signature;
wenzelm
parents: 49954
diff changeset
   296
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   297
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   298
  /* external updates */
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   299
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   300
  private def check_value(name: String): Options =
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   301
  {
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   302
    val opt = check_name(name)
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   303
    opt.typ match {
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   304
      case Options.Bool => bool(name); this
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   305
      case Options.Int => int(name); this
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   306
      case Options.Real => real(name); this
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   307
      case Options.String => string(name); this
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   308
      case Options.Unknown => this
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   309
    }
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   310
  }
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   311
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   312
  def declare(
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   313
    public: Boolean,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   314
    pos: Position.T,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   315
    name: String,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   316
    typ_name: String,
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   317
    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
   318
    standard: Option[Option[String]],
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   319
    description: String): Options =
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   320
  {
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   321
    options.get(name) match {
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   322
      case Some(other) =>
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   323
        error("Duplicate declaration of option " + quote(name) + Position.here(pos) +
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   324
          Position.here(other.pos))
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   325
      case None =>
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   326
        val typ =
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   327
          typ_name match {
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   328
            case "bool" => Options.Bool
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   329
            case "int" => Options.Int
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   330
            case "real" => Options.Real
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   331
            case "string" => Options.String
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   332
            case _ =>
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   333
              error("Unknown type for option " + quote(name) + " : " + quote(typ_name) +
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   334
                Position.here(pos))
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   335
          }
74827
c1b5d6e6ff74 clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents: 74144
diff changeset
   336
        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
   337
          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
   338
            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
   339
            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
   340
              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
   341
                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
   342
            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
   343
          }
c1b5d6e6ff74 clarified system option standard values: avoid oddities like "isabelle build -o document_output" producing directories named "true";
wenzelm
parents: 74144
diff changeset
   344
        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
   345
          Options.Opt(public, pos, name, typ, value, value, standard_value, description, section)
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   346
        (new Options(options + (name -> opt), section)).check_value(name)
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   347
    }
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   348
  }
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   349
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   350
  def add_permissive(name: String, value: String): Options =
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   351
  {
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   352
    if (options.isDefinedAt(name)) this + (name, value)
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   353
    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
   354
      val opt = Options.Opt(false, Position.none, name, Options.Unknown, value, value, None, "", "")
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   355
      new Options(options + (name -> opt), section)
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   356
    }
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   357
  }
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   358
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   359
  def + (name: String, value: String): Options =
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   360
  {
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   361
    val opt = check_name(name)
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   362
    (new Options(options + (name -> opt.copy(value = value)), section)).check_value(name)
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   363
  }
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   364
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   365
  def + (name: String, opt_value: Option[String]): Options =
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   366
  {
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   367
    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
   368
    opt_value orElse opt.standard_value match {
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   369
      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
   370
      case None if opt.typ == Options.Bool => this + (name, "true")
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   371
      case None => error("Missing value for option " + quote(name) + " : " + opt.typ.print)
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   372
    }
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   373
  }
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   374
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   375
  def + (str: String): Options =
73712
3eba8d4b624b clarified signature;
wenzelm
parents: 73359
diff changeset
   376
    str match {
73715
bf51c23f3f99 clarified signature -- avoid odd warning about scala/bug#6675;
wenzelm
parents: 73712
diff changeset
   377
      case Properties.Eq(a, b) => this + (a, b)
73712
3eba8d4b624b clarified signature;
wenzelm
parents: 73359
diff changeset
   378
      case _ => this + (str, None)
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48369
diff changeset
   379
    }
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents: 48421
diff changeset
   380
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   381
  def ++ (specs: List[Options.Spec]): Options =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   382
    specs.foldLeft(this) { case (x, (y, z)) => x + (y, z) }
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   383
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents: 48421
diff changeset
   384
49270
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   385
  /* sections */
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   386
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   387
  def set_section(new_section: String): Options =
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   388
    new Options(options, new_section)
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   389
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   390
  def sections: List[(String, List[Options.Opt])] =
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   391
    options.groupBy(_._2.section).toList.map({ case (a, opts) => (a, opts.toList.map(_._2)) })
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   392
e5d162d15867 some support to organize options in sections;
wenzelm
parents: 49247
diff changeset
   393
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents: 48421
diff changeset
   394
  /* encode */
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents: 48421
diff changeset
   395
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents: 48421
diff changeset
   396
  def encode: XML.Body =
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents: 48421
diff changeset
   397
  {
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   398
    val opts =
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   399
      for ((_, opt) <- options.toList; if !opt.unknown)
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   400
        yield (opt.pos, (opt.name, (opt.typ.print, opt.value)))
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   401
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   402
    import XML.Encode.{string => string_, _}
6ad693903e22 more positions and markup;
wenzelm
parents: 55618
diff changeset
   403
    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
   404
  }
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   405
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   406
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   407
  /* save preferences */
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   408
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73166
diff changeset
   409
  def save_prefs(file: Path = Options.PREFS): Unit =
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   410
  {
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   411
    val defaults: Options = Options.init(prefs = "")
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   412
    val changed =
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   413
      (for {
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   414
        (name, opt2) <- options.iterator
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   415
        opt1 = defaults.options.get(name)
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 60133
diff changeset
   416
        if opt1.isEmpty || opt1.get.value != opt2.value
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   417
      } yield (name, opt2.value, if (opt1.isEmpty) "  (* unknown *)" else "")).toList
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   418
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   419
    val prefs =
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   420
      changed.sortBy(_._1)
48860
56ec76f769c0 retain unknown options within preferences;
wenzelm
parents: 48807
diff changeset
   421
        .map({ case (x, y, z) => x + " = " + Outer_Syntax.quote_string(y) + z + "\n" }).mkString
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   422
72375
e48d93811ed7 clarified signature;
wenzelm
parents: 71601
diff changeset
   423
    Isabelle_System.make_directory(file.dir)
67845
46fa8c2c142a more flexible preferences: avoid hardwired file;
wenzelm
parents: 67178
diff changeset
   424
    File.write_backup(file, "(* generated by Isabelle " + Date.now() + " *)\n\n" + prefs)
48807
fde8c3d84ff5 some support for persistent user preferences;
wenzelm
parents: 48795
diff changeset
   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
65236
4fa82bbb394e afford early initialization of JEdit_Options, but it may lead to messy exception trace for malformed etc/preferences (see also 6eeaaefcea56);
wenzelm
parents: 64186
diff changeset
   429
class Options_Variable(init_options: Options)
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   430
{
65236
4fa82bbb394e afford early initialization of JEdit_Options, but it may lead to messy exception trace for malformed etc/preferences (see also 6eeaaefcea56);
wenzelm
parents: 64186
diff changeset
   431
  private var options = init_options
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   432
65236
4fa82bbb394e afford early initialization of JEdit_Options, but it may lead to messy exception trace for malformed etc/preferences (see also 6eeaaefcea56);
wenzelm
parents: 64186
diff changeset
   433
  def value: Options = synchronized { options }
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   434
65236
4fa82bbb394e afford early initialization of JEdit_Options, but it may lead to messy exception trace for malformed etc/preferences (see also 6eeaaefcea56);
wenzelm
parents: 64186
diff changeset
   435
  private def upd(f: Options => Options): Unit = synchronized { options = f(options) }
4fa82bbb394e afford early initialization of JEdit_Options, but it may lead to messy exception trace for malformed etc/preferences (see also 6eeaaefcea56);
wenzelm
parents: 64186
diff changeset
   436
  def += (name: String, x: String): Unit = upd(opts => opts + (name, x))
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   437
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   438
  class Bool_Access
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   439
  {
62227
6eeaaefcea56 clarified errors: more explicit treatment of uninitialized state;
wenzelm
parents: 61579
diff changeset
   440
    def apply(name: String): Boolean = value.bool(name)
6eeaaefcea56 clarified errors: more explicit treatment of uninitialized state;
wenzelm
parents: 61579
diff changeset
   441
    def update(name: String, x: Boolean): Unit = upd(opts => opts.bool.update(name, x))
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   442
  }
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   443
  val bool = new Bool_Access
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   444
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   445
  class Int_Access
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   446
  {
62227
6eeaaefcea56 clarified errors: more explicit treatment of uninitialized state;
wenzelm
parents: 61579
diff changeset
   447
    def apply(name: String): Int = value.int(name)
6eeaaefcea56 clarified errors: more explicit treatment of uninitialized state;
wenzelm
parents: 61579
diff changeset
   448
    def update(name: String, x: Int): Unit = upd(opts => opts.int.update(name, x))
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   449
  }
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   450
  val int = new Int_Access
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   451
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   452
  class Real_Access
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   453
  {
62227
6eeaaefcea56 clarified errors: more explicit treatment of uninitialized state;
wenzelm
parents: 61579
diff changeset
   454
    def apply(name: String): Double = value.real(name)
6eeaaefcea56 clarified errors: more explicit treatment of uninitialized state;
wenzelm
parents: 61579
diff changeset
   455
    def update(name: String, x: Double): Unit = upd(opts => opts.real.update(name, x))
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   456
  }
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   457
  val real = new Real_Access
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   458
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   459
  class String_Access
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   460
  {
62227
6eeaaefcea56 clarified errors: more explicit treatment of uninitialized state;
wenzelm
parents: 61579
diff changeset
   461
    def apply(name: String): String = value.string(name)
6eeaaefcea56 clarified errors: more explicit treatment of uninitialized state;
wenzelm
parents: 61579
diff changeset
   462
    def update(name: String, x: String): Unit = upd(opts => opts.string.update(name, x))
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 48992
diff changeset
   463
  }
49954
44658062d822 more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;
wenzelm
parents: 49296
diff changeset
   464
  val string = new String_Access
50207
54be125d8cdc tuned signature;
wenzelm
parents: 49954
diff changeset
   465
69074
787f3db8e313 tuned signature;
wenzelm
parents: 69073
diff changeset
   466
  def proper_string(name: String): Option[String] =
787f3db8e313 tuned signature;
wenzelm
parents: 69073
diff changeset
   467
    Library.proper_string(string(name))
787f3db8e313 tuned signature;
wenzelm
parents: 69073
diff changeset
   468
69073
d05defa39e3d tuned signature;
wenzelm
parents: 68841
diff changeset
   469
  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
   470
}