src/Pure/System/build.ML
author wenzelm
Tue, 24 Jul 2012 21:54:49 +0200
changeset 49507 03530cf284ca
parent 49501 691d0b44a793
child 49515 bf7f434b91d7
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@49507
    34
    |> Unsynchronized.setmp Name_Space.names_unique_default (Options.bool options "names_unique")
wenzelm@49507
    35
    |> Unsynchronized.setmp Toplevel.timing (Options.bool options "timing");
wenzelm@49472
    36
wenzelm@49480
    37
fun use_theories (options, thys) =
wenzelm@49480
    38
  let val condition = space_explode "," (Options.string options "condition") in
wenzelm@49480
    39
    (case filter_out (can getenv_strict) condition of
wenzelm@49480
    40
      [] => use_thys options thys
wenzelm@49480
    41
    | conds =>
wenzelm@49480
    42
        Output.physical_stderr ("Ignoring theories " ^ commas_quote thys ^
wenzelm@49492
    43
          " (undefined " ^ commas conds ^ ")\n"))
wenzelm@49480
    44
  end;
wenzelm@49480
    45
wenzelm@49480
    46
in
wenzelm@49480
    47
wenzelm@49433
    48
fun build args_file =
wenzelm@49433
    49
  let
wenzelm@49497
    50
    val (save, (options, (timing, (verbose, (browser_info, (parent_base_name,
wenzelm@49474
    51
        (name, (base_name, theories)))))))) =
wenzelm@49433
    52
      File.read (Path.explode args_file) |> YXML.parse_body |>
wenzelm@49472
    53
        let open XML.Decode in
wenzelm@49474
    54
          pair bool (pair Options.decode (pair bool (pair bool (pair string (pair string
wenzelm@49474
    55
            (pair string (pair string ((list (pair Options.decode (list string)))))))))))
wenzelm@49472
    56
        end;
wenzelm@49433
    57
wenzelm@49472
    58
    val _ =
wenzelm@49477
    59
      Session.init save false
wenzelm@49472
    60
        (Options.bool options "browser_info") browser_info
wenzelm@49473
    61
        (Options.string options "document")
wenzelm@49472
    62
        (Options.bool options "document_graph")
wenzelm@49481
    63
        (space_explode ":" (Options.string options "document_variants"))
wenzelm@49497
    64
        parent_base_name base_name
wenzelm@49483
    65
        (not (Options.bool options "document_dump_only"), Options.string options "document_dump")
wenzelm@49478
    66
        (Options.string options "browser_info_remote")
wenzelm@49472
    67
        verbose;
wenzelm@49480
    68
    val _ = Session.with_timing name timing (List.app use_theories) theories;
wenzelm@49433
    69
    val _ = Session.finish ();
wenzelm@49434
    70
    val _ = if save then () else quit ();
wenzelm@49433
    71
  in () end
wenzelm@49433
    72
  handle exn => (Output.error_msg (ML_Compiler.exn_message exn); exit 1);
wenzelm@49433
    73
wenzelm@49433
    74
end;
wenzelm@49480
    75
wenzelm@49480
    76
end;