src/Pure/Tools/build.scala
author wenzelm
Sat, 12 Jan 2013 17:28:07 +0100
changeset 50847 78c40f1cc9b3
parent 50846 529e652d389d
child 50893 d55eb82ae77b
permissions -rw-r--r--
tuned signature;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50686
d703e3aafa8c moved files;
wenzelm
parents: 50566
diff changeset
     1
/*  Title:      Pure/Tools/build.scala
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
     3
    Options:    :folding=explicit:collapseFolds=1:
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     4
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     5
Build and manage Isabelle sessions.
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     6
*/
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     7
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     8
package isabelle
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     9
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
    10
48661
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
    11
import java.util.{Timer, TimerTask}
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
    12
import java.io.{BufferedInputStream, FileInputStream,
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
    13
  BufferedReader, InputStreamReader, IOException}
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
    14
import java.util.zip.GZIPInputStream
48335
2f923e994056 more informative errors;
wenzelm
parents: 48334
diff changeset
    15
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
    16
import scala.collection.SortedSet
48340
6f4fc030882a allow explicit specification of additional session directories;
wenzelm
parents: 48339
diff changeset
    17
import scala.annotation.tailrec
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    18
48335
2f923e994056 more informative errors;
wenzelm
parents: 48334
diff changeset
    19
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
    20
object Build
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
    21
{
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    22
  /** progress context **/
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    23
50846
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
    24
  class Progress
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
    25
  {
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
    26
    def echo(msg: String) {}
50846
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
    27
    def theory(session: String, theory: String) {}
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
    28
    def stopped: Boolean = false
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    29
  }
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    30
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
    31
  object Ignore_Progress extends Progress
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    32
50846
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
    33
  class Console_Progress(verbose: Boolean) extends Progress
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
    34
  {
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    35
    override def echo(msg: String) { java.lang.System.out.println(msg) }
50846
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
    36
    override def theory(session: String, theory: String): Unit =
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
    37
      if (verbose) echo(session + ": theory " + theory)
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    38
  }
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    39
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    40
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
    41
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    42
  /** session information **/
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
    43
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    44
  // external version
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    45
  sealed case class Session_Entry(
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    46
    pos: Position.T,
48738
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    47
    name: String,
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    48
    groups: List[String],
48738
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    49
    path: String,
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    50
    parent: Option[String],
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    51
    description: String,
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    52
    options: List[Options.Spec],
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    53
    theories: List[(List[Options.Spec], List[String])],
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    54
    files: List[String])
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    55
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    56
  // internal version
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    57
  sealed case class Session_Info(
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
    58
    select: Boolean,
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    59
    pos: Position.T,
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    60
    groups: List[String],
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    61
    dir: Path,
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    62
    parent: Option[String],
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    63
    description: String,
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    64
    options: Options,
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    65
    theories: List[(Options, List[Path])],
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    66
    files: List[Path],
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    67
    entry_digest: SHA1.Digest)
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    68
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    69
  def is_pure(name: String): Boolean = name == "RAW" || name == "Pure"
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    70
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
    71
  def session_info(options: Options, select: Boolean, dir: Path, entry: Session_Entry)
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
    72
      : (String, Session_Info) =
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    73
    try {
48738
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    74
      val name = entry.name
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    75
48738
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    76
      if (name == "") error("Bad session name")
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    77
      if (is_pure(name) && entry.parent.isDefined) error("Illegal parent session")
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    78
      if (!is_pure(name) && !entry.parent.isDefined) error("Missing parent session")
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    79
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    80
      val session_options = options ++ entry.options
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    81
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    82
      val theories =
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    83
        entry.theories.map({ case (opts, thys) =>
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    84
          (session_options ++ opts, thys.map(Path.explode(_))) })
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    85
      val files = entry.files.map(Path.explode(_))
48738
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    86
      val entry_digest = SHA1.digest((name, entry.parent, entry.options, entry.theories).toString)
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    87
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    88
      val info =
48738
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    89
        Session_Info(select, entry.pos, entry.groups, dir + Path.explode(entry.path),
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    90
          entry.parent, entry.description, session_options, theories, files, entry_digest)
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    91
48738
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
    92
      (name, info)
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    93
    }
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    94
    catch {
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    95
      case ERROR(msg) =>
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    96
        error(msg + "\nThe error(s) above occurred in session entry " +
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48916
diff changeset
    97
          quote(entry.name) + Position.here(entry.pos))
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    98
    }
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
    99
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   100
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   101
  /* session tree */
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   102
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   103
  object Session_Tree
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   104
  {
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   105
    def apply(infos: Seq[(String, Session_Info)]): Session_Tree =
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   106
    {
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   107
      val graph1 =
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   108
        (Graph.string[Session_Info] /: infos) {
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   109
          case (graph, (name, info)) =>
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   110
            if (graph.defined(name))
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48916
diff changeset
   111
              error("Duplicate session " + quote(name) + Position.here(info.pos))
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   112
            else graph.new_node(name, info)
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   113
        }
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   114
      val graph2 =
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   115
        (graph1 /: graph1.entries) {
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   116
          case (graph, (name, (info, _))) =>
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   117
            info.parent match {
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   118
              case None => graph
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   119
              case Some(parent) =>
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   120
                if (!graph.defined(parent))
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   121
                  error("Bad parent session " + quote(parent) + " for " +
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48916
diff changeset
   122
                    quote(name) + Position.here(info.pos))
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   123
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   124
                try { graph.add_edge_acyclic(parent, name) }
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   125
                catch {
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   126
                  case exn: Graph.Cycles[_] =>
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   127
                    error(cat_lines(exn.cycles.map(cycle =>
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   128
                      "Cyclic session dependency of " +
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   129
                        cycle.map(c => quote(c.toString)).mkString(" via "))) +
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48916
diff changeset
   130
                          Position.here(info.pos))
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   131
                }
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   132
            }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   133
        }
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   134
      new Session_Tree(graph2)
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   135
    }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   136
  }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   137
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   138
  final class Session_Tree private(val graph: Graph[String, Session_Info])
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   139
    extends PartialFunction[String, Session_Info]
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   140
  {
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   141
    def apply(name: String): Session_Info = graph.get_node(name)
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   142
    def isDefinedAt(name: String): Boolean = graph.defined(name)
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   143
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   144
    def selection(requirements: Boolean, all_sessions: Boolean,
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   145
      session_groups: List[String], sessions: List[String]): (List[String], Session_Tree) =
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   146
    {
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   147
      val bad_sessions = sessions.filterNot(isDefinedAt(_))
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   148
      if (!bad_sessions.isEmpty) error("Undefined session(s): " + commas_quote(bad_sessions))
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   149
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   150
      val pre_selected =
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   151
      {
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   152
        if (all_sessions) graph.keys.toList
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   153
        else {
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   154
          val select_group = session_groups.toSet
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   155
          val select = sessions.toSet
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   156
          (for {
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   157
            (name, (info, _)) <- graph.entries
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   158
            if info.select || select(name) || apply(name).groups.exists(select_group)
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   159
          } yield name).toList
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   160
        }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   161
      }
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   162
      val selected =
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   163
        if (requirements) (graph.all_preds(pre_selected).toSet -- pre_selected).toList
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   164
        else pre_selected
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   165
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   166
      val tree1 = new Session_Tree(graph.restrict(graph.all_preds(selected).toSet))
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   167
      (selected, tree1)
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   168
    }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   169
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   170
    def topological_order: List[(String, Session_Info)] =
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   171
      graph.topological_order.map(name => (name, apply(name)))
48794
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   172
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   173
    override def toString: String = graph.entries.map(_._1).toList.sorted.mkString(",")
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   174
  }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   175
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   176
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   177
  /* parser */
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   178
48713
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   179
  private val SESSION = "session"
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   180
  private val IN = "in"
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   181
  private val DESCRIPTION = "description"
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   182
  private val OPTIONS = "options"
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   183
  private val THEORIES = "theories"
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   184
  private val FILES = "files"
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   185
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   186
  lazy val root_syntax =
48738
f8c1a5b9488f simplified session specifications: names are taken verbatim and current directory is default;
wenzelm
parents: 48737
diff changeset
   187
    Outer_Syntax.init() + "(" + ")" + "+" + "," + "=" + "[" + "]" +
48718
73e6c22e2d94 more structural parsing for minor modes;
wenzelm
parents: 48713
diff changeset
   188
      (SESSION, Keyword.THY_DECL) + IN + DESCRIPTION + OPTIONS + THEORIES + FILES
48713
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   189
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   190
  private object Parser extends Parse.Parser
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   191
  {
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   192
    def session_entry(pos: Position.T): Parser[Session_Entry] =
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   193
    {
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   194
      val session_name = atom("session name", _.is_name)
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   195
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   196
      val option =
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   197
        name ~ opt(keyword("=") ~! name ^^ { case _ ~ x => x }) ^^ { case x ~ y => (x, y) }
48862
8967b42db2d5 more strict syntax, according to manual;
wenzelm
parents: 48807
diff changeset
   198
      val options = keyword("[") ~> rep1sep(option, keyword(",")) <~ keyword("]")
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   199
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   200
      val theories =
48739
3a6c03b15916 refined isabelle mkroot;
wenzelm
parents: 48738
diff changeset
   201
        keyword(THEORIES) ~! ((options | success(Nil)) ~ rep(theory_name)) ^^
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   202
          { case _ ~ (x ~ y) => (x, y) }
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   203
48912
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   204
      command(SESSION) ~!
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   205
        (session_name ~
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   206
          ((keyword("(") ~! (rep1(name) <~ keyword(")")) ^^ { case _ ~ x => x }) | success(Nil)) ~
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   207
          ((keyword(IN) ~! path ^^ { case _ ~ x => x }) | success(".")) ~
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   208
          (keyword("=") ~!
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   209
            (opt(session_name ~! keyword("+") ^^ { case x ~ _ => x }) ~
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   210
              ((keyword(DESCRIPTION) ~! text ^^ { case _ ~ x => x }) | success("")) ~
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   211
              ((keyword(OPTIONS) ~! options ^^ { case _ ~ x => x }) | success(Nil)) ~
48916
f45ccc0d1ace clarified syntax boundary cases and errors;
wenzelm
parents: 48912
diff changeset
   212
              rep1(theories) ~
48912
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   213
              ((keyword(FILES) ~! rep1(path) ^^ { case _ ~ x => x }) | success(Nil))))) ^^
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   214
        { case _ ~ (a ~ b ~ c ~ (_ ~ (d ~ e ~ f ~ g ~ h))) =>
ffdb37019b2f improved errors of parser combinators;
wenzelm
parents: 48904
diff changeset
   215
            Session_Entry(pos, a, b, c, d, e, f, g, h) }
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   216
    }
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   217
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   218
    def parse_entries(root: Path): List[Session_Entry] =
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   219
    {
48713
de26cf3191a3 more token markers, based on actual outer syntax;
wenzelm
parents: 48710
diff changeset
   220
      val toks = root_syntax.scan(File.read(root))
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   221
      parse_all(rep(session_entry(root.position)), Token.reader(toks, root.implode)) match {
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   222
        case Success(result, _) => result
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   223
        case bad => error(bad.toString)
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   224
      }
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   225
    }
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   226
  }
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   227
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   228
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   229
  /* find sessions within certain directories */
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   230
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   231
  private val ROOT = Path.explode("ROOT")
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   232
  private val ROOTS = Path.explode("ROOTS")
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   233
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   234
  private def is_session_dir(dir: Path): Boolean =
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   235
    (dir + ROOT).is_file || (dir + ROOTS).is_file
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   236
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   237
  private def check_session_dir(dir: Path): Path =
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   238
    if (is_session_dir(dir)) dir
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   239
    else error("Bad session root directory: " + dir.toString)
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   240
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   241
  def find_sessions(options: Options, more_dirs: List[(Boolean, Path)]): Session_Tree =
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   242
  {
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   243
    def find_dir(select: Boolean, dir: Path): List[(String, Session_Info)] =
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   244
      find_root(select, dir) ::: find_roots(select, dir)
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   245
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   246
    def find_root(select: Boolean, dir: Path): List[(String, Session_Info)] =
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   247
    {
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   248
      val root = dir + ROOT
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   249
      if (root.is_file) Parser.parse_entries(root).map(session_info(options, select, dir, _))
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   250
      else Nil
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   251
    }
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   252
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   253
    def find_roots(select: Boolean, dir: Path): List[(String, Session_Info)] =
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   254
    {
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   255
      val roots = dir + ROOTS
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   256
      if (roots.is_file) {
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   257
        for {
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   258
          line <- split_lines(File.read(roots))
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   259
          if !(line == "" || line.startsWith("#"))
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   260
          dir1 =
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   261
            try { check_session_dir(dir + Path.explode(line)) }
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   262
            catch {
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   263
              case ERROR(msg) =>
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   264
                error(msg + "\nThe error(s) above occurred in session catalog " + roots.toString)
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   265
            }
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   266
          info <- find_dir(select, dir1)
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   267
        } yield info
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   268
      }
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   269
      else Nil
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   270
    }
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   271
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   272
    val default_dirs = Isabelle_System.components().filter(is_session_dir(_)).map((false, _))
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   273
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   274
    more_dirs foreach { case (_, dir) => check_session_dir(dir) }
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   275
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   276
    Session_Tree(
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   277
      for {
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   278
        (select, dir) <- default_dirs ::: more_dirs
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   279
        info <- find_dir(select, dir)
48684
9170e10c651e re-introduced ROOTS catalog files (cf. 47330b712f8f) which help to organize AFP or make -d options persistent;
wenzelm
parents: 48680
diff changeset
   280
      } yield info)
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
   281
  }
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   282
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   283
48424
wenzelm
parents: 48423
diff changeset
   284
wenzelm
parents: 48423
diff changeset
   285
  /** build **/
wenzelm
parents: 48423
diff changeset
   286
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   287
  /* queue */
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   288
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   289
  object Queue
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   290
  {
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   291
    def apply(tree: Session_Tree): Queue =
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   292
    {
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   293
      val graph = tree.graph
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   294
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   295
      def outdegree(name: String): Int = graph.imm_succs(name).size
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   296
      def timeout(name: String): Double = tree(name).options.real("timeout")
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   297
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   298
      object Ordering extends scala.math.Ordering[String]
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   299
      {
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   300
        def compare(name1: String, name2: String): Int =
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   301
          outdegree(name2) compare outdegree(name1) match {
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   302
            case 0 =>
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   303
              timeout(name2) compare timeout(name1) match {
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   304
                case 0 => name1 compare name2
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   305
                case ord => ord
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   306
              }
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   307
            case ord => ord
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   308
          }
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   309
      }
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   310
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   311
      new Queue(graph, SortedSet(graph.keys.toList: _*)(Ordering))
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   312
    }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   313
  }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   314
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   315
  final class Queue private(graph: Graph[String, Session_Info], order: SortedSet[String])
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   316
  {
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   317
    def is_inner(name: String): Boolean = !graph.is_maximal(name)
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   318
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   319
    def is_empty: Boolean = graph.is_empty
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   320
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   321
    def - (name: String): Queue = new Queue(graph.del_node(name), order - name)
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   322
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   323
    def dequeue(skip: String => Boolean): Option[(String, Session_Info)] =
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   324
    {
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   325
      val it = order.iterator.dropWhile(name => skip(name) || !graph.is_minimal(name))
48680
463daacae6c2 simplified Session_Tree;
wenzelm
parents: 48678
diff changeset
   326
      if (it.hasNext) { val name = it.next; Some((name, graph.get_node(name))) }
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   327
      else None
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   328
    }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   329
  }
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   330
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   331
48710
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   332
  /* source dependencies and static content */
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   333
48710
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   334
  sealed case class Session_Content(
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   335
    loaded_theories: Set[String],
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   336
    syntax: Outer_Syntax,
48794
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   337
    sources: List[(Path, SHA1.Digest)],
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   338
    errors: List[String])
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   339
  {
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   340
    def check_errors: Session_Content =
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   341
    {
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   342
      if (errors.isEmpty) this
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   343
      else error(cat_lines(errors))
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   344
    }
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   345
  }
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   346
48710
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   347
  sealed case class Deps(deps: Map[String, Session_Content])
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   348
  {
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   349
    def is_empty: Boolean = deps.isEmpty
48710
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   350
    def apply(name: String): Session_Content = deps(name)
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   351
    def sources(name: String): List[SHA1.Digest] = deps(name).sources.map(_._2)
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   352
  }
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   353
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   354
  def dependencies(progress: Build.Progress, inlined_files: Boolean,
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   355
      verbose: Boolean, list_files: Boolean, tree: Session_Tree): Deps =
48710
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   356
    Deps((Map.empty[String, Session_Content] /: tree.topological_order)(
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   357
      { case (deps, (name, info)) =>
48794
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   358
          val (preloaded, parent_syntax, parent_errors) =
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   359
            info.parent match {
48870
4accee106f0f clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents: 48867
diff changeset
   360
              case None =>
4accee106f0f clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents: 48867
diff changeset
   361
                (Set.empty[String], Outer_Syntax.init_pure(), Nil)
48794
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   362
              case Some(parent_name) =>
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   363
                val parent = deps(parent_name)
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   364
                (parent.loaded_theories, parent.syntax, parent.errors)
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   365
            }
48870
4accee106f0f clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents: 48867
diff changeset
   366
          val thy_info = new Thy_Info(new Thy_Load(preloaded, parent_syntax))
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   367
48903
1621b3f26095 added build option -l (list files);
wenzelm
parents: 48883
diff changeset
   368
          if (verbose || list_files) {
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   369
            val groups =
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   370
              if (info.groups.isEmpty) ""
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   371
              else info.groups.mkString(" (", " ", ")")
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   372
            progress.echo("Session " + name + groups)
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   373
          }
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   374
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   375
          val thy_deps =
49098
673e0ed547af bypass slow check for inlined files, where it is not really required;
wenzelm
parents: 48992
diff changeset
   376
            thy_info.dependencies(inlined_files,
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   377
              info.theories.map(_._2).flatten.
50566
b43c4f660320 tuned signature: use thy_load to adapt to prover/editor specific view on sources;
wenzelm
parents: 50414
diff changeset
   378
                map(thy => Thy_Load.path_node_name(info.dir + Thy_Load.thy_path(thy))))
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   379
48872
6124e0d1120a some support for thy_load_commands;
wenzelm
parents: 48870
diff changeset
   380
          val loaded_theories = thy_deps.loaded_theories
48883
04cd2fddb4d9 pass syntax through check_thy;
wenzelm
parents: 48872
diff changeset
   381
          val syntax = thy_deps.make_syntax
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   382
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   383
          val all_files =
50414
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50404
diff changeset
   384
            (thy_deps.deps.map({ case dep =>
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50404
diff changeset
   385
              val thy = Path.explode(dep.name.node)
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50404
diff changeset
   386
              val uses = dep.join_header.uses.map(p =>
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50404
diff changeset
   387
                Path.explode(dep.name.dir) + Path.explode(p._1))
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   388
              thy :: uses
48904
eaf240e9bdc8 expand all files uniformly;
wenzelm
parents: 48903
diff changeset
   389
            }).flatten ::: info.files.map(file => info.dir + file)).map(_.expand)
48903
1621b3f26095 added build option -l (list files);
wenzelm
parents: 48883
diff changeset
   390
1621b3f26095 added build option -l (list files);
wenzelm
parents: 48883
diff changeset
   391
          if (list_files)
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   392
            progress.echo(cat_lines(all_files.map(_.implode).sorted.map("  " + _)))
48903
1621b3f26095 added build option -l (list files);
wenzelm
parents: 48883
diff changeset
   393
48485
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   394
          val sources =
49696
3003c87f7814 tuned signature;
wenzelm
parents: 49131
diff changeset
   395
            try { all_files.map(p => (p, SHA1.digest(p.file))) }
48485
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   396
            catch {
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   397
              case ERROR(msg) =>
48675
10f5303f86e5 clarified Session_Entry vs. Session_Info with related parsing operations;
wenzelm
parents: 48674
diff changeset
   398
                error(msg + "\nThe error(s) above occurred in session " +
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48916
diff changeset
   399
                  quote(name) + Position.here(info.pos))
48485
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   400
            }
50414
e17a1f179bb0 explore theory_body_files via future, for improved performance;
wenzelm
parents: 50404
diff changeset
   401
          val errors = parent_errors ::: thy_deps.deps.map(dep => dep.join_header.errors).flatten
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   402
48794
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   403
          deps + (name -> Session_Content(loaded_theories, syntax, sources, errors))
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   404
      }))
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   405
49098
673e0ed547af bypass slow check for inlined files, where it is not really required;
wenzelm
parents: 48992
diff changeset
   406
  def session_content(inlined_files: Boolean, dirs: List[Path], session: String): Session_Content =
48710
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   407
  {
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50367
diff changeset
   408
    val options = Options.init()
48791
9e8f30bfbdca added jedit option -d;
wenzelm
parents: 48739
diff changeset
   409
    val (_, tree) =
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   410
      find_sessions(options, dirs.map((false, _))).selection(false, false, Nil, List(session))
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   411
    dependencies(Build.Ignore_Progress, inlined_files, false, false, tree)(session)
48710
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   412
  }
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   413
48794
8d2a026e576b check_errors for cumulative session content;
wenzelm
parents: 48791
diff changeset
   414
  def outer_syntax(session: String): Outer_Syntax =
49098
673e0ed547af bypass slow check for inlined files, where it is not really required;
wenzelm
parents: 48992
diff changeset
   415
    session_content(false, Nil, session).check_errors.syntax
48710
5b51ccdc8623 prefer static Build.session_content for loaded theories -- discontinued incremental protocol;
wenzelm
parents: 48708
diff changeset
   416
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   417
48424
wenzelm
parents: 48423
diff changeset
   418
  /* jobs */
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   419
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   420
  private class Job(progress: Build.Progress,
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   421
    name: String, val info: Session_Info, output: Path, do_output: Boolean,
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   422
    verbose: Boolean, browser_info: Path)
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   423
  {
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   424
    // global browser info dir
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   425
    if (info.options.bool("browser_info") && !(browser_info + Path.explode("index.html")).is_file)
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   426
    {
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   427
      browser_info.file.mkdirs()
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   428
      File.copy(Path.explode("~~/lib/logo/isabelle.gif"),
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   429
        browser_info + Path.explode("isabelle.gif"))
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   430
      File.write(browser_info + Path.explode("index.html"),
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   431
        File.read(Path.explode("~~/lib/html/library_index_header.template")) +
48724
e6e1b436caf0 SOMEthing went utterly wrong in 5b51ccdc8623;
wenzelm
parents: 48718
diff changeset
   432
        File.read(Path.explode("~~/lib/html/library_index_content.template")) +
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   433
        File.read(Path.explode("~~/lib/html/library_index_footer.template")))
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   434
    }
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   435
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   436
    def output_path: Option[Path] = if (do_output) Some(output) else None
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   437
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   438
    private val parent = info.parent.getOrElse("")
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   439
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   440
    private val args_file = File.tmp_file("args")
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   441
    File.write(args_file, YXML.string_of_body(
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   442
      if (is_pure(name)) Options.encode(info.options)
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   443
      else
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   444
        {
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   445
          import XML.Encode._
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   446
              pair(bool, pair(Options.encode, pair(bool, pair(Path.encode, pair(string,
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   447
                pair(string, list(pair(Options.encode, list(Path.encode)))))))))(
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   448
              (do_output, (info.options, (verbose, (browser_info, (parent,
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   449
                (name, info.theories)))))))
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   450
        }))
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   451
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   452
    private val env =
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   453
      Map("INPUT" -> parent, "TARGET" -> name, "OUTPUT" -> Isabelle_System.standard_path(output),
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   454
        (if (is_pure(name)) "ISABELLE_PROCESS_OPTIONS" else "ARGS_FILE") ->
50715
8cfd585b9162 prefer old graph browser in Isabelle/jEdit, which still produces better layout;
wenzelm
parents: 50713
diff changeset
   455
          Isabelle_System.posix_path(args_file))
48698
2585042b1a30 pass Isabelle/Scala system options into ML process of Isar tty or build jobs;
wenzelm
parents: 48684
diff changeset
   456
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   457
    private val script =
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   458
      if (is_pure(name)) {
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   459
        if (do_output) "./build " + name + " \"$OUTPUT\""
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   460
        else """ rm -f "$OUTPUT"; ./build """ + name
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   461
      }
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   462
      else {
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   463
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   464
        . "$ISABELLE_HOME/lib/scripts/timestart.bash"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   465
        """ +
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   466
          (if (do_output)
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   467
            """
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   468
            "$ISABELLE_PROCESS" -e "Build.build \"$ARGS_FILE\";" -q -w "$INPUT" "$OUTPUT"
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   469
            """
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   470
          else
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   471
            """
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   472
            rm -f "$OUTPUT"; "$ISABELLE_PROCESS" -e "Build.build \"$ARGS_FILE\";" -r -q "$INPUT"
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   473
            """) +
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   474
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   475
        RC="$?"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   476
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   477
        . "$ISABELLE_HOME/lib/scripts/timestop.bash"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   478
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   479
        if [ "$RC" -eq 0 ]; then
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   480
          echo "Finished $TARGET ($TIMES_REPORT)" >&2
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   481
        fi
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   482
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   483
        exit "$RC"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   484
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   485
      }
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   486
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   487
    private val (thread, result) =
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   488
      Simple_Thread.future("build") {
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   489
        Isabelle_System.bash_env(info.dir.file, env, script,
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   490
          out_progress = (line: String) =>
50847
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50846
diff changeset
   491
            Library.try_unprefix("\floading_theory = ", line) match {
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50846
diff changeset
   492
              case Some(theory) => progress.theory(name, theory)
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50846
diff changeset
   493
              case None =>
78c40f1cc9b3 tuned signature;
wenzelm
parents: 50846
diff changeset
   494
            })
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   495
      }
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   496
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   497
    def terminate: Unit = thread.interrupt
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   498
    def is_finished: Boolean = result.is_finished
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   499
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   500
    @volatile private var timeout = false
50207
54be125d8cdc tuned signature;
wenzelm
parents: 50204
diff changeset
   501
    private val time = info.options.seconds("timeout")
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   502
    private val timer: Option[Timer] =
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   503
      if (time.seconds > 0.0) {
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   504
        val t = new Timer("build", true)
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   505
        t.schedule(new TimerTask { def run = { terminate; timeout = true } }, time.ms)
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   506
        Some(t)
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   507
      }
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   508
      else None
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   509
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   510
    def join: Isabelle_System.Bash_Result =
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   511
    {
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   512
      val res = result.join
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   513
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   514
      args_file.delete
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   515
      timer.map(_.cancel())
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   516
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   517
      if (res.rc == 130)
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   518
        res.add_err(if (timeout) "*** Timeout" else "*** Interrupt")
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   519
      else res
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   520
    }
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   521
  }
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   522
48424
wenzelm
parents: 48423
diff changeset
   523
50777
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   524
  /* log files */
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   525
48505
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   526
  private val LOG = Path.explode("log")
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   527
  private def log(name: String): Path = LOG + Path.basic(name)
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   528
  private def log_gz(name: String): Path = log(name).ext("gz")
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   529
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   530
  private val SESSION_PARENT_PATH = "\fSession.parent_path = "
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   531
50777
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   532
  sealed case class Log_Info(stats: List[Properties.T], timing: Properties.T)
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   533
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   534
  def parse_log(text: String): Log_Info =
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   535
  {
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   536
    val lines = split_lines(text)
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   537
    val stats = Properties.parse_lines("\fML_statistics = ", lines)
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   538
    val timing = Properties.find_parse_line("\fTiming = ", lines) getOrElse Nil
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   539
    Log_Info(stats, timing)
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   540
  }
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   541
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   542
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   543
  /* sources and heaps */
20126dd9772c include timing properties in log;
wenzelm
parents: 50715
diff changeset
   544
48505
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   545
  private def sources_stamp(digests: List[SHA1.Digest]): String =
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   546
    digests.map(_.toString).sorted.mkString("sources: ", " ", "")
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   547
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   548
  private val no_heap: String = "heap: -"
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   549
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   550
  private def heap_stamp(heap: Option[Path]): String =
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   551
  {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   552
    "heap: " +
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   553
      (heap match {
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   554
        case Some(path) =>
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   555
          val file = path.file
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   556
          if (file.isFile) file.length.toString + " " + file.lastModified.toString
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   557
          else "-"
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   558
        case None => "-"
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   559
      })
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   560
  }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   561
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   562
  private def read_stamps(path: Path): Option[(String, String, String)] =
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   563
    if (path.is_file) {
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   564
      val stream = new GZIPInputStream (new BufferedInputStream(new FileInputStream(path.file)))
50203
00d8ad713e32 explicit module UTF8;
wenzelm
parents: 49951
diff changeset
   565
      val reader = new BufferedReader(new InputStreamReader(stream, UTF8.charset))
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   566
      val (s, h1, h2) =
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   567
        try { (reader.readLine, reader.readLine, reader.readLine) }
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   568
        finally { reader.close }
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   569
      if (s != null && s.startsWith("sources: ") &&
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   570
          h1 != null && h1.startsWith("heap: ") &&
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   571
          h2 != null && h2.startsWith("heap: ")) Some((s, h1, h2))
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   572
      else None
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   573
    }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   574
    else None
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   575
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   576
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   577
  /* build */
48424
wenzelm
parents: 48423
diff changeset
   578
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   579
  def build(
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   580
    progress: Build.Progress,
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50367
diff changeset
   581
    options: Options,
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   582
    requirements: Boolean = false,
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   583
    all_sessions: Boolean = false,
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   584
    build_heap: Boolean = false,
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   585
    clean_build: Boolean = false,
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   586
    more_dirs: List[(Boolean, Path)] = Nil,
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   587
    session_groups: List[String] = Nil,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   588
    max_jobs: Int = 1,
48903
1621b3f26095 added build option -l (list files);
wenzelm
parents: 48883
diff changeset
   589
    list_files: Boolean = false,
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   590
    no_build: Boolean = false,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   591
    system_mode: Boolean = false,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   592
    verbose: Boolean = false,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   593
    sessions: List[String] = Nil): Int =
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   594
  {
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   595
    val full_tree = find_sessions(options, more_dirs)
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   596
    val (selected, selected_tree) =
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   597
      full_tree.selection(requirements, all_sessions, session_groups, sessions)
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   598
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   599
    val deps = dependencies(progress, true, verbose, list_files, selected_tree)
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   600
    val queue = Queue(selected_tree)
48368
dc538eef2cf2 define build_options from command line;
wenzelm
parents: 48364
diff changeset
   601
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   602
    def make_stamp(name: String): String =
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   603
      sources_stamp(selected_tree(name).entry_digest :: deps.sources(name))
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   604
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   605
    val (input_dirs, output_dir, browser_info) =
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   606
      if (system_mode) {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   607
        val output_dir = Path.explode("~~/heaps/$ML_IDENTIFIER")
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   608
        (List(output_dir), output_dir, Path.explode("~~/browser_info"))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   609
      }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   610
      else {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   611
        val output_dir = Path.explode("$ISABELLE_OUTPUT")
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   612
        (output_dir :: Isabelle_System.find_logics_dirs(), output_dir,
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   613
         Path.explode("$ISABELLE_BROWSER_INFO"))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   614
      }
48363
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
   615
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   616
    // prepare log dir
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   617
    (output_dir + LOG).file.mkdirs()
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   618
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   619
    // optional cleanup
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   620
    if (clean_build) {
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   621
      for (name <- full_tree.graph.all_succs(selected)) {
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   622
        val files =
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   623
          List(Path.basic(name), log(name), log_gz(name)).map(output_dir + _).filter(_.is_file)
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   624
        if (!files.isEmpty) progress.echo("Cleaning " + name + " ...")
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   625
        if (!files.forall(p => p.file.delete)) progress.echo(name + " FAILED to delete")
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   626
      }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   627
    }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   628
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   629
    // scheduler loop
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   630
    case class Result(current: Boolean, parent_path: Option[String], heap: String, rc: Int)
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   631
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   632
    def sleep(): Unit = Thread.sleep(500)
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   633
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   634
    @tailrec def loop(
48676
3ef82491cdd6 clarified Session_Tree (with proper integrity check) vs. Queue (with provision for alternative ordering);
wenzelm
parents: 48675
diff changeset
   635
      pending: Queue,
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   636
      running: Map[String, (String, Job)],
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   637
      results: Map[String, Result]): Map[String, Result] =
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   638
    {
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   639
      if (pending.is_empty) results
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   640
      else if (progress.stopped) {
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   641
        for ((_, (_, job)) <- running) job.terminate
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   642
        sleep(); loop(pending, running, results)
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   643
      }
48547
wenzelm
parents: 48546
diff changeset
   644
      else
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   645
        running.find({ case (_, (_, job)) => job.is_finished }) match {
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   646
          case Some((name, (parent_heap, job))) =>
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   647
            //{{{ finish job
48424
wenzelm
parents: 48423
diff changeset
   648
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   649
            val res = job.join
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   650
            progress.echo(res.err)
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   651
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   652
            val (parent_path, heap) =
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   653
              if (res.rc == 0) {
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   654
                (output_dir + log(name)).file.delete
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   655
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   656
                val sources = make_stamp(name)
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   657
                val heap = heap_stamp(job.output_path)
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   658
                File.write_gzip(output_dir + log_gz(name),
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   659
                  sources + "\n" + parent_heap + "\n" + heap + "\n" + res.out)
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   660
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   661
                val parent_path =
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   662
                  if (job.info.options.bool("browser_info"))
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   663
                    res.out_lines.find(_.startsWith(SESSION_PARENT_PATH)).map(line =>
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   664
                      line.substring(SESSION_PARENT_PATH.length))
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   665
                  else None
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   666
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   667
                (parent_path, heap)
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   668
              }
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   669
              else {
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   670
                (output_dir + Path.basic(name)).file.delete
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   671
                (output_dir + log_gz(name)).file.delete
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   672
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   673
                File.write(output_dir + log(name), res.out)
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   674
                progress.echo(name + " FAILED")
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   675
                if (res.rc != 130) {
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   676
                  progress.echo("(see also " + (output_dir + log(name)).file.toString + ")")
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   677
                  val lines = res.out_lines.filterNot(_.startsWith("\f"))
50713
dae523e6198b tuned message -- suppress inlined system information;
wenzelm
parents: 50707
diff changeset
   678
                  val tail = lines.drop(lines.length - 20 max 0)
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   679
                  progress.echo("\n" + cat_lines(tail))
48661
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   680
                }
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   681
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   682
                (None, no_heap)
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   683
              }
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   684
            loop(pending - name, running - name,
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   685
              results + (name -> Result(false, parent_path, heap, res.rc)))
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   686
            //}}}
48547
wenzelm
parents: 48546
diff changeset
   687
          case None if (running.size < (max_jobs max 1)) =>
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   688
            //{{{ check/start next job
48547
wenzelm
parents: 48546
diff changeset
   689
            pending.dequeue(running.isDefinedAt(_)) match {
wenzelm
parents: 48546
diff changeset
   690
              case Some((name, info)) =>
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   691
                val parent_result =
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   692
                  info.parent match {
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   693
                    case None => Result(true, None, no_heap, 0)
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   694
                    case Some(parent) => results(parent)
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   695
                  }
48547
wenzelm
parents: 48546
diff changeset
   696
                val output = output_dir + Path.basic(name)
wenzelm
parents: 48546
diff changeset
   697
                val do_output = build_heap || queue.is_inner(name)
wenzelm
parents: 48546
diff changeset
   698
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   699
                val (current, heap) =
48547
wenzelm
parents: 48546
diff changeset
   700
                {
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   701
                  input_dirs.find(dir => (dir + log_gz(name)).is_file) match {
48547
wenzelm
parents: 48546
diff changeset
   702
                    case Some(dir) =>
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   703
                      read_stamps(dir + log_gz(name)) match {
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   704
                        case Some((s, h1, h2)) =>
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   705
                          val heap = heap_stamp(Some(dir + Path.basic(name)))
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   706
                          (s == make_stamp(name) && h1 == parent_result.heap && h2 == heap &&
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   707
                            !(do_output && heap == no_heap), heap)
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   708
                        case None => (false, no_heap)
48547
wenzelm
parents: 48546
diff changeset
   709
                      }
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   710
                    case None => (false, no_heap)
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   711
                  }
48547
wenzelm
parents: 48546
diff changeset
   712
                }
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   713
                val all_current = current && parent_result.current
48528
784c6f63d79c proper all_current, which regards parent status as well;
wenzelm
parents: 48511
diff changeset
   714
48547
wenzelm
parents: 48546
diff changeset
   715
                if (all_current)
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   716
                  loop(pending - name, running, results + (name -> Result(true, None, heap, 0)))
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   717
                else if (no_build) {
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   718
                  if (verbose) progress.echo("Skipping " + name + " ...")
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   719
                  loop(pending - name, running, results + (name -> Result(false, None, heap, 1)))
48678
ff27af15530c queue ordering by descending outdegree and timeout;
wenzelm
parents: 48676
diff changeset
   720
                }
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   721
                else if (parent_result.rc == 0) {
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   722
                  progress.echo((if (do_output) "Building " else "Running ") + name + " ...")
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50777
diff changeset
   723
                  val job = new Job(progress, name, info, output, do_output, verbose, browser_info)
48674
03e88e4619a2 simplified class Job;
wenzelm
parents: 48671
diff changeset
   724
                  loop(pending, running + (name -> (parent_result.heap, job)), results)
48547
wenzelm
parents: 48546
diff changeset
   725
                }
wenzelm
parents: 48546
diff changeset
   726
                else {
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   727
                  progress.echo(name + " CANCELLED")
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   728
                  loop(pending - name, running, results + (name -> Result(false, None, heap, 1)))
48547
wenzelm
parents: 48546
diff changeset
   729
                }
wenzelm
parents: 48546
diff changeset
   730
              case None => sleep(); loop(pending, running, results)
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   731
            }
50367
69efe72886e3 allow to terminate jobs via Progress;
wenzelm
parents: 50366
diff changeset
   732
            ///}}}
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   733
          case None => sleep(); loop(pending, running, results)
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   734
        }
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   735
    }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   736
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   737
    val results =
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   738
      if (deps.is_empty) {
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   739
        progress.echo("### Nothing to build")
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   740
        Map.empty[String, Result]
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   741
      }
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   742
      else loop(queue, Map.empty, Map.empty)
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   743
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   744
    val session_entries =
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   745
      (for ((name, res) <- results.iterator if res.parent_path.isDefined)
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   746
        yield (res.parent_path.get, name)).toList.groupBy(_._1).map(
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   747
          { case (p, es) => (p, es.map(_._2).sorted) })
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   748
    for ((p, names) <- session_entries)
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   749
      Present.update_index(browser_info + Path.explode(p), names)
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50686
diff changeset
   750
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   751
    val rc = (0 /: results)({ case (rc1, (_, res)) => rc1 max res.rc })
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   752
    if (rc != 0 && (verbose || !no_build)) {
48552
b1819875b76a actually check return code;
wenzelm
parents: 48549
diff changeset
   753
      val unfinished =
49951
119440fe1d5c accomodate scala-2.10.0-RC1;
wenzelm
parents: 49696
diff changeset
   754
        (for ((name, res) <- results.iterator if res.rc != 0) yield name).toList
119440fe1d5c accomodate scala-2.10.0-RC1;
wenzelm
parents: 49696
diff changeset
   755
          .sorted(scala.math.Ordering.String)  // FIXME scala-2.10.0-RC1
50366
b1dd455593a9 more formal progress context;
wenzelm
parents: 50207
diff changeset
   756
      progress.echo("Unfinished session(s): " + commas(unfinished))
48473
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   757
    }
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   758
    rc
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   759
  }
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   760
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   761
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   762
  /* command line entry point */
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   763
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   764
  def main(args: Array[String])
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   765
  {
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   766
    Command_Line.tool {
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   767
      args.toList match {
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   768
        case
49131
aa1e2ba3c697 added build option -R;
wenzelm
parents: 49098
diff changeset
   769
          Properties.Value.Boolean(requirements) ::
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   770
          Properties.Value.Boolean(all_sessions) ::
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   771
          Properties.Value.Boolean(build_heap) ::
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   772
          Properties.Value.Boolean(clean_build) ::
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   773
          Properties.Value.Int(max_jobs) ::
48903
1621b3f26095 added build option -l (list files);
wenzelm
parents: 48883
diff changeset
   774
          Properties.Value.Boolean(list_files) ::
48469
826a771cff33 clarified build -n (no build);
wenzelm
parents: 48467
diff changeset
   775
          Properties.Value.Boolean(no_build) ::
48447
ef600ce4559c added system build mode: produce output in ISABELLE_HOME;
wenzelm
parents: 48425
diff changeset
   776
          Properties.Value.Boolean(system_mode) ::
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   777
          Properties.Value.Boolean(verbose) ::
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   778
          Command_Line.Chunks(select_dirs, include_dirs, session_groups, build_options, sessions) =>
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50367
diff changeset
   779
            val options = (Options.init() /: build_options)(_ + _)
48737
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   780
            val dirs =
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   781
              select_dirs.map(d => (true, Path.explode(d))) :::
f3bbb9ca57d6 added build option -D: include session directory and select its sessions;
wenzelm
parents: 48724
diff changeset
   782
              include_dirs.map(d => (false, Path.explode(d)))
50846
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
   783
            build(new Build.Console_Progress(verbose), options, requirements, all_sessions,
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
   784
              build_heap, clean_build, dirs, session_groups, max_jobs, list_files, no_build,
529e652d389d more uniform theory progress in build -v and build_dialog;
wenzelm
parents: 50845
diff changeset
   785
              system_mode, verbose, sessions)
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   786
        case _ => error("Bad arguments:\n" + cat_lines(args))
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   787
      }
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   788
    }
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   789
  }
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
   790
}
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
   791