src/Pure/Thy/sessions.scala
author wenzelm
Sat, 10 Sep 2022 16:12:52 +0200
changeset 76107 4dedb6e2dac2
parent 76048 92aa9ac31c7c
child 76279 2d4ff8c166d2
permissions -rw-r--r--
more command-line options;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Thy/sessions.scala
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     3
65430
4433d189a77d tuned comment;
wenzelm
parents: 65429
diff changeset
     4
Cumulative session information.
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     5
*/
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     6
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     7
package isabelle
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     8
65461
b6c2e30dc018 support for known theories files (according to multiple uses);
wenzelm
parents: 65457
diff changeset
     9
import java.io.{File => JFile}
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
    10
import java.nio.ByteBuffer
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
    11
import java.nio.channels.FileChannel
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
    12
import java.nio.file.StandardOpenOption
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
    13
import java.sql.SQLException
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    14
73364
6bf6160a2c54 proper scala.collection.immutable;
wenzelm
parents: 73359
diff changeset
    15
import scala.collection.immutable.{SortedSet, SortedMap}
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    16
import scala.collection.mutable
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    17
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    18
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
    19
object Sessions {
67284
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    20
  /* session and theory names */
62883
b04e9fe29223 clarified ML bootstrap;
wenzelm
parents: 62864
diff changeset
    21
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    22
  val ROOTS: Path = Path.explode("ROOTS")
72832
03803bbfdca3 tuned signature;
wenzelm
parents: 72816
diff changeset
    23
  val ROOT: Path = Path.explode("ROOT")
03803bbfdca3 tuned signature;
wenzelm
parents: 72816
diff changeset
    24
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    25
  val roots_name: String = "ROOTS"
67215
03d0c958d65a PIDE markup for session ROOT files;
wenzelm
parents: 67210
diff changeset
    26
  val root_name: String = "ROOT"
75406
85e8b4c2b9a9 clarified signature: avoid ambiguity in scala3;
wenzelm
parents: 75405
diff changeset
    27
  val theory_import: String = "Pure.Sessions"
67215
03d0c958d65a PIDE markup for session ROOT files;
wenzelm
parents: 67210
diff changeset
    28
69762
58fb0d779583 support for session information via virtual file-system;
wenzelm
parents: 69671
diff changeset
    29
  val UNSORTED = "Unsorted"
65445
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65441
diff changeset
    30
  val DRAFT = "Draft"
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65441
diff changeset
    31
65360
wenzelm
parents: 65359
diff changeset
    32
  def is_pure(name: String): Boolean = name == Thy_Header.PURE
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    33
75922
b327e5d5d6b4 tuned signature;
wenzelm
parents: 75921
diff changeset
    34
  def illegal_session(name: String): Boolean = name == "" || name == DRAFT
b327e5d5d6b4 tuned signature;
wenzelm
parents: 75921
diff changeset
    35
  def illegal_theory(name: String): Boolean = name == root_name || name == "bib"
67284
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    36
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    37
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    38
  /* ROOTS file format */
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    39
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
    40
  class File_Format extends isabelle.File_Format {
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    41
    val format_name: String = roots_name
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    42
    val file_ext = ""
72839
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    43
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    44
    override def detect(name: String): Boolean =
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    45
      Thy_Header.split_file_name(name) match {
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    46
        case Some((_, file_name)) => file_name == roots_name
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    47
        case None => false
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    48
      }
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    49
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    50
    override def theory_suffix: String = "ROOTS_file"
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    51
    override def theory_content(name: String): String =
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    52
      """theory "ROOTS" imports Pure begin ROOTS_file """ +
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    53
        Outer_Syntax.quote_string(name) + """ end"""
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    54
  }
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    55
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    56
67284
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    57
  /* base info and source dependencies */
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    58
65495
60d4fbed2b1f tuned signature;
wenzelm
parents: 65490
diff changeset
    59
  sealed case class Base(
75750
2eee2fdfb6e2 clarified signature: proper session_name for Sessions.Base (like Sessions.Info);
wenzelm
parents: 75749
diff changeset
    60
    session_name: String = "",
75749
45fc58d48e4a tuned signature;
wenzelm
parents: 75748
diff changeset
    61
    session_pos: Position.T = Position.none,
75748
b6d74c90b588 clarified signature;
wenzelm
parents: 75744
diff changeset
    62
    proper_session_theories: List[Document.Node.Name] = Nil,
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
    63
    document_theories: List[Document.Node.Name] = Nil,
75740
d22ae56ca00c tuned comments;
wenzelm
parents: 75739
diff changeset
    64
    loaded_theories: Graph[String, Outer_Syntax] = Graph.string,  // cumulative imports
d22ae56ca00c tuned comments;
wenzelm
parents: 75739
diff changeset
    65
    used_theories: List[(Document.Node.Name, Options)] = Nil,  // new imports
72816
ea4f86914cb2 support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents: 72799
diff changeset
    66
    load_commands: Map[Document.Node.Name, List[Command_Span.Span]] = Map.empty,
70740
525c18b8ed53 clarified data structures;
wenzelm
parents: 70739
diff changeset
    67
    known_theories: Map[String, Document.Node.Entry] = Map.empty,
525c18b8ed53 clarified data structures;
wenzelm
parents: 70739
diff changeset
    68
    known_loaded_files: Map[String, List[Path]] = Map.empty,
66720
b07192253605 tuned signature;
wenzelm
parents: 66719
diff changeset
    69
    overall_syntax: Outer_Syntax = Outer_Syntax.empty,
66744
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
    70
    imported_sources: List[(Path, SHA1.Digest)] = Nil,
75741
17b1c4fbc008 tuned signature;
wenzelm
parents: 75740
diff changeset
    71
    session_sources: List[(Path, SHA1.Digest)] = Nil,
66822
4642cf4a7ebb tuned signature;
wenzelm
parents: 66819
diff changeset
    72
    session_graph_display: Graph_Display.Graph = Graph_Display.empty_graph,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
    73
    errors: List[String] = Nil
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
    74
  ) {
75885
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
    75
    def session_entry: (String, Base) = session_name -> this
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
    76
69102
4b06a20b13b5 tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents: 69080
diff changeset
    77
    override def toString: String =
75750
2eee2fdfb6e2 clarified signature: proper session_name for Sessions.Base (like Sessions.Info);
wenzelm
parents: 75749
diff changeset
    78
      "Sessions.Base(session_name = " + quote(session_name) +
2eee2fdfb6e2 clarified signature: proper session_name for Sessions.Base (like Sessions.Info);
wenzelm
parents: 75749
diff changeset
    79
        ", loaded_theories = " + loaded_theories.size +
69102
4b06a20b13b5 tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents: 69080
diff changeset
    80
        ", used_theories = " + used_theories.length + ")"
4b06a20b13b5 tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents: 69080
diff changeset
    81
66717
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
    82
    def loaded_theory(name: String): Boolean = loaded_theories.defined(name)
66712
4c98c929a12a session-qualified theory names are mandatory;
wenzelm
parents: 66701
diff changeset
    83
    def loaded_theory(name: Document.Node.Name): Boolean = loaded_theory(name.theory)
65432
wenzelm
parents: 65430
diff changeset
    84
66717
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
    85
    def loaded_theory_syntax(name: String): Option[Outer_Syntax] =
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
    86
      if (loaded_theory(name)) Some(loaded_theories.get_node(name)) else None
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
    87
    def loaded_theory_syntax(name: Document.Node.Name): Option[Outer_Syntax] =
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
    88
      loaded_theory_syntax(name.theory)
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
    89
72669
5e7916535860 generate theory HTML in Isabelle/Scala;
wenzelm
parents: 72666
diff changeset
    90
    def theory_syntax(name: Document.Node.Name): Outer_Syntax =
5e7916535860 generate theory HTML in Isabelle/Scala;
wenzelm
parents: 72666
diff changeset
    91
      loaded_theory_syntax(name) getOrElse overall_syntax
5e7916535860 generate theory HTML in Isabelle/Scala;
wenzelm
parents: 72666
diff changeset
    92
66770
122df1fde073 clarified node_syntax (amending ae38b8c0fdd9): default to overall_syntax, e.g. relevant for command spans wrt. bad header;
wenzelm
parents: 66764
diff changeset
    93
    def node_syntax(nodes: Document.Nodes, name: Document.Node.Name): Outer_Syntax =
122df1fde073 clarified node_syntax (amending ae38b8c0fdd9): default to overall_syntax, e.g. relevant for command spans wrt. bad header;
wenzelm
parents: 66764
diff changeset
    94
      nodes(name).syntax orElse loaded_theory_syntax(name) getOrElse overall_syntax
65355
403eabd73c9a tuned signature;
wenzelm
parents: 65326
diff changeset
    95
  }
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    96
75885
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
    97
  val bootstrap_base: Base = Base(overall_syntax = Thy_Header.bootstrap_syntax)
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
    98
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
    99
  sealed case class Deps(sessions_structure: Structure, session_bases: Map[String, Base]) {
69102
4b06a20b13b5 tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents: 69080
diff changeset
   100
    override def toString: String = "Sessions.Deps(" + sessions_structure + ")"
4b06a20b13b5 tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents: 69080
diff changeset
   101
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   102
    def is_empty: Boolean = session_bases.isEmpty
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   103
    def apply(name: String): Base = session_bases(name)
66988
7f8c1dd7576a support alternative ancestor session;
wenzelm
parents: 66987
diff changeset
   104
    def get(name: String): Option[Base] = session_bases.get(name)
66744
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
   105
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
   106
    def imported_sources(name: String): List[SHA1.Digest] =
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
   107
      session_bases(name).imported_sources.map(_._2)
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
   108
75741
17b1c4fbc008 tuned signature;
wenzelm
parents: 75740
diff changeset
   109
    def session_sources(name: String): List[SHA1.Digest] =
17b1c4fbc008 tuned signature;
wenzelm
parents: 75740
diff changeset
   110
      session_bases(name).session_sources.map(_._2)
66571
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   111
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   112
    def errors: List[String] =
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   113
      (for {
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   114
        (name, base) <- session_bases.iterator
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   115
        if base.errors.nonEmpty
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   116
      } yield cat_lines(base.errors) +
75749
45fc58d48e4a tuned signature;
wenzelm
parents: 75748
diff changeset
   117
          "\nThe error(s) above occurred in session " + quote(name) + Position.here(base.session_pos)
66571
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   118
      ).toList
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   119
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   120
    def check_errors: Deps =
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   121
      errors match {
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   122
        case Nil => this
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   123
        case errs => error(cat_lines(errs))
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   124
      }
75774
efc25bf4b795 discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents: 75773
diff changeset
   125
efc25bf4b795 discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents: 75773
diff changeset
   126
    def base_info(session: String): Base_Info =
75777
ed32b5554ed3 clarified signature;
wenzelm
parents: 75775
diff changeset
   127
      Base_Info(base = apply(session), sessions_structure = sessions_structure, errors = errors)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   128
  }
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
   129
67052
caf87d4b9b61 tuned signature;
wenzelm
parents: 67029
diff changeset
   130
  def deps(sessions_structure: Structure,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   131
    progress: Progress = new Progress,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   132
    inlined_files: Boolean = false,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   133
    verbose: Boolean = false,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   134
    list_files: Boolean = false,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   135
    check_keywords: Set[String] = Set.empty
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   136
  ): Deps = {
66743
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   137
    var cache_sources = Map.empty[JFile, SHA1.Digest]
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   138
    def check_sources(paths: List[Path]): List[(Path, SHA1.Digest)] = {
66743
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   139
      for {
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   140
        path <- paths
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   141
        file = path.file
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   142
        if cache_sources.isDefinedAt(file) || file.isFile
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   143
      }
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   144
      yield {
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   145
        cache_sources.get(file) match {
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   146
          case Some(digest) => (path, digest)
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   147
          case None =>
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   148
            val digest = SHA1.digest(file)
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   149
            cache_sources = cache_sources + (file -> digest)
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   150
            (path, digest)
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   151
        }
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   152
      }
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   153
    }
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   154
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   155
    val session_bases =
75885
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
   156
      sessions_structure.imports_topological_order.foldLeft(
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
   157
          Map(Sessions.bootstrap_base.session_entry)) {
67023
e27e05d6f2a7 tuned signature;
wenzelm
parents: 67018
diff changeset
   158
        case (session_bases, session_name) =>
67880
e59220a075de tuned signature;
wenzelm
parents: 67869
diff changeset
   159
          progress.expose_interrupt()
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   160
67024
wenzelm
parents: 67023
diff changeset
   161
          val info = sessions_structure(session_name)
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   162
          try {
72066
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   163
            val deps_base = info.deps_base(session_bases)
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   164
            val resources = new Resources(sessions_structure, deps_base)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   165
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   166
            if (verbose || list_files) {
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   167
              val groups =
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   168
                if (info.groups.isEmpty) ""
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   169
                else info.groups.mkString(" (", " ", ")")
75977
59aa034220bf more robust: ensure that chapter/session/theory do not contain special notation (like "/" or "..");
wenzelm
parents: 75967
diff changeset
   170
              progress.echo("Session " + info.chapter + "/" + session_name + groups)
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   171
            }
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   172
69008
d55783ea6cf6 more detailed session dependencies, with conditions for theories;
wenzelm
parents: 68841
diff changeset
   173
            val dependencies = resources.session_dependencies(info)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   174
67053
wenzelm
parents: 67052
diff changeset
   175
            val overall_syntax = dependencies.overall_syntax
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   176
75748
b6d74c90b588 clarified signature;
wenzelm
parents: 75744
diff changeset
   177
            val proper_session_theories =
75884
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   178
              dependencies.theories.filter(name =>
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   179
                sessions_structure.theory_qualifier(name) == session_name)
72323
e36f94e2eb6b some support for document preparation in Isabelle/Scala;
wenzelm
parents: 72068
diff changeset
   180
67059
df7d728103f1 tuned signature;
wenzelm
parents: 67053
diff changeset
   181
            val theory_files = dependencies.theories.map(_.path)
72068
4768b1facec2 clarified errors: avoid hiding of import_errors/dir_errors by their consequences (file-access problems);
wenzelm
parents: 72067
diff changeset
   182
72816
ea4f86914cb2 support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents: 72799
diff changeset
   183
            val (load_commands, load_commands_errors) =
ea4f86914cb2 support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents: 72799
diff changeset
   184
              try { if (inlined_files) (dependencies.load_commands, Nil) else (Nil, Nil) }
72068
4768b1facec2 clarified errors: avoid hiding of import_errors/dir_errors by their consequences (file-access problems);
wenzelm
parents: 72067
diff changeset
   185
              catch { case ERROR(msg) => (Nil, List(msg)) }
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   186
72816
ea4f86914cb2 support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents: 72799
diff changeset
   187
            val loaded_files =
ea4f86914cb2 support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents: 72799
diff changeset
   188
              load_commands.map({ case (name, spans) => dependencies.loaded_files(name, spans) })
ea4f86914cb2 support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents: 72799
diff changeset
   189
66742
wenzelm
parents: 66737
diff changeset
   190
            val session_files =
66701
d181f8a0e857 maintain loaded_files for each theory;
wenzelm
parents: 66696
diff changeset
   191
              (theory_files ::: loaded_files.flatMap(_._2) :::
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   192
                info.document_files.map(file => info.dir + file._1 + file._2)).map(_.expand)
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   193
67053
wenzelm
parents: 67052
diff changeset
   194
            val imported_files = if (inlined_files) dependencies.imported_files else Nil
66743
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   195
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   196
            if (list_files) {
66742
wenzelm
parents: 66737
diff changeset
   197
              progress.echo(cat_lines(session_files.map(_.implode).sorted.map("  " + _)))
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   198
            }
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   199
66719
d37efafd55b5 clarified theory syntax vs. overall session syntax;
wenzelm
parents: 66718
diff changeset
   200
            if (check_keywords.nonEmpty) {
d37efafd55b5 clarified theory syntax vs. overall session syntax;
wenzelm
parents: 66718
diff changeset
   201
              Check_Keywords.check_keywords(
66720
b07192253605 tuned signature;
wenzelm
parents: 66719
diff changeset
   202
                progress, overall_syntax.keywords, check_keywords, theory_files)
66719
d37efafd55b5 clarified theory syntax vs. overall session syntax;
wenzelm
parents: 66718
diff changeset
   203
            }
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   204
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   205
            val session_graph_display: Graph_Display.Graph = {
65507
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   206
              def session_node(name: String): Graph_Display.Node =
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   207
                Graph_Display.Node("[" + name + "]", "session." + name)
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   208
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   209
              def node(name: Document.Node.Name): Graph_Display.Node = {
75884
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   210
                val qualifier = sessions_structure.theory_qualifier(name)
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   211
                if (qualifier == info.name) {
65507
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   212
                  Graph_Display.Node(name.theory_base_name, "theory." + name.theory)
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   213
                }
65528
d15d302da7f0 proper theory_qualifier;
wenzelm
parents: 65525
diff changeset
   214
                else session_node(qualifier)
65507
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   215
              }
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   216
70946
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   217
              val required_sessions =
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   218
                dependencies.loaded_theories.all_preds(dependencies.theories.map(_.theory))
75884
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   219
                  .map(theory => sessions_structure.theory_qualifier(theory))
71574
95460356d633 avoid premature crash due to missing session parents/imports;
wenzelm
parents: 71569
diff changeset
   220
                  .filter(name => name != info.name && sessions_structure.defined(name))
70946
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   221
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   222
              val required_subgraph =
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   223
                sessions_structure.imports_graph
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   224
                  .restrict(sessions_structure.imports_graph.all_preds(required_sessions).toSet)
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   225
                  .transitive_closure
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   226
                  .restrict(required_sessions.toSet)
79d23e6436d0 clarified session_graph_display: restrict sessions to actually required theories;
wenzelm
parents: 70869
diff changeset
   227
                  .transitive_reduction_acyclic
65507
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   228
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   229
              val graph0 =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   230
                required_subgraph.topological_order.foldLeft(Graph_Display.empty_graph) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   231
                  case (g, session) =>
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   232
                    val a = session_node(session)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   233
                    val bs = required_subgraph.imm_preds(session).toList.map(session_node)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   234
                    bs.foldLeft((a :: bs).foldLeft(g)(_.default_node(_, Nil)))(_.add_edge(_, a))
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   235
                }
65507
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   236
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   237
              dependencies.entries.foldLeft(graph0) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   238
                case (g, entry) =>
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   239
                  val a = node(entry.name)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   240
                  val bs = entry.header.imports.map(node).filterNot(_ == a)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   241
                  bs.foldLeft((a :: bs).foldLeft(g)(_.default_node(_, Nil)))(_.add_edge(_, a))
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   242
              }
65507
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   243
            }
decdb95bd007 clarified session graph: collapse theories from other sessions;
wenzelm
parents: 65500
diff changeset
   244
70740
525c18b8ed53 clarified data structures;
wenzelm
parents: 70739
diff changeset
   245
            val known_theories =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   246
              dependencies.entries.iterator.map(entry => entry.name.theory -> entry).
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   247
                foldLeft(deps_base.known_theories)(_ + _)
70740
525c18b8ed53 clarified data structures;
wenzelm
parents: 70739
diff changeset
   248
72066
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   249
            val known_loaded_files = deps_base.known_loaded_files ++ loaded_files
66701
d181f8a0e857 maintain loaded_files for each theory;
wenzelm
parents: 66696
diff changeset
   250
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   251
            val import_errors = {
72067
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   252
              val known_sessions =
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   253
                sessions_structure.imports_requirements(List(session_name)).toSet
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   254
              for {
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   255
                name <- dependencies.theories
75884
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   256
                qualifier = sessions_structure.theory_qualifier(name)
72067
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   257
                if !known_sessions(qualifier)
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   258
              } yield "Bad import of theory " + quote(name.toString) +
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   259
                ": need to include sessions " + quote(qualifier) + " in ROOT"
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   260
            }
17507b48b6f5 clarified errors: avoid accidental import from other session that happens to be within overall selection (notably "isabelle build -a");
wenzelm
parents: 72066
diff changeset
   261
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   262
            val document_errors =
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   263
              info.document_theories.flatMap(
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   264
              {
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   265
                case (thy, pos) =>
74812
wenzelm
parents: 74810
diff changeset
   266
                  val build_hierarchy =
72647
fd6dc1a4b9ca more robust, e.g. for "isabelle build_doc system";
wenzelm
parents: 72634
diff changeset
   267
                    if (sessions_structure.build_graph.defined(session_name)) {
74812
wenzelm
parents: 74810
diff changeset
   268
                      sessions_structure.build_hierarchy(session_name)
72647
fd6dc1a4b9ca more robust, e.g. for "isabelle build_doc system";
wenzelm
parents: 72634
diff changeset
   269
                    }
fd6dc1a4b9ca more robust, e.g. for "isabelle build_doc system";
wenzelm
parents: 72634
diff changeset
   270
                    else Nil
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   271
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   272
                  def err(msg: String): Option[String] =
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   273
                    Some(msg + " " + quote(thy) + Position.here(pos))
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   274
72604
wenzelm
parents: 72603
diff changeset
   275
                  known_theories.get(thy).map(_.name) match {
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   276
                    case None => err("Unknown document theory")
72604
wenzelm
parents: 72603
diff changeset
   277
                    case Some(name) =>
75884
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   278
                      val qualifier = sessions_structure.theory_qualifier(name)
75748
b6d74c90b588 clarified signature;
wenzelm
parents: 75744
diff changeset
   279
                      if (proper_session_theories.contains(name)) {
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   280
                        err("Redundant document theory from this session:")
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   281
                      }
74812
wenzelm
parents: 74810
diff changeset
   282
                      else if (build_hierarchy.contains(qualifier)) None
72604
wenzelm
parents: 72603
diff changeset
   283
                      else if (dependencies.theories.contains(name)) None
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   284
                      else err("Document theory from other session not imported properly:")
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   285
                  }
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   286
              })
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   287
            val document_theories =
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   288
              info.document_theories.map({ case (thy, _) => known_theories(thy).name })
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   289
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   290
            val dir_errors = {
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
   291
              val ok = info.dirs.map(_.canonical_file).toSet
70679
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   292
              val bad =
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   293
                (for {
75748
b6d74c90b588 clarified signature;
wenzelm
parents: 75744
diff changeset
   294
                  name <- proper_session_theories.iterator
70719
b3f61e166763 more errors;
wenzelm
parents: 70715
diff changeset
   295
                  path = name.master_dir_path
70676
73812c598a26 check session directories;
wenzelm
parents: 70674
diff changeset
   296
                  if !ok(path.canonical_file)
70679
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   297
                  path1 = File.relative_path(info.dir.canonical, path).getOrElse(path)
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   298
                } yield (path1, name)).toList
71602
wenzelm
parents: 71601
diff changeset
   299
              val bad_dirs = (for { (path1, _) <- bad } yield path1.toString).distinct.sorted
70679
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   300
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   301
              val errs1 =
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   302
                for { (path1, name) <- bad }
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   303
                yield "Implicit use of directory " + path1 + " for theory " + quote(name.toString)
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   304
              val errs2 =
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   305
                if (bad_dirs.isEmpty) Nil
7b6e6d61204a clarified messages;
wenzelm
parents: 70678
diff changeset
   306
                else List("Implicit use of session directories: " + commas(bad_dirs))
70693
0fec12eabad0 session directories need to exist;
wenzelm
parents: 70687
diff changeset
   307
              val errs3 = for (p <- info.dirs if !p.is_dir) yield "No such directory: " + p
70719
b3f61e166763 more errors;
wenzelm
parents: 70715
diff changeset
   308
              val errs4 =
b3f61e166763 more errors;
wenzelm
parents: 70715
diff changeset
   309
                (for {
75748
b6d74c90b588 clarified signature;
wenzelm
parents: 75744
diff changeset
   310
                  name <- proper_session_theories.iterator
70719
b3f61e166763 more errors;
wenzelm
parents: 70715
diff changeset
   311
                  name1 <- resources.find_theory_node(name.theory)
b3f61e166763 more errors;
wenzelm
parents: 70715
diff changeset
   312
                  if name.node != name1.node
b3f61e166763 more errors;
wenzelm
parents: 70715
diff changeset
   313
                } yield "Incoherent theory file import:\n  " + name.path + " vs. \n  " + name1.path)
b3f61e166763 more errors;
wenzelm
parents: 70715
diff changeset
   314
                .toList
70693
0fec12eabad0 session directories need to exist;
wenzelm
parents: 70687
diff changeset
   315
70719
b3f61e166763 more errors;
wenzelm
parents: 70715
diff changeset
   316
              errs1 ::: errs2 ::: errs3 ::: errs4
70676
73812c598a26 check session directories;
wenzelm
parents: 70674
diff changeset
   317
            }
73812c598a26 check session directories;
wenzelm
parents: 70674
diff changeset
   318
66743
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   319
            val sources_errors =
ff05d922bc34 cache sources: invoke SHA1.digest at most once;
wenzelm
parents: 66742
diff changeset
   320
              for (p <- session_files if !p.is_file) yield "No such file: " + p
66604
1af360d1cad2 tolerate more errors (cf. 1e5ae735e026);
wenzelm
parents: 66575
diff changeset
   321
69904
6f5bd59f75f4 more sanity checks;
wenzelm
parents: 69857
diff changeset
   322
            val path_errors =
6f5bd59f75f4 more sanity checks;
wenzelm
parents: 69857
diff changeset
   323
              try { Path.check_case_insensitive(session_files ::: imported_files); Nil }
6f5bd59f75f4 more sanity checks;
wenzelm
parents: 69857
diff changeset
   324
              catch { case ERROR(msg) => List(msg) }
6f5bd59f75f4 more sanity checks;
wenzelm
parents: 69857
diff changeset
   325
67297
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   326
            val bibtex_errors =
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   327
              try { info.bibtex_entries; Nil }
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   328
              catch { case ERROR(msg) => List(msg) }
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   329
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   330
            val base =
66571
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   331
              Base(
75750
2eee2fdfb6e2 clarified signature: proper session_name for Sessions.Base (like Sessions.Info);
wenzelm
parents: 75749
diff changeset
   332
                session_name = info.name,
75749
45fc58d48e4a tuned signature;
wenzelm
parents: 75748
diff changeset
   333
                session_pos = info.pos,
75748
b6d74c90b588 clarified signature;
wenzelm
parents: 75744
diff changeset
   334
                proper_session_theories = proper_session_theories,
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   335
                document_theories = document_theories,
67053
wenzelm
parents: 67052
diff changeset
   336
                loaded_theories = dependencies.loaded_theories,
72062
d0909b5d88eb tuned signature;
wenzelm
parents: 71971
diff changeset
   337
                used_theories = dependencies.theories_adjunct,
72816
ea4f86914cb2 support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents: 72799
diff changeset
   338
                load_commands = load_commands.toMap,
70740
525c18b8ed53 clarified data structures;
wenzelm
parents: 70739
diff changeset
   339
                known_theories = known_theories,
525c18b8ed53 clarified data structures;
wenzelm
parents: 70739
diff changeset
   340
                known_loaded_files = known_loaded_files,
66720
b07192253605 tuned signature;
wenzelm
parents: 66719
diff changeset
   341
                overall_syntax = overall_syntax,
66744
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
   342
                imported_sources = check_sources(imported_files),
75741
17b1c4fbc008 tuned signature;
wenzelm
parents: 75740
diff changeset
   343
                session_sources = check_sources(session_files),
66822
4642cf4a7ebb tuned signature;
wenzelm
parents: 66819
diff changeset
   344
                session_graph_display = session_graph_display,
72816
ea4f86914cb2 support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents: 72799
diff changeset
   345
                errors = dependencies.errors ::: load_commands_errors ::: import_errors :::
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   346
                  document_errors ::: dir_errors ::: sources_errors ::: path_errors :::
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   347
                  bibtex_errors)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   348
75885
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
   349
            session_bases + base.session_entry
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   350
          }
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   351
          catch {
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   352
            case ERROR(msg) =>
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   353
              cat_error(msg, "The error(s) above occurred in session " +
65519
d244d8f8e13f store Sessions.Info.name;
wenzelm
parents: 65517
diff changeset
   354
                quote(info.name) + Position.here(info.pos))
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   355
          }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   356
      }
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   357
70686
9cde8c4ea5a5 discontinued obsolete "isabelle imports" and all_known data;
wenzelm
parents: 70685
diff changeset
   358
    Deps(sessions_structure, session_bases)
65372
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   359
  }
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   360
66963
1c3d0c12bb51 clarified signature;
wenzelm
parents: 66962
diff changeset
   361
1c3d0c12bb51 clarified signature;
wenzelm
parents: 66962
diff changeset
   362
  /* base info */
1c3d0c12bb51 clarified signature;
wenzelm
parents: 66962
diff changeset
   363
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   364
  sealed case class Base_Info(
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   365
    base: Base,
75777
ed32b5554ed3 clarified signature;
wenzelm
parents: 75775
diff changeset
   366
    sessions_structure: Structure = Structure.empty,
ed32b5554ed3 clarified signature;
wenzelm
parents: 75775
diff changeset
   367
    errors: List[String] = Nil,
ed32b5554ed3 clarified signature;
wenzelm
parents: 75775
diff changeset
   368
    infos: List[Info] = Nil
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   369
  ) {
75921
423021c98500 clarified signature: Sessions.Base_Info follows Sessions.Base;
wenzelm
parents: 75920
diff changeset
   370
    def session_name: String = base.session_name
75920
27bf2533f4a4 clarified signature: follow Sessions.Deps.check_errors (despite Process_Result.check);
wenzelm
parents: 75917
diff changeset
   371
27bf2533f4a4 clarified signature: follow Sessions.Deps.check_errors (despite Process_Result.check);
wenzelm
parents: 75917
diff changeset
   372
    def check_errors: Base_Info =
27bf2533f4a4 clarified signature: follow Sessions.Deps.check_errors (despite Process_Result.check);
wenzelm
parents: 75917
diff changeset
   373
      if (errors.isEmpty) this
27bf2533f4a4 clarified signature: follow Sessions.Deps.check_errors (despite Process_Result.check);
wenzelm
parents: 75917
diff changeset
   374
      else error(cat_lines(errors))
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   375
  }
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   376
75779
5470c67bd772 clarified signature: prefer Export.Session_Context;
wenzelm
parents: 75777
diff changeset
   377
  def base_info0(session: String): Base_Info =
75777
ed32b5554ed3 clarified signature;
wenzelm
parents: 75775
diff changeset
   378
    Base_Info(Base(session_name = session))
ed32b5554ed3 clarified signature;
wenzelm
parents: 75775
diff changeset
   379
67846
wenzelm
parents: 67493
diff changeset
   380
  def base_info(options: Options,
wenzelm
parents: 67493
diff changeset
   381
    session: String,
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71642
diff changeset
   382
    progress: Progress = new Progress,
65428
f8dd71a0791a support for all_known_theories of all sessions;
wenzelm
parents: 65427
diff changeset
   383
    dirs: List[Path] = Nil,
67922
9e668ae81f97 clarified signature: prefer selective include_sessions;
wenzelm
parents: 67880
diff changeset
   384
    include_sessions: List[String] = Nil,
68370
bcdc47c9d4af clarified signature;
wenzelm
parents: 68318
diff changeset
   385
    session_ancestor: Option[String] = None,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   386
    session_requirements: Boolean = false
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   387
  ): Base_Info = {
67026
687c822ee5e3 tuned signature;
wenzelm
parents: 67025
diff changeset
   388
    val full_sessions = load_structure(options, dirs = dirs)
65372
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   389
66990
b23adab22e67 allow unrelated ancestor;
wenzelm
parents: 66988
diff changeset
   390
    val selected_sessions =
68370
bcdc47c9d4af clarified signature;
wenzelm
parents: 68318
diff changeset
   391
      full_sessions.selection(Selection(sessions = session :: session_ancestor.toList))
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   392
    val info = selected_sessions(session)
68370
bcdc47c9d4af clarified signature;
wenzelm
parents: 68318
diff changeset
   393
    val ancestor = session_ancestor orElse info.parent
66963
1c3d0c12bb51 clarified signature;
wenzelm
parents: 66962
diff changeset
   394
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   395
    val (session1, infos1) =
68370
bcdc47c9d4af clarified signature;
wenzelm
parents: 68318
diff changeset
   396
      if (session_requirements && ancestor.isDefined) {
70671
cb1776c8e216 clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents: 70668
diff changeset
   397
        val deps = Sessions.deps(selected_sessions, progress = progress)
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   398
        val base = deps(session)
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   399
66988
7f8c1dd7576a support alternative ancestor session;
wenzelm
parents: 66987
diff changeset
   400
        val ancestor_loaded =
7f8c1dd7576a support alternative ancestor session;
wenzelm
parents: 66987
diff changeset
   401
          deps.get(ancestor.get) match {
66990
b23adab22e67 allow unrelated ancestor;
wenzelm
parents: 66988
diff changeset
   402
            case Some(ancestor_base)
b23adab22e67 allow unrelated ancestor;
wenzelm
parents: 66988
diff changeset
   403
            if !selected_sessions.imports_requirements(List(ancestor.get)).contains(session) =>
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71599
diff changeset
   404
              ancestor_base.loaded_theories.defined _
66990
b23adab22e67 allow unrelated ancestor;
wenzelm
parents: 66988
diff changeset
   405
            case _ =>
66988
7f8c1dd7576a support alternative ancestor session;
wenzelm
parents: 66987
diff changeset
   406
              error("Bad ancestor " + quote(ancestor.get) + " for session " + quote(session))
7f8c1dd7576a support alternative ancestor session;
wenzelm
parents: 66987
diff changeset
   407
          }
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   408
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   409
        val required_theories =
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   410
          for {
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   411
            thy <- base.loaded_theories.keys
75884
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   412
            if !ancestor_loaded(thy) && selected_sessions.theory_qualifier(thy) != session
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   413
          }
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   414
          yield thy
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   415
66988
7f8c1dd7576a support alternative ancestor session;
wenzelm
parents: 66987
diff changeset
   416
        if (required_theories.isEmpty) (ancestor.get, Nil)
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   417
        else {
68370
bcdc47c9d4af clarified signature;
wenzelm
parents: 68318
diff changeset
   418
          val other_name = info.name + "_requirements(" + ancestor.get + ")"
71569
391ea80ff27c more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents: 70946
diff changeset
   419
          Isabelle_System.isabelle_tmp_prefix()
391ea80ff27c more robust re-use of $ISABELLE_TMP_PREFIX (amending c1597167563e);
wenzelm
parents: 70946
diff changeset
   420
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   421
          (other_name,
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   422
            List(
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   423
              make_info(
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   424
                Chapter_Defs.empty,
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   425
                info.options,
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   426
                dir_selected = false,
70685
c1597167563e avoid duplicate directories wrt. synthetic session;
wenzelm
parents: 70684
diff changeset
   427
                dir = Path.explode("$ISABELLE_TMP_PREFIX"),
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   428
                chapter = info.chapter,
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   429
                Session_Entry(
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   430
                  pos = info.pos,
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   431
                  name = other_name,
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   432
                  groups = info.groups,
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   433
                  path = ".",
66988
7f8c1dd7576a support alternative ancestor session;
wenzelm
parents: 66987
diff changeset
   434
                  parent = ancestor,
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   435
                  description = "Required theory imports from other sessions",
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   436
                  options = Nil,
66991
fc87d3becd69 proper deps;
wenzelm
parents: 66990
diff changeset
   437
                  imports = info.deps,
70678
36c8c32346cb clarified syntax: 'directories' and 'theories' belong together;
wenzelm
parents: 70676
diff changeset
   438
                  directories = Nil,
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   439
                  theories = List((Nil, required_theories.map(thy => ((thy, Position.none), false)))),
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   440
                  document_theories = Nil,
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
   441
                  document_files = Nil,
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   442
                  export_files = Nil,
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   443
                  export_classpath = Nil))))
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   444
        }
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   445
      }
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   446
      else (session, Nil)
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
   447
66974
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   448
    val full_sessions1 =
b14c24b31f45 avoid duplicate invocation of expensive Sessions.deps on full_sessions;
wenzelm
parents: 66970
diff changeset
   449
      if (infos1.isEmpty) full_sessions
67026
687c822ee5e3 tuned signature;
wenzelm
parents: 67025
diff changeset
   450
      else load_structure(options, dirs = dirs, infos = infos1)
66987
352b23c97ac8 support focus_session, for much faster startup of Isabelle/jEdit;
wenzelm
parents: 66984
diff changeset
   451
352b23c97ac8 support focus_session, for much faster startup of Isabelle/jEdit;
wenzelm
parents: 66984
diff changeset
   452
    val selected_sessions1 =
70683
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   453
      full_sessions1.selection(Selection(sessions = session1 :: session :: include_sessions))
66964
9f2de457b95e clarified signature;
wenzelm
parents: 66963
diff changeset
   454
70683
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   455
    val deps1 = Sessions.deps(selected_sessions1, progress = progress)
66964
9f2de457b95e clarified signature;
wenzelm
parents: 66963
diff changeset
   456
75777
ed32b5554ed3 clarified signature;
wenzelm
parents: 75775
diff changeset
   457
    Base_Info(deps1(session1), sessions_structure = full_sessions1,
ed32b5554ed3 clarified signature;
wenzelm
parents: 75775
diff changeset
   458
      errors = deps1.errors, infos = infos1)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   459
  }
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   460
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   461
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   462
  /* cumulative session info */
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   463
75999
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   464
  sealed case class Chapter_Info(
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   465
    name: String,
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   466
    pos: Position.T,
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   467
    groups: List[String],
75999
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   468
    description: String,
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   469
    sessions: List[String]
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   470
  )
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   471
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   472
  sealed case class Info(
65519
d244d8f8e13f store Sessions.Info.name;
wenzelm
parents: 65517
diff changeset
   473
    name: String,
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   474
    chapter: String,
66829
5baca4c94737 tuned signature;
wenzelm
parents: 66828
diff changeset
   475
    dir_selected: Boolean,
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   476
    pos: Position.T,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   477
    groups: List[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   478
    dir: Path,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   479
    parent: Option[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   480
    description: String,
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
   481
    directories: List[Path],
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   482
    options: Options,
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   483
    imports: List[String],
65517
1544e61e5314 more position information;
wenzelm
parents: 65507
diff changeset
   484
    theories: List[(Options, List[(String, Position.T)])],
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   485
    global_theories: List[String],
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   486
    document_theories: List[(String, Position.T)],
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   487
    document_files: List[(Path, Path)],
69671
2486792eaf61 support pruning of export names;
wenzelm
parents: 69560
diff changeset
   488
    export_files: List[(Path, Int, List[String])],
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   489
    export_classpath: List[String],
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   490
    meta_digest: SHA1.Digest
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   491
  ) {
66828
3c936ebebc23 tuned signature;
wenzelm
parents: 66823
diff changeset
   492
    def deps: List[String] = parent.toList ::: imports
3c936ebebc23 tuned signature;
wenzelm
parents: 66823
diff changeset
   493
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   494
    def deps_base(session_bases: String => Base): Base = {
72066
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   495
      val parent_base = session_bases(parent.getOrElse(""))
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   496
      val imports_bases = imports.map(session_bases)
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   497
      parent_base.copy(
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   498
        known_theories =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   499
          (for {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   500
            base <- imports_bases.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   501
            (_, entry) <- base.known_theories.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   502
          } yield (entry.name.theory -> entry)).foldLeft(parent_base.known_theories)(_ + _),
72066
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   503
        known_loaded_files =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   504
          imports_bases.iterator.map(_.known_loaded_files).
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   505
            foldLeft(parent_base.known_loaded_files)(_ ++ _))
72066
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   506
    }
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   507
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
   508
    def dirs: List[Path] = dir :: directories
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
   509
73701
d83e7e444b43 ignore session build timeout, notably in AFP;
wenzelm
parents: 73700
diff changeset
   510
    def timeout_ignored: Boolean =
d83e7e444b43 ignore session build timeout, notably in AFP;
wenzelm
parents: 73700
diff changeset
   511
      !options.bool("timeout_build") || Time.seconds(options.real("timeout")) < Time.ms(1)
d83e7e444b43 ignore session build timeout, notably in AFP;
wenzelm
parents: 73700
diff changeset
   512
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   513
    def timeout: Time = Time.seconds(options.real("timeout") * options.real("timeout_scale"))
67297
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   514
72574
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   515
    def document_enabled: Boolean =
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   516
      options.string("document") match {
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   517
        case "" | "false" => false
73826
72900f34dbb3 allow system option short form NAME for NAME=true for type string, not just bool;
wenzelm
parents: 73815
diff changeset
   518
        case "pdf" | "true" => true
72574
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   519
        case doc => error("Bad document specification " + quote(doc))
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   520
      }
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   521
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   522
    def document_variants: List[Document_Build.Document_Variant] = {
72574
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   523
      val variants =
72649
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   524
        Library.space_explode(':', options.string("document_variants")).
73718
ecb31c3bf980 clarified modules;
wenzelm
parents: 73701
diff changeset
   525
          map(Document_Build.Document_Variant.parse)
72649
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   526
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   527
      val dups = Library.duplicates(variants.map(_.name))
72574
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   528
      if (dups.nonEmpty) error("Duplicate document variants: " + commas_quote(dups))
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   529
72649
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   530
      variants
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   531
    }
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   532
75902
0f46e06030e9 tuned signature;
wenzelm
parents: 75890
diff changeset
   533
    def document_echo: Boolean = options.bool("document_echo")
0f46e06030e9 tuned signature;
wenzelm
parents: 75890
diff changeset
   534
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   535
    def documents: List[Document_Build.Document_Variant] = {
72672
573ccec4dbac tuned signature;
wenzelm
parents: 72670
diff changeset
   536
      val variants = document_variants
72574
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   537
      if (!document_enabled || document_files.isEmpty) Nil else variants
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   538
    }
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   539
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   540
    def document_output: Option[Path] =
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   541
      options.string("document_output") match {
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   542
        case "" => None
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   543
        case s => Some(dir + Path.explode(s))
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   544
      }
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   545
72648
1cbac4ae934d more explicit presentation directory;
wenzelm
parents: 72647
diff changeset
   546
    def browser_info: Boolean = options.bool("browser_info")
1cbac4ae934d more explicit presentation directory;
wenzelm
parents: 72647
diff changeset
   547
72613
d01ea9e3bd2d clarified bibtex_entries: refer to overall session structure;
wenzelm
parents: 72604
diff changeset
   548
    lazy val bibtex_entries: List[Text.Info[String]] =
67297
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   549
      (for {
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   550
        (document_dir, file) <- document_files.iterator
75906
2167b9e3157a clarified signature: support for adhoc file types;
wenzelm
parents: 75902
diff changeset
   551
        if File.is_bib(file.file_name)
67297
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   552
        info <- Bibtex.entries(File.read(dir + document_dir + file)).iterator
86a099f896fc formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents: 67290
diff changeset
   553
      } yield info).toList
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   554
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   555
    def record_proofs: Boolean = options.int("record_proofs") >= 2
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   556
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   557
    def is_afp: Boolean = chapter == AFP.chapter
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   558
    def is_afp_bulky: Boolean = is_afp && groups.exists(AFP.groups_bulky.contains)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   559
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   560
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   561
  def make_info(
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   562
    chapter_defs: Chapter_Defs,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   563
    options: Options,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   564
    dir_selected: Boolean,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   565
    dir: Path,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   566
    chapter: String,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   567
    entry: Session_Entry
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   568
  ): Info = {
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   569
    try {
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   570
      val name = entry.name
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   571
75922
b327e5d5d6b4 tuned signature;
wenzelm
parents: 75921
diff changeset
   572
      if (illegal_session(name)) error("Illegal session name " + quote(name))
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   573
      if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session")
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   574
      if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session")
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   575
70672
e4bba654d085 clarified session_directories: relative to session_path, with overlapping information;
wenzelm
parents: 70671
diff changeset
   576
      val session_path = dir + Path.explode(entry.path)
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
   577
      val directories = entry.directories.map(dir => session_path + Path.explode(dir))
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
   578
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   579
      val session_options = options ++ entry.options
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   580
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   581
      val theories =
67216
99815211970c disallow theory name "ROOT";
wenzelm
parents: 67215
diff changeset
   582
        entry.theories.map({ case (opts, thys) =>
99815211970c disallow theory name "ROOT";
wenzelm
parents: 67215
diff changeset
   583
          (session_options ++ opts,
99815211970c disallow theory name "ROOT";
wenzelm
parents: 67215
diff changeset
   584
            thys.map({ case ((thy, pos), _) =>
75923
e4ada7b9e328 more thorough check, without path name artifacts (e.g. "./README");
wenzelm
parents: 75922
diff changeset
   585
              val thy_name = Thy_Header.import_name(thy)
e4ada7b9e328 more thorough check, without path name artifacts (e.g. "./README");
wenzelm
parents: 75922
diff changeset
   586
              if (illegal_theory(thy_name)) {
e4ada7b9e328 more thorough check, without path name artifacts (e.g. "./README");
wenzelm
parents: 75922
diff changeset
   587
                error("Illegal theory name " + quote(thy_name) + Position.here(pos))
75922
b327e5d5d6b4 tuned signature;
wenzelm
parents: 75921
diff changeset
   588
              }
67216
99815211970c disallow theory name "ROOT";
wenzelm
parents: 67215
diff changeset
   589
              else (thy, pos) })) })
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   590
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   591
      val global_theories =
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   592
        for { (_, thys) <- entry.theories; ((thy, pos), global) <- thys if global }
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   593
        yield {
69366
b6dacf6eabe3 clarified signature;
wenzelm
parents: 69255
diff changeset
   594
          val thy_name = Path.explode(thy).file_name
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   595
          if (Long_Name.is_qualified(thy_name)) {
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   596
            error("Bad qualified name for global theory " +
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   597
              quote(thy_name) + Position.here(pos))
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   598
          }
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   599
          else thy_name
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   600
        }
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   601
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   602
      val conditions =
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   603
        theories.flatMap(thys => space_explode(',', thys._1.string("condition"))).distinct.sorted.
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   604
          map(x => (x, Isabelle_System.getenv(x) != ""))
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   605
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   606
      val document_files =
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   607
        entry.document_files.map({ case (s1, s2) => (Path.explode(s1), Path.explode(s2)) })
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   608
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
   609
      val export_files =
69671
2486792eaf61 support pruning of export names;
wenzelm
parents: 69560
diff changeset
   610
        entry.export_files.map({ case (dir, prune, pats) => (Path.explode(dir), prune, pats) })
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
   611
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   612
      val meta_digest =
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   613
        SHA1.digest(
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   614
          (name, chapter, entry.parent, entry.directories, entry.options, entry.imports,
72666
945cee776e79 proper meta_digest: avoid non-portable position information;
wenzelm
parents: 72653
diff changeset
   615
            entry.theories_no_position, conditions, entry.document_theories_no_position,
945cee776e79 proper meta_digest: avoid non-portable position information;
wenzelm
parents: 72653
diff changeset
   616
            entry.document_files)
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   617
          .toString)
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   618
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   619
      val chapter_groups = chapter_defs(chapter).groups
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   620
      val groups = chapter_groups ::: entry.groups.filterNot(chapter_groups.contains)
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   621
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   622
      Info(name, chapter, dir_selected, entry.pos, groups, session_path,
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
   623
        entry.parent, entry.description, directories, session_options,
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   624
        entry.imports, theories, global_theories, entry.document_theories, document_files,
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   625
        export_files, entry.export_classpath, meta_digest)
66967
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   626
    }
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   627
    catch {
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   628
      case ERROR(msg) =>
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   629
        error(msg + "\nThe error(s) above occurred in session entry " +
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   630
          quote(entry.name) + Position.here(entry.pos))
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   631
    }
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   632
  }
e365c91c72a9 synthesize session with all required theories from other session imports;
wenzelm
parents: 66966
diff changeset
   633
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   634
  object Selection {
65422
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   635
    val empty: Selection = Selection()
65525
360063716c71 more operations;
wenzelm
parents: 65524
diff changeset
   636
    val all: Selection = Selection(all_sessions = true)
70788
b254a95b6e77 tuned signature;
wenzelm
parents: 70740
diff changeset
   637
    def session(session: String): Selection = Selection(sessions = List(session))
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   638
  }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   639
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   640
  sealed case class Selection(
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   641
    requirements: Boolean = false,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   642
    all_sessions: Boolean = false,
66737
2edc0c42c883 option -B for "isabelle build" and "isabelle imports";
wenzelm
parents: 66736
diff changeset
   643
    base_sessions: List[String] = Nil,
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   644
    exclude_session_groups: List[String] = Nil,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   645
    exclude_sessions: List[String] = Nil,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   646
    session_groups: List[String] = Nil,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   647
    sessions: List[String] = Nil
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   648
  ) {
66736
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   649
    def ++ (other: Selection): Selection =
65422
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   650
      Selection(
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   651
        requirements = requirements || other.requirements,
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   652
        all_sessions = all_sessions || other.all_sessions,
66737
2edc0c42c883 option -B for "isabelle build" and "isabelle imports";
wenzelm
parents: 66736
diff changeset
   653
        base_sessions = Library.merge(base_sessions, other.base_sessions),
66736
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   654
        exclude_session_groups = Library.merge(exclude_session_groups, other.exclude_session_groups),
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   655
        exclude_sessions = Library.merge(exclude_sessions, other.exclude_sessions),
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   656
        session_groups = Library.merge(session_groups, other.session_groups),
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   657
        sessions = Library.merge(sessions, other.sessions))
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   658
  }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   659
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   660
  object Structure {
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   661
    val empty: Structure = make(Chapter_Defs.empty, Nil)
72858
cb0c407fbc6e added "isabelle log": print messages from build database;
wenzelm
parents: 72855
diff changeset
   662
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   663
    def make(chapter_defs: Chapter_Defs, infos: List[Info]): Structure = {
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   664
      def add_edges(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   665
        graph: Graph[String, Info],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   666
        kind: String,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   667
        edges: Info => Iterable[String]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   668
      ) : Graph[String, Info] = {
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   669
        def add_edge(pos: Position.T, name: String, g: Graph[String, Info], parent: String) = {
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   670
          if (!g.defined(parent)) {
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   671
            error("Bad " + kind + " session " + quote(parent) + " for " +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   672
              quote(name) + Position.here(pos))
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   673
          }
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   674
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   675
          try { g.add_edge_acyclic(parent, name) }
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   676
          catch {
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   677
            case exn: Graph.Cycles[_] =>
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   678
              error(cat_lines(exn.cycles.map(cycle =>
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   679
                "Cyclic session dependency of " +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   680
                  cycle.map(c => quote(c.toString)).mkString(" via "))) + Position.here(pos))
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   681
          }
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   682
        }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   683
        graph.iterator.foldLeft(graph) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   684
          case (g, (name, (info, _))) =>
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   685
            edges(info).foldLeft(g)(add_edge(info.pos, name, _, _))
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   686
        }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   687
      }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   688
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   689
      val info_graph =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   690
        infos.foldLeft(Graph.string[Info]) {
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   691
          case (graph, info) =>
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   692
            if (graph.defined(info.name)) {
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   693
              error("Duplicate session " + quote(info.name) + Position.here(info.pos) +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   694
                Position.here(graph.get_node(info.name).pos))
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   695
            }
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   696
            else graph.new_node(info.name, info)
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   697
        }
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   698
      val build_graph = add_edges(info_graph, "parent", _.parent)
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   699
      val imports_graph = add_edges(build_graph, "imports", _.imports)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   700
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   701
      val session_positions: List[(String, Position.T)] =
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   702
        (for ((name, (info, _)) <- info_graph.iterator) yield (name, info.pos)).toList
70683
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   703
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   704
      val session_directories: Map[JFile, String] =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   705
        (for {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   706
          session <- imports_graph.topological_order.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   707
          info = info_graph.get_node(session)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   708
          dir <- info.dirs.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   709
        } yield (info, dir)).foldLeft(Map.empty[JFile, String]) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   710
            case (dirs, (info, dir)) =>
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   711
              val session = info.name
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   712
              val canonical_dir = dir.canonical_file
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   713
              dirs.get(canonical_dir) match {
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   714
                case Some(session1) =>
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   715
                  val info1 = info_graph.get_node(session1)
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   716
                  error("Duplicate use of directory " + dir +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   717
                    "\n  for session " + quote(session1) + Position.here(info1.pos) +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   718
                    "\n  vs. session " + quote(session) + Position.here(info.pos))
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   719
                case None => dirs + (canonical_dir -> session)
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   720
              }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   721
          }
70671
cb1776c8e216 clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents: 70668
diff changeset
   722
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   723
      val global_theories: Map[String, String] =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   724
        (for {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   725
          session <- imports_graph.topological_order.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   726
          info = info_graph.get_node(session)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   727
          thy <- info.global_theories.iterator }
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   728
          yield (info, thy)).foldLeft(Thy_Header.bootstrap_global_theories.toMap) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   729
            case (global, (info, thy)) =>
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   730
              val qualifier = info.name
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   731
              global.get(thy) match {
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   732
                case Some(qualifier1) if qualifier != qualifier1 =>
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   733
                  error("Duplicate global theory " + quote(thy) + Position.here(info.pos))
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   734
                case _ => global + (thy -> qualifier)
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   735
              }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   736
          }
70671
cb1776c8e216 clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents: 70668
diff changeset
   737
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   738
      new Structure(chapter_defs, session_positions, session_directories,
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   739
        global_theories, build_graph, imports_graph)
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   740
    }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   741
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   742
67052
caf87d4b9b61 tuned signature;
wenzelm
parents: 67029
diff changeset
   743
  final class Structure private[Sessions](
75999
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   744
    chapter_defs: Chapter_Defs,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   745
    val session_positions: List[(String, Position.T)],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   746
    val session_directories: Map[JFile, String],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   747
    val global_theories: Map[String, String],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   748
    val build_graph: Graph[String, Info],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   749
    val imports_graph: Graph[String, Info]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   750
  ) {
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   751
    sessions_structure =>
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   752
75885
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
   753
    def bootstrap: Base = Base(overall_syntax = Thy_Header.bootstrap_syntax)
72845
60f56f623be2 tuned signature;
wenzelm
parents: 72839
diff changeset
   754
70683
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   755
    def dest_session_directories: List[(String, String)] =
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   756
      for ((file, session) <- session_directories.toList)
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   757
        yield (File.standard_path(file), session)
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   758
75999
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   759
    lazy val known_chapters: List[Chapter_Info] = {
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   760
      val chapter_sessions =
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   761
        Multi_Map.from(
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   762
          for ((_, (info, _)) <- build_graph.iterator)
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   763
            yield info.chapter -> info.name)
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   764
      val chapters1 =
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   765
        (for (entry <- chapter_defs.list.iterator) yield {
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   766
          val sessions = chapter_sessions.get_list(entry.name)
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   767
          Chapter_Info(entry.name, entry.pos, entry.groups, entry.description, sessions.sorted)
75999
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   768
        }).toList
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   769
      val chapters2 =
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   770
        (for {
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   771
          (name, sessions) <- chapter_sessions.iterator_list
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   772
          if !chapters1.exists(_.name == name)
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   773
        } yield Chapter_Info(name, Position.none, Nil, "", sessions.sorted)).toList.sortBy(_.name)
75999
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   774
      chapters1 ::: chapters2
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   775
    }
b831a0bdd751 clarified signature of Sessions.Session: chapter_defs: vs. known_chapters (in declaration order) vs. chapters (covered by visible sessions);
wenzelm
parents: 75998
diff changeset
   776
76002
64b05dc56656 tuned signature;
wenzelm
parents: 76001
diff changeset
   777
    def relevant_chapters: List[Chapter_Info] = known_chapters.filter(_.sessions.nonEmpty)
69762
58fb0d779583 support for session information via virtual file-system;
wenzelm
parents: 69671
diff changeset
   778
66823
f529719cc47d operations for graph display;
wenzelm
parents: 66822
diff changeset
   779
    def build_graph_display: Graph_Display.Graph = Graph_Display.make_graph(build_graph)
f529719cc47d operations for graph display;
wenzelm
parents: 66822
diff changeset
   780
    def imports_graph_display: Graph_Display.Graph = Graph_Display.make_graph(imports_graph)
f529719cc47d operations for graph display;
wenzelm
parents: 66822
diff changeset
   781
67025
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
   782
    def defined(name: String): Boolean = imports_graph.defined(name)
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   783
    def apply(name: String): Info = imports_graph.get_node(name)
67025
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
   784
    def get(name: String): Option[Info] = if (defined(name)) Some(apply(name)) else None
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   785
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   786
    def theory_qualifier(name: String): String =
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   787
      global_theories.getOrElse(name, Long_Name.qualifier(name))
75884
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   788
    def theory_qualifier(name: Document.Node.Name): String = theory_qualifier(name.theory)
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   789
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   790
    def check_sessions(names: List[String]): Unit = {
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71599
diff changeset
   791
      val bad_sessions = SortedSet(names.filterNot(defined): _*).toList
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   792
      if (bad_sessions.nonEmpty) {
68542
02df6c68a8cb clarified error;
wenzelm
parents: 68523
diff changeset
   793
        error("Undefined session(s): " + commas_quote(bad_sessions))
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   794
      }
68542
02df6c68a8cb clarified error;
wenzelm
parents: 68523
diff changeset
   795
    }
02df6c68a8cb clarified error;
wenzelm
parents: 68523
diff changeset
   796
68733
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
   797
    def check_sessions(sel: Selection): Unit =
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
   798
      check_sessions(sel.base_sessions ::: sel.exclude_sessions ::: sel.sessions)
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
   799
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   800
    private def selected(graph: Graph[String, Info], sel: Selection): List[String] = {
68733
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
   801
      check_sessions(sel)
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
   802
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   803
      val select_group = sel.session_groups.toSet
68734
c14a2cc9b5ef isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents: 68733
diff changeset
   804
      val select_session = sel.sessions.toSet ++ imports_graph.all_succs(sel.base_sessions)
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   805
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   806
      val selected0 =
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   807
        if (sel.all_sessions) graph.keys
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   808
        else {
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   809
          (for {
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   810
            (name, (info, _)) <- graph.iterator
74810
d540c36cd0d2 tuned (see also e0d1d9203275);
wenzelm
parents: 74809
diff changeset
   811
            if info.dir_selected || select_session(name) || info.groups.exists(select_group)
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   812
          } yield name).toList
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   813
        }
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   814
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   815
      if (sel.requirements) (graph.all_preds(selected0).toSet -- selected0).toList
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   816
      else selected0
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   817
    }
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   818
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   819
    def selection(sel: Selection): Structure = {
68733
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
   820
      check_sessions(sel)
67025
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
   821
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   822
      val excluded = {
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   823
        val exclude_group = sel.exclude_session_groups.toSet
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   824
        val exclude_group_sessions =
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   825
          (for {
68734
c14a2cc9b5ef isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents: 68733
diff changeset
   826
            (name, (info, _)) <- imports_graph.iterator
c14a2cc9b5ef isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents: 68733
diff changeset
   827
            if imports_graph.get_node(name).groups.exists(exclude_group)
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   828
          } yield name).toList
68734
c14a2cc9b5ef isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents: 68733
diff changeset
   829
        imports_graph.all_succs(exclude_group_sessions ::: sel.exclude_sessions).toSet
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   830
      }
67027
wenzelm
parents: 67026
diff changeset
   831
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   832
      def restrict(graph: Graph[String, Info]): Graph[String, Info] = {
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   833
        val sessions = graph.all_preds(selected(graph, sel)).filterNot(excluded)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
   834
        graph.restrict(graph.all_preds(sessions).toSet)
67025
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
   835
      }
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
   836
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   837
      new Structure(chapter_defs, session_positions, session_directories, global_theories,
70683
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   838
        restrict(build_graph), restrict(imports_graph))
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   839
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   840
72571
ab4a0b19648a tuned signature;
wenzelm
parents: 72565
diff changeset
   841
    def selection(session: String): Structure = selection(Selection.session(session))
ab4a0b19648a tuned signature;
wenzelm
parents: 72565
diff changeset
   842
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   843
    def selection_deps(
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   844
      selection: Selection,
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71642
diff changeset
   845
      progress: Progress = new Progress,
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   846
      loading_sessions: Boolean = false,
68304
09270aa40884 tuned signature;
wenzelm
parents: 68294
diff changeset
   847
      inlined_files: Boolean = false,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   848
      verbose: Boolean = false
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   849
    ): Deps = {
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   850
      val deps =
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   851
        Sessions.deps(sessions_structure.selection(selection),
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   852
          progress = progress, inlined_files = inlined_files, verbose = verbose)
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   853
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   854
      if (loading_sessions) {
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   855
        val selection_size = deps.sessions_structure.build_graph.size
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   856
        if (selection_size > 1) progress.echo("Loading " + selection_size + " sessions ...")
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   857
      }
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   858
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   859
      deps
68304
09270aa40884 tuned signature;
wenzelm
parents: 68294
diff changeset
   860
    }
09270aa40884 tuned signature;
wenzelm
parents: 68294
diff changeset
   861
75760
f8be63d2ec6f more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents: 75759
diff changeset
   862
    def build_hierarchy(session: String): List[String] =
f8be63d2ec6f more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents: 75759
diff changeset
   863
      if (build_graph.defined(session)) build_graph.all_preds(List(session))
f8be63d2ec6f more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents: 75759
diff changeset
   864
      else List(session)
f8be63d2ec6f more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents: 75759
diff changeset
   865
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   866
    def build_selection(sel: Selection): List[String] = selected(build_graph, sel)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
   867
    def build_descendants(ss: List[String]): List[String] = build_graph.all_succs(ss)
72065
11dc8929832d clarified order --- proper sorting of requirements;
wenzelm
parents: 72064
diff changeset
   868
    def build_requirements(ss: List[String]): List[String] = build_graph.all_preds_rev(ss)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
   869
    def build_topological_order: List[String] = build_graph.topological_order
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   870
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
   871
    def imports_selection(sel: Selection): List[String] = selected(imports_graph, sel)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
   872
    def imports_descendants(ss: List[String]): List[String] = imports_graph.all_succs(ss)
72065
11dc8929832d clarified order --- proper sorting of requirements;
wenzelm
parents: 72064
diff changeset
   873
    def imports_requirements(ss: List[String]): List[String] = imports_graph.all_preds_rev(ss)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
   874
    def imports_topological_order: List[String] = imports_graph.topological_order
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   875
72613
d01ea9e3bd2d clarified bibtex_entries: refer to overall session structure;
wenzelm
parents: 72604
diff changeset
   876
    def bibtex_entries: List[(String, List[String])] =
d01ea9e3bd2d clarified bibtex_entries: refer to overall session structure;
wenzelm
parents: 72604
diff changeset
   877
      build_topological_order.flatMap(name =>
d01ea9e3bd2d clarified bibtex_entries: refer to overall session structure;
wenzelm
parents: 72604
diff changeset
   878
        apply(name).bibtex_entries match {
d01ea9e3bd2d clarified bibtex_entries: refer to overall session structure;
wenzelm
parents: 72604
diff changeset
   879
          case Nil => None
d01ea9e3bd2d clarified bibtex_entries: refer to overall session structure;
wenzelm
parents: 72604
diff changeset
   880
          case entries => Some(name -> entries.map(_.info))
d01ea9e3bd2d clarified bibtex_entries: refer to overall session structure;
wenzelm
parents: 72604
diff changeset
   881
        })
d01ea9e3bd2d clarified bibtex_entries: refer to overall session structure;
wenzelm
parents: 72604
diff changeset
   882
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   883
    override def toString: String =
67052
caf87d4b9b61 tuned signature;
wenzelm
parents: 67029
diff changeset
   884
      imports_graph.keys_iterator.mkString("Sessions.Structure(", ", ", ")")
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   885
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   886
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   887
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   888
  /* parser */
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   889
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   890
  private val CHAPTER_DEFINITION = "chapter_definition"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   891
  private val CHAPTER = "chapter"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   892
  private val SESSION = "session"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   893
  private val IN = "in"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   894
  private val DESCRIPTION = "description"
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
   895
  private val DIRECTORIES = "directories"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   896
  private val OPTIONS = "options"
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   897
  private val SESSIONS = "sessions"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   898
  private val THEORIES = "theories"
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   899
  private val GLOBAL = "global"
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   900
  private val DOCUMENT_THEORIES = "document_theories"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   901
  private val DOCUMENT_FILES = "document_files"
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
   902
  private val EXPORT_FILES = "export_files"
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   903
  private val EXPORT_CLASSPATH = "export_classpath"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   904
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71599
diff changeset
   905
  val root_syntax: Outer_Syntax =
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
   906
    Outer_Syntax.empty + "(" + ")" + "+" + "," + "=" + "[" + "]" +
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
   907
      GLOBAL + IN +
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   908
      (CHAPTER_DEFINITION, Keyword.THY_DECL) +
63443
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   909
      (CHAPTER, Keyword.THY_DECL) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   910
      (SESSION, Keyword.THY_DECL) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   911
      (DESCRIPTION, Keyword.QUASI_COMMAND) +
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
   912
      (DIRECTORIES, Keyword.QUASI_COMMAND) +
63443
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   913
      (OPTIONS, Keyword.QUASI_COMMAND) +
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   914
      (SESSIONS, Keyword.QUASI_COMMAND) +
63443
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   915
      (THEORIES, Keyword.QUASI_COMMAND) +
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   916
      (DOCUMENT_THEORIES, Keyword.QUASI_COMMAND) +
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
   917
      (DOCUMENT_FILES, Keyword.QUASI_COMMAND) +
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   918
      (EXPORT_FILES, Keyword.QUASI_COMMAND) +
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   919
      (EXPORT_CLASSPATH, Keyword.QUASI_COMMAND)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   920
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   921
  abstract class Entry
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   922
  object Chapter_Def {
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   923
    def empty(chapter: String): Chapter_Def = Chapter_Def(Position.none, chapter, Nil, "")
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   924
  }
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   925
  sealed case class Chapter_Def(
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   926
    pos: Position.T,
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   927
    name: String,
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   928
    groups: List[String],
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   929
    description: String
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   930
  ) extends Entry
75984
75b65c1f7a1f tuned signature;
wenzelm
parents: 75978
diff changeset
   931
  sealed case class Chapter_Entry(name: String) extends Entry
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   932
  sealed case class Session_Entry(
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   933
    pos: Position.T,
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   934
    name: String,
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   935
    groups: List[String],
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   936
    path: String,
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   937
    parent: Option[String],
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   938
    description: String,
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   939
    options: List[Options.Spec],
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   940
    imports: List[String],
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
   941
    directories: List[String],
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   942
    theories: List[(List[Options.Spec], List[((String, Position.T), Boolean)])],
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   943
    document_theories: List[(String, Position.T)],
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
   944
    document_files: List[(String, String)],
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   945
    export_files: List[(String, Int, List[String])],
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   946
    export_classpath: List[String]
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   947
  ) extends Entry {
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   948
    def theories_no_position: List[(List[Options.Spec], List[(String, Boolean)])] =
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   949
      theories.map({ case (a, b) => (a, b.map({ case ((c, _), d) => (c, d) })) })
72666
945cee776e79 proper meta_digest: avoid non-portable position information;
wenzelm
parents: 72653
diff changeset
   950
    def document_theories_no_position: List[String] =
945cee776e79 proper meta_digest: avoid non-portable position information;
wenzelm
parents: 72653
diff changeset
   951
      document_theories.map(_._1)
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   952
  }
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
   953
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   954
  object Chapter_Defs {
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   955
    val empty: Chapter_Defs = new Chapter_Defs(Nil)
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   956
  }
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   957
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   958
  class Chapter_Defs private(rev_list: List[Chapter_Def]) {
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   959
    def list: List[Chapter_Def] = rev_list.reverse
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   960
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   961
    override def toString: String =
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   962
      list.map(_.name).mkString("Chapter_Defs(", ", ", ")")
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   963
75996
633f74e679f5 tuned signature;
wenzelm
parents: 75995
diff changeset
   964
    def get(chapter: String): Option[Chapter_Def] =
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   965
      rev_list.find(_.name == chapter)
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   966
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   967
    def apply(chapter: String): Chapter_Def =
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   968
      get(chapter) getOrElse Chapter_Def.empty(chapter)
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   969
75996
633f74e679f5 tuned signature;
wenzelm
parents: 75995
diff changeset
   970
    def + (entry: Chapter_Def): Chapter_Defs =
75997
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
   971
      get(entry.name) match {
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
   972
        case None => new Chapter_Defs(entry :: rev_list)
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
   973
        case Some(old_entry) =>
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
   974
          error("Duplicate chapter definition " + quote(entry.name) +
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
   975
            Position.here(old_entry.pos) + Position.here(entry.pos))
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   976
      }
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   977
  }
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   978
75405
b13ab7d11b90 clarified signature: avoid ambiguity in scala3;
wenzelm
parents: 75394
diff changeset
   979
  private object Parsers extends Options.Parsers {
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   980
    private val groups: Parser[List[String]] =
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   981
      ($$$("(") ~! (rep1(name) <~ $$$(")")) ^^ { case _ ~ x => x }) | success(Nil)
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   982
75998
c36e5c6f3069 clarified syntax: more uniform;
wenzelm
parents: 75997
diff changeset
   983
    private val description: Parser[String] =
c36e5c6f3069 clarified syntax: more uniform;
wenzelm
parents: 75997
diff changeset
   984
      ($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")
c36e5c6f3069 clarified syntax: more uniform;
wenzelm
parents: 75997
diff changeset
   985
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   986
    private val chapter_def: Parser[Chapter_Def] =
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   987
      command(CHAPTER_DEFINITION) ~! (position(chapter_name) ~ groups ~ description) ^^
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
   988
        { case _ ~ ((a, pos) ~ b ~ c) => Chapter_Def(pos, a, b, c) }
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   989
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   990
    private val chapter_entry: Parser[Chapter_Entry] =
75984
75b65c1f7a1f tuned signature;
wenzelm
parents: 75978
diff changeset
   991
      command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter_Entry(a) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   992
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   993
    private val session_entry: Parser[Session_Entry] = {
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   994
      val option =
67210
wenzelm
parents: 67097
diff changeset
   995
        option_name ~ opt($$$("=") ~! option_value ^^ { case _ ~ x => x }) ^^
wenzelm
parents: 67097
diff changeset
   996
          { case x ~ y => (x, y) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   997
      val options = $$$("[") ~> rep1sep(option, $$$(",")) <~ $$$("]")
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   998
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   999
      val theory_entry =
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
  1000
        position(theory_name) ~ opt_keyword(GLOBAL) ^^ { case x ~ y => (x, y) }
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
  1001
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1002
      val theories =
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
  1003
        $$$(THEORIES) ~!
66970
13857f49d215 clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents: 66969
diff changeset
  1004
          ((options | success(Nil)) ~ rep1(theory_entry)) ^^
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
  1005
          { case _ ~ (x ~ y) => (x, y) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1006
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1007
      val in_path = $$$("(") ~! ($$$(IN) ~ path ~ $$$(")")) ^^ { case _ ~ (_ ~ x ~ _) => x }
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1008
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1009
      val document_theories =
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1010
        $$$(DOCUMENT_THEORIES) ~! rep1(position(name)) ^^ { case _ ~ x => x }
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1011
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1012
      val document_files =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1013
        $$$(DOCUMENT_FILES) ~!
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1014
          ((in_path | success("document")) ~ rep1(path)) ^^ { case _ ~ (x ~ y) => y.map((x, _)) }
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1015
69671
2486792eaf61 support pruning of export names;
wenzelm
parents: 69560
diff changeset
  1016
      val prune = $$$("[") ~! (nat ~ $$$("]")) ^^ { case _ ~ (x ~ _) => x } | success(0)
2486792eaf61 support pruning of export names;
wenzelm
parents: 69560
diff changeset
  1017
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1018
      val export_files =
69671
2486792eaf61 support pruning of export names;
wenzelm
parents: 69560
diff changeset
  1019
        $$$(EXPORT_FILES) ~! ((in_path | success("export")) ~ prune ~ rep1(embedded)) ^^
2486792eaf61 support pruning of export names;
wenzelm
parents: 69560
diff changeset
  1020
          { case _ ~ (x ~ y ~ z) => (x, y, z) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1021
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1022
      val export_classpath =
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1023
        $$$(EXPORT_CLASSPATH) ~! (rep1(embedded) | success(List("*:classpath/*.jar"))) ^^
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1024
          { case _ ~ x => x }
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1025
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1026
      command(SESSION) ~!
76005
a9bbf075f431 include groups from 'chapter_definition' in session info, based on the state of chapter_defs after processing all ROOT files (thus the declaration order does not matter);
wenzelm
parents: 76002
diff changeset
  1027
        (position(session_name) ~ groups ~
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1028
          (($$$(IN) ~! path ^^ { case _ ~ x => x }) | success(".")) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1029
          ($$$("=") ~!
75998
c36e5c6f3069 clarified syntax: more uniform;
wenzelm
parents: 75997
diff changeset
  1030
            (opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~ description ~
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1031
              (($$$(OPTIONS) ~! options ^^ { case _ ~ x => x }) | success(Nil)) ~
66970
13857f49d215 clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents: 66969
diff changeset
  1032
              (($$$(SESSIONS) ~! rep1(session_name)  ^^ { case _ ~ x => x }) | success(Nil)) ~
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
  1033
              (($$$(DIRECTORIES) ~! rep1(path) ^^ { case _ ~ x => x }) | success(Nil)) ~
66970
13857f49d215 clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents: 66969
diff changeset
  1034
              rep(theories) ~
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1035
              (opt(document_theories) ^^ (x => x.getOrElse(Nil))) ~
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1036
              (rep(document_files) ^^ (x => x.flatten)) ~
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1037
              rep(export_files) ~
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1038
              opt(export_classpath)))) ^^
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1039
        { case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i ~ j ~ k ~ l ~ m))) =>
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1040
            Session_Entry(pos, a, b, c, d, e, f, g, h, i, j, k, l, m.getOrElse(Nil)) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1041
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1042
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1043
    def parse_root(path: Path): List[Entry] = {
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1044
      val toks = Token.explode(root_syntax.keywords, File.read(path))
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1045
      val start = Token.Pos.file(path.implode)
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1046
      val parser: Parser[Entry] = chapter_def | chapter_entry | session_entry
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1047
      parse_all(rep(parser), Token.reader(toks, start)) match {
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1048
        case Success(result, _) => result
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1049
        case bad => error(bad.toString)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1050
      }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1051
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1052
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1053
75405
b13ab7d11b90 clarified signature: avoid ambiguity in scala3;
wenzelm
parents: 75394
diff changeset
  1054
  def parse_root(path: Path): List[Entry] = Parsers.parse_root(path)
66819
wenzelm
parents: 66818
diff changeset
  1055
wenzelm
parents: 66818
diff changeset
  1056
  def parse_root_entries(path: Path): List[Session_Entry] =
75405
b13ab7d11b90 clarified signature: avoid ambiguity in scala3;
wenzelm
parents: 75394
diff changeset
  1057
    for (entry <- Parsers.parse_root(path) if entry.isInstanceOf[Session_Entry])
66819
wenzelm
parents: 66818
diff changeset
  1058
    yield entry.asInstanceOf[Session_Entry]
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1059
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1060
  def parse_roots(roots: Path): List[String] = {
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1061
    for {
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1062
      line <- split_lines(File.read(roots))
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1063
      if !(line == "" || line.startsWith("#"))
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1064
    } yield line
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1065
  }
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1066
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1067
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
  1068
  /* load sessions from certain directories */
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1069
73814
c8b4a4f69068 clarified check (refining fc828f64da5b): etc/settings or etc/components is not strictly required according to "init_component", and notable components only have session ROOTS (e.g. AFP/thys);
wenzelm
parents: 73718
diff changeset
  1070
  def is_session_dir(dir: Path): Boolean =
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1071
    (dir + ROOT).is_file || (dir + ROOTS).is_file
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1072
75297
fc4d07587695 more robust errors -- on foreground process instead of background server;
wenzelm
parents: 74812
diff changeset
  1073
  def check_session_dir(dir: Path): Path =
65468
c41791ad75c3 early check and normalization of session directory, e.g. relevant for path information passed to ML process, which may have a different CWD;
wenzelm
parents: 65463
diff changeset
  1074
    if (is_session_dir(dir)) File.pwd() + dir.expand
73311
54262af6d310 clarified message;
wenzelm
parents: 73310
diff changeset
  1075
    else error("Bad session root directory (missing ROOT or ROOTS): " + dir.expand.toString)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1076
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1077
  def directories(dirs: List[Path], select_dirs: List[Path]): List[(Boolean, Path)] = {
73815
43882e34c038 clarified modules;
wenzelm
parents: 73814
diff changeset
  1078
    val default_dirs = Components.directories().filter(is_session_dir)
68746
f95e2f145ea5 canonical session directories in correspondence to Known.files;
wenzelm
parents: 68734
diff changeset
  1079
    for { (select, dir) <- (default_dirs ::: dirs).map((false, _)) ::: select_dirs.map((true, _)) }
f95e2f145ea5 canonical session directories in correspondence to Known.files;
wenzelm
parents: 68734
diff changeset
  1080
    yield (select, dir.canonical)
65561
741b1d3930c0 support for Mercurial manifest check;
wenzelm
parents: 65560
diff changeset
  1081
  }
741b1d3930c0 support for Mercurial manifest check;
wenzelm
parents: 65560
diff changeset
  1082
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1083
  def load_structure(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1084
    options: Options,
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
  1085
    dirs: List[Path] = Nil,
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
  1086
    select_dirs: List[Path] = Nil,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1087
    infos: List[Info] = Nil
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1088
  ): Structure = {
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1089
    def load_dir(select: Boolean, dir: Path): List[(Boolean, Path)] =
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
  1090
      load_root(select, dir) ::: load_roots(select, dir)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1091
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1092
    def load_root(select: Boolean, dir: Path): List[(Boolean, Path)] = {
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1093
      val root = dir + ROOT
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1094
      if (root.is_file) List((select, root)) else Nil
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1095
    }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1096
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1097
    def load_roots(select: Boolean, dir: Path): List[(Boolean, Path)] = {
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1098
      val roots = dir + ROOTS
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1099
      if (roots.is_file) {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1100
        for {
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1101
          entry <- parse_roots(roots)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1102
          dir1 =
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1103
            try { check_session_dir(dir + Path.explode(entry)) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1104
            catch {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1105
              case ERROR(msg) =>
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1106
                error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1107
            }
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1108
          res <- load_dir(select, dir1)
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1109
        } yield res
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1110
      }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1111
      else Nil
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1112
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1113
76016
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1114
    val raw_roots: List[(Boolean, Path)] =
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1115
      for {
65561
741b1d3930c0 support for Mercurial manifest check;
wenzelm
parents: 65560
diff changeset
  1116
        (select, dir) <- directories(dirs, select_dirs)
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1117
        res <- load_dir(select, check_session_dir(dir))
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1118
      } yield res
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1119
76016
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1120
    val unique_roots: List[(Boolean, Path, List[Entry])] =
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1121
      raw_roots.foldLeft(Map.empty[JFile, (Boolean, Path, List[Entry])]) {
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
  1122
        case (m, (select, path)) =>
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
  1123
          val file = path.canonical_file
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
  1124
          m.get(file) match {
76016
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1125
            case None =>
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1126
              val entries = parse_root(path)
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1127
              m + (file -> (select, path.dir, entries))
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1128
            case Some((select1, dir1, entries1)) =>
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1129
              m + (file -> (select1 || select, dir1, entries1))
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
  1130
          }
76016
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1131
      }.valuesIterator.toList
75995
wenzelm
parents: 75987
diff changeset
  1132
76016
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1133
    val chapter_defs: Chapter_Defs =
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1134
      unique_roots.foldLeft(Chapter_Defs.empty) {
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1135
        case (defs1, (_, _, entries)) =>
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1136
          entries.foldLeft(defs1) {
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1137
            case ((defs2, entry: Chapter_Def)) => defs2 + entry
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1138
            case ((defs2, _)) => defs2
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1139
          }
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1140
      }
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1141
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1142
    val info_roots = {
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1143
      var chapter = UNSORTED
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1144
      val info_roots = new mutable.ListBuffer[Info]
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1145
      for ((select, dir, entries) <- unique_roots) {
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1146
        entries.foreach {
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1147
          case entry: Chapter_Entry => chapter = entry.name
75995
wenzelm
parents: 75987
diff changeset
  1148
          case entry: Session_Entry =>
76016
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1149
            info_roots += make_info(chapter_defs, options, select, dir, chapter, entry)
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1150
          case _ =>
75995
wenzelm
parents: 75987
diff changeset
  1151
        }
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1152
      }
76016
b07f2ff55144 tuned: avoid odd stateful programming;
wenzelm
parents: 76005
diff changeset
  1153
      info_roots.toList
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1154
    }
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1155
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1156
    Structure.make(chapter_defs, info_roots ::: infos)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1157
  }
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1158
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1159
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1160
  /* Isabelle tool wrapper */
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1161
72763
3cc73d00553c added document antiquotation @{tool};
wenzelm
parents: 72760
diff changeset
  1162
  val isabelle_tool = Isabelle_Tool("sessions", "explore structure of Isabelle sessions",
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1163
    Scala_Project.here,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1164
    { args =>
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1165
      var base_sessions: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1166
      var select_dirs: List[Path] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1167
      var requirements = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1168
      var exclude_session_groups: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1169
      var all_sessions = false
76107
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1170
      var build_graph = false
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1171
      var dirs: List[Path] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1172
      var session_groups: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1173
      var exclude_sessions: List[String] = Nil
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1174
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1175
      val getopts = Getopts("""
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1176
Usage: isabelle sessions [OPTIONS] [SESSIONS ...]
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1177
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1178
  Options are:
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1179
    -B NAME      include session NAME and all descendants
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1180
    -D DIR       include session directory and select its sessions
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1181
    -R           refer to requirements of selected sessions
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1182
    -X NAME      exclude sessions from group NAME and all descendants
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1183
    -a           select all sessions
76107
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1184
    -b           follow session build dependencies (default: source imports)
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1185
    -d DIR       include session directory
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1186
    -g NAME      select session group NAME
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1187
    -x NAME      exclude session NAME and all descendants
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1188
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1189
  Explore the structure of Isabelle sessions and print result names in
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1190
  topological order (on stdout).
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1191
""",
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1192
        "B:" -> (arg => base_sessions = base_sessions ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1193
        "D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1194
        "R" -> (_ => requirements = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1195
        "X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1196
        "a" -> (_ => all_sessions = true),
76107
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1197
        "b" -> (_ => build_graph = true),
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1198
        "d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1199
        "g:" -> (arg => session_groups = session_groups ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1200
        "x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg)))
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1201
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1202
      val sessions = getopts(args)
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1203
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1204
      val options = Options.init()
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1205
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1206
      val selection =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1207
        Selection(requirements = requirements, all_sessions = all_sessions, base_sessions = base_sessions,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1208
          exclude_session_groups = exclude_session_groups, exclude_sessions = exclude_sessions,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1209
          session_groups = session_groups, sessions = sessions)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1210
      val sessions_structure =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1211
        load_structure(options, dirs = dirs, select_dirs = select_dirs).selection(selection)
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1212
76107
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1213
      val order =
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1214
        if (build_graph) sessions_structure.build_topological_order
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1215
        else sessions_structure.imports_topological_order
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1216
      for (name <- order) Output.writeln(name, stdout = true)
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1217
    })
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1218
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1219
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
  1220
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1221
  /** heap file with SHA1 digest **/
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1222
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1223
  private val sha1_prefix = "SHA1:"
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1224
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1225
  def read_heap_digest(heap: Path): Option[String] = {
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1226
    if (heap.is_file) {
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1227
      using(FileChannel.open(heap.java_path, StandardOpenOption.READ)) { file =>
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1228
        val len = file.size
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1229
        val n = sha1_prefix.length + SHA1.digest_length
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1230
        if (len >= n) {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1231
          file.position(len - n)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1232
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1233
          val buf = ByteBuffer.allocate(n)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1234
          var i = 0
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1235
          var m = 0
75709
a068fb7346ef clarified while-loops;
wenzelm
parents: 75680
diff changeset
  1236
          while ({
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1237
            m = file.read(buf)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1238
            if (m != -1) i += m
75709
a068fb7346ef clarified while-loops;
wenzelm
parents: 75680
diff changeset
  1239
            m != -1 && n > i
a068fb7346ef clarified while-loops;
wenzelm
parents: 75680
diff changeset
  1240
          }) ()
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1241
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1242
          if (i == n) {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1243
            val prefix = new String(buf.array(), 0, sha1_prefix.length, UTF8.charset)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1244
            val s = new String(buf.array(), sha1_prefix.length, SHA1.digest_length, UTF8.charset)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1245
            if (prefix == sha1_prefix) Some(s) else None
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1246
          }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1247
          else None
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1248
        }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1249
        else None
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1250
      }
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1251
    }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1252
    else None
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1253
  }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1254
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1255
  def write_heap_digest(heap: Path): String =
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1256
    read_heap_digest(heap) match {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1257
      case None =>
75310
42baf7ffa088 tuned signature;
wenzelm
parents: 75297
diff changeset
  1258
        val s = SHA1.digest(heap).toString
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1259
        File.append(heap, sha1_prefix + s)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1260
        s
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1261
      case Some(s) => s
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1262
    }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1263
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1264
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
  1265
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
  1266
  /** persistent store **/
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1267
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1268
  object Session_Info {
66857
f8f42289c4df tuned signature;
wenzelm
parents: 66848
diff changeset
  1269
    val session_name = SQL.Column.string("session_name").make_primary_key
65326
cb7cb57c7ce1 proper primary key;
wenzelm
parents: 65324
diff changeset
  1270
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1271
    // Build_Log.Session_Info
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1272
    val session_timing = SQL.Column.bytes("session_timing")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1273
    val command_timings = SQL.Column.bytes("command_timings")
66873
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1274
    val theory_timings = SQL.Column.bytes("theory_timings")
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1275
    val ml_statistics = SQL.Column.bytes("ml_statistics")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1276
    val task_statistics = SQL.Column.bytes("task_statistics")
65934
5f202ba9f590 store errors in build db;
wenzelm
parents: 65857
diff changeset
  1277
    val errors = SQL.Column.bytes("errors")
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1278
    val build_log_columns =
66873
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1279
      List(session_name, session_timing, command_timings, theory_timings,
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1280
        ml_statistics, task_statistics, errors)
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1281
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1282
    // Build.Session_Info
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1283
    val sources = SQL.Column.string("sources")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1284
    val input_heaps = SQL.Column.string("input_heaps")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1285
    val output_heap = SQL.Column.string("output_heap")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1286
    val return_code = SQL.Column.int("return_code")
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1287
    val uuid = SQL.Column.string("uuid")
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1288
    val build_columns = List(sources, input_heaps, output_heap, return_code, uuid)
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1289
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1290
    val table = SQL.Table("isabelle_session_info", build_log_columns ::: build_columns)
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1291
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1292
    val augment_table: PostgreSQL.Source =
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1293
      "ALTER TABLE IF EXISTS " + table.ident +
75978
0b4944b25b9d tuned whitespace;
wenzelm
parents: 75977
diff changeset
  1294
      " ADD COLUMN IF NOT EXISTS " + uuid.decl(SQL.sql_type_postgresql)
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1295
  }
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1296
74731
161e84e6b40a just one cache, via HTML_Context, via Sessions.Store or Session;
wenzelm
parents: 74696
diff changeset
  1297
  def store(options: Options, cache: Term.Cache = Term.Cache.make()): Store =
73031
f93f0597f4fb clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents: 73024
diff changeset
  1298
    new Store(options, cache)
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1299
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1300
  class Store private[Sessions](val options: Options, val cache: Term.Cache) {
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1301
    store =>
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1302
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1303
    override def toString: String = "Store(output_dir = " + output_dir.absolute + ")"
68219
c0341c0080e2 clarified store directories;
wenzelm
parents: 68218
diff changeset
  1304
c0341c0080e2 clarified store directories;
wenzelm
parents: 68218
diff changeset
  1305
c0341c0080e2 clarified store directories;
wenzelm
parents: 68218
diff changeset
  1306
    /* directories */
c0341c0080e2 clarified store directories;
wenzelm
parents: 68218
diff changeset
  1307
68523
ccacc84e0251 clarified settings -- avoid hard-wired directories;
wenzelm
parents: 68483
diff changeset
  1308
    val system_output_dir: Path = Path.explode("$ISABELLE_HEAPS_SYSTEM/$ML_IDENTIFIER")
ccacc84e0251 clarified settings -- avoid hard-wired directories;
wenzelm
parents: 68483
diff changeset
  1309
    val user_output_dir: Path = Path.explode("$ISABELLE_HEAPS/$ML_IDENTIFIER")
68219
c0341c0080e2 clarified store directories;
wenzelm
parents: 68218
diff changeset
  1310
69854
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69812
diff changeset
  1311
    def system_heaps: Boolean = options.bool("system_heaps")
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69812
diff changeset
  1312
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1313
    val output_dir: Path =
69854
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69812
diff changeset
  1314
      if (system_heaps) system_output_dir else user_output_dir
68219
c0341c0080e2 clarified store directories;
wenzelm
parents: 68218
diff changeset
  1315
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1316
    val input_dirs: List[Path] =
69854
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69812
diff changeset
  1317
      if (system_heaps) List(system_output_dir)
68219
c0341c0080e2 clarified store directories;
wenzelm
parents: 68218
diff changeset
  1318
      else List(user_output_dir, system_output_dir)
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1319
72648
1cbac4ae934d more explicit presentation directory;
wenzelm
parents: 72647
diff changeset
  1320
    def presentation_dir: Path =
69854
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69812
diff changeset
  1321
      if (system_heaps) Path.explode("$ISABELLE_BROWSER_INFO_SYSTEM")
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1322
      else Path.explode("$ISABELLE_BROWSER_INFO")
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1323
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
  1324
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1325
    /* file names */
65298
wenzelm
parents: 65297
diff changeset
  1326
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1327
    def heap(name: String): Path = Path.basic(name)
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1328
    def database(name: String): Path = Path.basic("log") + Path.basic(name).ext("db")
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1329
    def log(name: String): Path = Path.basic("log") + Path.basic(name)
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1330
    def log_gz(name: String): Path = log(name).ext("gz")
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
  1331
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1332
    def output_heap(name: String): Path = output_dir + heap(name)
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1333
    def output_database(name: String): Path = output_dir + database(name)
68086
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 68018
diff changeset
  1334
    def output_log(name: String): Path = output_dir + log(name)
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 68018
diff changeset
  1335
    def output_log_gz(name: String): Path = output_dir + log_gz(name)
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 68018
diff changeset
  1336
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73311
diff changeset
  1337
    def prepare_output_dir(): Unit = Isabelle_System.make_directory(output_dir + Path.basic("log"))
68220
8fc4e3d1df86 clarified store.clean_output: cleanup user_output_dir even in system_mode;
wenzelm
parents: 68219
diff changeset
  1338
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
  1339
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1340
    /* heap */
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
  1341
68212
5a59fded83c7 clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents: 68210
diff changeset
  1342
    def find_heap(name: String): Option[Path] =
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1343
      input_dirs.map(_ + heap(name)).find(_.is_file)
68212
5a59fded83c7 clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents: 68210
diff changeset
  1344
5a59fded83c7 clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents: 68210
diff changeset
  1345
    def find_heap_digest(name: String): Option[String] =
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71599
diff changeset
  1346
      find_heap(name).flatMap(read_heap_digest)
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1347
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1348
    def the_heap(name: String): Path =
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1349
      find_heap(name) getOrElse
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1350
        error("Missing heap image for session " + quote(name) + " -- expected in:\n" +
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1351
          cat_lines(input_dirs.map(dir => "  " + dir.expand.implode)))
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1352
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1353
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1354
    /* database */
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1355
75552
4aa3da02fd4d sync session images, based on accidental local state;
wenzelm
parents: 75406
diff changeset
  1356
    def find_database(name: String): Option[Path] =
4aa3da02fd4d sync session images, based on accidental local state;
wenzelm
parents: 75406
diff changeset
  1357
      input_dirs.map(_ + database(name)).find(_.is_file)
4aa3da02fd4d sync session images, based on accidental local state;
wenzelm
parents: 75406
diff changeset
  1358
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1359
    def database_server: Boolean = options.bool("build_database_server")
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
  1360
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1361
    def open_database_server(): SQL.Database =
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1362
      PostgreSQL.open_database(
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1363
        user = options.string("build_database_user"),
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1364
        password = options.string("build_database_password"),
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1365
        database = options.string("build_database_name"),
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1366
        host = options.string("build_database_host"),
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1367
        port = options.int("build_database_port"),
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1368
        ssh =
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1369
          options.proper_string("build_database_ssh_host").map(ssh_host =>
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1370
            SSH.open_session(options,
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1371
              host = ssh_host,
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1372
              user = options.string("build_database_ssh_user"),
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1373
              port = options.int("build_database_ssh_port"))),
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1374
        ssh_close = true)
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1375
75775
70a65ee4a738 clarified signature: more robust treatment of server;
wenzelm
parents: 75774
diff changeset
  1376
    def try_open_database(
70a65ee4a738 clarified signature: more robust treatment of server;
wenzelm
parents: 75774
diff changeset
  1377
      name: String,
70a65ee4a738 clarified signature: more robust treatment of server;
wenzelm
parents: 75774
diff changeset
  1378
      output: Boolean = false,
70a65ee4a738 clarified signature: more robust treatment of server;
wenzelm
parents: 75774
diff changeset
  1379
      server: Boolean = database_server
70a65ee4a738 clarified signature: more robust treatment of server;
wenzelm
parents: 75774
diff changeset
  1380
    ): Option[SQL.Database] = {
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1381
      def check(db: SQL.Database): Option[SQL.Database] =
73367
77ef8bef0593 clarified signature --- fewer warnings;
wenzelm
parents: 73364
diff changeset
  1382
        if (output || session_info_exists(db)) Some(db) else { db.close(); None }
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1383
75775
70a65ee4a738 clarified signature: more robust treatment of server;
wenzelm
parents: 75774
diff changeset
  1384
      if (server) check(open_database_server())
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1385
      else if (output) Some(SQLite.open_database(output_database(name)))
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1386
      else {
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1387
        (for {
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1388
          dir <- input_dirs.view
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1389
          path = dir + database(name) if path.is_file
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1390
          db <- check(SQLite.open_database(path))
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1391
        } yield db).headOption
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1392
      }
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1393
    }
68212
5a59fded83c7 clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents: 68210
diff changeset
  1394
75791
fb12433208aa tuned signature;
wenzelm
parents: 75786
diff changeset
  1395
    def error_database(name: String): Nothing =
75759
0cdccd0d1699 clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents: 75750
diff changeset
  1396
      error("Missing build database for session " + quote(name))
0cdccd0d1699 clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents: 75750
diff changeset
  1397
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1398
    def open_database(name: String, output: Boolean = false): SQL.Database =
75791
fb12433208aa tuned signature;
wenzelm
parents: 75786
diff changeset
  1399
      try_open_database(name, output = output) getOrElse error_database(name)
75759
0cdccd0d1699 clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents: 75750
diff changeset
  1400
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1401
    def clean_output(name: String): (Boolean, Boolean) = {
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1402
      val relevant_db =
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1403
        database_server && {
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1404
          try_open_database(name) match {
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1405
            case Some(db) =>
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1406
              try {
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1407
                db.transaction {
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1408
                  val relevant_db = session_info_defined(db, name)
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1409
                  init_session_info(db, name)
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1410
                  relevant_db
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1411
                }
73367
77ef8bef0593 clarified signature --- fewer warnings;
wenzelm
parents: 73364
diff changeset
  1412
              } finally { db.close() }
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1413
            case None => false
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1414
          }
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1415
        }
68212
5a59fded83c7 clarified heap vs. database operations: discontinued correlation of directory;
wenzelm
parents: 68210
diff changeset
  1416
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1417
      val del =
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1418
        for {
69854
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69812
diff changeset
  1419
          dir <-
cc0b3e177b49 system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents: 69812
diff changeset
  1420
            (if (system_heaps) List(user_output_dir, system_output_dir) else List(user_output_dir))
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1421
          file <- List(heap(name), database(name), log(name), log_gz(name))
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1422
          path = dir + file if path.is_file
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1423
        } yield path.file.delete
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1424
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1425
      val relevant = relevant_db || del.nonEmpty
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1426
      val ok = del.forall(b => b)
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1427
      (relevant, ok)
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1428
    }
65287
75999f2a0c38 tuned message;
wenzelm
parents: 65286
diff changeset
  1429
75999f2a0c38 tuned message;
wenzelm
parents: 65286
diff changeset
  1430
68218
wenzelm
parents: 68217
diff changeset
  1431
    /* SQL database content */
wenzelm
parents: 68217
diff changeset
  1432
wenzelm
parents: 68217
diff changeset
  1433
    def read_bytes(db: SQL.Database, name: String, column: SQL.Column): Bytes =
wenzelm
parents: 68217
diff changeset
  1434
      db.using_statement(Session_Info.table.select(List(column),
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1435
        Session_Info.session_name.where_equal(name))) { stmt =>
68218
wenzelm
parents: 68217
diff changeset
  1436
        val res = stmt.execute_query()
wenzelm
parents: 68217
diff changeset
  1437
        if (!res.next()) Bytes.empty else res.bytes(column)
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1438
      }
68218
wenzelm
parents: 68217
diff changeset
  1439
wenzelm
parents: 68217
diff changeset
  1440
    def read_properties(db: SQL.Database, name: String, column: SQL.Column): List[Properties.T] =
73031
f93f0597f4fb clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents: 73024
diff changeset
  1441
      Properties.uncompress(read_bytes(db, name, column), cache = cache)
68218
wenzelm
parents: 68217
diff changeset
  1442
wenzelm
parents: 68217
diff changeset
  1443
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1444
    /* session info */
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
  1445
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1446
    def init_session_info(db: SQL.Database, name: String): Unit = {
68086
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 68018
diff changeset
  1447
      db.transaction {
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 68018
diff changeset
  1448
        db.create_table(Session_Info.table)
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 68018
diff changeset
  1449
        db.using_statement(
73367
77ef8bef0593 clarified signature --- fewer warnings;
wenzelm
parents: 73364
diff changeset
  1450
          Session_Info.table.delete(Session_Info.session_name.where_equal(name)))(_.execute())
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1451
        if (db.isInstanceOf[PostgreSQL.Database]) {
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1452
          db.using_statement(Session_Info.augment_table)(_.execute())
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1453
        }
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1454
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1455
        db.create_table(Export.Data.table)
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1456
        db.using_statement(
73367
77ef8bef0593 clarified signature --- fewer warnings;
wenzelm
parents: 73364
diff changeset
  1457
          Export.Data.table.delete(Export.Data.session_name.where_equal(name)))(_.execute())
72653
ea35afdb1366 store documents within session database, instead of browser_info directory;
wenzelm
parents: 72652
diff changeset
  1458
73718
ecb31c3bf980 clarified modules;
wenzelm
parents: 73701
diff changeset
  1459
        db.create_table(Document_Build.Data.table)
72653
ea35afdb1366 store documents within session database, instead of browser_info directory;
wenzelm
parents: 72652
diff changeset
  1460
        db.using_statement(
73718
ecb31c3bf980 clarified modules;
wenzelm
parents: 73701
diff changeset
  1461
          Document_Build.Data.table.delete(
ecb31c3bf980 clarified modules;
wenzelm
parents: 73701
diff changeset
  1462
            Document_Build.Data.session_name.where_equal(name)))(_.execute())
68221
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1463
      }
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1464
    }
dbef88c2b6c5 support for build_database_server (PostgreSQL);
wenzelm
parents: 68220
diff changeset
  1465
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1466
    def session_info_exists(db: SQL.Database): Boolean = {
72634
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1467
      val tables = db.tables
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1468
      tables.contains(Session_Info.table.name) &&
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1469
      tables.contains(Export.Data.table.name)
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1470
    }
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1471
5cea0993ee4f clarified access to single database server vs. collection of database files;
wenzelm
parents: 72627
diff changeset
  1472
    def session_info_defined(db: SQL.Database, name: String): Boolean =
75739
5b37466c1463 removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents: 75738
diff changeset
  1473
      session_info_exists(db) && {
5b37466c1463 removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents: 75738
diff changeset
  1474
        db.using_statement(
5b37466c1463 removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents: 75738
diff changeset
  1475
          Session_Info.table.select(List(Session_Info.session_name),
5b37466c1463 removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents: 75738
diff changeset
  1476
            Session_Info.session_name.where_equal(name)))(stmt => stmt.execute_query().next())
68086
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 68018
diff changeset
  1477
      }
9e1c670301b8 cleanup session output before starting build job;
wenzelm
parents: 68018
diff changeset
  1478
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
  1479
    def write_session_info(
65318
342efc382558 eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents: 65298
diff changeset
  1480
      db: SQL.Database,
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
  1481
      name: String,
65318
342efc382558 eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents: 65298
diff changeset
  1482
      build_log: Build_Log.Session_Info,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1483
      build: Build.Session_Info
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1484
    ): Unit = {
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
  1485
      db.transaction {
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1486
        val table = Session_Info.table
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1487
        db.using_statement(table.insert()) { stmt =>
65748
1f4a80e80c88 tuned signature;
wenzelm
parents: 65740
diff changeset
  1488
          stmt.string(1) = name
65857
5d29d93766ef clarified use of XML.Cache;
wenzelm
parents: 65833
diff changeset
  1489
          stmt.bytes(2) = Properties.encode(build_log.session_timing)
73031
f93f0597f4fb clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents: 73024
diff changeset
  1490
          stmt.bytes(3) = Properties.compress(build_log.command_timings, cache = cache.xz)
f93f0597f4fb clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents: 73024
diff changeset
  1491
          stmt.bytes(4) = Properties.compress(build_log.theory_timings, cache = cache.xz)
f93f0597f4fb clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents: 73024
diff changeset
  1492
          stmt.bytes(5) = Properties.compress(build_log.ml_statistics, cache = cache.xz)
f93f0597f4fb clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents: 73024
diff changeset
  1493
          stmt.bytes(6) = Properties.compress(build_log.task_statistics, cache = cache.xz)
f93f0597f4fb clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents: 73024
diff changeset
  1494
          stmt.bytes(7) = Build_Log.compress_errors(build_log.errors, cache = cache.xz)
66873
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1495
          stmt.string(8) = build.sources
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1496
          stmt.string(9) = cat_lines(build.input_heaps)
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1497
          stmt.string(10) = build.output_heap getOrElse ""
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1498
          stmt.int(11) = build.return_code
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1499
          stmt.string(12) = build.uuid
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
  1500
          stmt.execute()
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1501
        }
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
  1502
      }
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
  1503
    }
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
  1504
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
  1505
    def read_session_timing(db: SQL.Database, name: String): Properties.T =
73031
f93f0597f4fb clarified signature: absorb XZ.Cache into XML.Cache;
wenzelm
parents: 73024
diff changeset
  1506
      Properties.decode(read_bytes(db, name, Session_Info.session_timing), cache = cache)
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
  1507
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
  1508
    def read_command_timings(db: SQL.Database, name: String): List[Properties.T] =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
  1509
      read_properties(db, name, Session_Info.command_timings)
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
  1510
66873
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1511
    def read_theory_timings(db: SQL.Database, name: String): List[Properties.T] =
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1512
      read_properties(db, name, Session_Info.theory_timings)
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66857
diff changeset
  1513
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
  1514
    def read_ml_statistics(db: SQL.Database, name: String): List[Properties.T] =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
  1515
      read_properties(db, name, Session_Info.ml_statistics)
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
  1516
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
  1517
    def read_task_statistics(db: SQL.Database, name: String): List[Properties.T] =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
  1518
      read_properties(db, name, Session_Info.task_statistics)
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
  1519
72738
a4d7da18ac5c store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents: 72716
diff changeset
  1520
    def read_theories(db: SQL.Database, name: String): List[String] =
a4d7da18ac5c store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents: 72716
diff changeset
  1521
      read_theory_timings(db, name).flatMap(Markup.Name.unapply)
a4d7da18ac5c store timings for used_theories in canonical order, with reconstructed store.read_theories;
wenzelm
parents: 72716
diff changeset
  1522
65937
fde7b5d209d5 store errors in build_history logs and database;
wenzelm
parents: 65934
diff changeset
  1523
    def read_errors(db: SQL.Database, name: String): List[String] =
73033
d2690444c00a clarified caching;
wenzelm
parents: 73031
diff changeset
  1524
      Build_Log.uncompress_errors(read_bytes(db, name, Session_Info.errors), cache = cache)
65937
fde7b5d209d5 store errors in build_history logs and database;
wenzelm
parents: 65934
diff changeset
  1525
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1526
    def read_build(db: SQL.Database, name: String): Option[Build.Session_Info] = {
66957
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1527
      if (db.tables.contains(Session_Info.table.name)) {
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1528
        db.using_statement(Session_Info.table.select(Nil,
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1529
          Session_Info.session_name.where_equal(name))) { stmt =>
66957
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1530
          val res = stmt.execute_query()
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1531
          if (!res.next()) None
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1532
          else {
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1533
            val uuid =
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1534
              try { Option(res.string(Session_Info.uuid)).getOrElse("") }
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1535
              catch { case _: SQLException => "" }
66957
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1536
            Some(
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1537
              Build.Session_Info(
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1538
                res.string(Session_Info.sources),
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1539
                split_lines(res.string(Session_Info.input_heaps)),
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1540
                res.string(Session_Info.output_heap) match { case "" => None case s => Some(s) },
75967
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1541
                res.int(Session_Info.return_code),
ff164add75cd maintain "uuid" column in session build database, to identity the original build process uniquely;
wenzelm
parents: 75923
diff changeset
  1542
                uuid))
66957
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1543
          }
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1544
        }
66957
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1545
      }
82d13ba817b2 more permissive: db could be empty after hard crash;
wenzelm
parents: 66914
diff changeset
  1546
      else None
66744
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
  1547
    }
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
  1548
  }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1549
}