src/Pure/System/build.scala
author wenzelm
Wed, 25 Jul 2012 22:30:18 +0200
changeset 48505 d9e43ea3a045
parent 48504 21dfd6c04482
child 48508 5a59e4c03957
permissions -rw-r--r--
tuned signature;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/System/build.scala
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     3
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     4
Build and manage Isabelle sessions.
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     5
*/
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     6
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     7
package isabelle
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     8
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
     9
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
    10
import java.io.{File => JFile, BufferedInputStream, FileInputStream,
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
    11
  BufferedReader, InputStreamReader, IOException}
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
    12
import java.util.zip.GZIPInputStream
48335
2f923e994056 more informative errors;
wenzelm
parents: 48334
diff changeset
    13
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    14
import scala.collection.mutable
48340
6f4fc030882a allow explicit specification of additional session directories;
wenzelm
parents: 48339
diff changeset
    15
import scala.annotation.tailrec
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    16
48335
2f923e994056 more informative errors;
wenzelm
parents: 48334
diff changeset
    17
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
    18
object Build
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
    19
{
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    20
  /** session information **/
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
    21
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    22
  object Session
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    23
  {
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    24
    /* Key */
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    25
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    26
    object Key
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    27
    {
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    28
      object Ordering extends scala.math.Ordering[Key]
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    29
      {
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    30
        def compare(key1: Key, key2: Key): Int =
48350
09bf3b73e446 clarified topological ordering: preserve order of adjacency via reverse fold;
wenzelm
parents: 48349
diff changeset
    31
          key1.order compare key2.order match {
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    32
            case 0 => key1.name compare key2.name
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    33
            case ord => ord
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    34
          }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    35
      }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    36
    }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    37
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    38
    sealed case class Key(name: String, order: Int)
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    39
    {
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    40
      override def toString: String = name
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    41
    }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    42
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    43
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    44
    /* Info */
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    45
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    46
    sealed case class Info(
48457
fd9e28d5a143 pass build options to ML;
wenzelm
parents: 48447
diff changeset
    47
      base_name: String,
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    48
      dir: Path,
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
    49
      parent: Option[String],
48482
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
    50
      parent_base_name: Option[String],
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    51
      description: String,
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    52
      options: Options,
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    53
      theories: List[(Options, List[Path])],
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    54
      files: List[Path],
48424
wenzelm
parents: 48423
diff changeset
    55
      digest: SHA1.Digest)
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    56
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    57
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    58
    /* Queue */
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    59
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    60
    object Queue
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    61
    {
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    62
      val empty: Queue = new Queue()
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    63
    }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    64
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    65
    final class Queue private(
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    66
      keys: Map[String, Key] = Map.empty,
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    67
      graph: Graph[Key, Info] = Graph.empty(Key.Ordering))
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    68
    {
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
    69
      def is_empty: Boolean = graph.is_empty
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
    70
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
    71
      def apply(name: String): Info = graph.get_node(keys(name))
48351
a0b95a762abb less redundant data structures;
wenzelm
parents: 48350
diff changeset
    72
      def defined(name: String): Boolean = keys.isDefinedAt(name)
48419
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
    73
      def is_inner(name: String): Boolean = !graph.is_maximal(keys(name))
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
    74
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
    75
      def + (key: Key, info: Info): Queue =
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    76
      {
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    77
        val keys1 =
48351
a0b95a762abb less redundant data structures;
wenzelm
parents: 48350
diff changeset
    78
          if (defined(key.name)) error("Duplicate session: " + quote(key.name))
a0b95a762abb less redundant data structures;
wenzelm
parents: 48350
diff changeset
    79
          else keys + (key.name -> key)
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    80
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    81
        val graph1 =
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    82
          try {
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
    83
            graph.new_node(key, info).add_deps_acyclic(key, info.parent.toList.map(keys(_)))
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    84
          }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    85
          catch {
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    86
            case exn: Graph.Cycles[_] =>
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    87
              error(cat_lines(exn.cycles.map(cycle =>
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    88
                "Cyclic session dependency of " +
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    89
                  cycle.map(key => quote(key.toString)).mkString(" via "))))
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    90
          }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    91
        new Queue(keys1, graph1)
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    92
      }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    93
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
    94
      def - (name: String): Queue = new Queue(keys - name, graph.del_node(keys(name)))
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
    95
48363
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
    96
      def required(names: List[String]): Queue =
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
    97
      {
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
    98
        val req = graph.all_preds(names.map(keys(_))).map(_.name).toSet
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
    99
        val keys1 = keys -- keys.keySet.filter(name => !req(name))
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
   100
        val graph1 = graph.restrict(key => keys1.isDefinedAt(key.name))
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
   101
        new Queue(keys1, graph1)
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
   102
      }
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
   103
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   104
      def dequeue(skip: String => Boolean): Option[(String, Info)] =
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   105
      {
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   106
        val it = graph.entries.dropWhile(
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   107
          { case (key, (_, (deps, _))) => !deps.isEmpty || skip(key.name) })
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   108
        if (it.hasNext) { val (key, (info, _)) = it.next; Some((key.name, info)) }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   109
        else None
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   110
      }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   111
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   112
      def topological_order: List[(String, Info)] =
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   113
        graph.topological_order.map(key => (key.name, graph.get_node(key)))
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
   114
    }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
   115
  }
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   116
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   117
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   118
  /* parsing */
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   119
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   120
  private case class Session_Entry(
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   121
    name: String,
48462
424fd5364f15 clarified "this_name" vs. former "reset" feature -- imitate the latter by loading other session sources directly;
wenzelm
parents: 48459
diff changeset
   122
    this_name: Boolean,
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
   123
    order: Int,
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   124
    path: Option[String],
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   125
    parent: Option[String],
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   126
    description: String,
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   127
    options: List[Options.Spec],
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   128
    theories: List[(List[Options.Spec], List[String])],
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   129
    files: List[String])
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   130
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   131
  private object Parser extends Parse.Parser
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   132
  {
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   133
    val SESSION = "session"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   134
    val IN = "in"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   135
    val DESCRIPTION = "description"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   136
    val OPTIONS = "options"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   137
    val THEORIES = "theories"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   138
    val FILES = "files"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   139
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   140
    val syntax =
48336
3c55bfad22eb more tight treatment of reset_name;
wenzelm
parents: 48335
diff changeset
   141
      Outer_Syntax.empty + "!" + "(" + ")" + "+" + "," + "=" + "[" + "]" +
3c55bfad22eb more tight treatment of reset_name;
wenzelm
parents: 48335
diff changeset
   142
        SESSION + IN + DESCRIPTION + OPTIONS + THEORIES + FILES
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   143
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   144
    val session_entry: Parser[Session_Entry] =
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   145
    {
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   146
      val session_name = atom("session name", _.is_name)
48280
7d86239986c2 basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents: 48276
diff changeset
   147
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   148
      val option =
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   149
        name ~ opt(keyword("=") ~! name ^^ { case _ ~ x => x }) ^^ { case x ~ y => (x, y) }
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   150
      val options = keyword("[") ~> repsep(option, keyword(",")) <~ keyword("]")
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   151
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   152
      val theories =
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   153
        keyword(THEORIES) ~! ((options | success(Nil)) ~ rep1(theory_name)) ^^
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   154
          { case _ ~ (x ~ y) => (x, y) }
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   155
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   156
      ((keyword(SESSION) ~! session_name) ^^ { case _ ~ x => x }) ~
48336
3c55bfad22eb more tight treatment of reset_name;
wenzelm
parents: 48335
diff changeset
   157
        (keyword("!") ^^^ true | success(false)) ~
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
   158
        (keyword("(") ~! (nat <~ keyword(")")) ^^ { case _ ~ x => x } | success(Integer.MAX_VALUE)) ~
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   159
        (opt(keyword(IN) ~! string ^^ { case _ ~ x => x })) ~
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   160
        (keyword("=") ~> opt(session_name <~ keyword("+"))) ~
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   161
        (keyword(DESCRIPTION) ~! text ^^ { case _ ~ x => x } | success("")) ~
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   162
        (keyword(OPTIONS) ~! options ^^ { case _ ~ x => x } | success(Nil)) ~
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   163
        rep(theories) ~
48336
3c55bfad22eb more tight treatment of reset_name;
wenzelm
parents: 48335
diff changeset
   164
        (keyword(FILES) ~! rep1(path) ^^ { case _ ~ x => x } | success(Nil)) ^^
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
   165
          { case a ~ b ~ c ~ d ~ e ~ f ~ g ~ h ~ i => Session_Entry(a, b, c, d, e, f, g, h, i) }
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   166
    }
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   167
48409
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48373
diff changeset
   168
    def parse_entries(root: JFile): List[Session_Entry] =
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   169
    {
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents: 48409
diff changeset
   170
      val toks = syntax.scan(File.read(root))
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   171
      parse_all(rep(session_entry), Token.reader(toks, root.toString)) match {
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   172
        case Success(result, _) => result
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   173
        case bad => error(bad.toString)
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   174
      }
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   175
    }
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   176
  }
48280
7d86239986c2 basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents: 48276
diff changeset
   177
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   178
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   179
  /* find sessions */
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   180
48361
wenzelm
parents: 48354
diff changeset
   181
  private val ROOT = Path.explode("ROOT")
wenzelm
parents: 48354
diff changeset
   182
  private val SESSIONS = Path.explode("etc/sessions")
wenzelm
parents: 48354
diff changeset
   183
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   184
  private def is_pure(name: String): Boolean = name == "RAW" || name == "Pure"
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   185
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   186
  private def sessions_root(options: Options, dir: Path, root: JFile, queue: Session.Queue)
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   187
    : Session.Queue =
48280
7d86239986c2 basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents: 48276
diff changeset
   188
  {
48361
wenzelm
parents: 48354
diff changeset
   189
    (queue /: Parser.parse_entries(root))((queue1, entry) =>
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   190
      try {
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   191
        if (entry.name == "") error("Bad session name")
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   192
48482
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   193
        val (full_name, parent_base_name) =
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   194
          if (is_pure(entry.name)) {
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   195
            if (entry.parent.isDefined) error("Illegal parent session")
48482
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   196
            else (entry.name, None: Option[String])
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   197
          }
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   198
          else
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   199
            entry.parent match {
48361
wenzelm
parents: 48354
diff changeset
   200
              case Some(parent_name) if queue1.defined(parent_name) =>
48482
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   201
                val full_name =
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   202
                  if (entry.this_name) entry.name
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   203
                  else parent_name + "-" + entry.name
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   204
                val parent_base_name = Some(queue1(parent_name).base_name)
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   205
                (full_name, parent_base_name)
48351
a0b95a762abb less redundant data structures;
wenzelm
parents: 48350
diff changeset
   206
              case _ => error("Bad parent session")
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   207
            }
48339
62570361e608 more errors;
wenzelm
parents: 48337
diff changeset
   208
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   209
        val path =
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   210
          entry.path match {
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   211
            case Some(p) => Path.explode(p)
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   212
            case None => Path.basic(entry.name)
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   213
          }
48339
62570361e608 more errors;
wenzelm
parents: 48337
diff changeset
   214
48351
a0b95a762abb less redundant data structures;
wenzelm
parents: 48350
diff changeset
   215
        val key = Session.Key(full_name, entry.order)
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   216
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   217
        val session_options = options ++ entry.options
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   218
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   219
        val theories =
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   220
          entry.theories.map({ case (opts, thys) =>
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   221
            (session_options ++ opts, thys.map(Path.explode(_))) })
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   222
        val files = entry.files.map(Path.explode(_))
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   223
        val digest = SHA1.digest((full_name, entry.parent, entry.options, entry.theories).toString)
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   224
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   225
        val info =
48482
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   226
          Session.Info(entry.name, dir + path, entry.parent, parent_base_name,
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   227
            entry.description, session_options, theories, files, digest)
48351
a0b95a762abb less redundant data structures;
wenzelm
parents: 48350
diff changeset
   228
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   229
        queue1 + (key, info)
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   230
      }
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   231
      catch {
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   232
        case ERROR(msg) =>
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   233
          error(msg + "\nThe error(s) above occurred in session entry " +
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 48368
diff changeset
   234
            quote(entry.name) + Position.str_of(Position.file(root)))
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   235
      })
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   236
  }
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   237
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   238
  private def sessions_dir(options: Options, strict: Boolean, dir: Path, queue: Session.Queue)
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   239
    : Session.Queue =
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   240
  {
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   241
    val root = (dir + ROOT).file
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   242
    if (root.isFile) sessions_root(options, dir, root, queue)
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   243
    else if (strict) error("Bad session root file: " + quote(root.toString))
48361
wenzelm
parents: 48354
diff changeset
   244
    else queue
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   245
  }
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   246
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   247
  private def sessions_catalog(options: Options, dir: Path, catalog: JFile, queue: Session.Queue)
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   248
    : Session.Queue =
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   249
  {
48354
aa1e730c3fdd allow catalog entries to be commented-out;
wenzelm
parents: 48352
diff changeset
   250
    val dirs =
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents: 48409
diff changeset
   251
      split_lines(File.read(catalog)).filterNot(line => line == "" || line.startsWith("#"))
48361
wenzelm
parents: 48354
diff changeset
   252
    (queue /: dirs)((queue1, dir1) =>
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   253
      try {
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   254
        val dir2 = dir + Path.explode(dir1)
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   255
        if (dir2.file.isDirectory) sessions_dir(options, true, dir2, queue1)
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   256
        else error("Bad session directory: " + dir2.toString)
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   257
      }
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   258
      catch {
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   259
        case ERROR(msg) =>
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   260
          error(msg + "\nThe error(s) above occurred in session catalog " + quote(catalog.toString))
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   261
      })
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   262
  }
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   263
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   264
  def find_sessions(options: Options, all_sessions: Boolean, sessions: List[String],
48419
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   265
    more_dirs: List[Path]): Session.Queue =
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   266
  {
48361
wenzelm
parents: 48354
diff changeset
   267
    var queue = Session.Queue.empty
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   268
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   269
    for (dir <- Isabelle_System.components()) {
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   270
      queue = sessions_dir(options, false, dir, queue)
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   271
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   272
      val catalog = (dir + SESSIONS).file
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   273
      if (catalog.isFile)
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   274
        queue = sessions_catalog(options, dir, catalog, queue)
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   275
    }
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   276
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   277
    for (dir <- more_dirs) queue = sessions_dir(options, true, dir, queue)
48352
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   278
48419
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   279
    sessions.filter(name => !queue.defined(name)) match {
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   280
      case Nil =>
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   281
      case bad => error("Undefined session(s): " + commas_quote(bad))
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   282
    }
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   283
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   284
    if (all_sessions) queue else queue.required(sessions)
48280
7d86239986c2 basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents: 48276
diff changeset
   285
  }
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   286
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   287
48424
wenzelm
parents: 48423
diff changeset
   288
wenzelm
parents: 48423
diff changeset
   289
  /** build **/
wenzelm
parents: 48423
diff changeset
   290
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   291
  private def echo(msg: String) { java.lang.System.out.println(msg) }
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   292
  private def sleep(): Unit = Thread.sleep(500)
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   293
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   294
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   295
  /* source dependencies */
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   296
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   297
  sealed case class Node(
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   298
    loaded_theories: Set[String],
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   299
    sources: List[(Path, SHA1.Digest)])
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   300
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   301
  sealed case class Deps(deps: Map[String, Node])
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   302
  {
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   303
    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
   304
  }
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   305
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   306
  def dependencies(verbose: Boolean, queue: Session.Queue): Deps =
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   307
    Deps((Map.empty[String, Node] /: queue.topological_order)(
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   308
      { case (deps, (name, info)) =>
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   309
          val preloaded =
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   310
            info.parent match {
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   311
              case None => Set.empty[String]
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   312
              case Some(parent) => deps(parent).loaded_theories
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   313
            }
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   314
          val thy_info = new Thy_Info(new Thy_Load(preloaded))
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   315
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   316
          if (verbose) echo("Checking " + name)
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   317
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   318
          val thy_deps =
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   319
            thy_info.dependencies(
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   320
              info.theories.map(_._2).flatten.
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   321
                map(thy => Document.Node.Name(info.dir + Thy_Load.thy_path(thy))))
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   322
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   323
          val loaded_theories = preloaded ++ thy_deps.map(_._1.theory)
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   324
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   325
          val all_files =
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   326
            thy_deps.map({ case (n, h) =>
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   327
              val thy = Path.explode(n.node).expand
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   328
              val uses =
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   329
                h match {
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   330
                  case Exn.Res(d) =>
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   331
                    d.uses.map(p => (Path.explode(n.dir) + Path.explode(p._1)).expand)
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   332
                  case _ => Nil
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   333
                }
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   334
              thy :: uses
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   335
            }).flatten ::: info.files.map(file => info.dir + file)
48485
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   336
          val sources =
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   337
            try { all_files.map(p => (p, SHA1.digest(p))) }
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   338
            catch {
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   339
              case ERROR(msg) =>
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   340
                error(msg + "\nThe error(s) above occurred in session " + quote(name))
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   341
            }
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   342
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   343
          deps + (name -> Node(loaded_theories, sources))
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   344
      }))
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   345
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   346
48424
wenzelm
parents: 48423
diff changeset
   347
  /* jobs */
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   348
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   349
  private class Job(cwd: JFile, env: Map[String, String], script: String, args: String,
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   350
    val output_path: Option[Path])
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   351
  {
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   352
    private val args_file = File.tmp_file("args")
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   353
    private val env1 = env + ("ARGS_FILE" -> Isabelle_System.posix_path(args_file.getPath))
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   354
    File.write(args_file, args)
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   355
48424
wenzelm
parents: 48423
diff changeset
   356
    private val (thread, result) =
wenzelm
parents: 48423
diff changeset
   357
      Simple_Thread.future("build") { Isabelle_System.bash_env(cwd, env1, script) }
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   358
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   359
    def terminate: Unit = thread.interrupt
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   360
    def is_finished: Boolean = result.is_finished
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   361
    def join: (String, String, Int) = { val res = result.join; args_file.delete; res }
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   362
  }
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   363
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   364
  private def start_job(name: String, info: Session.Info, output_path: Option[Path],
48459
375e45df6fdf timing is command line options, not system option;
wenzelm
parents: 48457
diff changeset
   365
    options: Options, timing: Boolean, verbose: Boolean, browser_info: Path): Job =
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   366
  {
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   367
    // global browser info dir
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   368
    if (options.bool("browser_info") && !(browser_info + Path.explode("index.html")).file.isFile)
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   369
    {
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   370
      browser_info.file.mkdirs()
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   371
      File.copy(Path.explode("~~/lib/logo/isabelle.gif"),
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   372
        browser_info + Path.explode("isabelle.gif"))
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   373
      File.write(browser_info + Path.explode("index.html"),
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   374
        File.read(Path.explode("~~/lib/html/library_index_header.template")) +
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   375
        File.read(Path.explode("~~/lib/html/library_index_content.template")) +
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   376
        File.read(Path.explode("~~/lib/html/library_index_footer.template")))
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   377
    }
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   378
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   379
    val parent = info.parent.getOrElse("")
48482
45137257399a pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents: 48478
diff changeset
   380
    val parent_base_name = info.parent_base_name.getOrElse("")
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   381
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   382
    val output =
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   383
      output_path match { case Some(p) => Isabelle_System.standard_path(p) case None => "" }
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   384
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   385
    val cwd = info.dir.file
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   386
    val env = Map("INPUT" -> parent, "TARGET" -> name, "OUTPUT" -> output)
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   387
    val script =
48447
ef600ce4559c added system build mode: produce output in ISABELLE_HOME;
wenzelm
parents: 48425
diff changeset
   388
      if (is_pure(name)) "./build " + name + " \"$OUTPUT\""
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   389
      else {
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   390
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   391
        . "$ISABELLE_HOME/lib/scripts/timestart.bash"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   392
        """ +
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   393
          (if (output_path.isDefined)
48447
ef600ce4559c added system build mode: produce output in ISABELLE_HOME;
wenzelm
parents: 48425
diff changeset
   394
            """ "$ISABELLE_PROCESS" -e "Build.build \"$ARGS_FILE\";" -q -w "$INPUT" "$OUTPUT" """
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   395
          else
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   396
            """ "$ISABELLE_PROCESS" -e "Build.build \"$ARGS_FILE\";" -r -q "$INPUT" """) +
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   397
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   398
        RC="$?"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   399
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   400
        . "$ISABELLE_HOME/lib/scripts/timestop.bash"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   401
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   402
        if [ "$RC" -eq 0 ]; then
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   403
          echo "Finished $TARGET ($TIMES_REPORT)" >&2
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   404
        fi
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   405
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   406
        exit "$RC"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   407
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   408
      }
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   409
    val args_xml =
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   410
    {
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   411
      import XML.Encode._
48459
375e45df6fdf timing is command line options, not system option;
wenzelm
parents: 48457
diff changeset
   412
          pair(bool, pair(Options.encode, pair(bool, pair(bool, pair(Path.encode, pair(string,
375e45df6fdf timing is command line options, not system option;
wenzelm
parents: 48457
diff changeset
   413
            pair(string, pair(string, list(pair(Options.encode, list(Path.encode)))))))))))(
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   414
          (output_path.isDefined, (options, (timing, (verbose, (browser_info, (parent_base_name,
48459
375e45df6fdf timing is command line options, not system option;
wenzelm
parents: 48457
diff changeset
   415
            (name, (info.base_name, info.theories)))))))))
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   416
    }
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
   417
    new Job(cwd, env, script, YXML.string_of_body(args_xml), output_path)
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   418
  }
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   419
48424
wenzelm
parents: 48423
diff changeset
   420
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   421
  /* log files and corresponding heaps */
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   422
48505
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   423
  private val LOG = Path.explode("log")
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   424
  private def log(name: String): Path = LOG + Path.basic(name)
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   425
  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
   426
48505
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   427
  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
   428
    digests.map(_.toString).sorted.mkString("sources: ", " ", "")
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   429
48505
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   430
  private def heap_stamp(output: Option[Path]): String =
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   431
  {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   432
    "heap: " +
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   433
      (output match {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   434
        case Some(path) =>
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   435
          val file = path.file
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   436
          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
   437
          else "-"
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   438
        case None => "-"
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   439
      })
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   440
  }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   441
48505
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   442
  private def check_stamps(dir: Path, name: String): Option[(String, Boolean)] =
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   443
  {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   444
    val file = (dir + log_gz(name)).file
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   445
    if (file.isFile) {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   446
      val stream = new GZIPInputStream (new BufferedInputStream(new FileInputStream(file)))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   447
      val reader = new BufferedReader(new InputStreamReader(stream, Standard_System.charset))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   448
      val (s, h) = try { (reader.readLine, reader.readLine) } finally { reader.close }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   449
      if (s != null && s.startsWith("sources: ") && h != null && h.startsWith("heap: ") &&
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   450
          h == heap_stamp(Some(dir + Path.basic(name)))) Some((s, h != "heap: -"))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   451
      else None
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   452
    }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   453
    else None
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   454
  }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   455
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   456
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   457
  /* build */
48424
wenzelm
parents: 48423
diff changeset
   458
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   459
  def build(all_sessions: Boolean, build_images: Boolean, max_jobs: Int,
48469
826a771cff33 clarified build -n (no build);
wenzelm
parents: 48467
diff changeset
   460
    no_build: Boolean, system_mode: Boolean, timing: Boolean, verbose: Boolean,
48419
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   461
    more_dirs: List[Path], more_options: List[String], sessions: List[String]): Int =
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   462
  {
48419
6d7b6e47f3ef save image for inner nodes only;
wenzelm
parents: 48418
diff changeset
   463
    val options = (Options.init() /: more_options)(_.define_simple(_))
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   464
    val queue = find_sessions(options, all_sessions, sessions, more_dirs)
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   465
    val deps = dependencies(verbose, queue)
48368
dc538eef2cf2 define build_options from command line;
wenzelm
parents: 48364
diff changeset
   466
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   467
    def make_stamp(name: String): String =
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   468
      sources_stamp(queue(name).digest :: deps.sources(name))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   469
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   470
    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
   471
      if (system_mode) {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   472
        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
   473
        (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
   474
      }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   475
      else {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   476
        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
   477
        (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
   478
         Path.explode("$ISABELLE_BROWSER_INFO"))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   479
      }
48363
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
   480
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   481
    // prepare log dir
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   482
    (output_dir + LOG).file.mkdirs()
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   483
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   484
    // scheduler loop
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   485
    @tailrec def loop(
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   486
      pending: Session.Queue,
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   487
      running: Map[String, Job],
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   488
      results: Map[String, Int]): Map[String, Int] =
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   489
    {
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   490
      if (pending.is_empty) results
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   491
      else if (running.exists({ case (_, job) => job.is_finished }))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   492
      { // finish job
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   493
        val (name, job) = running.find({ case (_, job) => job.is_finished }).get
48424
wenzelm
parents: 48423
diff changeset
   494
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   495
        val (out, err, rc) = job.join
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   496
        echo(Library.trim_line(err))
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   497
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   498
        if (rc == 0) {
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   499
          val sources = make_stamp(name)
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   500
          val heap = heap_stamp(job.output_path)
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   501
          File.write_gzip(output_dir + log_gz(name), sources + "\n" + heap + "\n" + out)
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   502
        }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   503
        else {
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   504
          File.write(output_dir + log(name), out)
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   505
          echo(name + " FAILED")
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   506
          echo("(see also " + log(name).file.toString + ")")
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   507
          val lines = split_lines(out)
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   508
          val tail = lines.drop(lines.length - 20 max 0)
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   509
          echo("\n" + cat_lines(tail))
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   510
        }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   511
        loop(pending - name, running - name, results + (name -> rc))
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   512
      }
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   513
      else if (running.size < (max_jobs max 1))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   514
      { // check/start next job
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   515
        pending.dequeue(running.isDefinedAt(_)) match {
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   516
          case Some((name, info)) =>
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   517
            val output =
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   518
              if (build_images || queue.is_inner(name))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   519
                Some(output_dir + Path.basic(name))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   520
              else None
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   521
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   522
            val current =
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   523
            {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   524
              input_dirs.find(dir => (dir + log_gz(name)).file.isFile) match {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   525
                case Some(dir) =>
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   526
                  check_stamps(dir, name) match {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   527
                    case Some((s, h)) => s == make_stamp(name) && (h || output.isEmpty)
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   528
                    case None => false
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   529
                  }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   530
                case None => false
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   531
              }
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   532
            }
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   533
            if (current || no_build)
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   534
              loop(pending - name, running, results + (name -> (if (current) 0 else 1)))
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   535
            else if (info.parent.map(results(_)).forall(_ == 0)) {
48447
ef600ce4559c added system build mode: produce output in ISABELLE_HOME;
wenzelm
parents: 48425
diff changeset
   536
              echo((if (output.isDefined) "Building " else "Running ") + name + " ...")
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   537
              val job = start_job(name, info, output, info.options, timing, verbose, browser_info)
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   538
              loop(pending, running + (name -> job), results)
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   539
            }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   540
            else {
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   541
              echo(name + " CANCELLED")
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   542
              loop(pending - name, running, results + (name -> 1))
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   543
            }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   544
          case None => sleep(); loop(pending, running, results)
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   545
        }
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   546
      }
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   547
      else { sleep(); loop(pending, running, results) }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   548
    }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   549
48473
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   550
    val results = loop(queue, Map.empty, Map.empty)
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   551
    val rc = (0 /: results)({ case (rc1, (_, rc2)) => rc1 max rc2 })
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   552
    if (rc != 0 && (verbose || !no_build)) {
48473
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   553
      val unfinished = (for ((name, r) <- results.iterator if r != 0) yield name).toList.sorted
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   554
      echo("Unfinished session(s): " + commas(unfinished))
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   555
    }
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   556
    rc
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   557
  }
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   558
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   559
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   560
  /* command line entry point */
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   561
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   562
  def main(args: Array[String])
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   563
  {
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   564
    Command_Line.tool {
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   565
      args.toList match {
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   566
        case
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   567
          Properties.Value.Boolean(all_sessions) ::
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   568
          Properties.Value.Boolean(build_images) ::
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   569
          Properties.Value.Int(max_jobs) ::
48469
826a771cff33 clarified build -n (no build);
wenzelm
parents: 48467
diff changeset
   570
          Properties.Value.Boolean(no_build) ::
48447
ef600ce4559c added system build mode: produce output in ISABELLE_HOME;
wenzelm
parents: 48425
diff changeset
   571
          Properties.Value.Boolean(system_mode) ::
48459
375e45df6fdf timing is command line options, not system option;
wenzelm
parents: 48457
diff changeset
   572
          Properties.Value.Boolean(timing) ::
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   573
          Properties.Value.Boolean(verbose) ::
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   574
          Command_Line.Chunks(more_dirs, options, sessions) =>
48469
826a771cff33 clarified build -n (no build);
wenzelm
parents: 48467
diff changeset
   575
            build(all_sessions, build_images, max_jobs, no_build, system_mode, timing,
48447
ef600ce4559c added system build mode: produce output in ISABELLE_HOME;
wenzelm
parents: 48425
diff changeset
   576
              verbose, more_dirs.map(Path.explode), options, sessions)
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   577
        case _ => error("Bad arguments:\n" + cat_lines(args))
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   578
      }
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   579
    }
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   580
  }
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
   581
}
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
   582