src/Pure/Tools/dump.scala
author wenzelm
Tue, 15 Oct 2019 10:52:42 +0200
changeset 70874 2010397f7c9a
parent 70871 2beac4adc565
child 70875 a62c34770df9
permissions -rw-r--r--
load HOL-Proofs first: it introduces some extra "thm" items that are required later on;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Tools/dump.scala
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
     3
68348
2ac3a5c07dfa documentation for "isabelle dump";
wenzelm
parents: 68347
diff changeset
     4
Dump cumulative PIDE session database.
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
     5
*/
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
     6
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
     7
package isabelle
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
     8
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
     9
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
    10
object Dump
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
    11
{
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    12
  /* aspects */
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    13
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    14
  sealed case class Aspect_Args(
68355
67a4db47e4f6 more args;
wenzelm
parents: 68348
diff changeset
    15
    options: Options,
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    16
    deps: Sessions.Deps,
68355
67a4db47e4f6 more args;
wenzelm
parents: 68348
diff changeset
    17
    progress: Progress,
69896
be7243b97c41 tuned signature;
wenzelm
parents: 69857
diff changeset
    18
    output_dir: Path,
68929
10cbb5d99081 tuned signature;
wenzelm
parents: 68927
diff changeset
    19
    snapshot: Document.Snapshot,
69534
913970ae2324 tuned, according to Isabelle/MMT;
wenzelm
parents: 69533
diff changeset
    20
    status: Document_Status.Node_Status)
68319
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    21
  {
68365
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    22
    def write(file_name: Path, bytes: Bytes)
68319
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    23
    {
68929
10cbb5d99081 tuned signature;
wenzelm
parents: 68927
diff changeset
    24
      val path = output_dir + Path.basic(snapshot.node_name.theory) + file_name
68319
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    25
      Isabelle_System.mkdirs(path.dir)
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    26
      Bytes.write(path, bytes)
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    27
    }
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    28
68365
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    29
    def write(file_name: Path, text: String): Unit =
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    30
      write(file_name, Bytes(text))
68332
7cb681615d0e store Isabelle symbols in canonical form;
wenzelm
parents: 68331
diff changeset
    31
68365
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    32
    def write(file_name: Path, body: XML.Body): Unit =
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    33
      write(file_name, Symbol.encode(YXML.string_of_body(body)))
68319
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    34
  }
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    35
68347
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    36
  sealed case class Aspect(name: String, description: String, operation: Aspect_Args => Unit,
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    37
    options: List[String] = Nil)
68345
5bc1e1ac7955 clarified default: all aspects;
wenzelm
parents: 68332
diff changeset
    38
  {
5bc1e1ac7955 clarified default: all aspects;
wenzelm
parents: 68332
diff changeset
    39
    override def toString: String = name
5bc1e1ac7955 clarified default: all aspects;
wenzelm
parents: 68332
diff changeset
    40
  }
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    41
69521
wenzelm
parents: 69520
diff changeset
    42
  val known_aspects: List[Aspect] =
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    43
    List(
68365
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    44
      Aspect("markup", "PIDE markup (YXML format)",
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    45
        { case args =>
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    46
            args.write(Path.explode("markup.yxml"),
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    47
              args.snapshot.markup_to_XML(Text.Range.full, Markup.Elements.full))
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    48
        }),
68319
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    49
      Aspect("messages", "output messages (YXML format)",
2e168460a9c3 more operations;
wenzelm
parents: 68318
diff changeset
    50
        { case args =>
68365
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    51
            args.write(Path.explode("messages.yxml"),
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    52
              args.snapshot.messages.iterator.map(_._1).toList)
68347
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    53
        }),
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    54
      Aspect("latex", "generated LaTeX source",
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    55
        { case args =>
68365
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    56
            for (entry <- args.snapshot.exports if entry.name == "document.tex")
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    57
              args.write(Path.explode(entry.name), entry.uncompressed())
69533
1d2e6a4e073f clarified options: ensure consolidated Node_Status and thus percentage = 100% for progress;
wenzelm
parents: 69532
diff changeset
    58
        }, options = List("export_document")),
68347
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    59
      Aspect("theory", "foundational theory content",
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    60
        { case args =>
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    61
            for {
68365
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    62
              entry <- args.snapshot.exports
68347
9e6e7ab77434 more dump aspects, with options;
wenzelm
parents: 68345
diff changeset
    63
              if entry.name.startsWith(Export_Theory.export_prefix)
68365
f9379279f98c clarified signature: prefer Document.Snapshot;
wenzelm
parents: 68355
diff changeset
    64
            } args.write(Path.explode(entry.name), entry.uncompressed())
69533
1d2e6a4e073f clarified options: ensure consolidated Node_Status and thus percentage = 100% for progress;
wenzelm
parents: 69532
diff changeset
    65
        }, options = List("export_theory"))
68345
5bc1e1ac7955 clarified default: all aspects;
wenzelm
parents: 68332
diff changeset
    66
    ).sortBy(_.name)
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    67
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    68
  def show_aspects: String =
68345
5bc1e1ac7955 clarified default: all aspects;
wenzelm
parents: 68332
diff changeset
    69
    cat_lines(known_aspects.map(aspect => aspect.name + " - " + aspect.description))
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    70
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    71
  def the_aspect(name: String): Aspect =
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    72
    known_aspects.find(aspect => aspect.name == name) getOrElse
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    73
      error("Unknown aspect " + quote(name))
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    74
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
    75
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
    76
  /* context and session */
69538
faf547d2834c clarified signature, notably cascade of dump_options, deps, resources, session;
wenzelm
parents: 69537
diff changeset
    77
69896
be7243b97c41 tuned signature;
wenzelm
parents: 69857
diff changeset
    78
  sealed case class Args(
69897
a9849222844d tuned signature;
wenzelm
parents: 69896
diff changeset
    79
    session: Headless.Session,
a9849222844d tuned signature;
wenzelm
parents: 69896
diff changeset
    80
    snapshot: Document.Snapshot,
a9849222844d tuned signature;
wenzelm
parents: 69896
diff changeset
    81
    status: Document_Status.Node_Status)
69896
be7243b97c41 tuned signature;
wenzelm
parents: 69857
diff changeset
    82
  {
be7243b97c41 tuned signature;
wenzelm
parents: 69857
diff changeset
    83
    def print_node: String = snapshot.node_name.toString
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    84
  }
69896
be7243b97c41 tuned signature;
wenzelm
parents: 69857
diff changeset
    85
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
    86
  object Context
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    87
  {
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    88
    def apply(
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    89
      options: Options,
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    90
      aspects: List[Aspect] = Nil,
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    91
      progress: Progress = No_Progress,
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    92
      dirs: List[Path] = Nil,
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    93
      select_dirs: List[Path] = Nil,
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
    94
      selection: Sessions.Selection = Sessions.Selection.empty): Context =
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
    95
    {
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
    96
      val session_options: Options =
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
    97
      {
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
    98
        val options0 = if (NUMA.enabled) NUMA.policy_options(options) else options
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
    99
        val options1 =
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   100
          options0 +
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   101
            "completion_limit=0" +
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   102
            "ML_statistics=false" +
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   103
            "parallel_proofs=0" +
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   104
            "editor_tracing_messages=0" +
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   105
            "editor_presentation"
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   106
        (options1 /: aspects)({ case (opts, aspect) => (opts /: aspect.options)(_ + _) })
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   107
      }
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   108
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   109
      val sessions_structure: Sessions.Structure =
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   110
        Sessions.load_structure(session_options, dirs = dirs, select_dirs = select_dirs).
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   111
          selection(selection)
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   112
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   113
      {
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   114
        val selection_size = sessions_structure.build_graph.size
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   115
        if (selection_size > 1) progress.echo("Loading " + selection_size + " sessions ...")
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   116
      }
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   117
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   118
      val deps: Sessions.Deps =
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   119
        Sessions.deps(sessions_structure, progress = progress).check_errors
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   120
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   121
      new Context(options, progress, dirs, select_dirs, session_options, deps)
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   122
    }
69896
be7243b97c41 tuned signature;
wenzelm
parents: 69857
diff changeset
   123
  }
be7243b97c41 tuned signature;
wenzelm
parents: 69857
diff changeset
   124
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   125
  class Context private(
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   126
    val options: Options,
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   127
    val progress: Progress,
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   128
    val dirs: List[Path],
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   129
    val select_dirs: List[Path],
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   130
    val session_options: Options,
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   131
    val deps: Sessions.Deps)
69538
faf547d2834c clarified signature, notably cascade of dump_options, deps, resources, session;
wenzelm
parents: 69537
diff changeset
   132
  {
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   133
    context =>
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   134
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   135
    def session_dirs: List[Path] = dirs ::: select_dirs
68926
5129fcc1b6c0 dump aspects asynchronously;
wenzelm
parents: 68899
diff changeset
   136
70857
822f5cbfc5b6 tuned signature;
wenzelm
parents: 70856
diff changeset
   137
    def build_logic(logic: String)
822f5cbfc5b6 tuned signature;
wenzelm
parents: 70856
diff changeset
   138
    {
822f5cbfc5b6 tuned signature;
wenzelm
parents: 70856
diff changeset
   139
      Build.build_logic(options, logic, build_heap = true, progress = progress,
822f5cbfc5b6 tuned signature;
wenzelm
parents: 70856
diff changeset
   140
        dirs = session_dirs, strict = true)
822f5cbfc5b6 tuned signature;
wenzelm
parents: 70856
diff changeset
   141
    }
822f5cbfc5b6 tuned signature;
wenzelm
parents: 70856
diff changeset
   142
70864
e94fec16bf50 clarified signature;
wenzelm
parents: 70862
diff changeset
   143
    def sessions(
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   144
      logic: String = default_logic,
70861
cb07f21c9916 simplified options: always split;
wenzelm
parents: 70860
diff changeset
   145
      log: Logger = No_Logger): List[Session] =
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   146
    {
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   147
      /* partitions */
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   148
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   149
      def session_info(session_name: String): Sessions.Info =
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   150
        deps.sessions_structure(session_name)
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   151
70870
877fe56af178 proper build_graph to make session selection work as in "isabelle build";
wenzelm
parents: 70869
diff changeset
   152
      val session_graph = deps.sessions_structure.build_graph
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   153
      val all_sessions = session_graph.topological_order
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   154
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   155
      val afp_sessions =
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   156
        (for (name <- all_sessions if session_info(name).is_afp) yield name).toSet
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   157
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   158
      val afp_bulky_sessions =
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   159
        (for (name <- all_sessions if session_info(name).is_afp_bulky) yield name).toList
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   160
70862
a4ccd277e9c4 clarified treatment of base logic image;
wenzelm
parents: 70861
diff changeset
   161
      val base_sessions =
a4ccd277e9c4 clarified treatment of base logic image;
wenzelm
parents: 70861
diff changeset
   162
        session_graph.all_preds(List(logic).filter(session_graph.defined)).reverse
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   163
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   164
      val proof_sessions =
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   165
        session_graph.all_succs(
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   166
          for (name <- all_sessions if session_info(name).record_proofs) yield name)
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   167
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   168
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   169
      /* resulting sessions */
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   170
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   171
      def make_session(
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   172
        selected_sessions: List[String],
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   173
        pure: Boolean = false,
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   174
        record_proofs: Boolean = false): List[Session] =
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   175
      {
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   176
        if (selected_sessions.isEmpty) Nil
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   177
        else {
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   178
          val session_logic = if (pure) isabelle.Thy_Header.PURE else logic
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   179
          List(new Session(context, session_logic, log, selected_sessions, record_proofs))
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   180
        }
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   181
      }
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   182
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   183
      val base =
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   184
        if (logic == isabelle.Thy_Header.PURE) Nil
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   185
        else make_session(base_sessions, pure = true)
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   186
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   187
      val main =
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   188
        make_session(
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   189
          session_graph.topological_order.filterNot(name =>
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   190
            afp_sessions.contains(name) ||
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   191
            base_sessions.contains(name) ||
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   192
            proof_sessions.contains(name)))
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   193
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   194
      val proofs =
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   195
        make_session(proof_sessions, pure = true, record_proofs = true)
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   196
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   197
      val afp =
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   198
        if (afp_sessions.isEmpty) Nil
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   199
        else {
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   200
          val (part1, part2) =
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   201
          {
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   202
            val graph = session_graph.restrict(afp_sessions -- afp_bulky_sessions)
70862
a4ccd277e9c4 clarified treatment of base logic image;
wenzelm
parents: 70861
diff changeset
   203
            val force_partition1 = AFP.force_partition1.filter(graph.defined)
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   204
            val force_part1 = graph.all_preds(graph.all_succs(force_partition1)).toSet
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   205
            graph.keys.partition(a => force_part1(a) || graph.is_isolated(a))
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   206
          }
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   207
          List(part1, part2, afp_bulky_sessions).flatMap(make_session(_))
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   208
        }
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   209
70874
2010397f7c9a load HOL-Proofs first: it introduces some extra "thm" items that are required later on;
wenzelm
parents: 70871
diff changeset
   210
      proofs ::: base ::: main ::: afp
70857
822f5cbfc5b6 tuned signature;
wenzelm
parents: 70856
diff changeset
   211
    }
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   212
  }
68926
5129fcc1b6c0 dump aspects asynchronously;
wenzelm
parents: 68899
diff changeset
   213
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   214
  class Session private[Dump](
70867
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   215
    val context: Context,
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   216
    val logic: String,
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   217
    log: Logger,
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   218
    selected_sessions: List[String],
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   219
    record_proofs: Boolean)
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   220
  {
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   221
    /* resources */
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   222
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   223
    val options: Options =
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   224
      if (record_proofs) context.session_options + "record_proofs=2"
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   225
      else context.session_options
70866
209327bd3e3e clarified signature;
wenzelm
parents: 70865
diff changeset
   226
70867
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   227
    private def deps = context.deps
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   228
    private def progress = context.progress
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   229
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   230
    val resources: Headless.Resources =
70865
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   231
      Headless.Resources.make(options, logic, progress = progress, log = log,
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   232
        session_dirs = context.session_dirs,
70867
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   233
        include_sessions = deps.sessions_structure.imports_topological_order)
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   234
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   235
    val used_theories: List[Document.Node.Name] =
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   236
    {
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   237
      for {
70867
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   238
        session_name <-
70871
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   239
          deps.sessions_structure.build_graph.restrict(selected_sessions.toSet).topological_order
70867
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   240
        (name, theory_options) <- deps(session_name).used_theories
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   241
        if !resources.session_base.loaded_theory(name.theory)
70867
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   242
        if {
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   243
          def warn(msg: String): Unit =
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   244
            progress.echo_warning("Skipping theory " + name + "  (" + msg + ")")
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   245
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   246
          val conditions =
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   247
            space_explode(',', theory_options.string("condition")).
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   248
              filter(cond => Isabelle_System.getenv(cond) == "")
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   249
          if (conditions.nonEmpty) {
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   250
            warn("undefined " + conditions.mkString(", "))
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   251
            false
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   252
          }
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   253
          else if (options.bool("skip_proofs") && !theory_options.bool("skip_proofs")) {
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   254
            warn("option skip_proofs")
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   255
            false
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   256
          }
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   257
          else true
4c8e28dabbc4 clarified signature;
wenzelm
parents: 70866
diff changeset
   258
        }
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   259
      } yield name
68926
5129fcc1b6c0 dump aspects asynchronously;
wenzelm
parents: 68899
diff changeset
   260
    }
5129fcc1b6c0 dump aspects asynchronously;
wenzelm
parents: 68899
diff changeset
   261
5129fcc1b6c0 dump aspects asynchronously;
wenzelm
parents: 68899
diff changeset
   262
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   263
    /* process */
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   264
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   265
    def process(process_theory: Args => Unit, unicode_symbols: Boolean = false)
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   266
    {
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   267
      val session = resources.start_session(progress = progress)
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   268
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   269
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   270
      // asynchronous consumer
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   271
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   272
      object Consumer
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   273
      {
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   274
        sealed case class Bad_Theory(
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   275
          name: Document.Node.Name,
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   276
          status: Document_Status.Node_Status,
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   277
          errors: List[String])
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   278
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   279
        private val consumer_bad_theories = Synchronized(List.empty[Bad_Theory])
68318
5971199863ea more accurate dependencies;
wenzelm
parents: 68316
diff changeset
   280
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   281
        private val consumer =
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   282
          Consumer_Thread.fork(name = "dump")(
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   283
            consume = (args: (Document.Snapshot, Document_Status.Node_Status)) =>
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   284
              {
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   285
                val (snapshot, status) = args
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   286
                val name = snapshot.node_name
70871
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   287
                if (status.ok) {
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   288
                  try { process_theory(Args(session, snapshot, status)) }
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   289
                  catch {
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   290
                    case exn: Throwable if !Exn.is_interrupt(exn) =>
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   291
                      val msg = Exn.message(exn)
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   292
                      progress.echo("FAILED to process theory " + name)
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   293
                      progress.echo_error_message(msg)
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   294
                      consumer_bad_theories.change(Bad_Theory(name, status, List(msg)) :: _)
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   295
                  }
70871
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   296
                }
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   297
                else {
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   298
                  val msgs =
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   299
                    for ((tree, pos) <- snapshot.messages if Protocol.is_error(tree))
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   300
                    yield {
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   301
                      "Error" + Position.here(pos) + ":\n" +
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   302
                        XML.content(Pretty.formatted(List(tree)))
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   303
                    }
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   304
                  progress.echo("FAILED to process theory " + name)
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   305
                  msgs.foreach(progress.echo_error_message)
2beac4adc565 more complete coverage of sessions: process_theory operation needs to handle duplicate theories;
wenzelm
parents: 70870
diff changeset
   306
                  consumer_bad_theories.change(Bad_Theory(name, status, msgs) :: _)
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   307
                }
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   308
                true
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   309
              })
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   310
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   311
        def apply(snapshot: Document.Snapshot, status: Document_Status.Node_Status): Unit =
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   312
          consumer.send((snapshot, status))
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   313
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   314
        def shutdown(): List[Bad_Theory] =
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   315
        {
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   316
          consumer.shutdown()
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   317
          consumer_bad_theories.value.reverse
70634
0f8742b5a9e8 more scalable isabelle dump (and derivatives): mark individual theories to share common data in ML;
wenzelm
parents: 70626
diff changeset
   318
        }
0f8742b5a9e8 more scalable isabelle dump (and derivatives): mark individual theories to share common data in ML;
wenzelm
parents: 70626
diff changeset
   319
      }
0f8742b5a9e8 more scalable isabelle dump (and derivatives): mark individual theories to share common data in ML;
wenzelm
parents: 70626
diff changeset
   320
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   321
70653
f7c5b30fc432 load theories in stages, to reduce ML heap requirements;
wenzelm
parents: 70645
diff changeset
   322
      // synchronous body
68320
1d33697199c1 shutdown ML process before output: Theories_Result is timeless/stateless;
wenzelm
parents: 68319
diff changeset
   323
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   324
      try {
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   325
        val use_theories_result =
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   326
          session.use_theories(used_theories.map(_.theory),
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   327
            unicode_symbols = unicode_symbols,
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   328
            progress = progress,
70653
f7c5b30fc432 load theories in stages, to reduce ML heap requirements;
wenzelm
parents: 70645
diff changeset
   329
            commit = Some(Consumer.apply _))
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   330
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   331
        val bad_theories = Consumer.shutdown()
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   332
        val bad_msgs =
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   333
          bad_theories.map(bad =>
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   334
            Output.clean_yxml(
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   335
              "FAILED theory " + bad.name +
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   336
                (if (bad.status.consolidated) "" else ": " + bad.status.percentage + "% finished") +
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   337
                (if (bad.errors.isEmpty) "" else bad.errors.mkString("\n", "\n", ""))))
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   338
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   339
        val pending_msgs =
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   340
          use_theories_result.nodes_pending match {
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   341
            case Nil => Nil
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   342
            case pending => List("Pending theories: " + commas(pending.map(p => p._1.toString)))
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   343
          }
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   344
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   345
        val errors = bad_msgs ::: pending_msgs
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   346
        if (errors.nonEmpty) error(errors.mkString("\n\n"))
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   347
      }
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   348
      finally { session.stop() }
69032
90bb4cabe1e8 clarified errors: no result from forced session.stop, check pending theories;
wenzelm
parents: 69026
diff changeset
   349
    }
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   350
  }
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   351
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   352
69523
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   353
  /* dump */
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   354
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   355
  val default_output_dir: Path = Path.explode("dump")
70858
f76126e6a1ab clarified defaults;
wenzelm
parents: 70857
diff changeset
   356
  val default_logic: String = Thy_Header.PURE
69523
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   357
70640
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   358
  def dump(
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   359
    options: Options,
5f4b8a505090 more explicit type Dump.Session, with context information;
wenzelm
parents: 70634
diff changeset
   360
    logic: String,
69523
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   361
    aspects: List[Aspect] = Nil,
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   362
    progress: Progress = No_Progress,
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   363
    log: Logger = No_Logger,
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   364
    dirs: List[Path] = Nil,
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   365
    select_dirs: List[Path] = Nil,
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   366
    output_dir: Path = default_output_dir,
69535
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   367
    selection: Sessions.Selection = Sessions.Selection.empty)
69523
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   368
  {
70856
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   369
    val context =
545229df2f82 clarified signature: static Dump.Context vs. dynamic Dump.Session;
wenzelm
parents: 70796
diff changeset
   370
      Context(options, aspects = aspects, progress = progress, dirs = dirs,
70796
2739631ac368 discontinued pointless dump_checkpoint and share_common_data -- superseded by base logic image in Isabelle/MMT;
wenzelm
parents: 70779
diff changeset
   371
        select_dirs = select_dirs, selection = selection)
69523
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   372
70864
e94fec16bf50 clarified signature;
wenzelm
parents: 70862
diff changeset
   373
    context.build_logic(logic)
e94fec16bf50 clarified signature;
wenzelm
parents: 70862
diff changeset
   374
70865
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   375
    for (session <- context.sessions(logic = logic, log = log)) {
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   376
      session.process((args: Args) =>
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   377
        {
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   378
          progress.echo("Processing theory " + args.print_node + " ...")
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   379
          val aspect_args =
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   380
            Aspect_Args(session.options, context.deps, progress, output_dir,
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   381
              args.snapshot, args.status)
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   382
          aspects.foreach(_.operation(aspect_args))
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   383
        })
4739030a5bf2 clarified signature;
wenzelm
parents: 70864
diff changeset
   384
    }
69523
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   385
  }
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   386
9403ff523825 tuned signature: for other dump-like tools;
wenzelm
parents: 69522
diff changeset
   387
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   388
  /* Isabelle tool wrapper */
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   389
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   390
  val isabelle_tool =
68348
2ac3a5c07dfa documentation for "isabelle dump";
wenzelm
parents: 68347
diff changeset
   391
    Isabelle_Tool("dump", "dump cumulative PIDE session database", args =>
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   392
    {
68345
5bc1e1ac7955 clarified default: all aspects;
wenzelm
parents: 68332
diff changeset
   393
      var aspects: List[Aspect] = known_aspects
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   394
      var base_sessions: List[String] = Nil
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   395
      var select_dirs: List[Path] = Nil
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
   396
      var output_dir = default_output_dir
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   397
      var requirements = false
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   398
      var exclude_session_groups: List[String] = Nil
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   399
      var all_sessions = false
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   400
      var logic = default_logic
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   401
      var dirs: List[Path] = Nil
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   402
      var session_groups: List[String] = Nil
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   403
      var options = Options.init()
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   404
      var verbose = false
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   405
      var exclude_sessions: List[String] = Nil
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   406
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   407
      val getopts = Getopts("""
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   408
Usage: isabelle dump [OPTIONS] [SESSIONS ...]
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   409
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   410
  Options are:
68345
5bc1e1ac7955 clarified default: all aspects;
wenzelm
parents: 68332
diff changeset
   411
    -A NAMES     dump named aspects (default: """ + known_aspects.mkString("\"", ",", "\"") + """)
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   412
    -B NAME      include session NAME and all descendants
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   413
    -D DIR       include session directory and select its sessions
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
   414
    -O DIR       output directory for dumped files (default: """ + default_output_dir + """)
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   415
    -R           operate on requirements of selected sessions
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   416
    -X NAME      exclude sessions from group NAME and all descendants
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   417
    -a           select all sessions
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   418
    -b NAME      base logic image (default """ + isabelle.quote(default_logic) + """)
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   419
    -d DIR       include session directory
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   420
    -g NAME      select session group NAME
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   421
    -o OPTION    override Isabelle system OPTION (via NAME=VAL or NAME)
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   422
    -v           verbose
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   423
    -x NAME      exclude session NAME and all descendants
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   424
68348
2ac3a5c07dfa documentation for "isabelle dump";
wenzelm
parents: 68347
diff changeset
   425
  Dump cumulative PIDE session database, with the following aspects:
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
   426
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
   427
""" + Library.prefix_lines("    ", show_aspects) + "\n",
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
   428
      "A:" -> (arg => aspects = Library.distinct(space_explode(',', arg)).map(the_aspect(_))),
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   429
      "B:" -> (arg => base_sessions = base_sessions ::: List(arg)),
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   430
      "D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))),
68316
a1e5de3681f0 more formal dump aspects;
wenzelm
parents: 68308
diff changeset
   431
      "O:" -> (arg => output_dir = Path.explode(arg)),
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   432
      "R" -> (_ => requirements = true),
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   433
      "X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)),
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   434
      "a" -> (_ => all_sessions = true),
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70858
diff changeset
   435
      "b:" -> (arg => logic = arg),
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   436
      "d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))),
68741
wenzelm
parents: 68557
diff changeset
   437
      "g:" -> (arg => session_groups = session_groups ::: List(arg)),
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   438
      "o:" -> (arg => options = options + arg),
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   439
      "v" -> (_ => verbose = true),
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   440
      "x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg)))
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   441
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   442
      val sessions = getopts(args)
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   443
68951
a7b1fe2d30ad more uniform Progress, with theory() for batch-build and theory_percentage() for PIDE session;
wenzelm
parents: 68948
diff changeset
   444
      val progress = new Console_Progress(verbose = verbose)
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   445
69535
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   446
      progress.interrupt_handler {
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   447
        dump(options, logic,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   448
          aspects = aspects,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   449
          progress = progress,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   450
          dirs = dirs,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   451
          select_dirs = select_dirs,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   452
          output_dir = output_dir,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   453
          selection = Sessions.Selection(
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   454
            requirements = requirements,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   455
            all_sessions = all_sessions,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   456
            base_sessions = base_sessions,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   457
            exclude_session_groups = exclude_session_groups,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   458
            exclude_sessions = exclude_sessions,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   459
            session_groups = session_groups,
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   460
            sessions = sessions))
e3a9680d9ed8 clarified errors, according to Isabelle/MMT;
wenzelm
parents: 69534
diff changeset
   461
      }
68308
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   462
    })
119fc05f6b00 support to dump build database produced by PIDE session;
wenzelm
parents:
diff changeset
   463
}