src/Pure/System/build.scala
author wenzelm
Sat, 04 Aug 2012 16:56:42 +0200
changeset 48671 951bc4c3ee17
parent 48661 9149ebdd0241
child 48674 03e88e4619a2
permissions -rw-r--r--
refined outer syntax;
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
48661
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
    10
import java.util.{Timer, TimerTask}
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
    11
import java.io.{BufferedInputStream, FileInputStream,
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
    12
  BufferedReader, InputStreamReader, IOException}
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48485
diff changeset
    13
import java.util.zip.GZIPInputStream
48335
2f923e994056 more informative errors;
wenzelm
parents: 48334
diff changeset
    14
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    15
import scala.collection.mutable
48340
6f4fc030882a allow explicit specification of additional session directories;
wenzelm
parents: 48339
diff changeset
    16
import scala.annotation.tailrec
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    17
48335
2f923e994056 more informative errors;
wenzelm
parents: 48334
diff changeset
    18
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
    19
object Build
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
    20
{
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
    21
  /** session information **/
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
    22
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    23
  object Session
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    24
  {
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    25
    /* Info */
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    26
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    27
    sealed case class Info(
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
    28
      groups: List[String],
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    29
      dir: Path,
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
    30
      parent: Option[String],
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    31
      description: String,
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    32
      options: Options,
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    33
      theories: List[(Options, List[Path])],
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    34
      files: List[Path],
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
    35
      entry_digest: SHA1.Digest)
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    36
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    37
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
    38
    /* Queue */
48349
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
    object Queue
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
      val empty: Queue = new Queue()
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    43
    }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    44
48649
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    45
    final class Queue private(graph: Graph[String, Option[Info]] = Graph.string)
48508
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    46
      extends PartialFunction[String, Info]
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    47
    {
48649
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    48
      def apply(name: String): Info = graph.get_node(name).get
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    49
      def isDefinedAt(name: String): Boolean =
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    50
        graph.defined(name) && graph.get_node(name).isDefined
48508
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    51
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    52
      def is_inner(name: String): Boolean = !graph.is_maximal(name)
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    53
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
    54
      def is_empty: Boolean = graph.is_empty
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
    55
48508
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    56
      def + (name: String, info: Info): Queue =
48649
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    57
      {
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    58
        val parents = info.parent.toList
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    59
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    60
        val graph1 = (graph /: (name :: parents))(_.default_node(_, None))
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    61
        if (graph1.get_node(name).isDefined)
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    62
          error("Duplicate session: " + quote(name))
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    63
48508
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    64
        new Queue(
48649
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    65
          try { graph1.map_node(name, _ => Some(info)).add_deps_acyclic(name, parents) }
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    66
          catch {
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    67
            case exn: Graph.Cycles[_] =>
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    68
              error(cat_lines(exn.cycles.map(cycle =>
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    69
                "Cyclic session dependency of " +
48508
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    70
                  cycle.map(c => quote(c.toString)).mkString(" via "))))
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    71
          })
48649
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    72
      }
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
    73
48508
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
    74
      def - (name: String): Queue = new Queue(graph.del_node(name))
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
    75
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    76
      def required(all_sessions: Boolean, session_groups: List[String], sessions: List[String])
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    77
        : (List[String], Queue) =
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
    78
      {
48649
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    79
        (for {
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    80
          (name, (Some(info), _)) <- graph.entries
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    81
          if info.parent.isDefined; parent = info.parent.get
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    82
          if !isDefinedAt(parent)
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    83
        } yield parent + " (for " + name + ")").toList match
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    84
        {
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    85
          case Nil =>
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    86
          case bad => error("Bad parent session(s): " + commas(bad))
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    87
        }
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
    88
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    89
        sessions.filterNot(isDefinedAt(_)) match {
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    90
          case Nil =>
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    91
          case bad => error("Undefined session(s): " + commas_quote(bad))
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    92
        }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    93
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
    94
        val selected =
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    95
        {
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    96
          if (all_sessions) graph.keys.toList
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    97
          else {
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    98
            val sel_group = session_groups.toSet
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
    99
            val sel = sessions.toSet
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   100
              graph.keys.toList.filter(name =>
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   101
                sel(name) || apply(name).groups.exists(sel_group)).toList
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   102
          }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   103
        }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   104
        val descendants = graph.all_succs(selected)
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   105
        val queue1 = new Queue(graph.restrict(graph.all_preds(selected).toSet))
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   106
        (descendants, queue1)
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   107
      }
48363
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
   108
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   109
      def dequeue(skip: String => Boolean): Option[(String, Info)] =
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   110
      {
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   111
        val it = graph.entries.dropWhile(
48649
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
   112
          { case (name, (info, (deps, _))) => !deps.isEmpty || info.isEmpty || skip(name) })
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
   113
        if (it.hasNext) { val (name, (info, _)) = it.next; Some((name, info.get)) }
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   114
        else None
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   115
      }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   116
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   117
      def topological_order: List[(String, Info)] =
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   118
        graph.topological_order.map(name => (name, apply(name)))
48349
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
   119
    }
a78e5d399599 support Session.Queue with ordering and dependencies;
wenzelm
parents: 48347
diff changeset
   120
  }
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   121
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   122
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   123
  /* parsing */
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   124
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   125
  private case class Session_Entry(
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   126
    base_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
   127
    this_name: Boolean,
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   128
    groups: List[String],
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   129
    path: Option[String],
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   130
    parent: Option[String],
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   131
    description: String,
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   132
    options: List[Options.Spec],
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   133
    theories: List[(List[Options.Spec], List[String])],
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   134
    files: List[String])
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   135
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   136
  private object Parser extends Parse.Parser
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   137
  {
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   138
    val SESSION = "session"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   139
    val IN = "in"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   140
    val DESCRIPTION = "description"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   141
    val OPTIONS = "options"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   142
    val THEORIES = "theories"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   143
    val FILES = "files"
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   144
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   145
    val syntax =
48336
3c55bfad22eb more tight treatment of reset_name;
wenzelm
parents: 48335
diff changeset
   146
      Outer_Syntax.empty + "!" + "(" + ")" + "+" + "," + "=" + "[" + "]" +
3c55bfad22eb more tight treatment of reset_name;
wenzelm
parents: 48335
diff changeset
   147
        SESSION + IN + DESCRIPTION + OPTIONS + THEORIES + FILES
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   148
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   149
    val session_entry: Parser[Session_Entry] =
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   150
    {
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   151
      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
   152
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   153
      val option =
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   154
        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
   155
      val options = keyword("[") ~> repsep(option, keyword(",")) <~ keyword("]")
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   156
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   157
      val theories =
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   158
        keyword(THEORIES) ~! ((options | success(Nil)) ~ rep1(theory_name)) ^^
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   159
          { case _ ~ (x ~ y) => (x, y) }
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   160
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   161
      ((keyword(SESSION) ~! session_name) ^^ { case _ ~ x => x }) ~
48336
3c55bfad22eb more tight treatment of reset_name;
wenzelm
parents: 48335
diff changeset
   162
        (keyword("!") ^^^ true | success(false)) ~
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   163
        (keyword("(") ~! (rep1(name) <~ keyword(")")) ^^ { case _ ~ x => x } | success(Nil)) ~
48579
0b95a13ed90a more on "Session ROOT specifications";
wenzelm
parents: 48552
diff changeset
   164
        (opt(keyword(IN) ~! path ^^ { case _ ~ x => x })) ~
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   165
        (keyword("=") ~> opt(session_name <~ keyword("+"))) ~
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   166
        (keyword(DESCRIPTION) ~! text ^^ { case _ ~ x => x } | success("")) ~
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   167
        (keyword(OPTIONS) ~! options ^^ { case _ ~ x => x } | success(Nil)) ~
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   168
        rep(theories) ~
48336
3c55bfad22eb more tight treatment of reset_name;
wenzelm
parents: 48335
diff changeset
   169
        (keyword(FILES) ~! rep1(path) ^^ { case _ ~ x => x } | success(Nil)) ^^
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   170
          { 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
   171
    }
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   172
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   173
    def parse_entries(root: Path): List[Session_Entry] =
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   174
    {
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents: 48409
diff changeset
   175
      val toks = syntax.scan(File.read(root))
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   176
      parse_all(rep(session_entry), Token.reader(toks, root.implode)) match {
48334
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   177
        case Success(result, _) => result
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   178
        case bad => error(bad.toString)
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   179
      }
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   180
    }
8dff9933e72a added parser for Session_Info;
wenzelm
parents: 48280
diff changeset
   181
  }
48280
7d86239986c2 basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents: 48276
diff changeset
   182
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   183
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   184
  /* find sessions */
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   185
48361
wenzelm
parents: 48354
diff changeset
   186
  private val ROOT = Path.explode("ROOT")
wenzelm
parents: 48354
diff changeset
   187
  private val SESSIONS = Path.explode("etc/sessions")
wenzelm
parents: 48354
diff changeset
   188
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   189
  private def is_pure(name: String): Boolean = name == "RAW" || name == "Pure"
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   190
48650
47330b712f8f discontinued unused etc/sessions catalog;
wenzelm
parents: 48649
diff changeset
   191
  private def sessions_root(options: Options, dir: Path, queue: Session.Queue, root: Path)
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   192
    : Session.Queue =
48280
7d86239986c2 basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents: 48276
diff changeset
   193
  {
48361
wenzelm
parents: 48354
diff changeset
   194
    (queue /: Parser.parse_entries(root))((queue1, entry) =>
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   195
      try {
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   196
        if (entry.base_name == "") error("Bad session name")
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   197
48541
f31ef1a0285a more precise imitation of usedir wrt. Session.name (cf. 45137257399a);
wenzelm
parents: 48537
diff changeset
   198
        val full_name =
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   199
          if (is_pure(entry.base_name)) {
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   200
            if (entry.parent.isDefined) error("Illegal parent session")
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   201
            else entry.base_name
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   202
          }
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   203
          else
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   204
            entry.parent match {
48649
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
   205
              case None => error("Missing parent session")
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
   206
              case Some(parent_name) =>
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
   207
                if (entry.this_name) entry.base_name
bf9bff84a61d allow session specifications in arbitrary order;
wenzelm
parents: 48639
diff changeset
   208
                else parent_name + "-" + entry.base_name
48347
8bb27ab9e841 more explicit treatment of initial Pure sessions;
wenzelm
parents: 48346
diff changeset
   209
            }
48339
62570361e608 more errors;
wenzelm
parents: 48337
diff changeset
   210
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   211
        val path =
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   212
          entry.path match {
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   213
            case Some(p) => Path.explode(p)
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   214
            case None => Path.basic(entry.base_name)
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   215
          }
48339
62570361e608 more errors;
wenzelm
parents: 48337
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(_))
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   223
        val entry_digest =
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   224
          SHA1.digest((full_name, entry.parent, entry.options, entry.theories).toString)
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   225
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   226
        val info =
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   227
          Session.Info(entry.groups, dir + path, entry.parent, entry.description,
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   228
            session_options, theories, files, entry_digest)
48351
a0b95a762abb less redundant data structures;
wenzelm
parents: 48350
diff changeset
   229
48508
5a59e4c03957 discontinued slightly odd session order, which did not quite work out;
wenzelm
parents: 48505
diff changeset
   230
        queue1 + (full_name, info)
48337
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   231
      }
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   232
      catch {
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   233
        case ERROR(msg) =>
9c7f8e5805b4 cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents: 48336
diff changeset
   234
          error(msg + "\nThe error(s) above occurred in session entry " +
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   235
            quote(entry.base_name) + Position.str_of(root.position))
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
   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
  }
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   238
48650
47330b712f8f discontinued unused etc/sessions catalog;
wenzelm
parents: 48649
diff changeset
   239
  private def sessions_dir(options: Options, strict: Boolean, queue: Session.Queue, dir: Path)
48421
c4d337782de4 propagate defined options;
wenzelm
parents: 48419
diff changeset
   240
    : 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
   241
  {
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   242
    val root = dir + ROOT
48650
47330b712f8f discontinued unused etc/sessions catalog;
wenzelm
parents: 48649
diff changeset
   243
    if (root.is_file) sessions_root(options, dir, queue, root)
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   244
    else if (strict) error("Bad session root file: " + root.toString)
48361
wenzelm
parents: 48354
diff changeset
   245
    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
   246
  }
7fbf98ee265f include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents: 48351
diff changeset
   247
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   248
  def find_sessions(options: Options, 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
   249
  {
48650
47330b712f8f discontinued unused etc/sessions catalog;
wenzelm
parents: 48649
diff changeset
   250
    val queue1 =
47330b712f8f discontinued unused etc/sessions catalog;
wenzelm
parents: 48649
diff changeset
   251
      (Session.Queue.empty /: Isabelle_System.components())(sessions_dir(options, false, _, _))
47330b712f8f discontinued unused etc/sessions catalog;
wenzelm
parents: 48649
diff changeset
   252
    val queue2 = (queue1 /: more_dirs)(sessions_dir(options, true, _, _))
47330b712f8f discontinued unused etc/sessions catalog;
wenzelm
parents: 48649
diff changeset
   253
    queue2
48280
7d86239986c2 basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents: 48276
diff changeset
   254
  }
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   255
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   256
48424
wenzelm
parents: 48423
diff changeset
   257
wenzelm
parents: 48423
diff changeset
   258
  /** build **/
wenzelm
parents: 48423
diff changeset
   259
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   260
  private def echo(msg: String) { java.lang.System.out.println(msg) }
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   261
  private def sleep(): Unit = Thread.sleep(500)
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   262
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   263
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   264
  /* source dependencies */
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   265
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   266
  sealed case class Node(
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   267
    loaded_theories: Set[String],
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   268
    syntax: Outer_Syntax,
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   269
    sources: List[(Path, SHA1.Digest)])
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   270
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   271
  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
   272
  {
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   273
    def is_empty: Boolean = deps.isEmpty
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   274
    def apply(name: String): Node = deps(name)
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   275
    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
   276
  }
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   277
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   278
  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
   279
    Deps((Map.empty[String, Node] /: queue.topological_order)(
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   280
      { case (deps, (name, info)) =>
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   281
          val (preloaded, parent_syntax) =
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   282
            info.parent match {
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   283
              case Some(parent) => (deps(parent).loaded_theories, deps(parent).syntax)
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   284
              case None =>
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   285
                (Set.empty[String],
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   286
                  Outer_Syntax.init() +
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   287
                    // FIXME avoid hardwired stuff!?
48671
951bc4c3ee17 refined outer syntax;
wenzelm
parents: 48661
diff changeset
   288
                    ("theory", Keyword.THY_BEGIN) +
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   289
                    ("hence", Keyword.PRF_ASM_GOAL, "then have") +
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   290
                    ("thus", Keyword.PRF_ASM_GOAL, "then show"))
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   291
            }
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   292
          val thy_info = new Thy_Info(new Thy_Load(preloaded))
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   293
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   294
          if (verbose) {
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   295
            val groups =
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   296
              if (info.groups.isEmpty) ""
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   297
              else info.groups.mkString(" (", " ", ")")
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   298
            echo("Checking " + name + groups + " ...")
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   299
          }
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   300
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   301
          val thy_deps =
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   302
            thy_info.dependencies(
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   303
              info.theories.map(_._2).flatten.
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   304
                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
   305
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   306
          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
   307
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   308
          val keywords = thy_deps.map({ case (_, Exn.Res(h)) => h.keywords case _ => Nil }).flatten
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   309
          val syntax = (parent_syntax /: keywords)(_ + _)
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   310
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   311
          val all_files =
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   312
            thy_deps.map({ case (n, h) =>
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   313
              val thy = Path.explode(n.node).expand
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   314
              val uses =
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   315
                h match {
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   316
                  case Exn.Res(d) =>
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   317
                    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
   318
                  case _ => Nil
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   319
                }
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   320
              thy :: uses
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   321
            }).flatten ::: info.files.map(file => info.dir + file)
48485
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   322
          val sources =
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   323
            try { all_files.map(p => (p, SHA1.digest(p))) }
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   324
            catch {
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   325
              case ERROR(msg) =>
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   326
                error(msg + "\nThe error(s) above occurred in session " + quote(name))
2cbc3d284cd8 tuned error;
wenzelm
parents: 48484
diff changeset
   327
            }
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   328
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   329
          deps + (name -> Node(loaded_theories, syntax, sources))
48423
0ccf143a2a69 maintain set of source digests, including relevant parts of session entry;
wenzelm
parents: 48422
diff changeset
   330
      }))
48422
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   331
9613780a805b determine source dependencies, relatively to preloaded theories;
wenzelm
parents: 48421
diff changeset
   332
48424
wenzelm
parents: 48423
diff changeset
   333
  /* jobs */
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   334
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   335
  private class Job(dir: Path, env: Map[String, String], script: String, args: String,
48661
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   336
    val parent_heap: String, output: Path, do_output: Boolean, time: Time)
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   337
  {
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   338
    private val args_file = File.tmp_file("args")
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   339
    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
   340
    File.write(args_file, args)
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   341
48424
wenzelm
parents: 48423
diff changeset
   342
    private val (thread, result) =
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   343
      Simple_Thread.future("build") { Isabelle_System.bash_env(dir.file, env1, script) }
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   344
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   345
    def terminate: Unit = thread.interrupt
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   346
    def is_finished: Boolean = result.is_finished
48661
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   347
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   348
    @volatile private var timeout = false
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   349
    private val timer: Option[Timer] =
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   350
      if (time.seconds > 0.0) {
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   351
        val t = new Timer("build", true)
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   352
        t.schedule(new TimerTask { def run = { terminate; timeout = true } }, time.ms)
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   353
        Some(t)
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   354
      }
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   355
      else None
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   356
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   357
    def join: (String, String, Int) = {
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   358
      val (out, err, rc) = result.join
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   359
      args_file.delete
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   360
      timer.map(_.cancel())
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   361
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   362
      val err1 =
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   363
        if (rc == 130)
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   364
          (if (err.isEmpty || err.endsWith("\n")) err else err + "\n") +
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   365
          (if (timeout) "*** Timeout\n" else "*** Interrupt\n")
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   366
        else err
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   367
      (out, err1, rc)
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   368
    }
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   369
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   370
    def output_path: Option[Path] = if (do_output) Some(output) else None
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   371
  }
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   372
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   373
  private def start_job(name: String, info: Session.Info, parent_heap: String,
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   374
    output: Path, do_output: Boolean, options: Options, verbose: Boolean, browser_info: Path): Job =
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   375
  {
48467
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   376
    // global browser info dir
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   377
    if (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
   378
    {
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   379
      browser_info.file.mkdirs()
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   380
      File.copy(Path.explode("~~/lib/logo/isabelle.gif"),
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   381
        browser_info + Path.explode("isabelle.gif"))
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   382
      File.write(browser_info + Path.explode("index.html"),
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   383
        File.read(Path.explode("~~/lib/html/library_index_header.template")) +
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   384
        File.read(Path.explode("~~/lib/html/library_index_content.template")) +
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   385
        File.read(Path.explode("~~/lib/html/library_index_footer.template")))
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   386
    }
a4318c36a829 more precise propagation of options: build, session, theories;
wenzelm
parents: 48462
diff changeset
   387
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   388
    val parent = info.parent.getOrElse("")
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   389
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   390
    val env =
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   391
      Map("INPUT" -> parent, "TARGET" -> name, "OUTPUT" -> Isabelle_System.standard_path(output))
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   392
    val script =
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   393
      if (is_pure(name)) {
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   394
        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
   395
        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
   396
      }
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   397
      else {
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   398
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   399
        . "$ISABELLE_HOME/lib/scripts/timestart.bash"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   400
        """ +
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   401
          (if (do_output)
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   402
            """
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   403
            "$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
   404
            """
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   405
          else
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   406
            """
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   407
            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
   408
            """) +
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   409
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   410
        RC="$?"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   411
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   412
        . "$ISABELLE_HOME/lib/scripts/timestop.bash"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   413
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   414
        if [ "$RC" -eq 0 ]; then
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   415
          echo "Finished $TARGET ($TIMES_REPORT)" >&2
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   416
        fi
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   417
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   418
        exit "$RC"
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   419
        """
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   420
      }
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   421
    val args_xml =
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   422
    {
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   423
      import XML.Encode._
48545
c168bc64f2a8 fewer options;
wenzelm
parents: 48544
diff changeset
   424
          pair(bool, pair(Options.encode, pair(bool, pair(Path.encode, pair(string,
c168bc64f2a8 fewer options;
wenzelm
parents: 48544
diff changeset
   425
            pair(string, list(pair(Options.encode, list(Path.encode)))))))))(
c168bc64f2a8 fewer options;
wenzelm
parents: 48544
diff changeset
   426
          (do_output, (options, (verbose, (browser_info, (parent,
c168bc64f2a8 fewer options;
wenzelm
parents: 48544
diff changeset
   427
            (name, info.theories)))))))
48418
1a634f9614fb some actual build function on ML side;
wenzelm
parents: 48411
diff changeset
   428
    }
48661
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   429
    new Job(info.dir, env, script, YXML.string_of_body(args_xml), parent_heap,
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   430
      output, do_output, Time.seconds(options.real("timeout")))
48364
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   431
  }
9091b659d7b6 minimal build_job;
wenzelm
parents: 48363
diff changeset
   432
48424
wenzelm
parents: 48423
diff changeset
   433
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   434
  /* log files and corresponding heaps */
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   435
48505
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   436
  private val LOG = Path.explode("log")
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   437
  private def log(name: String): Path = LOG + Path.basic(name)
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   438
  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
   439
48505
d9e43ea3a045 tuned signature;
wenzelm
parents: 48504
diff changeset
   440
  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
   441
    digests.map(_.toString).sorted.mkString("sources: ", " ", "")
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   442
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   443
  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
   444
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   445
  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
   446
  {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   447
    "heap: " +
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   448
      (heap match {
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   449
        case Some(path) =>
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   450
          val file = path.file
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   451
          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
   452
          else "-"
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   453
        case 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
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   457
  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
   458
    if (path.is_file) {
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   459
      val stream = new GZIPInputStream (new BufferedInputStream(new FileInputStream(path.file)))
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   460
      val reader = new BufferedReader(new InputStreamReader(stream, Standard_System.charset))
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   461
      val (s, h1, h2) =
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   462
        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
   463
        finally { reader.close }
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   464
      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
   465
          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
   466
          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
   467
      else None
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   468
    }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   469
    else None
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   470
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   471
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   472
  /* build */
48424
wenzelm
parents: 48423
diff changeset
   473
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   474
  def build(
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   475
    all_sessions: Boolean = false,
48511
37999ee01156 remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents: 48509
diff changeset
   476
    build_heap: Boolean = false,
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   477
    clean_build: Boolean = false,
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   478
    more_dirs: List[Path] = Nil,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   479
    session_groups: List[String] = Nil,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   480
    max_jobs: Int = 1,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   481
    no_build: Boolean = false,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   482
    build_options: List[String] = Nil,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   483
    system_mode: Boolean = false,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   484
    verbose: Boolean = false,
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   485
    sessions: List[String] = Nil): Int =
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   486
  {
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   487
    val options = (Options.init() /: build_options)(_.define_simple(_))
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   488
    val (descendants, queue) =
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   489
      find_sessions(options, more_dirs).required(all_sessions, session_groups, sessions)
48478
146090de0474 tuned messages;
wenzelm
parents: 48473
diff changeset
   490
    val deps = dependencies(verbose, queue)
48368
dc538eef2cf2 define build_options from command line;
wenzelm
parents: 48364
diff changeset
   491
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   492
    def make_stamp(name: String): String =
48544
8c26657e73c3 tuned signature;
wenzelm
parents: 48541
diff changeset
   493
      sources_stamp(queue(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
   494
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   495
    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
   496
      if (system_mode) {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   497
        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
   498
        (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
   499
      }
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   500
      else {
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   501
        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
   502
        (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
   503
         Path.explode("$ISABELLE_BROWSER_INFO"))
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   504
      }
48363
cf081b7042d2 restrict to required sessions;
wenzelm
parents: 48361
diff changeset
   505
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   506
    // prepare log dir
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   507
    (output_dir + LOG).file.mkdirs()
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   508
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   509
    // optional cleanup
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   510
    if (clean_build) {
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   511
      for (name <- descendants) {
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   512
        val files =
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   513
          List(Path.basic(name), log(name), log_gz(name)).map(output_dir + _).filter(_.is_file)
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   514
        if (!files.isEmpty) echo("Cleaning " + name + " ...")
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   515
        if (!files.forall(p => p.file.delete)) echo(name + " FAILED to delete")
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   516
      }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   517
    }
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   518
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   519
    // scheduler loop
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   520
    case class Result(current: Boolean, heap: String, rc: Int)
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   521
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   522
    @tailrec def loop(
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   523
      pending: Session.Queue,
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   524
      running: Map[String, Job],
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   525
      results: Map[String, Result]): Map[String, Result] =
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   526
    {
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   527
      if (pending.is_empty) results
48547
wenzelm
parents: 48546
diff changeset
   528
      else
wenzelm
parents: 48546
diff changeset
   529
        running.find({ case (_, job) => job.is_finished }) match {
wenzelm
parents: 48546
diff changeset
   530
          case Some((name, job)) =>
wenzelm
parents: 48546
diff changeset
   531
            // finish job
48424
wenzelm
parents: 48423
diff changeset
   532
48547
wenzelm
parents: 48546
diff changeset
   533
            val (out, err, rc) = job.join
wenzelm
parents: 48546
diff changeset
   534
            echo(Library.trim_line(err))
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   535
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   536
            val heap =
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   537
              if (rc == 0) {
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   538
                (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
   539
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   540
                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
   541
                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
   542
                File.write_gzip(output_dir + log_gz(name),
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   543
                  sources + "\n" + job.parent_heap + "\n" + heap + "\n" + out)
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   544
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   545
                heap
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   546
              }
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   547
              else {
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   548
                (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
   549
                (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
   550
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   551
                File.write(output_dir + log(name), out)
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   552
                echo(name + " FAILED")
48661
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   553
                if (rc != 130) {
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   554
                  echo("(see also " + (output_dir + log(name)).file.toString + ")")
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   555
                  val lines = split_lines(out)
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   556
                  val tail = lines.drop(lines.length - 20 max 0)
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   557
                  echo("\n" + cat_lines(tail))
9149ebdd0241 timeout for session build job;
wenzelm
parents: 48660
diff changeset
   558
                }
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   559
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   560
                no_heap
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   561
              }
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   562
            loop(pending - name, running - name, results + (name -> Result(false, heap, rc)))
48528
784c6f63d79c proper all_current, which regards parent status as well;
wenzelm
parents: 48511
diff changeset
   563
48547
wenzelm
parents: 48546
diff changeset
   564
          case None if (running.size < (max_jobs max 1)) =>
wenzelm
parents: 48546
diff changeset
   565
            // check/start next job
wenzelm
parents: 48546
diff changeset
   566
            pending.dequeue(running.isDefinedAt(_)) match {
wenzelm
parents: 48546
diff changeset
   567
              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
   568
                val parent_result =
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   569
                  info.parent match {
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   570
                    case None => Result(true, no_heap, 0)
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   571
                    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
   572
                  }
48547
wenzelm
parents: 48546
diff changeset
   573
                val output = output_dir + Path.basic(name)
wenzelm
parents: 48546
diff changeset
   574
                val do_output = build_heap || queue.is_inner(name)
wenzelm
parents: 48546
diff changeset
   575
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   576
                val (current, heap) =
48547
wenzelm
parents: 48546
diff changeset
   577
                {
48548
49afe0e92163 simplified Path vs. JVM File operations;
wenzelm
parents: 48547
diff changeset
   578
                  input_dirs.find(dir => (dir + log_gz(name)).is_file) match {
48547
wenzelm
parents: 48546
diff changeset
   579
                    case Some(dir) =>
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   580
                      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
   581
                        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
   582
                          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
   583
                          (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
   584
                            !(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
   585
                        case None => (false, no_heap)
48547
wenzelm
parents: 48546
diff changeset
   586
                      }
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   587
                    case None => (false, no_heap)
48504
21dfd6c04482 actually check source vs. target stamps, based on information from log files;
wenzelm
parents: 48494
diff changeset
   588
                  }
48547
wenzelm
parents: 48546
diff changeset
   589
                }
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   590
                val all_current = current && parent_result.current
48528
784c6f63d79c proper all_current, which regards parent status as well;
wenzelm
parents: 48511
diff changeset
   591
48547
wenzelm
parents: 48546
diff changeset
   592
                if (all_current)
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   593
                  loop(pending - name, running, results + (name -> Result(true, heap, 0)))
48547
wenzelm
parents: 48546
diff changeset
   594
                else if (no_build)
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   595
                  loop(pending - name, running, results + (name -> Result(false, heap, 1)))
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   596
                else if (parent_result.rc == 0) {
48547
wenzelm
parents: 48546
diff changeset
   597
                  echo((if (do_output) "Building " else "Running ") + name + " ...")
wenzelm
parents: 48546
diff changeset
   598
                  val job =
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   599
                    start_job(name, info, parent_result.heap, output, do_output,
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   600
                      info.options, verbose, browser_info)
48547
wenzelm
parents: 48546
diff changeset
   601
                  loop(pending, running + (name -> job), results)
wenzelm
parents: 48546
diff changeset
   602
                }
wenzelm
parents: 48546
diff changeset
   603
                else {
wenzelm
parents: 48546
diff changeset
   604
                  echo(name + " CANCELLED")
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   605
                  loop(pending - name, running, results + (name -> Result(false, heap, 1)))
48547
wenzelm
parents: 48546
diff changeset
   606
                }
wenzelm
parents: 48546
diff changeset
   607
              case None => sleep(); loop(pending, running, results)
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   608
            }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   609
          case None => sleep(); loop(pending, running, results)
48373
527e2bad7cca further imitation of "usedir" shell script;
wenzelm
parents: 48370
diff changeset
   610
        }
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   611
    }
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   612
48583
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   613
    val results =
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   614
      if (deps.is_empty) {
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   615
        echo("### Nothing to build")
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   616
        Map.empty
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   617
      }
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   618
      else loop(queue, Map.empty, Map.empty)
ed975dbb16ca tuned messages;
wenzelm
parents: 48579
diff changeset
   619
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   620
    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
   621
    if (rc != 0 && (verbose || !no_build)) {
48552
b1819875b76a actually check return code;
wenzelm
parents: 48549
diff changeset
   622
      val unfinished =
48639
675988e64bf9 store parent heap stamp as well -- needs to be propagated through the build hierarchy;
wenzelm
parents: 48626
diff changeset
   623
        (for ((name, res) <- results.iterator if res.rc != 0) yield name).toList.sorted
48473
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   624
      echo("Unfinished session(s): " + commas(unfinished))
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   625
    }
8f10b1f6c992 tuned message;
wenzelm
parents: 48471
diff changeset
   626
    rc
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   627
  }
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   628
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   629
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   630
  /* command line entry point */
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   631
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   632
  def main(args: Array[String])
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   633
  {
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   634
    Command_Line.tool {
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   635
      args.toList match {
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   636
        case
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   637
          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
   638
          Properties.Value.Boolean(build_heap) ::
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   639
          Properties.Value.Boolean(clean_build) ::
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   640
          Properties.Value.Int(max_jobs) ::
48469
826a771cff33 clarified build -n (no build);
wenzelm
parents: 48467
diff changeset
   641
          Properties.Value.Boolean(no_build) ::
48447
ef600ce4559c added system build mode: produce output in ISABELLE_HOME;
wenzelm
parents: 48425
diff changeset
   642
          Properties.Value.Boolean(system_mode) ::
48425
0d95980e9aae parallel scheduling of jobs;
wenzelm
parents: 48424
diff changeset
   643
          Properties.Value.Boolean(verbose) ::
48509
4854ced3e9d7 support session groups;
wenzelm
parents: 48508
diff changeset
   644
          Command_Line.Chunks(more_dirs, session_groups, build_options, sessions) =>
48595
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   645
            build(all_sessions, build_heap, clean_build, more_dirs.map(Path.explode),
231e6fa96dbb added build option -c;
wenzelm
parents: 48594
diff changeset
   646
              session_groups, max_jobs, no_build, build_options, system_mode, verbose, sessions)
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   647
        case _ => error("Bad arguments:\n" + cat_lines(args))
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   648
      }
48346
e2382bede914 more general support for Isabelle/Scala command line tools;
wenzelm
parents: 48344
diff changeset
   649
    }
48341
752de4e10162 tuned source structure;
wenzelm
parents: 48340
diff changeset
   650
  }
48660
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   651
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   652
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   653
  /* static outer syntax */
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   654
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   655
  // FIXME Symbol.decode!?
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   656
  def outer_syntax(session: String): Outer_Syntax =
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   657
  {
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   658
    val (_, queue) = find_sessions(Options.init(), Nil).required(false, Nil, List(session))
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   659
    dependencies(false, queue)(session).syntax
730ca503e955 static outer syntax based on session specifications;
wenzelm
parents: 48650
diff changeset
   660
  }
48276
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
   661
}
4bd480886813 basic setup for Isabelle build tool;
wenzelm
parents:
diff changeset
   662