src/Pure/System/options.ML
author wenzelm
Sun, 12 May 2013 17:56:53 +0200
changeset 51945 5b1ac9843f02
parent 51943 3278729bfa38
child 51946 449fbf64f4a5
permissions -rw-r--r--
tuned comments;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/System/options.ML
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
     3
51945
5b1ac9843f02 tuned comments;
wenzelm
parents: 51943
diff changeset
     4
System options with external string representation.
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
     5
*)
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
     6
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
     7
signature OPTIONS =
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
     8
sig
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
     9
  val boolT: string
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    10
  val intT: string
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    11
  val realT: string
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    12
  val stringT: string
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    13
  val unknownT: string
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    14
  type T
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    15
  val empty: T
51942
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
    16
  val typ: T -> string -> string
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    17
  val bool: T -> string -> bool
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    18
  val int: T -> string -> int
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    19
  val real: T -> string -> real
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    20
  val string: T -> string -> string
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    21
  val put_bool: string -> bool -> T -> T
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    22
  val put_int: string -> int -> T -> T
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    23
  val put_real: string -> real -> T -> T
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    24
  val put_string: string -> string -> T -> T
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    25
  val declare: {name: string, typ: string, value: string} -> T -> T
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    26
  val update: string -> string -> T -> T
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    27
  val decode: XML.body -> T
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
    28
  val default: unit -> T
51942
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
    29
  val default_bool: string -> bool
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
    30
  val default_int: string -> int
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
    31
  val default_real: string -> real
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
    32
  val default_string: string -> string
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    33
  val default_put_bool: string -> bool -> unit
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    34
  val default_put_int: string -> int -> unit
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    35
  val default_put_real: string -> real -> unit
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    36
  val default_put_string: string -> string -> unit
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    37
  val get_default: string -> string
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    38
  val put_default: string -> string -> unit
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
    39
  val set_default: T -> unit
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
    40
  val reset_default: unit -> unit
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
    41
  val load_default: unit -> unit
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    42
end;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    43
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    44
structure Options: OPTIONS =
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    45
struct
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    46
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    47
(* representation *)
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    48
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    49
val boolT = "bool";
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    50
val intT = "int";
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    51
val realT = "real";
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    52
val stringT = "string";
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    53
val unknownT = "unknown";
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    54
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    55
datatype T = Options of {typ: string, value: string} Symtab.table;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    56
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    57
val empty = Options Symtab.empty;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    58
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    59
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    60
(* check *)
51942
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
    61
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    62
fun check_name (Options tab) name =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    63
  let val opt = Symtab.lookup tab name in
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    64
    if is_some opt andalso #typ (the opt) <> unknownT then the opt
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    65
    else error ("Unknown option " ^ quote name)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    66
  end;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    67
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    68
fun check_type options name typ =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    69
  let val opt = check_name options name in
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    70
    if #typ opt = typ then opt
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    71
    else error ("Ill-typed option " ^ quote name ^ " : " ^ #typ opt ^ " vs. " ^ typ)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    72
  end;
51942
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
    73
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
    74
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    75
(* typ *)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    76
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    77
fun typ options name = #typ (check_name options name);
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    78
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    79
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    80
(* basic operations *)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    81
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    82
fun put T print name x (options as Options tab) =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    83
  let val opt = check_type options name T
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    84
  in Options (Symtab.update (name, {typ = #typ opt, value = print x}) tab) end;
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    85
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    86
fun get T parse options name =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    87
  let val opt = check_type options name T in
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    88
    (case parse (#value opt) of
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    89
      SOME x => x
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    90
    | NONE =>
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    91
        error ("Malformed value for option " ^ quote name ^
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    92
          " : " ^ T ^ " =\n" ^ quote (#value opt)))
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    93
  end;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    94
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    95
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
    96
(* internal lookup and update *)
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    97
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    98
val bool = get boolT Bool.fromString;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
    99
val int = get intT Int.fromString;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   100
val real = get realT Real.fromString;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   101
val string = get stringT SOME;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   102
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   103
val put_bool = put boolT Bool.toString;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   104
val put_int = put intT signed_string_of_int;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   105
val put_real = put realT signed_string_of_real;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   106
val put_string = put stringT I;
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   107
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   108
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   109
(* external updates *)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   110
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   111
fun check_value options name =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   112
  let val opt = check_name options name in
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   113
    if #typ opt = boolT then ignore (bool options name)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   114
    else if #typ opt = intT then ignore (int options name)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   115
    else if #typ opt = realT then ignore (real options name)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   116
    else if #typ opt = stringT then ignore (string options name)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   117
    else ()
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   118
  end;
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   119
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   120
fun declare {name, typ, value} (Options tab) =
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   121
  let
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   122
    val options' = Options (Symtab.update_new (name, {typ = typ, value = value}) tab)
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   123
      handle Symtab.DUP _ => error ("Duplicate declaration of option " ^ quote name);
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   124
    val _ =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   125
      typ = boolT orelse typ = intT orelse typ = realT orelse typ = stringT orelse
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   126
        error ("Unknown type for option " ^ quote name ^ " : " ^ quote typ);
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   127
    val _ = check_value options' name;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   128
  in options' end;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   129
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   130
fun update name value (options as Options tab) =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   131
  let
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   132
    val opt = check_name options name;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   133
    val options' = Options (Symtab.update (name, {typ = #typ opt, value = value}) tab);
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   134
    val _ = check_value options' name;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   135
  in options' end;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   136
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   137
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   138
(* decode *)
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   139
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   140
fun decode body =
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   141
  fold (declare o (fn (name, typ, value) => {name = name, typ = typ, value = value}))
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   142
    (let open XML.Decode in list (triple string string string) end body) empty;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   143
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   144
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   145
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   146
(** global default **)
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   147
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   148
val global_default = Synchronized.var "Options.default" (NONE: T option);
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   149
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   150
fun err_no_default () = error "No global default options";
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   151
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   152
fun change_default f x y =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   153
  Synchronized.change global_default
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   154
    (fn SOME options => SOME (f x y options)
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   155
      | NONE => err_no_default ());
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   156
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   157
fun default () =
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   158
  (case Synchronized.value global_default of
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   159
    SOME options => options
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   160
  | NONE => err_no_default ());
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   161
51942
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
   162
fun default_bool name = bool (default ()) name;
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
   163
fun default_int name = int (default ()) name;
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
   164
fun default_real name = real (default ()) name;
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
   165
fun default_string name = string (default ()) name;
527e39becafc more systematic access to options default;
wenzelm
parents: 48698
diff changeset
   166
51943
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   167
val default_put_bool = change_default put_bool;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   168
val default_put_int = change_default put_int;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   169
val default_put_real = change_default put_real;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   170
val default_put_string = change_default put_string;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   171
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   172
fun get_default name =
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   173
  let val options = default () in get (typ options name) SOME options name end;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   174
val put_default = change_default update;
3278729bfa38 more operations in accordance to Scala version;
wenzelm
parents: 51942
diff changeset
   175
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   176
fun set_default options = Synchronized.change global_default (K (SOME options));
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   177
fun reset_default () = Synchronized.change global_default (K NONE);
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   178
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   179
fun load_default () =
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   180
  (case getenv "ISABELLE_PROCESS_OPTIONS" of
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   181
    "" => ()
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   182
  | name =>
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   183
      let val path = Path.explode name in
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   184
        (case try File.read path of
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   185
          SOME s => (set_default (decode (YXML.parse_body s)); ignore (try File.rm path))
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   186
        | NONE => ())
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   187
      end);
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   188
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   189
val _ = load_default ();
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48456
diff changeset
   190
48456
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   191
end;
d8ff14f44a40 added ML version of stand-alone options, with XML.encode/decode operations (unidirectional from Scala to ML);
wenzelm
parents:
diff changeset
   192