src/Pure/Build/sessions.scala
author wenzelm
Mon, 27 Oct 2025 15:16:32 +0100
changeset 83417 b51e4a526897
parent 83007 b9715600883c
permissions -rw-r--r--
clarified signature;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
79502
c7a98469c0e7 clarified directories;
wenzelm
parents: 78502
diff changeset
     1
/*  Title:      Pure/Build/sessions.scala
62631
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}
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    10
82318
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
    11
import scala.collection.immutable.{SortedSet, SortedMap}
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    12
import scala.collection.mutable
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    13
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    14
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
    15
object Sessions {
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    16
  /* main operations */
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    17
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    18
  def background0(session: String): Background = Background.empty(session)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    19
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    20
  def background(options: Options,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    21
    session: String,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    22
    progress: Progress = new Progress,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    23
    dirs: List[Path] = Nil,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    24
    include_sessions: List[String] = Nil,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    25
    session_ancestor: Option[String] = None,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    26
    session_requirements: Boolean = false
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    27
  ): Background = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    28
    Background.load(options, session, progress = progress, dirs = dirs,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    29
      include_sessions = include_sessions, session_ancestor = session_ancestor,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    30
      session_requirements = session_requirements)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    31
  }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    32
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    33
  def load_structure(
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    34
    options: Options,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    35
    dirs: List[Path] = Nil,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    36
    select_dirs: List[Path] = Nil,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    37
    infos: List[Info] = Nil,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    38
    augment_options: String => List[Options.Spec] = _ => Nil
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    39
  ): Structure = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    40
    val roots = load_root_files(dirs = dirs, select_dirs = select_dirs)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    41
    Structure.make(options, augment_options, roots = roots, infos = infos)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    42
  }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    43
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    44
  def deps(sessions_structure: Structure,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    45
    progress: Progress = new Progress,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    46
    inlined_files: Boolean = false,
80886
5d562dd387ae discontinued "isabelle build -k": superseded by admin-tool "isabelle check_keywords";
wenzelm
parents: 80194
diff changeset
    47
    list_files: Boolean = false
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    48
  ): Deps = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    49
    Deps.load(sessions_structure, progress = progress, inlined_files = inlined_files,
80886
5d562dd387ae discontinued "isabelle build -k": superseded by admin-tool "isabelle check_keywords";
wenzelm
parents: 80194
diff changeset
    50
      list_files = list_files)
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    51
  }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    52
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
    53
67284
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    54
  /* session and theory names */
62883
b04e9fe29223 clarified ML bootstrap;
wenzelm
parents: 62864
diff changeset
    55
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    56
  val ROOTS: Path = Path.explode("ROOTS")
72832
03803bbfdca3 tuned signature;
wenzelm
parents: 72816
diff changeset
    57
  val ROOT: Path = Path.explode("ROOT")
03803bbfdca3 tuned signature;
wenzelm
parents: 72816
diff changeset
    58
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    59
  val roots_name: String = "ROOTS"
67215
03d0c958d65a PIDE markup for session ROOT files;
wenzelm
parents: 67210
diff changeset
    60
  val root_name: String = "ROOT"
75406
85e8b4c2b9a9 clarified signature: avoid ambiguity in scala3;
wenzelm
parents: 75405
diff changeset
    61
  val theory_import: String = "Pure.Sessions"
67215
03d0c958d65a PIDE markup for session ROOT files;
wenzelm
parents: 67210
diff changeset
    62
69762
58fb0d779583 support for session information via virtual file-system;
wenzelm
parents: 69671
diff changeset
    63
  val UNSORTED = "Unsorted"
65445
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65441
diff changeset
    64
  val DRAFT = "Draft"
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65441
diff changeset
    65
65360
wenzelm
parents: 65359
diff changeset
    66
  def is_pure(name: String): Boolean = name == Thy_Header.PURE
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    67
75922
b327e5d5d6b4 tuned signature;
wenzelm
parents: 75921
diff changeset
    68
  def illegal_session(name: String): Boolean = name == "" || name == DRAFT
76849
d431a9340163 more systematic Sessions.illegal_theory, based on File_Format.theory_excluded;
wenzelm
parents: 76829
diff changeset
    69
  def illegal_theory(name: String): Boolean =
76850
7082c5df5df6 tuned signature;
wenzelm
parents: 76849
diff changeset
    70
    name == root_name || File_Format.registry.theory_excluded(name)
67284
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    71
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    72
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    73
  /* ROOTS file format */
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    74
76850
7082c5df5df6 tuned signature;
wenzelm
parents: 76849
diff changeset
    75
  class ROOTS_File_Format extends File_Format {
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    76
    val format_name: String = roots_name
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    77
    val file_ext = ""
72839
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    78
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    79
    override def detect(name: String): Boolean =
76828
a5ff9cf61551 clarified generic path operations;
wenzelm
parents: 76789
diff changeset
    80
      Url.get_base_name(name) match {
a5ff9cf61551 clarified generic path operations;
wenzelm
parents: 76789
diff changeset
    81
        case Some(base_name) => base_name == roots_name
72839
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    82
        case None => false
a597300290de clarified File_Format.detect: needs to operate on full node name;
wenzelm
parents: 72837
diff changeset
    83
      }
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    84
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    85
    override def theory_suffix: String = "ROOTS_file"
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    86
    override def theory_content(name: String): String =
76859
6e1bf28d5a80 more standard master_dir;
wenzelm
parents: 76856
diff changeset
    87
      """theory "ROOTS" imports Pure begin ROOTS_file "." end"""
76849
d431a9340163 more systematic Sessions.illegal_theory, based on File_Format.theory_excluded;
wenzelm
parents: 76829
diff changeset
    88
    override def theory_excluded(name: String): Boolean = name == "ROOTS"
72837
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    89
  }
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    90
2c26c283f3ee PIDE support for session ROOTS;
wenzelm
parents: 72832
diff changeset
    91
76597
wenzelm
parents: 76549
diff changeset
    92
  /* base info */
67284
0094d938c53b tuned signature;
wenzelm
parents: 67219
diff changeset
    93
76654
a3177042863d tuned signature;
wenzelm
parents: 76653
diff changeset
    94
  object Base {
a3177042863d tuned signature;
wenzelm
parents: 76653
diff changeset
    95
    val bootstrap: Base = Base(overall_syntax = Thy_Header.bootstrap_syntax)
a3177042863d tuned signature;
wenzelm
parents: 76653
diff changeset
    96
  }
a3177042863d tuned signature;
wenzelm
parents: 76653
diff changeset
    97
65495
60d4fbed2b1f tuned signature;
wenzelm
parents: 65490
diff changeset
    98
  sealed case class Base(
75750
2eee2fdfb6e2 clarified signature: proper session_name for Sessions.Base (like Sessions.Info);
wenzelm
parents: 75749
diff changeset
    99
    session_name: String = "",
75749
45fc58d48e4a tuned signature;
wenzelm
parents: 75748
diff changeset
   100
    session_pos: Position.T = Position.none,
75748
b6d74c90b588 clarified signature;
wenzelm
parents: 75744
diff changeset
   101
    proper_session_theories: List[Document.Node.Name] = Nil,
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   102
    document_theories: List[Document.Node.Name] = Nil,
75740
d22ae56ca00c tuned comments;
wenzelm
parents: 75739
diff changeset
   103
    loaded_theories: Graph[String, Outer_Syntax] = Graph.string,  // cumulative imports
d22ae56ca00c tuned comments;
wenzelm
parents: 75739
diff changeset
   104
    used_theories: List[(Document.Node.Name, Options)] = Nil,  // new imports
82948
e2e43992f339 more detailed export "PIDE/files": store offset of the load command, within the pro-forma loaded_theory_command --- this allows to restrict output messages for blobs;
wenzelm
parents: 82318
diff changeset
   105
    theory_load_commands: Map[String, List[(Command_Span.Span, Symbol.Offset)]] = Map.empty,
70740
525c18b8ed53 clarified data structures;
wenzelm
parents: 70739
diff changeset
   106
    known_theories: Map[String, Document.Node.Entry] = Map.empty,
525c18b8ed53 clarified data structures;
wenzelm
parents: 70739
diff changeset
   107
    known_loaded_files: Map[String, List[Path]] = Map.empty,
66720
b07192253605 tuned signature;
wenzelm
parents: 66719
diff changeset
   108
    overall_syntax: Outer_Syntax = Outer_Syntax.empty,
66744
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
   109
    imported_sources: List[(Path, SHA1.Digest)] = Nil,
75741
17b1c4fbc008 tuned signature;
wenzelm
parents: 75740
diff changeset
   110
    session_sources: List[(Path, SHA1.Digest)] = Nil,
66822
4642cf4a7ebb tuned signature;
wenzelm
parents: 66819
diff changeset
   111
    session_graph_display: Graph_Display.Graph = Graph_Display.empty_graph,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   112
    errors: List[String] = Nil
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   113
  ) {
75885
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
   114
    def session_entry: (String, Base) = session_name -> this
8342cba8eae8 clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents: 75884
diff changeset
   115
76661
0c7c6fa71ac3 tuned output;
wenzelm
parents: 76657
diff changeset
   116
    override def toString: String = "Sessions.Base(" + print_body + ")"
0c7c6fa71ac3 tuned output;
wenzelm
parents: 76657
diff changeset
   117
    def print_body: String =
0c7c6fa71ac3 tuned output;
wenzelm
parents: 76657
diff changeset
   118
      "session_name = " + quote(session_name) +
0c7c6fa71ac3 tuned output;
wenzelm
parents: 76657
diff changeset
   119
      ", loaded_theories = " + loaded_theories.size +
0c7c6fa71ac3 tuned output;
wenzelm
parents: 76657
diff changeset
   120
      ", used_theories = " + used_theories.length
69102
4b06a20b13b5 tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents: 69080
diff changeset
   121
77204
d69732bc3dbe prefer explicit shasum;
wenzelm
parents: 77038
diff changeset
   122
    def all_sources: List[(Path, SHA1.Digest)] = imported_sources ::: session_sources
d69732bc3dbe prefer explicit shasum;
wenzelm
parents: 77038
diff changeset
   123
76628
46017d6b9bfa clarified signature;
wenzelm
parents: 76627
diff changeset
   124
    def all_document_theories: List[Document.Node.Name] =
46017d6b9bfa clarified signature;
wenzelm
parents: 76627
diff changeset
   125
      proper_session_theories ::: document_theories
46017d6b9bfa clarified signature;
wenzelm
parents: 76627
diff changeset
   126
66717
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
   127
    def loaded_theory(name: String): Boolean = loaded_theories.defined(name)
66712
4c98c929a12a session-qualified theory names are mandatory;
wenzelm
parents: 66701
diff changeset
   128
    def loaded_theory(name: Document.Node.Name): Boolean = loaded_theory(name.theory)
65432
wenzelm
parents: 65430
diff changeset
   129
66717
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
   130
    def loaded_theory_syntax(name: String): Option[Outer_Syntax] =
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
   131
      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
   132
    def loaded_theory_syntax(name: Document.Node.Name): Option[Outer_Syntax] =
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
   133
      loaded_theory_syntax(name.theory)
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 66716
diff changeset
   134
72669
5e7916535860 generate theory HTML in Isabelle/Scala;
wenzelm
parents: 72666
diff changeset
   135
    def theory_syntax(name: Document.Node.Name): Outer_Syntax =
5e7916535860 generate theory HTML in Isabelle/Scala;
wenzelm
parents: 72666
diff changeset
   136
      loaded_theory_syntax(name) getOrElse overall_syntax
5e7916535860 generate theory HTML in Isabelle/Scala;
wenzelm
parents: 72666
diff changeset
   137
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
   138
    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
   139
      nodes(name).syntax orElse loaded_theory_syntax(name) getOrElse overall_syntax
65355
403eabd73c9a tuned signature;
wenzelm
parents: 65326
diff changeset
   140
  }
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
   141
76677
899e83d90756 clarified signature;
wenzelm
parents: 76661
diff changeset
   142
899e83d90756 clarified signature;
wenzelm
parents: 76661
diff changeset
   143
  /* background context */
899e83d90756 clarified signature;
wenzelm
parents: 76661
diff changeset
   144
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   145
  object Background {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   146
    def empty(session: String): Background =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   147
      Background(Base(session_name = session))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   148
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   149
    def load(options: Options,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   150
      session: String,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   151
      progress: Progress = new Progress,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   152
      dirs: List[Path] = Nil,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   153
      include_sessions: List[String] = Nil,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   154
      session_ancestor: Option[String] = None,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   155
      session_requirements: Boolean = false
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   156
    ): Background = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   157
      val full_sessions = load_structure(options, dirs = dirs)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   158
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   159
      val selected_sessions =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   160
        full_sessions.selection(Selection(sessions = session :: session_ancestor.toList))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   161
      val info = selected_sessions(session)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   162
      val ancestor = session_ancestor orElse info.parent
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   163
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   164
      val (session1, infos1) =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   165
        if (session_requirements && ancestor.isDefined) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   166
          val deps = Sessions.deps(selected_sessions, progress = progress)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   167
          val base = deps(session)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   168
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   169
          val ancestor_loaded =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   170
            deps.get(ancestor.get) match {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   171
              case Some(ancestor_base)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   172
              if !selected_sessions.imports_requirements(List(ancestor.get)).contains(session) =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   173
                ancestor_base.loaded_theories.defined _
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   174
              case _ =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   175
                error("Bad ancestor " + quote(ancestor.get) + " for session " + quote(session))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   176
            }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   177
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   178
          val required_theories =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   179
            for {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   180
              thy <- base.loaded_theories.keys
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   181
              if !ancestor_loaded(thy) && selected_sessions.theory_qualifier(thy) != session
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   182
            }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   183
            yield thy
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   184
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   185
          if (required_theories.isEmpty) (ancestor.get, Nil)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   186
          else {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   187
            val other_name = info.name + "_requirements(" + ancestor.get + ")"
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   188
            Isabelle_System.isabelle_tmp_prefix()
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   189
82970
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   190
            val session_entry =
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   191
              Session_Entry(
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   192
                pos = info.pos,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   193
                name = other_name,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   194
                groups = info.groups,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   195
                parent = ancestor,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   196
                description = "Required theory imports from other sessions",
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   197
                imports = info.deps,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   198
                theories = List((Nil, required_theories.map(thy => ((thy, Position.none), false)))))
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   199
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   200
            val session_info =
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   201
              Info.make(session_entry,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   202
                dir = Path.explode("$ISABELLE_TMP_PREFIX"),
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   203
                options = info.options,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   204
                chapter = info.chapter)
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   205
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   206
            (other_name, List(session_info))
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   207
          }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   208
        }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   209
        else (session, Nil)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   210
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   211
      val full_sessions1 =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   212
        if (infos1.isEmpty) full_sessions
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   213
        else load_structure(options, dirs = dirs, infos = infos1)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   214
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   215
      val selected_sessions1 =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   216
        full_sessions1.selection(Selection(sessions = session1 :: session :: include_sessions))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   217
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   218
      val deps1 = Sessions.deps(selected_sessions1, progress = progress)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   219
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   220
      Background(deps1(session1), sessions_structure = full_sessions1,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   221
        errors = deps1.errors, infos = infos1)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   222
    }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   223
  }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   224
76656
a8f452f7c503 clarified names;
wenzelm
parents: 76654
diff changeset
   225
  sealed case class Background(
76597
wenzelm
parents: 76549
diff changeset
   226
    base: Base,
wenzelm
parents: 76549
diff changeset
   227
    sessions_structure: Structure = Structure.empty,
wenzelm
parents: 76549
diff changeset
   228
    errors: List[String] = Nil,
wenzelm
parents: 76549
diff changeset
   229
    infos: List[Info] = Nil
wenzelm
parents: 76549
diff changeset
   230
  ) {
wenzelm
parents: 76549
diff changeset
   231
    def session_name: String = base.session_name
76732
0ba6f360d38a actually build document;
wenzelm
parents: 76677
diff changeset
   232
    def info: Info = sessions_structure(session_name)
76597
wenzelm
parents: 76549
diff changeset
   233
76656
a8f452f7c503 clarified names;
wenzelm
parents: 76654
diff changeset
   234
    def check_errors: Background =
76597
wenzelm
parents: 76549
diff changeset
   235
      if (errors.isEmpty) this
wenzelm
parents: 76549
diff changeset
   236
      else error(cat_lines(errors))
wenzelm
parents: 76549
diff changeset
   237
  }
wenzelm
parents: 76549
diff changeset
   238
wenzelm
parents: 76549
diff changeset
   239
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   240
  /* source dependencies */
76597
wenzelm
parents: 76549
diff changeset
   241
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   242
  object Deps {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   243
    def load(sessions_structure: Structure,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   244
      progress: Progress = new Progress,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   245
      inlined_files: Boolean = false,
80886
5d562dd387ae discontinued "isabelle build -k": superseded by admin-tool "isabelle check_keywords";
wenzelm
parents: 80194
diff changeset
   246
      list_files: Boolean = false
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   247
    ): Deps = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   248
      var cache_sources = Map.empty[JFile, SHA1.Digest]
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   249
      def check_sources(paths: List[Path]): List[(Path, SHA1.Digest)] = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   250
        for {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   251
          path <- paths
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   252
          file = path.file
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   253
          if cache_sources.isDefinedAt(file) || file.isFile
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   254
        }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   255
        yield {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   256
          cache_sources.get(file) match {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   257
            case Some(digest) => (path, digest)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   258
            case None =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   259
              val digest = SHA1.digest(file)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   260
              cache_sources = cache_sources + (file -> digest)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   261
              (path, digest)
76597
wenzelm
parents: 76549
diff changeset
   262
          }
wenzelm
parents: 76549
diff changeset
   263
        }
wenzelm
parents: 76549
diff changeset
   264
      }
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   265
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   266
      val session_bases =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   267
        sessions_structure.imports_topological_order.foldLeft(Map(Base.bootstrap.session_entry)) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   268
          case (session_bases, session_name) =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   269
            progress.expose_interrupt()
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   270
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   271
            val info = sessions_structure(session_name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   272
            try {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   273
              val deps_base = info.deps_base(session_bases)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   274
              val session_background =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   275
                Background(base = deps_base, sessions_structure = sessions_structure)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   276
              val resources = new Resources(session_background)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   277
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   278
              progress.echo(
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   279
                "Session " + info.chapter + "/" + session_name +
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   280
                  if_proper(info.groups, info.groups.mkString(" (", " ", ")")),
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   281
                verbose = !list_files)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   282
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   283
              val dependencies = resources.session_dependencies(info)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   284
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   285
              val proper_session_theories =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   286
                dependencies.theories.filter(name =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   287
                  sessions_structure.theory_qualifier(name) == session_name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   288
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   289
              val theory_files = dependencies.theories.map(_.path)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   290
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   291
              val (load_commands, load_commands_errors) =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   292
                try { if (inlined_files) (dependencies.load_commands, Nil) else (Nil, Nil) }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   293
                catch { case ERROR(msg) => (Nil, List(msg)) }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   294
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   295
              val theory_load_commands =
82948
e2e43992f339 more detailed export "PIDE/files": store offset of the load command, within the pro-forma loaded_theory_command --- this allows to restrict output messages for blobs;
wenzelm
parents: 82318
diff changeset
   296
                (for ((name, cmd) <- load_commands.iterator) yield name.theory -> cmd).toMap
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   297
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   298
              val loaded_files: List[(String, List[Path])] =
82948
e2e43992f339 more detailed export "PIDE/files": store offset of the load command, within the pro-forma loaded_theory_command --- this allows to restrict output messages for blobs;
wenzelm
parents: 82318
diff changeset
   299
                for ((name, cmds) <- load_commands) yield {
e2e43992f339 more detailed export "PIDE/files": store offset of the load command, within the pro-forma loaded_theory_command --- this allows to restrict output messages for blobs;
wenzelm
parents: 82318
diff changeset
   300
                  val (theory, files) = dependencies.loaded_files(name, cmds.map(_._1))
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   301
                  theory -> files.map(file => Path.explode(file.node))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   302
                }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   303
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   304
              val document_files =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   305
                for ((path1, path2) <- info.document_files)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   306
                  yield info.dir + path1 + path2
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   307
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   308
              val session_files =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   309
                (theory_files ::: loaded_files.flatMap(_._2) ::: document_files).map(_.expand)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   310
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   311
              val imported_files = if (inlined_files) dependencies.imported_files else Nil
76597
wenzelm
parents: 76549
diff changeset
   312
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   313
              if (list_files) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   314
                progress.echo(cat_lines(session_files.map(_.implode).sorted.map("  " + _)))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   315
              }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   316
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   317
              val session_graph_display: Graph_Display.Graph = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   318
                def session_node(name: String): Graph_Display.Node =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   319
                  Graph_Display.Node("[" + name + "]", "session." + name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   320
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   321
                def node(name: Document.Node.Name): Graph_Display.Node = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   322
                  val qualifier = sessions_structure.theory_qualifier(name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   323
                  if (qualifier == info.name) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   324
                    Graph_Display.Node(name.theory_base_name, "theory." + name.theory)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   325
                  }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   326
                  else session_node(qualifier)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   327
                }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   328
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   329
                val required_sessions =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   330
                  dependencies.loaded_theories.all_preds(dependencies.theories.map(_.theory))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   331
                    .map(theory => sessions_structure.theory_qualifier(theory))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   332
                    .filter(name => name != info.name && sessions_structure.defined(name))
76597
wenzelm
parents: 76549
diff changeset
   333
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   334
                val required_subgraph =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   335
                  sessions_structure.imports_graph
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   336
                    .restrict(sessions_structure.imports_graph.all_preds(required_sessions).toSet)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   337
                    .transitive_closure
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   338
                    .restrict(required_sessions.toSet)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   339
                    .transitive_reduction_acyclic
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   340
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   341
                val graph0 =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   342
                  required_subgraph.topological_order.foldLeft(Graph_Display.empty_graph) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   343
                    case (g, session) =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   344
                      val a = session_node(session)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   345
                      val bs = required_subgraph.imm_preds(session).toList.map(session_node)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   346
                      bs.foldLeft((a :: bs).foldLeft(g)(_.default_node(_, Nil)))(_.add_edge(_, a))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   347
                  }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   348
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   349
                dependencies.entries.foldLeft(graph0) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   350
                  case (g, entry) =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   351
                    val a = node(entry.name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   352
                    val bs = entry.header.imports.map(node).filterNot(_ == a)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   353
                    bs.foldLeft((a :: bs).foldLeft(g)(_.default_node(_, Nil)))(_.add_edge(_, a))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   354
                }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   355
              }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   356
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   357
              val known_theories =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   358
                dependencies.entries.iterator.map(entry => entry.name.theory -> entry).
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   359
                  foldLeft(deps_base.known_theories)(_ + _)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   360
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   361
              val known_loaded_files = deps_base.known_loaded_files ++ loaded_files
76597
wenzelm
parents: 76549
diff changeset
   362
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   363
              val import_errors = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   364
                val known_sessions =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   365
                  sessions_structure.imports_requirements(List(session_name)).toSet
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   366
                for {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   367
                  name <- dependencies.theories
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   368
                  qualifier = sessions_structure.theory_qualifier(name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   369
                  if !known_sessions(qualifier)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   370
                } yield "Bad import of theory " + quote(name.toString) +
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   371
                  ": need to include sessions " + quote(qualifier) + " in ROOT"
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   372
              }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   373
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   374
              val document_errors =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   375
                info.document_theories.flatMap(
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   376
                {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   377
                  case (thy, pos) =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   378
                    val build_hierarchy =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   379
                      if (sessions_structure.build_graph.defined(session_name)) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   380
                        sessions_structure.build_hierarchy(session_name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   381
                      }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   382
                      else Nil
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   383
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   384
                    def err(msg: String): Option[String] =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   385
                      Some(msg + " " + quote(thy) + Position.here(pos))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   386
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   387
                    known_theories.get(thy).map(_.name) match {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   388
                      case None => err("Unknown document theory")
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   389
                      case Some(name) =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   390
                        val qualifier = sessions_structure.theory_qualifier(name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   391
                        if (proper_session_theories.contains(name)) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   392
                          err("Redundant document theory from this session:")
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   393
                        }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   394
                        else if (
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   395
                          !build_hierarchy.contains(qualifier) &&
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   396
                          !dependencies.theories.contains(name)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   397
                        ) {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   398
                          err("Document theory from other session not imported properly:")
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   399
                        }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   400
                        else None
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   401
                    }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   402
                })
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   403
              val document_theories =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   404
                info.document_theories.map({ case (thy, _) => known_theories(thy).name })
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   405
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   406
              val dir_errors = {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   407
                val ok = info.dirs.map(_.canonical_file).toSet
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   408
                val bad =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   409
                  (for {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   410
                    name <- proper_session_theories.iterator
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   411
                    path = Path.explode(name.master_dir)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   412
                    if !ok(path.canonical_file)
82147
3f7c8e6d3481 tuned signature: more explicit operations;
wenzelm
parents: 82142
diff changeset
   413
                    path1 = File.perhaps_relative_path(info.dir.canonical, path)
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   414
                  } yield (path1, name)).toList
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   415
                val bad_dirs = (for { (path1, _) <- bad } yield path1.toString).distinct.sorted
76597
wenzelm
parents: 76549
diff changeset
   416
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   417
                val errs1 =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   418
                  for { (path1, name) <- bad }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   419
                  yield "Implicit use of directory " + path1 + " for theory " + quote(name.toString)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   420
                val errs2 =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   421
                  if (bad_dirs.isEmpty) Nil
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   422
                  else List("Implicit use of session directories: " + commas(bad_dirs))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   423
                val errs3 = for (p <- info.dirs if !p.is_dir) yield "No such directory: " + p
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   424
                val errs4 =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   425
                  (for {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   426
                    name <- proper_session_theories.iterator
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   427
                    name1 <- resources.find_theory_node(name.theory)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   428
                    if name.node != name1.node
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   429
                  } yield {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   430
                    "Incoherent theory file import:\n  " + quote(name.node) +
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   431
                      " vs. \n  " + quote(name1.node)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   432
                  }).toList
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   433
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   434
                errs1 ::: errs2 ::: errs3 ::: errs4
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   435
              }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   436
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   437
              val sources_errors =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   438
                for (p <- session_files if !p.is_file) yield "No such file: " + p
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   439
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   440
              val path_errors =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   441
                try { Path.check_case_insensitive(session_files ::: imported_files); Nil }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   442
                catch { case ERROR(msg) => List(msg) }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   443
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   444
              val bibtex_errors = info.bibtex_entries.errors
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   445
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   446
              val base =
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   447
                Base(
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   448
                  session_name = info.name,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   449
                  session_pos = info.pos,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   450
                  proper_session_theories = proper_session_theories,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   451
                  document_theories = document_theories,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   452
                  loaded_theories = dependencies.loaded_theories,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   453
                  used_theories = dependencies.theories_adjunct,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   454
                  theory_load_commands = theory_load_commands,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   455
                  known_theories = known_theories,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   456
                  known_loaded_files = known_loaded_files,
80886
5d562dd387ae discontinued "isabelle build -k": superseded by admin-tool "isabelle check_keywords";
wenzelm
parents: 80194
diff changeset
   457
                  overall_syntax = dependencies.overall_syntax,
77562
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   458
                  imported_sources = check_sources(imported_files),
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   459
                  session_sources = check_sources(session_files),
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   460
                  session_graph_display = session_graph_display,
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   461
                  errors = dependencies.errors ::: load_commands_errors ::: import_errors :::
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   462
                    document_errors ::: dir_errors ::: sources_errors ::: path_errors :::
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   463
                    bibtex_errors)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   464
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   465
              session_bases + base.session_entry
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   466
            }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   467
            catch {
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   468
              case ERROR(msg) =>
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   469
                cat_error(msg, "The error(s) above occurred in session " +
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   470
                  quote(info.name) + Position.here(info.pos))
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   471
            }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   472
        }
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   473
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   474
      new Deps(sessions_structure, session_bases)
14f1fa94f0a5 clarified structure;
wenzelm
parents: 77560
diff changeset
   475
    }
76597
wenzelm
parents: 76549
diff changeset
   476
  }
wenzelm
parents: 76549
diff changeset
   477
77560
5749ee7c45a0 clarified signature: proper abstract type;
wenzelm
parents: 77552
diff changeset
   478
  final class Deps private[Sessions](
5749ee7c45a0 clarified signature: proper abstract type;
wenzelm
parents: 77552
diff changeset
   479
    val sessions_structure: Structure,
5749ee7c45a0 clarified signature: proper abstract type;
wenzelm
parents: 77552
diff changeset
   480
    val session_bases: Map[String, Base]
5749ee7c45a0 clarified signature: proper abstract type;
wenzelm
parents: 77552
diff changeset
   481
  ) {
76656
a8f452f7c503 clarified names;
wenzelm
parents: 76654
diff changeset
   482
    def background(session: String): Background =
a8f452f7c503 clarified names;
wenzelm
parents: 76654
diff changeset
   483
      Background(base = apply(session), sessions_structure = sessions_structure, errors = errors)
69102
4b06a20b13b5 tuned output -- avoid bombing of Scala toplevel, e.g. for AFP deps;
wenzelm
parents: 69080
diff changeset
   484
76279
2d4ff8c166d2 proper Deps.is_empty (amending 77327455b00d), e.g. relevant for warning "Nothing to build";
wenzelm
parents: 76107
diff changeset
   485
    def is_empty: Boolean = session_bases.keysIterator.forall(_.isEmpty)
65463
104502de757c more informative known_files: known_theories within the local session directory come first;
wenzelm
parents: 65461
diff changeset
   486
    def apply(name: String): Base = session_bases(name)
66988
7f8c1dd7576a support alternative ancestor session;
wenzelm
parents: 66987
diff changeset
   487
    def get(name: String): Option[Base] = session_bases.get(name)
66744
fec1504e5f03 persistent storage of imported_sources;
wenzelm
parents: 66743
diff changeset
   488
77207
d98a99e4eea9 proper Shasum.digest, to emulate old form from build_history database;
wenzelm
parents: 77206
diff changeset
   489
    def sources_shasum(name: String): SHA1.Shasum = {
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   490
      val meta_info = sessions_structure(name).meta_info
77204
d69732bc3dbe prefer explicit shasum;
wenzelm
parents: 77038
diff changeset
   491
      val sources =
77211
a917f580a107 clarified signature;
wenzelm
parents: 77207
diff changeset
   492
        SHA1.shasum_sorted(
a917f580a107 clarified signature;
wenzelm
parents: 77207
diff changeset
   493
          for ((path, digest) <- apply(name).all_sources)
a917f580a107 clarified signature;
wenzelm
parents: 77207
diff changeset
   494
            yield digest -> File.symbolic_path(path))
77214
df8d71edbc79 clarified signature, using right-associative operation;
wenzelm
parents: 77211
diff changeset
   495
      meta_info ::: sources
77204
d69732bc3dbe prefer explicit shasum;
wenzelm
parents: 77038
diff changeset
   496
    }
66571
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   497
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   498
    def errors: List[String] =
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   499
      (for {
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   500
        (name, base) <- session_bases.iterator
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   501
        if base.errors.nonEmpty
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   502
      } yield cat_lines(base.errors) +
75749
45fc58d48e4a tuned signature;
wenzelm
parents: 75748
diff changeset
   503
          "\nThe error(s) above occurred in session " + quote(name) + Position.here(base.session_pos)
66571
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   504
      ).toList
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   505
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   506
    def check_errors: Deps =
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   507
      errors match {
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   508
        case Nil => this
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   509
        case errs => error(cat_lines(errs))
0fdeb24e535e clarified errors;
wenzelm
parents: 66243
diff changeset
   510
      }
75774
efc25bf4b795 discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents: 75773
diff changeset
   511
76597
wenzelm
parents: 76549
diff changeset
   512
    override def toString: String = "Sessions.Deps(" + sessions_structure + ")"
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   513
  }
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
   514
66963
1c3d0c12bb51 clarified signature;
wenzelm
parents: 66962
diff changeset
   515
80055
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   516
  /* notable groups */
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   517
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   518
  sealed case class Group_Info(
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   519
    name: String,
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   520
    description: String,
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   521
    bulky: Boolean = false,
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   522
    afp: Boolean = false
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   523
  ) {
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   524
    override def toString: String = name
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   525
  }
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   526
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   527
  lazy val notable_groups: List[Group_Info] =
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   528
    List(
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   529
      Group_Info("large", "full 64-bit memory model or word arithmetic required",
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   530
        bulky = true, afp = true),
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   531
      Group_Info("slow", "CPU time much higher than 60min (on mid-range hardware)",
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   532
        bulky = true, afp = true),
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   533
      Group_Info("very_slow", "elapsed time of many hours (on high-end hardware)",
80062
1478c6d52864 clarified "bulky" sessions (again, see also 06153e2e0cdb), but note that "very_slow" is normally used together with "slow";
wenzelm
parents: 80055
diff changeset
   534
        bulky = true, afp = true),
80055
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   535
      Group_Info("AFP", "entry within AFP", afp = true),
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   536
      Group_Info("doc", "Isabelle documentation"),
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   537
      Group_Info("no_doc", "suppressed Isabelle documentation")
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   538
    )
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   539
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   540
  lazy val bulky_groups: Set[String] =
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   541
    Set.from(notable_groups.flatMap(g => if (g.bulky) Some(g.name) else None))
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   542
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   543
  lazy val afp_groups: Set[String] =
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   544
    Set.from(notable_groups.flatMap(g => if (g.afp) Some(g.name) else None))
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   545
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   546
82318
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   547
  /* conditions to load theories */
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   548
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   549
  object Conditions {
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   550
    private val empty_rep = SortedMap.empty[String, Boolean]
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   551
    val empty: Conditions = new Conditions(empty_rep)
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   552
    def apply(options: Options): Conditions = make(Set(options))
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   553
    def make(opts: IterableOnce[Options]): Conditions =
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   554
      new Conditions(
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   555
        opts.iterator.flatMap(options => space_explode(',', options.string("condition")).iterator)
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   556
          .foldLeft(empty_rep) {
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   557
            case (map, a) =>
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   558
              if (map.isDefinedAt(a)) map
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   559
              else map + (a -> Isabelle_System.getenv(a).nonEmpty)
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   560
          }
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   561
      )
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   562
  }
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   563
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   564
  final class Conditions private(private val rep: SortedMap[String, Boolean]) {
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   565
    def toList: List[(String, Boolean)] = rep.toList
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   566
    def good: List[String] = List.from(for ((a, b) <- rep.iterator if b) yield a)
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   567
    def bad: List[String] = List.from(for ((a, b) <- rep.iterator if !b) yield a)
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   568
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   569
    override def toString: String =
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   570
      if (rep.isEmpty) "Sessions.Conditions.empty"
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   571
      else {
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   572
        val a = if_proper(good, "good = " + quote(good.mkString(",")))
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   573
        val b = if_proper(bad, "bad = " + quote(bad.mkString(",")))
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   574
        "Sessions.Conditions(" + a + if_proper(a.nonEmpty && b.nonEmpty, ", ") + b + ")"
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   575
      }
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   576
  }
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   577
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   578
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   579
  /* cumulative session info */
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   580
78502
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   581
  private val BUILD_PREFS_BG = "<build_prefs:"
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   582
  private val BUILD_PREFS_EN = ">"
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   583
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   584
  def make_build_prefs(name: String): String =
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   585
    BUILD_PREFS_BG + name + BUILD_PREFS_EN
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   586
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   587
  def is_build_prefs(s: String): Boolean = {
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   588
    val i = s.indexOf('<')
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   589
    i >= 0 && {
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   590
      val s1 = s.substring(i)
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   591
      s1.startsWith(BUILD_PREFS_BG) && s1.endsWith(BUILD_PREFS_EN)
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   592
    }
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   593
  }
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   594
80128
2fe244c4bb01 clarified signature;
wenzelm
parents: 80062
diff changeset
   595
  def eq_sources(thorough: Boolean, shasum1: SHA1.Shasum, shasum2: SHA1.Shasum): Boolean =
2fe244c4bb01 clarified signature;
wenzelm
parents: 80062
diff changeset
   596
    if (thorough) shasum1 == shasum2
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   597
    else {
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   598
      def trim(shasum: SHA1.Shasum): SHA1.Shasum =
78502
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   599
        shasum.filter(s => !is_build_prefs(s))
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   600
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   601
      trim(shasum1) == trim(shasum2)
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   602
    }
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   603
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
   604
  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
   605
    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
   606
    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
   607
    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
   608
    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
   609
    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
   610
  )
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
   611
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   612
  object Info {
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   613
    def make(
82970
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   614
      entry: Session_Entry,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   615
      dir: Path,
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   616
      options: Options,
82970
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   617
      options0: Options = Options.init0(),
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   618
      augment_options: String => List[Options.Spec] = _ => Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   619
      chapter_defs: Chapter_Defs = Chapter_Defs.empty,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   620
      chapter: String = UNSORTED,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   621
      dir_selected: Boolean = false,
82975
a28d9192d31e Process theories within an adhoc session context.
wenzelm
parents: 82970
diff changeset
   622
      draft_session: Boolean = false
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   623
    ): Info = {
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   624
      try {
82975
a28d9192d31e Process theories within an adhoc session context.
wenzelm
parents: 82970
diff changeset
   625
        val name =
a28d9192d31e Process theories within an adhoc session context.
wenzelm
parents: 82970
diff changeset
   626
          if (draft_session) DRAFT
a28d9192d31e Process theories within an adhoc session context.
wenzelm
parents: 82970
diff changeset
   627
          else if (illegal_session(entry.name)) error("Illegal session name " + quote(entry.name))
a28d9192d31e Process theories within an adhoc session context.
wenzelm
parents: 82970
diff changeset
   628
          else entry.name
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   629
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   630
        if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session")
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   631
        if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session")
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   633
        val session_path = dir + Path.explode(entry.path)
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   634
        val directories = entry.directories.map(dir => session_path + Path.explode(dir))
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   635
77627
582a7db1da37 more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents: 77624
diff changeset
   636
        val session_options0 = options ++ entry.options
582a7db1da37 more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents: 77624
diff changeset
   637
        val session_options = session_options0 ++ augment_options(name)
582a7db1da37 more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents: 77624
diff changeset
   638
        val session_prefs =
582a7db1da37 more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents: 77624
diff changeset
   639
          session_options.make_prefs(defaults = session_options0, filter = _.session_content)
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   640
78502
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   641
        val build_prefs_digests =
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   642
          session_options.changed(defaults = options0, filter = _.session_content)
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   643
            .map(ch => SHA1.digest(ch.print_prefs) -> make_build_prefs(ch.name))
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   644
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   645
        val theories =
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   646
          entry.theories.map({ case (opts, thys) =>
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   647
            (session_options ++ opts,
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   648
              thys.map({ case ((thy, pos), _) =>
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   649
                val thy_name = Thy_Header.import_name(thy)
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   650
                if (illegal_theory(thy_name)) {
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   651
                  error("Illegal theory name " + quote(thy_name) + Position.here(pos))
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   652
                }
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   653
                else (thy, pos) })) })
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   654
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   655
        val global_theories =
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   656
          for { (_, thys) <- entry.theories; ((thy, pos), global) <- thys if global }
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   657
          yield {
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   658
            val thy_name = Path.explode(thy).file_name
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   659
            if (Long_Name.is_qualified(thy_name)) {
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   660
              error("Bad qualified name for global theory " +
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   661
                quote(thy_name) + Position.here(pos))
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   662
            }
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   663
            else thy_name
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   664
          }
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   665
82318
d0838fb98fc3 clarified signature: more explicit type Sessions.Conditions;
wenzelm
parents: 82147
diff changeset
   666
        val conditions = Conditions.make(theories.iterator.map(_._1)).toList
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   667
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   668
        val document_files =
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   669
          entry.document_files.map({ case (s1, s2) => (Path.explode(s1), Path.explode(s2)) })
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   670
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   671
        val export_files =
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   672
          entry.export_files.map({ case (dir, prune, pats) => (Path.explode(dir), prune, pats) })
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   673
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   674
        val meta_digest =
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   675
          SHA1.digest(
77627
582a7db1da37 more accurate Sessions.Info.session_prefs: cover relative changes wrt. statically declared options;
wenzelm
parents: 77624
diff changeset
   676
            (name, chapter, entry.parent, entry.directories, entry.options, entry.imports,
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   677
              entry.theories_no_position, conditions, entry.document_theories_no_position).toString)
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   678
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   679
        val meta_info =
78502
5e59f6a46b2f more informative shasum: show differences explicitly;
wenzelm
parents: 78407
diff changeset
   680
          SHA1.shasum_meta_info(meta_digest) ::: SHA1.shasum_sorted(build_prefs_digests)
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   681
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   682
        val chapter_groups = chapter_defs(chapter).groups
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   683
        val groups = chapter_groups ::: entry.groups.filterNot(chapter_groups.contains)
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   684
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   685
        Info(name, chapter, dir_selected, entry.pos, groups, session_path,
77610
3b09ae9e40cb clarified session prefs (or "options" within the database);
wenzelm
parents: 77599
diff changeset
   686
          entry.parent, entry.description, directories, session_options, session_prefs,
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   687
          entry.imports, theories, global_theories, entry.document_theories, document_files,
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   688
          export_files, entry.export_classpath, meta_info)
76632
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   689
      }
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   690
      catch {
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   691
        case ERROR(msg) =>
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   692
          error(msg + "\nThe error(s) above occurred in session entry " +
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   693
            quote(entry.name) + Position.here(entry.pos))
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   694
      }
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   695
    }
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   696
  }
2447d947d900 clarified modules;
wenzelm
parents: 76631
diff changeset
   697
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   698
  sealed case class Info(
65519
d244d8f8e13f store Sessions.Info.name;
wenzelm
parents: 65517
diff changeset
   699
    name: String,
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   700
    chapter: String,
66829
5baca4c94737 tuned signature;
wenzelm
parents: 66828
diff changeset
   701
    dir_selected: Boolean,
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   702
    pos: Position.T,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   703
    groups: List[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   704
    dir: Path,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   705
    parent: Option[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   706
    description: String,
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
   707
    directories: List[Path],
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   708
    options: Options,
77610
3b09ae9e40cb clarified session prefs (or "options" within the database);
wenzelm
parents: 77599
diff changeset
   709
    session_prefs: String,
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   710
    imports: List[String],
65517
1544e61e5314 more position information;
wenzelm
parents: 65507
diff changeset
   711
    theories: List[(Options, List[(String, Position.T)])],
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   712
    global_theories: List[String],
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
   713
    document_theories: List[(String, Position.T)],
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   714
    document_files: List[(Path, Path)],
69671
2486792eaf61 support pruning of export names;
wenzelm
parents: 69560
diff changeset
   715
    export_files: List[(Path, Int, List[String])],
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
   716
    export_classpath: List[String],
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   717
    meta_info: SHA1.Shasum
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   718
  ) {
66828
3c936ebebc23 tuned signature;
wenzelm
parents: 66823
diff changeset
   719
    def deps: List[String] = parent.toList ::: imports
3c936ebebc23 tuned signature;
wenzelm
parents: 66823
diff changeset
   720
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   721
    def deps_base(session_bases: String => Base): Base = {
72066
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   722
      val parent_base = session_bases(parent.getOrElse(""))
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   723
      val imports_bases = imports.map(session_bases)
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   724
      parent_base.copy(
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   725
        known_theories =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   726
          (for {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   727
            base <- imports_bases.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   728
            (_, entry) <- base.known_theories.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   729
          } yield (entry.name.theory -> entry)).foldLeft(parent_base.known_theories)(_ + _),
72066
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   730
        known_loaded_files =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   731
          imports_bases.iterator.map(_.known_loaded_files).
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   732
            foldLeft(parent_base.known_loaded_files)(_ ++ _))
72066
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   733
    }
ba5b37671528 clarified signature;
wenzelm
parents: 72065
diff changeset
   734
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
   735
    def dirs: List[Path] = dir :: directories
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
   736
81551
a296642fa0a5 clarified GUI: prefer user documents, which are typically without chapter;
wenzelm
parents: 80886
diff changeset
   737
    def unsorted_chapter: Boolean = chapter == UNSORTED
a296642fa0a5 clarified GUI: prefer user documents, which are typically without chapter;
wenzelm
parents: 80886
diff changeset
   738
76492
e228be7cd375 clarified GUI.Selector, with support for separator as pseudo-entry;
wenzelm
parents: 76351
diff changeset
   739
    def main_group: Boolean = groups.contains("main")
e228be7cd375 clarified GUI.Selector, with support for separator as pseudo-entry;
wenzelm
parents: 76351
diff changeset
   740
    def doc_group: Boolean = groups.contains("doc")
e228be7cd375 clarified GUI.Selector, with support for separator as pseudo-entry;
wenzelm
parents: 76351
diff changeset
   741
80128
2fe244c4bb01 clarified signature;
wenzelm
parents: 80062
diff changeset
   742
    def build_thorough: Boolean = options.bool("build_thorough")
2fe244c4bb01 clarified signature;
wenzelm
parents: 80062
diff changeset
   743
73701
d83e7e444b43 ignore session build timeout, notably in AFP;
wenzelm
parents: 73700
diff changeset
   744
    def timeout_ignored: Boolean =
d83e7e444b43 ignore session build timeout, notably in AFP;
wenzelm
parents: 73700
diff changeset
   745
      !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
   746
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   747
    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
   748
72574
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   749
    def document_enabled: Boolean =
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   750
      options.string("document") match {
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   751
        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
   752
        case "pdf" | "true" => true
72574
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   753
        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
   754
      }
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   755
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   756
    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
   757
      val variants =
77218
86217697863c tuned signature;
wenzelm
parents: 77214
diff changeset
   758
        space_explode(':', options.string("document_variants")).
73718
ecb31c3bf980 clarified modules;
wenzelm
parents: 73701
diff changeset
   759
          map(Document_Build.Document_Variant.parse)
72649
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   760
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   761
      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
   762
      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
   763
72649
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   764
      variants
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   765
    }
4ba5b1b08dd5 clarified signature: more explicit types;
wenzelm
parents: 72648
diff changeset
   766
75902
0f46e06030e9 tuned signature;
wenzelm
parents: 75890
diff changeset
   767
    def document_echo: Boolean = options.bool("document_echo")
0f46e06030e9 tuned signature;
wenzelm
parents: 75890
diff changeset
   768
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   769
    def documents: List[Document_Build.Document_Variant] = {
72672
573ccec4dbac tuned signature;
wenzelm
parents: 72670
diff changeset
   770
      val variants = document_variants
72574
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   771
      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
   772
    }
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   773
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   774
    def document_output: Option[Path] =
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   775
      options.string("document_output") match {
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   776
        case "" => None
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   777
        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
   778
      }
d892f6d66402 build documents in Isabelle/Scala, based on generated tex files as session exports;
wenzelm
parents: 72571
diff changeset
   779
72648
1cbac4ae934d more explicit presentation directory;
wenzelm
parents: 72647
diff changeset
   780
    def browser_info: Boolean = options.bool("browser_info")
1cbac4ae934d more explicit presentation directory;
wenzelm
parents: 72647
diff changeset
   781
76776
011759a7f2f6 clarified signature: more explicit types;
wenzelm
parents: 76732
diff changeset
   782
    lazy val bibtex_entries: Bibtex.Entries =
76778
4086a0e4723b clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents: 76776
diff changeset
   783
      (for {
4086a0e4723b clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents: 76776
diff changeset
   784
        (document_dir, file) <- document_files.iterator
4086a0e4723b clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents: 76776
diff changeset
   785
        if File.is_bib(file.file_name)
4086a0e4723b clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents: 76776
diff changeset
   786
      } yield {
4086a0e4723b clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents: 76776
diff changeset
   787
        val path = dir + document_dir + file
77030
d7dc5b1e4381 proper positions for Isabelle/ML, instead of Isabelle/Scala;
wenzelm
parents: 77029
diff changeset
   788
        Bibtex.Entries.parse(File.read(path), start = Token.Pos.file(File.standard_path(path)))
76778
4086a0e4723b clarified signature: internalize errors (but: the parser rarely fails);
wenzelm
parents: 76776
diff changeset
   789
      }).foldRight(Bibtex.Entries.empty)(_ ::: _)
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   790
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   791
    def record_proofs: Boolean = options.int("record_proofs") >= 2
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
   792
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   793
    def is_afp: Boolean = chapter == AFP.chapter
80055
42bc8ab751c1 clarified modules: more official Sessions.notable_groups;
wenzelm
parents: 79502
diff changeset
   794
    def is_afp_bulky: Boolean = is_afp && groups.exists(bulky_groups)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   795
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   796
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   797
  object Selection {
65422
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   798
    val empty: Selection = Selection()
65525
360063716c71 more operations;
wenzelm
parents: 65524
diff changeset
   799
    val all: Selection = Selection(all_sessions = true)
70788
b254a95b6e77 tuned signature;
wenzelm
parents: 70740
diff changeset
   800
    def session(session: String): Selection = Selection(sessions = List(session))
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   801
  }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   802
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   803
  sealed case class Selection(
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   804
    requirements: Boolean = false,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   805
    all_sessions: Boolean = false,
66737
2edc0c42c883 option -B for "isabelle build" and "isabelle imports";
wenzelm
parents: 66736
diff changeset
   806
    base_sessions: List[String] = Nil,
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   807
    exclude_session_groups: List[String] = Nil,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   808
    exclude_sessions: List[String] = Nil,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   809
    session_groups: List[String] = Nil,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   810
    sessions: List[String] = Nil
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   811
  ) {
66736
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   812
    def ++ (other: Selection): Selection =
65422
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   813
      Selection(
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   814
        requirements = requirements || other.requirements,
b606c98e6d10 tuned signature;
wenzelm
parents: 65420
diff changeset
   815
        all_sessions = all_sessions || other.all_sessions,
66737
2edc0c42c883 option -B for "isabelle build" and "isabelle imports";
wenzelm
parents: 66736
diff changeset
   816
        base_sessions = Library.merge(base_sessions, other.base_sessions),
66736
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   817
        exclude_session_groups = Library.merge(exclude_session_groups, other.exclude_session_groups),
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   818
        exclude_sessions = Library.merge(exclude_sessions, other.exclude_sessions),
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   819
        session_groups = Library.merge(session_groups, other.session_groups),
148891036469 more standard merge operation;
wenzelm
parents: 66722
diff changeset
   820
        sessions = Library.merge(sessions, other.sessions))
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   821
  }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   822
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   823
  object Structure {
76631
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   824
    val empty: Structure = make(Options.empty)
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   825
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   826
    def make(
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   827
      options: Options,
76927
da13da82f6f9 treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents: 76907
diff changeset
   828
      augment_options: String => List[Options.Spec] = _ => Nil,
76631
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   829
      roots: List[Root_File] = Nil,
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   830
      infos: List[Info] = Nil
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   831
    ): Structure = {
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   832
      val chapter_defs: Chapter_Defs =
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   833
        roots.foldLeft(Chapter_Defs.empty) {
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   834
          case (defs1, root) =>
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   835
            root.entries.foldLeft(defs1) {
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   836
              case (defs2, entry: Chapter_Def) => defs2 + entry
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   837
              case (defs2, _) => defs2
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   838
            }
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   839
        }
72858
cb0c407fbc6e added "isabelle log": print messages from build database;
wenzelm
parents: 72855
diff changeset
   840
77675
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   841
      val options0 = Options.init0()
9e5f8f6e58a0 more thorough treatment of build prefs, guarded by system option "build_through": avoid accidental rebuild of HOL etc.;
wenzelm
parents: 77629
diff changeset
   842
      val session_prefs = options.make_prefs(defaults = options0, filter = _.session_content)
77610
3b09ae9e40cb clarified session prefs (or "options" within the database);
wenzelm
parents: 77599
diff changeset
   843
76631
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   844
      val root_infos = {
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   845
        var chapter = UNSORTED
76635
wenzelm
parents: 76634
diff changeset
   846
        val root_infos = new mutable.ListBuffer[Info]
76631
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   847
        for (root <- roots) {
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   848
          root.entries.foreach {
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   849
            case entry: Chapter_Entry => chapter = entry.name
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   850
            case entry: Session_Entry =>
76927
da13da82f6f9 treat update_options as part of Sessions.Info meta_digest, for proper re-build of updated sessions;
wenzelm
parents: 76907
diff changeset
   851
              root_infos +=
82970
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   852
                Info.make(entry,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   853
                  dir = root.dir,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   854
                  options = options,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   855
                  options0 = options0,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   856
                  augment_options = augment_options,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   857
                  chapter_defs = chapter_defs,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   858
                  chapter = chapter,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
   859
                  dir_selected = root.select)
76631
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   860
            case _ =>
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   861
          }
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   862
          chapter = UNSORTED
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   863
        }
76635
wenzelm
parents: 76634
diff changeset
   864
        root_infos.toList
76631
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   865
      }
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   866
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   867
      val info_graph =
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   868
        (root_infos ::: infos).foldLeft(Graph.string[Info]) {
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   869
          case (graph, info) =>
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   870
            if (graph.defined(info.name)) {
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   871
              error("Duplicate session " + quote(info.name) + Position.here(info.pos) +
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   872
                Position.here(graph.get_node(info.name).pos))
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   873
            }
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   874
            else graph.new_node(info.name, info)
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   875
        }
207932c34353 clarified modules;
wenzelm
parents: 76630
diff changeset
   876
76630
7db5744fcf4f tuned signature;
wenzelm
parents: 76629
diff changeset
   877
      def augment_graph(
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   878
        graph: Graph[String, Info],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   879
        kind: String,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   880
        edges: Info => Iterable[String]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   881
      ) : Graph[String, Info] = {
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   882
        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
   883
          if (!g.defined(parent)) {
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   884
            error("Bad " + kind + " session " + quote(parent) + " for " +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   885
              quote(name) + Position.here(pos))
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   886
          }
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   887
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   888
          try { g.add_edge_acyclic(parent, name) }
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   889
          catch {
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   890
            case exn: Graph.Cycles[_] =>
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   891
              error(cat_lines(exn.cycles.map(cycle =>
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   892
                "Cyclic session dependency of " +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   893
                  cycle.map(c => quote(c.toString)).mkString(" via "))) + Position.here(pos))
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   894
          }
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   895
        }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   896
        graph.iterator.foldLeft(graph) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   897
          case (g, (name, (info, _))) =>
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   898
            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
   899
        }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   900
      }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   901
76630
7db5744fcf4f tuned signature;
wenzelm
parents: 76629
diff changeset
   902
      val build_graph = augment_graph(info_graph, "parent", _.parent)
7db5744fcf4f tuned signature;
wenzelm
parents: 76629
diff changeset
   903
      val imports_graph = augment_graph(build_graph, "imports", _.imports)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   904
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   905
      val session_positions: List[(String, Position.T)] =
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   906
        (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
   907
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   908
      val session_directories: Map[JFile, String] =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   909
        (for {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   910
          session <- imports_graph.topological_order.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   911
          info = info_graph.get_node(session)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   912
          dir <- info.dirs.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   913
        } yield (info, dir)).foldLeft(Map.empty[JFile, String]) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   914
            case (dirs, (info, dir)) =>
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   915
              val session = info.name
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   916
              val canonical_dir = dir.canonical_file
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   917
              dirs.get(canonical_dir) match {
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   918
                case Some(session1) =>
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   919
                  val info1 = info_graph.get_node(session1)
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   920
                  error("Duplicate use of directory " + dir +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   921
                    "\n  for session " + quote(session1) + Position.here(info1.pos) +
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   922
                    "\n  vs. session " + quote(session) + Position.here(info.pos))
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   923
                case None => dirs + (canonical_dir -> session)
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   924
              }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   925
          }
70671
cb1776c8e216 clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents: 70668
diff changeset
   926
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   927
      val global_theories: Map[String, String] =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   928
        (for {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   929
          session <- imports_graph.topological_order.iterator
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   930
          info = info_graph.get_node(session)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   931
          thy <- info.global_theories.iterator }
76630
7db5744fcf4f tuned signature;
wenzelm
parents: 76629
diff changeset
   932
          yield (info, thy)
7db5744fcf4f tuned signature;
wenzelm
parents: 76629
diff changeset
   933
        ).foldLeft(Thy_Header.bootstrap_global_theories.toMap) {
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   934
            case (global, (info, thy)) =>
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   935
              val qualifier = info.name
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   936
              global.get(thy) match {
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   937
                case Some(qualifier1) if qualifier != qualifier1 =>
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   938
                  error("Duplicate global theory " + quote(thy) + Position.here(info.pos))
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   939
                case _ => global + (thy -> qualifier)
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   940
              }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73357
diff changeset
   941
          }
70671
cb1776c8e216 clarified signature: retain global session information, unaffected by later restriction;
wenzelm
parents: 70668
diff changeset
   942
77610
3b09ae9e40cb clarified session prefs (or "options" within the database);
wenzelm
parents: 77599
diff changeset
   943
      new Structure(chapter_defs, session_prefs, session_positions, session_directories,
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
   944
        global_theories, build_graph, imports_graph)
72855
e0f6fa6ff3d0 tuned signature;
wenzelm
parents: 72854
diff changeset
   945
    }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   946
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   947
67052
caf87d4b9b61 tuned signature;
wenzelm
parents: 67029
diff changeset
   948
  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
   949
    chapter_defs: Chapter_Defs,
77610
3b09ae9e40cb clarified session prefs (or "options" within the database);
wenzelm
parents: 77599
diff changeset
   950
    val session_prefs: String,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   951
    val session_positions: List[(String, Position.T)],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   952
    val session_directories: Map[JFile, String],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   953
    val global_theories: Map[String, String],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   954
    val build_graph: Graph[String, Info],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   955
    val imports_graph: Graph[String, Info]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   956
  ) {
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   957
    sessions_structure =>
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
   958
70683
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   959
    def dest_session_directories: List[(String, String)] =
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   960
      for ((file, session) <- session_directories.toList)
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   961
        yield (File.standard_path(file), session)
8c7706b053c7 find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents: 70681
diff changeset
   962
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
   963
    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
   964
      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
   965
        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
   966
          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
   967
            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
   968
      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
   969
        (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
   970
          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
   971
          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
   972
        }).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
   973
      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
   974
        (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
   975
          (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
   976
          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
   977
        } 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
   978
      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
   979
    }
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
   980
76002
64b05dc56656 tuned signature;
wenzelm
parents: 76001
diff changeset
   981
    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
   982
66823
f529719cc47d operations for graph display;
wenzelm
parents: 66822
diff changeset
   983
    def build_graph_display: Graph_Display.Graph = Graph_Display.make_graph(build_graph)
f529719cc47d operations for graph display;
wenzelm
parents: 66822
diff changeset
   984
    def imports_graph_display: Graph_Display.Graph = Graph_Display.make_graph(imports_graph)
f529719cc47d operations for graph display;
wenzelm
parents: 66822
diff changeset
   985
67025
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
   986
    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
   987
    def apply(name: String): Info = imports_graph.get_node(name)
67025
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
   988
    def get(name: String): Option[Info] = if (defined(name)) Some(apply(name)) else None
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   989
70859
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   990
    def theory_qualifier(name: String): String =
6e6254bbce1f split into standard partitions, for improved scalability;
wenzelm
parents: 70796
diff changeset
   991
      global_theories.getOrElse(name, Long_Name.qualifier(name))
75884
3d8b37b1d798 clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents: 75791
diff changeset
   992
    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
   993
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
   994
    def check_sessions(names: List[String]): Unit = {
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71599
diff changeset
   995
      val bad_sessions = SortedSet(names.filterNot(defined): _*).toList
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   996
      if (bad_sessions.nonEmpty) {
68542
02df6c68a8cb clarified error;
wenzelm
parents: 68523
diff changeset
   997
        error("Undefined session(s): " + commas_quote(bad_sessions))
76048
92aa9ac31c7c tuned --- more robust syntax;
wenzelm
parents: 76016
diff changeset
   998
      }
68542
02df6c68a8cb clarified error;
wenzelm
parents: 68523
diff changeset
   999
    }
02df6c68a8cb clarified error;
wenzelm
parents: 68523
diff changeset
  1000
68733
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
  1001
    def check_sessions(sel: Selection): Unit =
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
  1002
      check_sessions(sel.base_sessions ::: sel.exclude_sessions ::: sel.sessions)
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
  1003
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1004
    private def selected(graph: Graph[String, Info], sel: Selection): List[String] = {
68733
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
  1005
      check_sessions(sel)
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
  1006
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1007
      val select_group = sel.session_groups.toSet
68734
c14a2cc9b5ef isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents: 68733
diff changeset
  1008
      val select_session = sel.sessions.toSet ++ imports_graph.all_succs(sel.base_sessions)
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1009
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1010
      val selected0 =
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1011
        if (sel.all_sessions) graph.keys
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1012
        else {
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1013
          (for {
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1014
            (name, (info, _)) <- graph.iterator
74810
d540c36cd0d2 tuned (see also e0d1d9203275);
wenzelm
parents: 74809
diff changeset
  1015
            if info.dir_selected || select_session(name) || info.groups.exists(select_group)
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1016
          } yield name).toList
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1017
        }
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1018
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1019
      if (sel.requirements) (graph.all_preds(selected0).toSet -- selected0).toList
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1020
      else selected0
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1021
    }
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1022
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1023
    def selection(sel: Selection): Structure = {
68733
76e339ef60e3 more uniform checks;
wenzelm
parents: 68732
diff changeset
  1024
      check_sessions(sel)
67025
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
  1025
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1026
      val excluded = {
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1027
        val exclude_group = sel.exclude_session_groups.toSet
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1028
        val exclude_group_sessions =
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1029
          (for {
68734
c14a2cc9b5ef isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents: 68733
diff changeset
  1030
            (name, (info, _)) <- imports_graph.iterator
76599
wenzelm
parents: 76597
diff changeset
  1031
            if info.groups.exists(exclude_group)
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1032
          } yield name).toList
68734
c14a2cc9b5ef isabelle build options -c -x -B refer to imports_graph;
wenzelm
parents: 68733
diff changeset
  1033
        imports_graph.all_succs(exclude_group_sessions ::: sel.exclude_sessions).toSet
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1034
      }
67027
wenzelm
parents: 67026
diff changeset
  1035
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1036
      def restrict(graph: Graph[String, Info]): Graph[String, Info] = {
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1037
        val sessions = graph.all_preds(selected(graph, sel)).filterNot(excluded)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
  1038
        graph.restrict(graph.all_preds(sessions).toSet)
67025
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
  1039
      }
961285f581e6 clarifified selection: always wrt. build_graph structure;
wenzelm
parents: 67024
diff changeset
  1040
77610
3b09ae9e40cb clarified session prefs (or "options" within the database);
wenzelm
parents: 77599
diff changeset
  1041
      new Structure(chapter_defs, session_prefs, session_positions, session_directories,
3b09ae9e40cb clarified session prefs (or "options" within the database);
wenzelm
parents: 77599
diff changeset
  1042
        global_theories, restrict(build_graph), restrict(imports_graph))
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1043
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1044
72571
ab4a0b19648a tuned signature;
wenzelm
parents: 72565
diff changeset
  1045
    def selection(session: String): Structure = selection(Selection.session(session))
ab4a0b19648a tuned signature;
wenzelm
parents: 72565
diff changeset
  1046
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1047
    def selection_deps(
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1048
      selection: Selection,
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71642
diff changeset
  1049
      progress: Progress = new Progress,
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1050
      loading_sessions: Boolean = false,
77521
5642de4d225d clarified signature: manage "verbose" flag via "progress";
wenzelm
parents: 77516
diff changeset
  1051
      inlined_files: Boolean = false
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1052
    ): Deps = {
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1053
      val deps =
70869
1d063b7f7928 incorporate sessions with record_proofs;
wenzelm
parents: 70867
diff changeset
  1054
        Sessions.deps(sessions_structure.selection(selection),
77521
5642de4d225d clarified signature: manage "verbose" flag via "progress";
wenzelm
parents: 77516
diff changeset
  1055
          progress = progress, inlined_files = inlined_files)
69524
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1056
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1057
      if (loading_sessions) {
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1058
        val selection_size = deps.sessions_structure.build_graph.size
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1059
        if (selection_size > 1) progress.echo("Loading " + selection_size + " sessions ...")
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1060
      }
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1061
fa94f2b2a877 clarified sessions_deps, according to Isabelle/MMT usage;
wenzelm
parents: 69393
diff changeset
  1062
      deps
68304
09270aa40884 tuned signature;
wenzelm
parents: 68294
diff changeset
  1063
    }
09270aa40884 tuned signature;
wenzelm
parents: 68294
diff changeset
  1064
75760
f8be63d2ec6f more robust build_hierarchy: support Resources.empty / Sessions.Structure.empty (required for Build_Job.print_log);
wenzelm
parents: 75759
diff changeset
  1065
    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
  1066
      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
  1067
      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
  1068
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1069
    def build_selection(sel: Selection): List[String] = selected(build_graph, sel)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
  1070
    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
  1071
    def build_requirements(ss: List[String]): List[String] = build_graph.all_preds_rev(ss)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
  1072
    def build_topological_order: List[String] = build_graph.topological_order
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1073
68732
5472f4409fe6 tuned signature;
wenzelm
parents: 68542
diff changeset
  1074
    def imports_selection(sel: Selection): List[String] = selected(imports_graph, sel)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
  1075
    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
  1076
    def imports_requirements(ss: List[String]): List[String] = imports_graph.all_preds_rev(ss)
67029
d6d9fd2559ce clarified signature (again);
wenzelm
parents: 67028
diff changeset
  1077
    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
  1078
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
  1079
    override def toString: String =
67052
caf87d4b9b61 tuned signature;
wenzelm
parents: 67029
diff changeset
  1080
      imports_graph.keys_iterator.mkString("Sessions.Structure(", ", ", ")")
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1081
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1082
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1083
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1084
  /* parser */
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1085
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1086
  private val CHAPTER_DEFINITION = "chapter_definition"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1087
  private val CHAPTER = "chapter"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1088
  private val SESSION = "session"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1089
  private val DESCRIPTION = "description"
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
  1090
  private val DIRECTORIES = "directories"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1091
  private val OPTIONS = "options"
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
  1092
  private val SESSIONS = "sessions"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1093
  private val THEORIES = "theories"
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
  1094
  private val GLOBAL = "global"
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1095
  private val DOCUMENT_THEORIES = "document_theories"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1096
  private val DOCUMENT_FILES = "document_files"
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1097
  private val EXPORT_FILES = "export_files"
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1098
  private val EXPORT_CLASSPATH = "export_classpath"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1099
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71599
diff changeset
  1100
  val root_syntax: Outer_Syntax =
76614
ac08b6e3b9e3 clarified signature;
wenzelm
parents: 76599
diff changeset
  1101
    Outer_Syntax.empty + "(" + ")" + "+" + "," + "=" + "[" + "]" + "in" +
ac08b6e3b9e3 clarified signature;
wenzelm
parents: 76599
diff changeset
  1102
      GLOBAL +
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1103
      (CHAPTER_DEFINITION, Keyword.THY_DECL) +
63443
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
  1104
      (CHAPTER, Keyword.THY_DECL) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
  1105
      (SESSION, Keyword.THY_DECL) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
  1106
      (DESCRIPTION, Keyword.QUASI_COMMAND) +
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
  1107
      (DIRECTORIES, Keyword.QUASI_COMMAND) +
63443
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
  1108
      (OPTIONS, Keyword.QUASI_COMMAND) +
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
  1109
      (SESSIONS, Keyword.QUASI_COMMAND) +
63443
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
  1110
      (THEORIES, Keyword.QUASI_COMMAND) +
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1111
      (DOCUMENT_THEORIES, Keyword.QUASI_COMMAND) +
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1112
      (DOCUMENT_FILES, Keyword.QUASI_COMMAND) +
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1113
      (EXPORT_FILES, Keyword.QUASI_COMMAND) +
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1114
      (EXPORT_CLASSPATH, Keyword.QUASI_COMMAND)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1115
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1116
  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
  1117
  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
  1118
    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
  1119
  }
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
  1120
  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
  1121
    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
  1122
    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
  1123
    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
  1124
    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
  1125
  ) extends Entry
75984
75b65c1f7a1f tuned signature;
wenzelm
parents: 75978
diff changeset
  1126
  sealed case class Chapter_Entry(name: String) extends Entry
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1127
  sealed case class Session_Entry(
82970
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1128
    pos: Position.T = Position.none,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1129
    name: String = "",
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1130
    groups: List[String] = Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1131
    path: String = ".",
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1132
    parent: Option[String] = None,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1133
    description: String = "",
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1134
    options: List[Options.Spec] = Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1135
    imports: List[String] = Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1136
    directories: List[String] = Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1137
    theories: List[(List[Options.Spec], List[((String, Position.T), Boolean)])] = Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1138
    document_theories: List[(String, Position.T)] = Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1139
    document_files: List[(String, String)] = Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1140
    export_files: List[(String, Int, List[String])] = Nil,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1141
    export_classpath: List[String] = Nil
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1142
  ) extends Entry {
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1143
    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
  1144
      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
  1145
    def document_theories_no_position: List[String] =
945cee776e79 proper meta_digest: avoid non-portable position information;
wenzelm
parents: 72653
diff changeset
  1146
      document_theories.map(_._1)
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1147
  }
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1148
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1149
  object Chapter_Defs {
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1150
    val empty: Chapter_Defs = new Chapter_Defs(Nil)
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1151
  }
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1152
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1153
  class Chapter_Defs private(rev_list: List[Chapter_Def]) {
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1154
    def list: List[Chapter_Def] = rev_list.reverse
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
    override def toString: String =
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1157
      list.map(_.name).mkString("Chapter_Defs(", ", ", ")")
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1158
75996
633f74e679f5 tuned signature;
wenzelm
parents: 75995
diff changeset
  1159
    def get(chapter: String): Option[Chapter_Def] =
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1160
      rev_list.find(_.name == chapter)
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1161
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
  1162
    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
  1163
      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
  1164
75996
633f74e679f5 tuned signature;
wenzelm
parents: 75995
diff changeset
  1165
    def + (entry: Chapter_Def): Chapter_Defs =
75997
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
  1166
      get(entry.name) match {
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
  1167
        case None => new Chapter_Defs(entry :: rev_list)
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
  1168
        case Some(old_entry) =>
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
  1169
          error("Duplicate chapter definition " + quote(entry.name) +
90ff9ed0cd75 more robust, more strict;
wenzelm
parents: 75996
diff changeset
  1170
            Position.here(old_entry.pos) + Position.here(entry.pos))
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1171
      }
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1172
  }
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1173
75405
b13ab7d11b90 clarified signature: avoid ambiguity in scala3;
wenzelm
parents: 75394
diff changeset
  1174
  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
  1175
    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
  1176
      ($$$("(") ~! (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
  1177
75998
c36e5c6f3069 clarified syntax: more uniform;
wenzelm
parents: 75997
diff changeset
  1178
    private val description: Parser[String] =
c36e5c6f3069 clarified syntax: more uniform;
wenzelm
parents: 75997
diff changeset
  1179
      ($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")
c36e5c6f3069 clarified syntax: more uniform;
wenzelm
parents: 75997
diff changeset
  1180
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1181
    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
  1182
      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
  1183
        { 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
  1184
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1185
    private val chapter_entry: Parser[Chapter_Entry] =
75984
75b65c1f7a1f tuned signature;
wenzelm
parents: 75978
diff changeset
  1186
      command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter_Entry(a) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1187
83007
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1188
    private val prune: Parser[Int] =
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1189
      $$$("[") ~! (nat ~ $$$("]")) ^^ { case _ ~ (x ~ _) => x } | success(0)
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1190
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1191
    private val export_files_args: Parser[(String, Int, List[String])] =
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1192
      in_path_parens("export") ~ prune ~ rep1(embedded) ^^ { case x ~ y ~ z => (x, y, z) }
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1193
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1194
    private val session_entry: Parser[Session_Entry] = {
78407
b262ecc98319 more operations for independent "inline" options;
wenzelm
parents: 78178
diff changeset
  1195
      val options = $$$("[") ~> rep1sep(option_spec, $$$(",")) <~ $$$("]")
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1196
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
  1197
      val theory_entry =
70668
9cac4dec0da9 support for explicit session directories;
wenzelm
parents: 70650
diff changeset
  1198
        position(theory_name) ~ opt_keyword(GLOBAL) ^^ { case x ~ y => (x, y) }
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
  1199
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1200
      val theories =
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
  1201
        $$$(THEORIES) ~!
66970
13857f49d215 clarified ROOT syntax: 'sessions' and 'theories' are optional, but need to be non-empty;
wenzelm
parents: 66969
diff changeset
  1202
          ((options | success(Nil)) ~ rep1(theory_entry)) ^^
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
  1203
          { case _ ~ (x ~ y) => (x, y) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1204
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1205
      val document_theories =
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1206
        $$$(DOCUMENT_THEORIES) ~! rep1(position(name)) ^^ { case _ ~ x => x }
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1207
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1208
      val document_files =
76614
ac08b6e3b9e3 clarified signature;
wenzelm
parents: 76599
diff changeset
  1209
        $$$(DOCUMENT_FILES) ~! (in_path_parens("document") ~ rep1(path)) ^^
ac08b6e3b9e3 clarified signature;
wenzelm
parents: 76599
diff changeset
  1210
          { case _ ~ (x ~ y) => y.map((x, _)) }
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1211
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1212
      val export_files =
83007
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1213
        $$$(EXPORT_FILES) ~! export_files_args ^^ { case _ ~ x => x }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1214
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1215
      val export_classpath =
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1216
        $$$(EXPORT_CLASSPATH) ~! (rep1(embedded) | success(List("*:classpath/*.jar"))) ^^
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1217
          { case _ ~ x => x }
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1218
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1219
      command(SESSION) ~!
76614
ac08b6e3b9e3 clarified signature;
wenzelm
parents: 76599
diff changeset
  1220
        (position(session_name) ~ groups ~ in_path(".") ~
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1221
          ($$$("=") ~!
75998
c36e5c6f3069 clarified syntax: more uniform;
wenzelm
parents: 75997
diff changeset
  1222
            (opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~ description ~
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1223
              (($$$(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
  1224
              (($$$(SESSIONS) ~! rep1(session_name)  ^^ { case _ ~ x => x }) | success(Nil)) ~
70681
a6c0f2d106c8 disallow overlapping session directories;
wenzelm
parents: 70679
diff changeset
  1225
              (($$$(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
  1226
              rep(theories) ~
72600
2fa4f25d9d07 official support for document theories from other sessions;
wenzelm
parents: 72574
diff changeset
  1227
              (opt(document_theories) ^^ (x => x.getOrElse(Nil))) ~
68292
7ca0c23179e6 support 'export_files' in session ROOT;
wenzelm
parents: 68221
diff changeset
  1228
              (rep(document_files) ^^ (x => x.flatten)) ~
75679
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1229
              rep(export_files) ~
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1230
              opt(export_classpath)))) ^^
aa89255b704c support for classpath artifacts within session structure:
wenzelm
parents: 75672
diff changeset
  1231
        { case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i ~ j ~ k ~ l ~ m))) =>
82970
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1232
            Session_Entry(pos = pos, name = a, groups = b, path = c, parent = d, description = e,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1233
              options = f, imports = g, directories = h, theories = i, document_theories = j,
9164cace10ca clarified signature;
wenzelm
parents: 82948
diff changeset
  1234
              document_files = k, export_files = l, export_classpath = m.getOrElse(Nil)) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1235
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1236
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1237
    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
  1238
      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
  1239
      val start = Token.Pos.file(path.implode)
75986
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1240
      val parser: Parser[Entry] = chapter_def | chapter_entry | session_entry
27d98da31985 support 'chapter_definition' with description for presentation purposes;
wenzelm
parents: 75984
diff changeset
  1241
      parse_all(rep(parser), Token.reader(toks, start)) match {
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1242
        case Success(result, _) => result
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1243
        case bad => error(bad.toString)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1244
      }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1245
    }
83007
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1246
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1247
    def parse_exports(str: String, start: Token.Pos): (String, Int, List[String]) = {
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1248
      val toks = Token.explode(root_syntax.keywords, str)
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1249
      parse_all(export_files_args, Token.reader(toks, start)) match {
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1250
        case Success(result, _) => result
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1251
        case bad => error(bad.toString)
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1252
      }
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1253
    }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1254
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1255
75405
b13ab7d11b90 clarified signature: avoid ambiguity in scala3;
wenzelm
parents: 75394
diff changeset
  1256
  def parse_root(path: Path): List[Entry] = Parsers.parse_root(path)
66819
wenzelm
parents: 66818
diff changeset
  1257
wenzelm
parents: 66818
diff changeset
  1258
  def parse_root_entries(path: Path): List[Session_Entry] =
76789
wenzelm
parents: 76779
diff changeset
  1259
    Parsers.parse_root(path).flatMap(Library.as_subclass(classOf[Session_Entry]))
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1260
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1261
  def parse_roots(roots: Path): List[String] = {
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1262
    for {
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1263
      line <- split_lines(File.read(roots))
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1264
      if !(line == "" || line.startsWith("#"))
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1265
    } yield line
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1266
  }
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1267
83007
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1268
  def parse_exports(str: String, start: Token.Pos = Token.Pos.none): (String, Int, List[String]) =
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1269
    Parsers.parse_exports(str, start)
b9715600883c support for "isabelle process_theories -E EXPORTS";
wenzelm
parents: 82975
diff changeset
  1270
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1271
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
  1272
  /* load sessions from certain directories */
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1273
77760
34178d26a360 more SSH operations;
wenzelm
parents: 77720
diff changeset
  1274
  def is_session_dir(dir: Path, ssh: SSH.System = SSH.Local): Boolean =
34178d26a360 more SSH operations;
wenzelm
parents: 77720
diff changeset
  1275
    ssh.is_file(dir + ROOT) || ssh.is_file(dir + ROOTS)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1276
75297
fc4d07587695 more robust errors -- on foreground process instead of background server;
wenzelm
parents: 74812
diff changeset
  1277
  def check_session_dir(dir: Path): Path =
80194
79655411a32d clarified signature (see also be0ab4b94c62 and c41791ad75c3);
wenzelm
parents: 80128
diff changeset
  1278
    if (is_session_dir(dir)) dir.absolute
76549
8f580e62ca6e tuned message;
wenzelm
parents: 76492
diff changeset
  1279
    else {
8f580e62ca6e tuned message;
wenzelm
parents: 76492
diff changeset
  1280
      error("Bad session root directory: " + dir.expand.toString +
8f580e62ca6e tuned message;
wenzelm
parents: 76492
diff changeset
  1281
        "\n  (missing \"ROOT\" or \"ROOTS\")")
8f580e62ca6e tuned message;
wenzelm
parents: 76492
diff changeset
  1282
    }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1283
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 75382
diff changeset
  1284
  def directories(dirs: List[Path], select_dirs: List[Path]): List[(Boolean, Path)] = {
77760
34178d26a360 more SSH operations;
wenzelm
parents: 77720
diff changeset
  1285
    val default_dirs = Components.directories().filter(is_session_dir(_))
68746
f95e2f145ea5 canonical session directories in correspondence to Known.files;
wenzelm
parents: 68734
diff changeset
  1286
    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
  1287
    yield (select, dir.canonical)
65561
741b1d3930c0 support for Mercurial manifest check;
wenzelm
parents: 65560
diff changeset
  1288
  }
741b1d3930c0 support for Mercurial manifest check;
wenzelm
parents: 65560
diff changeset
  1289
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1290
  sealed case class Root_File(path: Path, select: Boolean) {
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1291
    val key: JFile = path.canonical_file
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1292
    def dir: Path = path.dir
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1293
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1294
    lazy val entries: List[Entry] = Parsers.parse_root(path)
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1295
  }
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1296
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1297
  def load_root_files(
66968
9991671c98aa allow to augment session context via explicit session infos;
wenzelm
parents: 66967
diff changeset
  1298
    dirs: List[Path] = Nil,
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1299
    select_dirs: List[Path] = Nil
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1300
  ): List[Root_File] = {
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1301
    def load_dir(select: Boolean, dir: Path): List[Root_File] =
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
  1302
      load_root(select, dir) ::: load_roots(select, dir)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1303
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1304
    def load_root(select: Boolean, dir: Path): List[Root_File] = {
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1305
      val root = dir + ROOT
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1306
      if (root.is_file) List(Root_File(root, select)) else Nil
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1307
    }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1308
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1309
    def load_roots(select: Boolean, dir: Path): List[Root_File] = {
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1310
      val roots = dir + ROOTS
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1311
      if (roots.is_file) {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1312
        for {
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1313
          entry <- parse_roots(roots)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1314
          dir1 =
66818
5bc903a60932 clarified signature: public access to ROOT file syntax;
wenzelm
parents: 66780
diff changeset
  1315
            try { check_session_dir(dir + Path.explode(entry)) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1316
            catch {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1317
              case ERROR(msg) =>
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1318
                error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1319
            }
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1320
          res <- load_dir(select, dir1)
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1321
        } yield res
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1322
      }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1323
      else Nil
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1324
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1325
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1326
    val raw_roots: List[Root_File] =
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1327
      for {
65561
741b1d3930c0 support for Mercurial manifest check;
wenzelm
parents: 65560
diff changeset
  1328
        (select, dir) <- directories(dirs, select_dirs)
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1329
        root <- load_dir(select, check_session_dir(dir))
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1330
      } yield root
66764
006deaf5c3dc process ROOT files only once, which allows duplicate (or overlapping) session root directories;
wenzelm
parents: 66759
diff changeset
  1331
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1332
    var next_root = 0
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1333
    var seen_roots = Map.empty[JFile, (Root_File, Int)]
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1334
    for (root <- raw_roots) {
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1335
      seen_roots.get(root.key) match {
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1336
        case None =>
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1337
          seen_roots += (root.key -> (root, next_root))
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1338
          next_root += 1
76633
95c258c0753c clarified order: accumulate strictly from left to right;
wenzelm
parents: 76632
diff changeset
  1339
        case Some((root0, next0)) =>
76634
wenzelm
parents: 76633
diff changeset
  1340
          val root1 = root0.copy(select = root0.select || root.select)
wenzelm
parents: 76633
diff changeset
  1341
          seen_roots += (root0.key -> (root1, next0))
76629
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1342
      }
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1343
    }
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1344
    seen_roots.valuesIterator.toList.sortBy(_._2).map(_._1)
f55c67f2889b clarified signature: more types and operations;
wenzelm
parents: 76628
diff changeset
  1345
  }
75995
wenzelm
parents: 75987
diff changeset
  1346
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
  1347
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1348
  /* Isabelle tool wrapper */
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1349
72763
3cc73d00553c added document antiquotation @{tool};
wenzelm
parents: 72760
diff changeset
  1350
  val isabelle_tool = Isabelle_Tool("sessions", "explore structure of Isabelle sessions",
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1351
    Scala_Project.here,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1352
    { args =>
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1353
      var base_sessions: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1354
      var select_dirs: List[Path] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1355
      var requirements = false
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1356
      var exclude_session_groups: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1357
      var all_sessions = false
76107
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1358
      var build_graph = false
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1359
      var dirs: List[Path] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1360
      var session_groups: List[String] = Nil
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1361
      var exclude_sessions: List[String] = Nil
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1362
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1363
      val getopts = Getopts("""
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1364
Usage: isabelle sessions [OPTIONS] [SESSIONS ...]
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1365
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1366
  Options are:
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1367
    -B NAME      include session NAME and all descendants
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1368
    -D DIR       include session directory and select its sessions
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1369
    -R           refer to requirements of selected sessions
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1370
    -X NAME      exclude sessions from group NAME and all descendants
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1371
    -a           select all sessions
76107
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1372
    -b           follow session build dependencies (default: source imports)
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1373
    -d DIR       include session directory
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1374
    -g NAME      select session group NAME
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1375
    -x NAME      exclude session NAME and all descendants
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1376
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1377
  Explore the structure of Isabelle sessions and print result names in
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1378
  topological order (on stdout).
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1379
""",
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1380
        "B:" -> (arg => base_sessions = base_sessions ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1381
        "D:" -> (arg => select_dirs = select_dirs ::: List(Path.explode(arg))),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1382
        "R" -> (_ => requirements = true),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1383
        "X:" -> (arg => exclude_session_groups = exclude_session_groups ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1384
        "a" -> (_ => all_sessions = true),
76107
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1385
        "b" -> (_ => build_graph = true),
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1386
        "d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1387
        "g:" -> (arg => session_groups = session_groups ::: List(arg)),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1388
        "x:" -> (arg => exclude_sessions = exclude_sessions ::: List(arg)))
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1389
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1390
      val sessions = getopts(args)
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1391
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1392
      val options = Options.init()
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1393
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1394
      val selection =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1395
        Selection(requirements = requirements, all_sessions = all_sessions, base_sessions = base_sessions,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1396
          exclude_session_groups = exclude_session_groups, exclude_sessions = exclude_sessions,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1397
          session_groups = session_groups, sessions = sessions)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1398
      val sessions_structure =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1399
        load_structure(options, dirs = dirs, select_dirs = select_dirs).selection(selection)
71808
e2ad50885887 added "isabelle sessions" tool;
wenzelm
parents: 71726
diff changeset
  1400
76107
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1401
      val order =
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1402
        if (build_graph) sessions_structure.build_topological_order
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1403
        else sessions_structure.imports_topological_order
4dedb6e2dac2 more command-line options;
wenzelm
parents: 76048
diff changeset
  1404
      for (name <- order) Output.writeln(name, stdout = true)
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
  1405
    })
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
  1406
}