src/Pure/Thy/sessions.scala
author wenzelm
Fri, 07 Apr 2017 11:50:49 +0200
changeset 65420 695d4e22345a
parent 65419 457e4fbed731
child 65422 b606c98e6d10
permissions -rw-r--r--
support for static session imports, without affect build hierarchy;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Thy/sessions.scala
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
     3
62973
744266e32612 clarified modules;
wenzelm
parents: 62969
diff changeset
     4
Isabelle 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
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
     9
import java.nio.ByteBuffer
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
    10
import java.nio.channels.FileChannel
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
    11
import java.nio.file.StandardOpenOption
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
    12
import java.sql.PreparedStatement
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    13
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    14
import scala.collection.SortedSet
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    15
import scala.collection.mutable
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    16
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    17
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    18
object Sessions
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
    19
{
65360
wenzelm
parents: 65359
diff changeset
    20
  /* base info and source dependencies */
62883
b04e9fe29223 clarified ML bootstrap;
wenzelm
parents: 62864
diff changeset
    21
65360
wenzelm
parents: 65359
diff changeset
    22
  def is_pure(name: String): Boolean = name == Thy_Header.PURE
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    23
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    24
  object Base
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    25
  {
65360
wenzelm
parents: 65359
diff changeset
    26
    def pure(options: Options): Base = session_base(options, Thy_Header.PURE)
wenzelm
parents: 65359
diff changeset
    27
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    28
    lazy val bootstrap: Base =
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    29
      Base(keywords = Thy_Header.bootstrap_header, syntax = Thy_Header.bootstrap_syntax)
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    30
  }
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    31
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    32
  sealed case class Base(
65372
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
    33
    global_theories: Set[String] = Set.empty,
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    34
    loaded_theories: Set[String] = Set.empty,
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    35
    known_theories: Map[String, Document.Node.Name] = Map.empty,
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    36
    keywords: Thy_Header.Keywords = Nil,
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    37
    syntax: Outer_Syntax = Outer_Syntax.empty,
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    38
    sources: List[(Path, SHA1.Digest)] = Nil,
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    39
    session_graph: Graph_Display.Graph = Graph_Display.empty_graph)
65355
403eabd73c9a tuned signature;
wenzelm
parents: 65326
diff changeset
    40
  {
403eabd73c9a tuned signature;
wenzelm
parents: 65326
diff changeset
    41
    def loaded_theory(name: Document.Node.Name): Boolean =
403eabd73c9a tuned signature;
wenzelm
parents: 65326
diff changeset
    42
      loaded_theories.contains(name.theory)
403eabd73c9a tuned signature;
wenzelm
parents: 65326
diff changeset
    43
  }
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    44
65406
cc9e2f1f279d tuned signature;
wenzelm
parents: 65404
diff changeset
    45
  sealed case class Deps(sessions: Map[String, Base])
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    46
  {
65406
cc9e2f1f279d tuned signature;
wenzelm
parents: 65404
diff changeset
    47
    def is_empty: Boolean = sessions.isEmpty
cc9e2f1f279d tuned signature;
wenzelm
parents: 65404
diff changeset
    48
    def apply(name: String): Base = sessions(name)
cc9e2f1f279d tuned signature;
wenzelm
parents: 65404
diff changeset
    49
    def sources(name: String): List[SHA1.Digest] = sessions(name).sources.map(_._2)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    50
  }
64856
5e9bf964510a clarified modules;
wenzelm
parents: 63996
diff changeset
    51
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
    52
  def deps(sessions: T,
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    53
      progress: Progress = No_Progress,
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    54
      inlined_files: Boolean = false,
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    55
      verbose: Boolean = false,
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    56
      list_files: Boolean = false,
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    57
      check_keywords: Set[String] = Set.empty,
65406
cc9e2f1f279d tuned signature;
wenzelm
parents: 65404
diff changeset
    58
      global_theories: Set[String] = Set.empty): Deps =
65372
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
    59
  {
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
    60
    Deps((Map.empty[String, Base] /: sessions.imports_topological_order)({
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
    61
      case (sessions, (name, info)) =>
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    62
        if (progress.stopped) throw Exn.Interrupt()
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    63
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    64
        try {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    65
          val parent_base =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    66
            info.parent match {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    67
              case None => Base.bootstrap
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    68
              case Some(parent) => sessions(parent)
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    69
            }
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    70
          val resources = new Resources(name, parent_base)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    71
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    72
          if (verbose || list_files) {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    73
            val groups =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    74
              if (info.groups.isEmpty) ""
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    75
              else info.groups.mkString(" (", " ", ")")
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    76
            progress.echo("Session " + info.chapter + "/" + name + groups)
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    77
          }
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    78
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    79
          val thy_deps =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    80
          {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    81
            val root_theories =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    82
              info.theories.flatMap({ case (_, thys) =>
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    83
                thys.map(thy => (resources.import_name(info.dir.implode, thy), info.pos))
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    84
              })
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    85
            val thy_deps = resources.thy_info.dependencies(root_theories)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    86
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    87
            thy_deps.errors match {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    88
              case Nil => thy_deps
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    89
              case errs => error(cat_lines(errs))
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    90
            }
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    91
          }
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
    92
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    93
          val known_theories =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    94
            (parent_base.known_theories /: thy_deps.deps)({ case (known, dep) =>
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    95
              val name = dep.name
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    96
              known.get(name.theory) match {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    97
                case Some(name1) if name != name1 =>
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    98
                  error("Duplicate theory " + quote(name.node) + " vs. " + quote(name1.node))
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
    99
                case _ =>
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   100
                  known + (name.theory -> name) +
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   101
                    (Long_Name.base_name(name.theory) -> name)  // legacy
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   102
              }
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   103
            })
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   104
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   105
          val loaded_theories = thy_deps.loaded_theories
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   106
          val keywords = thy_deps.keywords
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   107
          val syntax = thy_deps.syntax
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   108
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   109
          val theory_files = thy_deps.deps.map(dep => Path.explode(dep.name.node))
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   110
          val loaded_files =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   111
            if (inlined_files) {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   112
              val pure_files =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   113
                if (is_pure(name)) {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   114
                  val roots = Thy_Header.ml_roots.map(p => info.dir + Path.explode(p._1))
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   115
                  val files =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   116
                    roots.flatMap(root => resources.loaded_files(syntax, File.read(root))).
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   117
                      map(file => info.dir + Path.explode(file))
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   118
                  roots ::: files
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   119
                }
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   120
                else Nil
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   121
              pure_files ::: thy_deps.loaded_files
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   122
            }
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   123
            else Nil
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   124
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   125
          val all_files =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   126
            (theory_files ::: loaded_files :::
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   127
              info.files.map(file => info.dir + file) :::
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   128
              info.document_files.map(file => info.dir + file._1 + file._2)).map(_.expand)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   129
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   130
          if (list_files)
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   131
            progress.echo(cat_lines(all_files.map(_.implode).sorted.map("  " + _)))
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   132
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   133
          if (check_keywords.nonEmpty)
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   134
            Check_Keywords.check_keywords(progress, syntax.keywords, check_keywords, theory_files)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   135
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   136
          val base =
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   137
            Base(global_theories = global_theories,
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   138
              loaded_theories = loaded_theories,
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   139
              known_theories = known_theories,
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   140
              keywords = keywords,
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   141
              syntax = syntax,
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   142
              sources = all_files.map(p => (p, SHA1.digest(p.file))),
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   143
              session_graph = thy_deps.session_graph(info.parent getOrElse "", parent_base))
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   144
65410
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   145
          sessions + (name -> base)
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   146
        }
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   147
        catch {
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   148
          case ERROR(msg) =>
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   149
            cat_error(msg, "The error(s) above occurred in session " +
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   150
              quote(name) + Position.here(info.pos))
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   151
        }
44253ed65acd tuned whitespace;
wenzelm
parents: 65407
diff changeset
   152
    }))
65372
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   153
  }
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   154
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   155
  def session_base(options: Options, session: String, dirs: List[Path] = Nil): Base =
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   156
  {
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   157
    val full_sessions = load(options, dirs = dirs)
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   158
    val (_, selected_sessions) =
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   159
      full_sessions.selection(Selection(sessions = List(session)))
65372
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   160
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   161
    deps(selected_sessions, global_theories = full_sessions.global_theories)(session)
65251
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   162
  }
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   163
4b0a43afc3fb clarified modules;
wenzelm
parents: 64856
diff changeset
   164
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   165
  /* cumulative session info */
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   166
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   167
  sealed case class Info(
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   168
    chapter: String,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   169
    select: Boolean,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   170
    pos: Position.T,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   171
    groups: List[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   172
    dir: Path,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   173
    parent: Option[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   174
    description: String,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   175
    options: Options,
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   176
    imports: List[String],
65392
f365f61f2081 uniform import_name, with treatment of global and qualified theories;
wenzelm
parents: 65391
diff changeset
   177
    theories: List[(Options, List[String])],
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   178
    global_theories: List[String],
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   179
    files: List[Path],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   180
    document_files: List[(Path, Path)],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   181
    meta_digest: SHA1.Digest)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   182
  {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   183
    def timeout: Time = Time.seconds(options.real("timeout") * options.real("timeout_scale"))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   184
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   185
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   186
  object Selection
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   187
  {
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   188
    val all: Selection = Selection(all_sessions = true)
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   189
  }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   190
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   191
  sealed case class Selection(
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   192
    requirements: Boolean = false,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   193
    all_sessions: Boolean = false,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   194
    exclude_session_groups: List[String] = Nil,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   195
    exclude_sessions: List[String] = Nil,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   196
    session_groups: List[String] = Nil,
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   197
    sessions: List[String] = Nil)
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   198
  {
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   199
    def apply(graph: Graph[String, Info]): (List[String], Graph[String, Info]) =
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   200
    {
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   201
      val bad_sessions =
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   202
        SortedSet((exclude_sessions ::: sessions).filterNot(graph.defined(_)): _*).toList
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   203
      if (bad_sessions.nonEmpty) error("Undefined session(s): " + commas_quote(bad_sessions))
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   204
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   205
      val excluded =
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   206
      {
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   207
        val exclude_group = exclude_session_groups.toSet
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   208
        val exclude_group_sessions =
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   209
          (for {
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   210
            (name, (info, _)) <- graph.iterator
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   211
            if graph.get_node(name).groups.exists(exclude_group)
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   212
          } yield name).toList
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   213
        graph.all_succs(exclude_group_sessions ::: exclude_sessions).toSet
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   214
      }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   215
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   216
      val pre_selected =
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   217
      {
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   218
        if (all_sessions) graph.keys
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   219
        else {
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   220
          val select_group = session_groups.toSet
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   221
          val select = sessions.toSet
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   222
          (for {
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   223
            (name, (info, _)) <- graph.iterator
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   224
            if info.select || select(name) || graph.get_node(name).groups.exists(select_group)
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   225
          } yield name).toList
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   226
        }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   227
      }.filterNot(excluded)
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   228
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   229
      val selected =
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   230
        if (requirements) (graph.all_preds(pre_selected).toSet -- pre_selected).toList
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   231
        else pre_selected
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   232
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   233
      (selected, graph.restrict(graph.all_preds(selected).toSet))
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   234
    }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   235
  }
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   236
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   237
  def make(infos: Traversable[(String, Info)]): T =
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   238
  {
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   239
    def add_edges(graph: Graph[String, Info], kind: String, edges: Info => Traversable[String])
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   240
      : Graph[String, Info] =
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   241
    {
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   242
      def add_edge(pos: Position.T, name: String, g: Graph[String, Info], parent: String) =
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   243
      {
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   244
        if (!g.defined(parent))
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   245
          error("Bad " + kind + " session " + quote(parent) + " for " +
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   246
            quote(name) + Position.here(pos))
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   247
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   248
        try { g.add_edge_acyclic(parent, name) }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   249
        catch {
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   250
          case exn: Graph.Cycles[_] =>
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   251
            error(cat_lines(exn.cycles.map(cycle =>
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   252
              "Cyclic session dependency of " +
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   253
                cycle.map(c => quote(c.toString)).mkString(" via "))) + Position.here(pos))
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   254
        }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   255
      }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   256
      (graph /: graph.iterator) {
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   257
        case (g, (name, (info, _))) => (g /: edges(info))(add_edge(info.pos, name, _, _))
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   258
      }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   259
    }
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   260
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   261
    val graph0 =
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   262
      (Graph.string[Info] /: infos) {
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   263
        case (graph, (name, info)) =>
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   264
          if (graph.defined(name))
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   265
            error("Duplicate session " + quote(name) + Position.here(info.pos) +
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   266
              Position.here(graph.get_node(name).pos))
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   267
          else graph.new_node(name, info)
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   268
      }
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   269
    val graph1 = add_edges(graph0, "parent", _.parent)
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   270
    val graph2 = add_edges(graph1, "imports", _.imports)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   271
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   272
    new T(graph1, graph2)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   273
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   274
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   275
  final class T private[Sessions](
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   276
      val build_graph: Graph[String, Info],
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   277
      val imports_graph: Graph[String, Info])
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   278
  {
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   279
    def apply(name: String): Info = imports_graph.get_node(name)
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   280
    def get(name: String): Option[Info] =
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   281
      if (imports_graph.defined(name)) Some(imports_graph.get_node(name)) else None
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   282
65372
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   283
    def global_theories: Set[String] =
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   284
      (for {
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   285
        (_, (info, _)) <- imports_graph.iterator
65372
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   286
        name <- info.global_theories.iterator }
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   287
       yield name).toSet
b722ee40c26c refer to global_theories from all sessions, before selection;
wenzelm
parents: 65371
diff changeset
   288
65419
457e4fbed731 explicit Sessions.Selection;
wenzelm
parents: 65415
diff changeset
   289
    def selection(select: Selection): (List[String], T) =
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   290
    {
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   291
      val (_, build_graph1) = select(build_graph)
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   292
      val (selected, imports_graph1) = select(imports_graph)
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   293
      (selected, new T(build_graph1, imports_graph1))
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   294
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   295
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   296
    def build_ancestors(name: String): List[String] =
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   297
      build_graph.all_preds(List(name)).tail.reverse
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   298
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   299
    def build_descendants(names: List[String]): List[String] =
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   300
      build_graph.all_succs(names)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   301
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   302
    def build_topological_order: List[(String, Info)] =
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   303
      build_graph.topological_order.map(name => (name, apply(name)))
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   304
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   305
    def imports_topological_order: List[(String, Info)] =
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   306
      imports_graph.topological_order.map(name => (name, apply(name)))
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   307
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   308
    override def toString: String =
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   309
      imports_graph.keys_iterator.mkString("Sessions.T(", ", ", ")")
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   310
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   311
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   312
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   313
  /* parser */
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   314
62864
wenzelm
parents: 62769
diff changeset
   315
  val ROOT = Path.explode("ROOT")
wenzelm
parents: 62769
diff changeset
   316
  val ROOTS = Path.explode("ROOTS")
wenzelm
parents: 62769
diff changeset
   317
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   318
  private val CHAPTER = "chapter"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   319
  private val SESSION = "session"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   320
  private val IN = "in"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   321
  private val DESCRIPTION = "description"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   322
  private val OPTIONS = "options"
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   323
  private val SESSIONS = "sessions"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   324
  private val THEORIES = "theories"
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   325
  private val GLOBAL = "global"
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   326
  private val FILES = "files"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   327
  private val DOCUMENT_FILES = "document_files"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   328
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   329
  lazy val root_syntax =
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   330
    Outer_Syntax.init() + "(" + ")" + "+" + "," + "=" + "[" + "]" + GLOBAL + IN +
63443
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   331
      (CHAPTER, Keyword.THY_DECL) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   332
      (SESSION, Keyword.THY_DECL) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   333
      (DESCRIPTION, Keyword.QUASI_COMMAND) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   334
      (OPTIONS, Keyword.QUASI_COMMAND) +
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   335
      (SESSIONS, Keyword.QUASI_COMMAND) +
63443
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   336
      (THEORIES, Keyword.QUASI_COMMAND) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   337
      (FILES, Keyword.QUASI_COMMAND) +
c037248d54e8 clarified keywords;
wenzelm
parents: 63022
diff changeset
   338
      (DOCUMENT_FILES, Keyword.QUASI_COMMAND)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   339
62968
4e4738698db4 clarified syntax;
wenzelm
parents: 62946
diff changeset
   340
  private object Parser extends Parse.Parser with Options.Parser
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   341
  {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   342
    private abstract class Entry
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   343
    private sealed case class Chapter(name: String) extends Entry
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   344
    private sealed case class Session_Entry(
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   345
      pos: Position.T,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   346
      name: String,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   347
      groups: List[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   348
      path: String,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   349
      parent: Option[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   350
      description: String,
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   351
      options: List[Options.Spec],
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   352
      imports: List[String],
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   353
      theories: List[(List[Options.Spec], List[(String, Boolean)])],
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   354
      files: List[String],
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   355
      document_files: List[(String, String)]) extends Entry
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   356
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   357
    private val chapter: Parser[Chapter] =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   358
    {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   359
      val chapter_name = atom("chapter name", _.is_name)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   360
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   361
      command(CHAPTER) ~! chapter_name ^^ { case _ ~ a => Chapter(a) }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   362
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   363
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   364
    private val session_entry: Parser[Session_Entry] =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   365
    {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   366
      val session_name = atom("session name", _.is_name)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   367
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   368
      val option =
62968
4e4738698db4 clarified syntax;
wenzelm
parents: 62946
diff changeset
   369
        option_name ~ opt($$$("=") ~! option_value ^^
4e4738698db4 clarified syntax;
wenzelm
parents: 62946
diff changeset
   370
          { case _ ~ x => x }) ^^ { case x ~ y => (x, y) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   371
      val options = $$$("[") ~> rep1sep(option, $$$(",")) <~ $$$("]")
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   372
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   373
      val global =
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   374
        ($$$("(") ~! $$$(GLOBAL) ~ $$$(")")) ^^ { case _ => true } | success(false)
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   375
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   376
      val theory_entry =
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   377
        theory_name ~ global ^^ { case x ~ y => (x, y) }
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   378
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   379
      val theories =
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   380
        $$$(THEORIES) ~!
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   381
          ((options | success(Nil)) ~ rep(theory_entry)) ^^
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   382
          { case _ ~ (x ~ y) => (x, y) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   383
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   384
      val document_files =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   385
        $$$(DOCUMENT_FILES) ~!
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   386
          (($$$("(") ~! ($$$(IN) ~! (path ~ $$$(")"))) ^^
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   387
              { case _ ~ (_ ~ (x ~ _)) => x } | success("document")) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   388
            rep1(path)) ^^ { case _ ~ (x ~ y) => y.map((x, _)) }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   389
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   390
      command(SESSION) ~!
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   391
        (position(session_name) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   392
          (($$$("(") ~! (rep1(name) <~ $$$(")")) ^^ { case _ ~ x => x }) | success(Nil)) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   393
          (($$$(IN) ~! path ^^ { case _ ~ x => x }) | success(".")) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   394
          ($$$("=") ~!
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   395
            (opt(session_name ~! $$$("+") ^^ { case x ~ _ => x }) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   396
              (($$$(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   397
              (($$$(OPTIONS) ~! options ^^ { case _ ~ x => x }) | success(Nil)) ~
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   398
              (($$$(SESSIONS) ~! rep(session_name)  ^^ { case _ ~ x => x }) | success(Nil)) ~
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   399
              rep1(theories) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   400
              (($$$(FILES) ~! rep1(path) ^^ { case _ ~ x => x }) | success(Nil)) ~
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   401
              (rep(document_files) ^^ (x => x.flatten))))) ^^
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   402
        { case _ ~ ((a, pos) ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h ~ i ~ j))) =>
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   403
            Session_Entry(pos, a, b, c, d, e, f, g, h, i, j) }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   404
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   405
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   406
    def parse(options: Options, select: Boolean, dir: Path): List[(String, Info)] =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   407
    {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   408
      def make_info(entry_chapter: String, entry: Session_Entry): (String, Info) =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   409
      {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   410
        try {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   411
          val name = entry.name
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   412
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   413
          if (name == "") error("Bad session name")
65360
wenzelm
parents: 65359
diff changeset
   414
          if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session")
wenzelm
parents: 65359
diff changeset
   415
          if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session")
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   416
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   417
          val session_options = options ++ entry.options
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   418
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   419
          val theories =
65392
f365f61f2081 uniform import_name, with treatment of global and qualified theories;
wenzelm
parents: 65391
diff changeset
   420
            entry.theories.map({ case (opts, thys) => (session_options ++ opts, thys.map(_._1)) })
65374
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   421
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   422
          val global_theories =
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   423
            for { (_, thys) <- entry.theories; (thy, global) <- thys if global }
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   424
            yield {
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   425
              val thy_name = Path.explode(thy).expand.base.implode
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   426
              if (Long_Name.is_qualified(thy_name))
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   427
                error("Bad qualified name for global theory " + quote(thy_name))
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   428
              else thy_name
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   429
            }
a5b38d8d3c1e tuned syntax;
wenzelm
parents: 65373
diff changeset
   430
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   431
          val files = entry.files.map(Path.explode(_))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   432
          val document_files =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   433
            entry.document_files.map({ case (s1, s2) => (Path.explode(s1), Path.explode(s2)) })
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   434
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   435
          val meta_digest =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   436
            SHA1.digest((entry_chapter, name, entry.parent, entry.options,
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   437
              entry.imports, entry.theories, entry.files, entry.document_files).toString)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   438
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   439
          val info =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   440
            Info(entry_chapter, select, entry.pos, entry.groups, dir + Path.explode(entry.path),
65420
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   441
              entry.parent, entry.description, session_options, entry.imports, theories,
695d4e22345a support for static session imports, without affect build hierarchy;
wenzelm
parents: 65419
diff changeset
   442
              global_theories, files, document_files, meta_digest)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   443
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   444
          (name, info)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   445
        }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   446
        catch {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   447
          case ERROR(msg) =>
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   448
            error(msg + "\nThe error(s) above occurred in session entry " +
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   449
              quote(entry.name) + Position.here(entry.pos))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   450
        }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   451
      }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   452
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   453
      val root = dir + ROOT
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   454
      if (root.is_file) {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   455
        val toks = Token.explode(root_syntax.keywords, File.read(root))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   456
        val start = Token.Pos.file(root.implode)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   457
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   458
        parse_all(rep(chapter | session_entry), Token.reader(toks, start)) match {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   459
          case Success(result, _) =>
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   460
            var entry_chapter = "Unsorted"
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   461
            val infos = new mutable.ListBuffer[(String, Info)]
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   462
            result.foreach {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   463
              case Chapter(name) => entry_chapter = name
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   464
              case entry: Session_Entry => infos += make_info(entry_chapter, entry)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   465
            }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   466
            infos.toList
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   467
          case bad => error(bad.toString)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   468
        }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   469
      }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   470
      else Nil
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   471
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   472
  }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   473
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   474
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
   475
  /* load sessions from certain directories */
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   476
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   477
  private def is_session_dir(dir: Path): Boolean =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   478
    (dir + ROOT).is_file || (dir + ROOTS).is_file
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   479
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   480
  private def check_session_dir(dir: Path): Path =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   481
    if (is_session_dir(dir)) dir
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   482
    else error("Bad session root directory: " + dir.toString)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   483
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   484
  def load(options: Options, dirs: List[Path] = Nil, select_dirs: List[Path] = Nil): T =
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   485
  {
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
   486
    def load_dir(select: Boolean, dir: Path): List[(String, Info)] =
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
   487
      load_root(select, dir) ::: load_roots(select, dir)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   488
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
   489
    def load_root(select: Boolean, dir: Path): List[(String, Info)] =
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   490
      Parser.parse(options, select, dir)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   491
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
   492
    def load_roots(select: Boolean, dir: Path): List[(String, Info)] =
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   493
    {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   494
      val roots = dir + ROOTS
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   495
      if (roots.is_file) {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   496
        for {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   497
          line <- split_lines(File.read(roots))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   498
          if !(line == "" || line.startsWith("#"))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   499
          dir1 =
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   500
            try { check_session_dir(dir + Path.explode(line)) }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   501
            catch {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   502
              case ERROR(msg) =>
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   503
                error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   504
            }
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
   505
          info <- load_dir(select, dir1)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   506
        } yield info
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   507
      }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   508
      else Nil
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   509
    }
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   510
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   511
    val default_dirs = Isabelle_System.components().filter(is_session_dir(_))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   512
    dirs.foreach(check_session_dir(_))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   513
    select_dirs.foreach(check_session_dir(_))
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   514
65415
8cd54b18b68b clarified signature: tree structure is not essential;
wenzelm
parents: 65410
diff changeset
   515
    make(
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   516
      for {
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   517
        (select, dir) <- (default_dirs ::: dirs).map((false, _)) ::: select_dirs.map((true, _))
62635
4854a38061de tuned signature;
wenzelm
parents: 62633
diff changeset
   518
        info <- load_dir(select, dir)
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   519
      } yield info)
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   520
  }
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   521
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   522
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   523
62704
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   524
  /** heap file with SHA1 digest **/
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   525
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   526
  private val sha1_prefix = "SHA1:"
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   527
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   528
  def read_heap_digest(heap: Path): Option[String] =
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   529
  {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   530
    if (heap.is_file) {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   531
      val file = FileChannel.open(heap.file.toPath, StandardOpenOption.READ)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   532
      try {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   533
        val len = file.size
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   534
        val n = sha1_prefix.length + SHA1.digest_length
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   535
        if (len >= n) {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   536
          file.position(len - n)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   537
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   538
          val buf = ByteBuffer.allocate(n)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   539
          var i = 0
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   540
          var m = 0
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   541
          do {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   542
            m = file.read(buf)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   543
            if (m != -1) i += m
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   544
          }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   545
          while (m != -1 && n > i)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   546
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   547
          if (i == n) {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   548
            val prefix = new String(buf.array(), 0, sha1_prefix.length, UTF8.charset)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   549
            val s = new String(buf.array(), sha1_prefix.length, SHA1.digest_length, UTF8.charset)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   550
            if (prefix == sha1_prefix) Some(s) else None
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   551
          }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   552
          else None
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   553
        }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   554
        else None
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   555
      }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   556
      finally { file.close }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   557
    }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   558
    else None
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   559
  }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   560
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   561
  def write_heap_digest(heap: Path): String =
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   562
    read_heap_digest(heap) match {
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   563
      case None =>
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   564
        val s = SHA1.digest(heap).rep
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   565
        File.append(heap, sha1_prefix + s)
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   566
        s
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   567
      case Some(s) => s
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   568
    }
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   569
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   570
478b49f0d726 proper SHA1 digest as annex to heap file: Poly/ML reads precise segment length;
wenzelm
parents: 62637
diff changeset
   571
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   572
  /** persistent store **/
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   573
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   574
  object Session_Info
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   575
  {
65326
cb7cb57c7ce1 proper primary key;
wenzelm
parents: 65324
diff changeset
   576
    val session_name = SQL.Column.string("session_name", primary_key = true)
cb7cb57c7ce1 proper primary key;
wenzelm
parents: 65324
diff changeset
   577
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   578
    // Build_Log.Session_Info
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   579
    val session_timing = SQL.Column.bytes("session_timing")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   580
    val command_timings = SQL.Column.bytes("command_timings")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   581
    val ml_statistics = SQL.Column.bytes("ml_statistics")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   582
    val task_statistics = SQL.Column.bytes("task_statistics")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   583
    val build_log_columns =
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   584
      List(session_name, session_timing, command_timings, ml_statistics, task_statistics)
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   585
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   586
    // Build.Session_Info
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   587
    val sources = SQL.Column.string("sources")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   588
    val input_heaps = SQL.Column.string("input_heaps")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   589
    val output_heap = SQL.Column.string("output_heap")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   590
    val return_code = SQL.Column.int("return_code")
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   591
    val build_columns = List(sources, input_heaps, output_heap, return_code)
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   592
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   593
    val table = SQL.Table("isabelle_session_info", build_log_columns ::: build_columns)
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   594
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   595
    def where_session_name(name: String): String =
65322
wenzelm
parents: 65320
diff changeset
   596
      "WHERE " + session_name.sql_name + " = " + SQL.quote_string(name)
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   597
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   598
    def select_statement(db: SQL.Database, name: String, columns: List[SQL.Column])
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   599
        : PreparedStatement =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   600
      db.select_statement(table, columns, where_session_name(name))
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   601
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   602
    def delete_statement(db: SQL.Database, name: String): PreparedStatement =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   603
      db.delete_statement(table, where_session_name(name))
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   604
  }
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   605
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   606
  def store(system_mode: Boolean = false): Store = new Store(system_mode)
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   607
63996
3f47fec9edfc tuned whitespace;
wenzelm
parents: 63443
diff changeset
   608
  class Store private[Sessions](system_mode: Boolean)
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   609
  {
65278
b553d0edc440 tuned signature;
wenzelm
parents: 65269
diff changeset
   610
    /* file names */
b553d0edc440 tuned signature;
wenzelm
parents: 65269
diff changeset
   611
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   612
    def database(name: String): Path = Path.basic("log") + Path.basic(name).ext("db")
65278
b553d0edc440 tuned signature;
wenzelm
parents: 65269
diff changeset
   613
    def log(name: String): Path = Path.basic("log") + Path.basic(name)
b553d0edc440 tuned signature;
wenzelm
parents: 65269
diff changeset
   614
    def log_gz(name: String): Path = log(name).ext("gz")
b553d0edc440 tuned signature;
wenzelm
parents: 65269
diff changeset
   615
b553d0edc440 tuned signature;
wenzelm
parents: 65269
diff changeset
   616
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
   617
    /* SQL database content */
65283
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   618
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   619
    val xml_cache: XML.Cache = new XML.Cache()
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   620
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   621
    def encode_properties(ps: Properties.T): Bytes =
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   622
      Bytes(YXML.string_of_body(XML.Encode.properties(ps)))
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   623
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   624
    def decode_properties(bs: Bytes): Properties.T =
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   625
      xml_cache.props(XML.Decode.properties(YXML.parse_body(bs.text)))
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   626
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   627
    def compress_properties(ps: List[Properties.T], options: XZ.Options = XZ.options()): Bytes =
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   628
    {
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   629
      if (ps.isEmpty) Bytes.empty
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   630
      else Bytes(YXML.string_of_body(XML.Encode.list(XML.Encode.properties)(ps))).compress(options)
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   631
    }
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   632
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   633
    def uncompress_properties(bs: Bytes): List[Properties.T] =
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   634
    {
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   635
      if (bs.isEmpty) Nil
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   636
      else
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   637
        XML.Decode.list(XML.Decode.properties)(YXML.parse_body(bs.uncompress().text)).
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   638
          map(xml_cache.props(_))
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   639
    }
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   640
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   641
    def read_bytes(db: SQL.Database, name: String, column: SQL.Column): Bytes =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   642
      using(Session_Info.select_statement(db, name, List(column)))(stmt =>
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   643
      {
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   644
        val rs = stmt.executeQuery
65324
wenzelm
parents: 65322
diff changeset
   645
        if (!rs.next) Bytes.empty else db.bytes(rs, column)
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   646
      })
65285
92bc225c7633 more selective queries;
wenzelm
parents: 65284
diff changeset
   647
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   648
    def read_properties(db: SQL.Database, name: String, column: SQL.Column): List[Properties.T] =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   649
      uncompress_properties(read_bytes(db, name, column))
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
   650
65283
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   651
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   652
    /* output */
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   653
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   654
    val browser_info: Path =
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   655
      if (system_mode) Path.explode("~~/browser_info")
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   656
      else Path.explode("$ISABELLE_BROWSER_INFO")
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   657
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   658
    val output_dir: Path =
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   659
      if (system_mode) Path.explode("~~/heaps/$ML_IDENTIFIER")
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   660
      else Path.explode("$ISABELLE_OUTPUT")
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   661
65298
wenzelm
parents: 65297
diff changeset
   662
    override def toString: String = "Store(output_dir = " + output_dir.expand + ")"
wenzelm
parents: 65297
diff changeset
   663
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   664
    def prepare_output() { Isabelle_System.mkdirs(output_dir + Path.basic("log")) }
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   665
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   666
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   667
    /* input */
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   668
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   669
    private val input_dirs =
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   670
      if (system_mode) List(output_dir)
62633
e57416b649d5 find heaps uniformly via Sessions.Store;
wenzelm
parents: 62632
diff changeset
   671
      else {
e57416b649d5 find heaps uniformly via Sessions.Store;
wenzelm
parents: 62632
diff changeset
   672
        val ml_ident = Path.explode("$ML_IDENTIFIER").expand
e57416b649d5 find heaps uniformly via Sessions.Store;
wenzelm
parents: 62632
diff changeset
   673
        output_dir :: Path.split(Isabelle_System.getenv_strict("ISABELLE_PATH")).map(_ + ml_ident)
e57416b649d5 find heaps uniformly via Sessions.Store;
wenzelm
parents: 62632
diff changeset
   674
      }
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   675
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   676
    def find_database_heap(name: String): Option[(Path, Option[String])] =
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   677
      input_dirs.find(dir => (dir + database(name)).is_file).map(dir =>
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   678
        (dir + database(name), read_heap_digest(dir + Path.basic(name))))
62632
cd991ba01ffd clarified modules;
wenzelm
parents: 62631
diff changeset
   679
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   680
    def find_database(name: String): Option[Path] =
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   681
      input_dirs.map(_ + database(name)).find(_.is_file)
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   682
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   683
    def heap(name: String): Path =
65288
wenzelm
parents: 65287
diff changeset
   684
      input_dirs.map(_ + Path.basic(name)).find(_.is_file) getOrElse
62637
0189fe0f6452 support for Poly/ML heap hierarchy, which saves a lot of disk space;
wenzelm
parents: 62636
diff changeset
   685
        error("Unknown logic " + quote(name) + " -- no heap file found in:\n" +
62769
146945b9e83c tuned message;
wenzelm
parents: 62704
diff changeset
   686
          cat_lines(input_dirs.map(dir => "  " + dir.expand.implode)))
65287
75999f2a0c38 tuned message;
wenzelm
parents: 65286
diff changeset
   687
75999f2a0c38 tuned message;
wenzelm
parents: 65286
diff changeset
   688
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   689
    /* session info */
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   690
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   691
    def write_session_info(
65318
342efc382558 eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents: 65298
diff changeset
   692
      db: SQL.Database,
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   693
      name: String,
65318
342efc382558 eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents: 65298
diff changeset
   694
      build_log: Build_Log.Session_Info,
342efc382558 eliminated somewhat redundant inlined name (despite a7aa17a1f721);
wenzelm
parents: 65298
diff changeset
   695
      build: Build.Session_Info)
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   696
    {
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   697
      db.transaction {
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   698
        db.create_table(Session_Info.table)
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   699
        using(Session_Info.delete_statement(db, name))(_.execute)
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   700
        using(db.insert_statement(Session_Info.table))(stmt =>
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   701
        {
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   702
          db.set_string(stmt, 1, name)
65296
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   703
          db.set_bytes(stmt, 2, encode_properties(build_log.session_timing))
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   704
          db.set_bytes(stmt, 3, compress_properties(build_log.command_timings))
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   705
          db.set_bytes(stmt, 4, compress_properties(build_log.ml_statistics))
a71db30f3b2d tuned signature;
wenzelm
parents: 65295
diff changeset
   706
          db.set_bytes(stmt, 5, compress_properties(build_log.task_statistics))
65284
d189ff34b5b9 clarified data representation;
wenzelm
parents: 65283
diff changeset
   707
          db.set_string(stmt, 6, cat_lines(build.sources))
d189ff34b5b9 clarified data representation;
wenzelm
parents: 65283
diff changeset
   708
          db.set_string(stmt, 7, cat_lines(build.input_heaps))
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   709
          db.set_string(stmt, 8, build.output_heap getOrElse "")
65283
042160aee6c2 data representation with XML.Cache;
wenzelm
parents: 65282
diff changeset
   710
          db.set_int(stmt, 9, build.return_code)
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   711
          stmt.execute()
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   712
        })
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   713
      }
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   714
    }
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   715
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   716
    def read_session_timing(db: SQL.Database, name: String): Properties.T =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   717
      decode_properties(read_bytes(db, name, Session_Info.session_timing))
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
   718
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   719
    def read_command_timings(db: SQL.Database, name: String): List[Properties.T] =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   720
      read_properties(db, name, Session_Info.command_timings)
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
   721
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   722
    def read_ml_statistics(db: SQL.Database, name: String): List[Properties.T] =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   723
      read_properties(db, name, Session_Info.ml_statistics)
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
   724
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   725
    def read_task_statistics(db: SQL.Database, name: String): List[Properties.T] =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   726
      read_properties(db, name, Session_Info.task_statistics)
65286
b661543a0de6 clarified signature;
wenzelm
parents: 65285
diff changeset
   727
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   728
    def read_build_log(db: SQL.Database, name: String,
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   729
      command_timings: Boolean = false,
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   730
      ml_statistics: Boolean = false,
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   731
      task_statistics: Boolean = false): Build_Log.Session_Info =
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   732
    {
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   733
      Build_Log.Session_Info(
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   734
        session_timing = read_session_timing(db, name),
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   735
        command_timings = if (command_timings) read_command_timings(db, name) else Nil,
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   736
        ml_statistics = if (ml_statistics) read_ml_statistics(db, name) else Nil,
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   737
        task_statistics = if (task_statistics) read_task_statistics(db, name) else Nil)
65291
57c85c83c11b maintain persistent session info in SQLite database instead of log file;
wenzelm
parents: 65288
diff changeset
   738
    }
65285
92bc225c7633 more selective queries;
wenzelm
parents: 65284
diff changeset
   739
65320
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   740
    def read_build(db: SQL.Database, name: String): Option[Build.Session_Info] =
52861eebf58d access table via session_name: db may in principle contain multiple entries;
wenzelm
parents: 65318
diff changeset
   741
      using(Session_Info.select_statement(db, name, Session_Info.build_columns))(stmt =>
65285
92bc225c7633 more selective queries;
wenzelm
parents: 65284
diff changeset
   742
      {
92bc225c7633 more selective queries;
wenzelm
parents: 65284
diff changeset
   743
        val rs = stmt.executeQuery
92bc225c7633 more selective queries;
wenzelm
parents: 65284
diff changeset
   744
        if (!rs.next) None
92bc225c7633 more selective queries;
wenzelm
parents: 65284
diff changeset
   745
        else {
92bc225c7633 more selective queries;
wenzelm
parents: 65284
diff changeset
   746
          Some(
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   747
            Build.Session_Info(
65324
wenzelm
parents: 65322
diff changeset
   748
              split_lines(db.string(rs, Session_Info.sources)),
wenzelm
parents: 65322
diff changeset
   749
              split_lines(db.string(rs, Session_Info.input_heaps)),
wenzelm
parents: 65322
diff changeset
   750
              db.string(rs, Session_Info.output_heap) match { case "" => None case s => Some(s) },
wenzelm
parents: 65322
diff changeset
   751
              db.int(rs, Session_Info.return_code)))
65281
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   752
        }
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   753
      })
c70e7d24a16d SQL database operations for combined session info;
wenzelm
parents: 65278
diff changeset
   754
  }
62631
c39614ddb80b clarified modules;
wenzelm
parents:
diff changeset
   755
}