src/Pure/System/build.ML
author wenzelm
Tue, 24 Jul 2012 21:26:28 +0200
changeset 49501 691d0b44a793
parent 49497 45137257399a
child 49507 03530cf284ca
permissions -rw-r--r--
more build options;
wenzelm@49433
     1
(*  Title:      Pure/System/build.ML
wenzelm@49433
     2
    Author:     Makarius
wenzelm@49433
     3
wenzelm@49433
     4
Build Isabelle sessions.
wenzelm@49433
     5
*)
wenzelm@49433
     6
wenzelm@49433
     7
signature BUILD =
wenzelm@49433
     8
sig
wenzelm@49433
     9
  val build: string -> unit
wenzelm@49433
    10
end;
wenzelm@49433
    11
wenzelm@49433
    12
structure Build: BUILD =
wenzelm@49433
    13
struct
wenzelm@49433
    14
wenzelm@49480
    15
local
wenzelm@49480
    16
wenzelm@49480
    17
fun use_thys options =
wenzelm@49472
    18
  Thy_Info.use_thys
wenzelm@49472
    19
    |> Unsynchronized.setmp Proofterm.proofs (Options.int options "proofs")
wenzelm@49472
    20
    |> Unsynchronized.setmp print_mode
wenzelm@49472
    21
        (space_explode "," (Options.string options "print_mode") @ print_mode_value ())
wenzelm@49472
    22
    |> Unsynchronized.setmp Goal.parallel_proofs (Options.int options "parallel_proofs")
wenzelm@49472
    23
    |> Unsynchronized.setmp Goal.parallel_proofs_threshold
wenzelm@49472
    24
        (Options.int options "parallel_proofs_threshold")
wenzelm@49472
    25
    |> Unsynchronized.setmp Multithreading.trace (Options.int options "threads_trace")
wenzelm@49475
    26
    |> Unsynchronized.setmp Multithreading.max_threads (Options.int options "threads")
wenzelm@49487
    27
    |> (case Options.string options "document" of "" => true | "false" => true | _ => false) ?
wenzelm@49485
    28
        Present.no_document
wenzelm@49501
    29
    |> Unsynchronized.setmp quick_and_dirty (Options.bool options "quick_and_dirty")
wenzelm@49501
    30
    |> Unsynchronized.setmp Printer.show_question_marks_default
wenzelm@49501
    31
        (Options.bool options "show_question_marks")
wenzelm@49501
    32
    |> Unsynchronized.setmp Name_Space.names_long_default (Options.bool options "names_long")
wenzelm@49501
    33
    |> Unsynchronized.setmp Name_Space.names_short_default (Options.bool options "names_short")
wenzelm@49501
    34
    |> Unsynchronized.setmp Name_Space.names_unique_default (Options.bool options "names_unique");
wenzelm@49472
    35
wenzelm@49480
    36
fun use_theories (options, thys) =
wenzelm@49480
    37
  let val condition = space_explode "," (Options.string options "condition") in
wenzelm@49480
    38
    (case filter_out (can getenv_strict) condition of
wenzelm@49480
    39
      [] => use_thys options thys
wenzelm@49480
    40
    | conds =>
wenzelm@49480
    41
        Output.physical_stderr ("Ignoring theories " ^ commas_quote thys ^
wenzelm@49492
    42
          " (undefined " ^ commas conds ^ ")\n"))
wenzelm@49480
    43
  end;
wenzelm@49480
    44
wenzelm@49480
    45
in
wenzelm@49480
    46
wenzelm@49433
    47
fun build args_file =
wenzelm@49433
    48
  let
wenzelm@49497
    49
    val (save, (options, (timing, (verbose, (browser_info, (parent_base_name,
wenzelm@49474
    50
        (name, (base_name, theories)))))))) =
wenzelm@49433
    51
      File.read (Path.explode args_file) |> YXML.parse_body |>
wenzelm@49472
    52
        let open XML.Decode in
wenzelm@49474
    53
          pair bool (pair Options.decode (pair bool (pair bool (pair string (pair string
wenzelm@49474
    54
            (pair string (pair string ((list (pair Options.decode (list string)))))))))))
wenzelm@49472
    55
        end;
wenzelm@49433
    56
wenzelm@49472
    57
    val _ =
wenzelm@49477
    58
      Session.init save false
wenzelm@49472
    59
        (Options.bool options "browser_info") browser_info
wenzelm@49473
    60
        (Options.string options "document")
wenzelm@49472
    61
        (Options.bool options "document_graph")
wenzelm@49481
    62
        (space_explode ":" (Options.string options "document_variants"))
wenzelm@49497
    63
        parent_base_name base_name
wenzelm@49483
    64
        (not (Options.bool options "document_dump_only"), Options.string options "document_dump")
wenzelm@49478
    65
        (Options.string options "browser_info_remote")
wenzelm@49472
    66
        verbose;
wenzelm@49480
    67
    val _ = Session.with_timing name timing (List.app use_theories) theories;
wenzelm@49433
    68
    val _ = Session.finish ();
wenzelm@49434
    69
    val _ = if save then () else quit ();
wenzelm@49433
    70
  in () end
wenzelm@49433
    71
  handle exn => (Output.error_msg (ML_Compiler.exn_message exn); exit 1);
wenzelm@49433
    72
wenzelm@49433
    73
end;
wenzelm@49480
    74
wenzelm@49480
    75
end;