src/Pure/PIDE/protocol.scala
author wenzelm
Tue, 08 Jun 2021 13:17:45 +0200
changeset 73835 5dae03d50db1
parent 73340 0ffcad1f6130
child 73838 0e6a5a6cc767
permissions -rw-r--r--
more formal ML profiling messages;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
45709
87017fcbad83 clarified modules (again) -- NB: both Document and Protocol are specific to this particular prover;
wenzelm
parents: 45672
diff changeset
     1
/*  Title:      Pure/PIDE/protocol.scala
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
     3
45709
87017fcbad83 clarified modules (again) -- NB: both Document and Protocol are specific to this particular prover;
wenzelm
parents: 45672
diff changeset
     4
Protocol message formats for interactive proof documents.
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
     5
*/
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
     6
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
     7
package isabelle
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
     8
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
     9
45709
87017fcbad83 clarified modules (again) -- NB: both Document and Protocol are specific to this particular prover;
wenzelm
parents: 45672
diff changeset
    10
object Protocol
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
    11
{
71630
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    12
  /* markers for inlined messages */
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    13
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    14
  val Loading_Theory_Marker = Protocol_Message.Marker("loading_theory")
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    15
  val Meta_Info_Marker = Protocol_Message.Marker("meta_info")
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    16
  val Command_Timing_Marker = Protocol_Message.Marker("command_timing")
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    17
  val Theory_Timing_Marker = Protocol_Message.Marker("theory_timing")
72012
c81e58a81b8c clarified inlined protocol messages;
wenzelm
parents: 71875
diff changeset
    18
  val Session_Timing_Marker = Protocol_Message.Marker("session_timing")
71630
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    19
  val ML_Statistics_Marker = Protocol_Message.Marker("ML_statistics")
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    20
  val Task_Statistics_Marker = Protocol_Message.Marker("task_statistics")
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    21
  val Error_Message_Marker = Protocol_Message.Marker("error_message")
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    22
50425e4c3910 clarified modules: global quasi-scope for markers;
wenzelm
parents: 71624
diff changeset
    23
72692
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    24
  /* batch build */
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    25
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    26
  object Loading_Theory
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    27
  {
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    28
    def unapply(props: Properties.T): Option[(Document.Node.Name, Document_ID.Exec)] =
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    29
      (props, props, props) match {
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    30
        case (Markup.Name(name), Position.File(file), Position.Id(id))
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    31
        if Path.is_wellformed(file) =>
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    32
          val master_dir = Path.explode(file).dir.implode
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    33
          Some((Document.Node.Name(file, master_dir, name), id))
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    34
        case _ => None
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    35
      }
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    36
  }
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    37
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
    38
38567
b670faa807c9 concentrate protocol message formats in Isar_Document;
wenzelm
parents: 38483
diff changeset
    39
  /* document editing */
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
    40
70665
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    41
  object Commands_Accepted
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    42
  {
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    43
    def unapply(text: String): Option[List[Document_ID.Command]] =
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    44
      try { Some(space_explode(',', text).map(Value.Long.parse)) }
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    45
      catch { case ERROR(_) => None }
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    46
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    47
    val message: XML.Elem = XML.elem(Markup.STATUS, List(XML.elem(Markup.ACCEPTED)))
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    48
  }
94442fce40a5 prefer commands_accepted: fewer protocol messages;
wenzelm
parents: 70664
diff changeset
    49
52563
f9a20c2c3b70 tuned protocol terminology;
wenzelm
parents: 52531
diff changeset
    50
  object Assign_Update
44476
e8a87398f35d propagate information about last command with exec state assignment through document model;
wenzelm
parents: 44474
diff changeset
    51
  {
70284
3e17c3a5fd39 more thorough assignment, e.g. when "purge" removes commands that were not assigned;
wenzelm
parents: 69849
diff changeset
    52
    def unapply(text: String)
3e17c3a5fd39 more thorough assignment, e.g. when "purge" removes commands that were not assigned;
wenzelm
parents: 69849
diff changeset
    53
      : Option[(Document_ID.Version, List[String], Document.Assign_Update)] =
3e17c3a5fd39 more thorough assignment, e.g. when "purge" removes commands that were not assigned;
wenzelm
parents: 69849
diff changeset
    54
    {
44661
383c9d758a56 raw message function "assign_execs" avoids full overhead of decoding and caching message body;
wenzelm
parents: 44644
diff changeset
    55
      try {
383c9d758a56 raw message function "assign_execs" avoids full overhead of decoding and caching message body;
wenzelm
parents: 44644
diff changeset
    56
        import XML.Decode._
69846
e02e3763e7a4 more compact representation: approx. factor 2;
wenzelm
parents: 68758
diff changeset
    57
        def decode_upd(body: XML.Body): (Long, List[Long]) =
e02e3763e7a4 more compact representation: approx. factor 2;
wenzelm
parents: 68758
diff changeset
    58
          space_explode(',', string(body)).map(Value.Long.parse) match {
e02e3763e7a4 more compact representation: approx. factor 2;
wenzelm
parents: 68758
diff changeset
    59
            case a :: bs => (a, bs)
e02e3763e7a4 more compact representation: approx. factor 2;
wenzelm
parents: 68758
diff changeset
    60
            case _ => throw new XML.XML_Body(body)
e02e3763e7a4 more compact representation: approx. factor 2;
wenzelm
parents: 68758
diff changeset
    61
          }
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71165
diff changeset
    62
        Some(triple(long, list(string), list(decode_upd))(Symbol.decode_yxml(text)))
44661
383c9d758a56 raw message function "assign_execs" avoids full overhead of decoding and caching message body;
wenzelm
parents: 44644
diff changeset
    63
      }
383c9d758a56 raw message function "assign_execs" avoids full overhead of decoding and caching message body;
wenzelm
parents: 44644
diff changeset
    64
      catch {
383c9d758a56 raw message function "assign_execs" avoids full overhead of decoding and caching message body;
wenzelm
parents: 44644
diff changeset
    65
        case ERROR(_) => None
51987
7d8e0e3c553b tuned signature;
wenzelm
parents: 51818
diff changeset
    66
        case _: XML.Error => None
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
    67
      }
70284
3e17c3a5fd39 more thorough assignment, e.g. when "purge" removes commands that were not assigned;
wenzelm
parents: 69849
diff changeset
    68
    }
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
    69
  }
38567
b670faa807c9 concentrate protocol message formats in Isar_Document;
wenzelm
parents: 38483
diff changeset
    70
44676
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    71
  object Removed
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    72
  {
52530
99dd8b4ef3fe explicit module Document_ID as source of globally unique identifiers across ML/Scala;
wenzelm
parents: 52527
diff changeset
    73
    def unapply(text: String): Option[List[Document_ID.Version]] =
44676
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    74
      try {
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    75
        import XML.Decode._
65345
2fdd4431b30e clarified YXML vs. symbol encoding: operate on whole message;
wenzelm
parents: 65313
diff changeset
    76
        Some(list(long)(Symbol.decode_yxml(text)))
44676
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    77
      }
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    78
      catch {
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    79
        case ERROR(_) => None
51987
7d8e0e3c553b tuned signature;
wenzelm
parents: 51818
diff changeset
    80
        case _: XML.Error => None
44676
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    81
      }
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    82
  }
7de87f1ae965 Document.removed_versions on Scala side;
wenzelm
parents: 44673
diff changeset
    83
38567
b670faa807c9 concentrate protocol message formats in Isar_Document;
wenzelm
parents: 38483
diff changeset
    84
51818
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    85
  /* command timing */
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    86
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    87
  object Command_Timing
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    88
  {
71673
88dfbc382a3d clarified signature;
wenzelm
parents: 71649
diff changeset
    89
    def unapply(props: Properties.T): Option[(Properties.T, Document_ID.Generic, isabelle.Timing)] =
51818
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    90
      props match {
71673
88dfbc382a3d clarified signature;
wenzelm
parents: 71649
diff changeset
    91
        case Markup.Command_Timing(args) =>
51818
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    92
          (args, args) match {
71673
88dfbc382a3d clarified signature;
wenzelm
parents: 71649
diff changeset
    93
            case (Position.Id(id), Markup.Timing_Properties(timing)) => Some((args, id, timing))
51818
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    94
            case _ => None
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    95
          }
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    96
        case _ => None
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    97
      }
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    98
  }
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
    99
517f232e867d clarified module dependencies: avoid Properties and Document introding minimal "PIDE";
wenzelm
parents: 51533
diff changeset
   100
66873
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   101
  /* theory timing */
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   102
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   103
  object Theory_Timing
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   104
  {
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   105
    def unapply(props: Properties.T): Option[(String, isabelle.Timing)] =
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   106
      props match {
71673
88dfbc382a3d clarified signature;
wenzelm
parents: 71649
diff changeset
   107
        case Markup.Theory_Timing(args) =>
66873
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   108
          (args, args) match {
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   109
            case (Markup.Name(name), Markup.Timing_Properties(timing)) => Some((name, timing))
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   110
            case _ => None
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   111
          }
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   112
        case _ => None
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   113
      }
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   114
  }
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   115
9953ae603a23 provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents: 66717
diff changeset
   116
39441
4110cc1b8f9f allow embedded reports in regular prover messages, to avoid side-effects for errors for example;
wenzelm
parents: 39439
diff changeset
   117
  /* result messages */
39439
1c294d150ded eliminated markup "location" in favour of more explicit "no_report", which is actually deleted from messages;
wenzelm
parents: 39181
diff changeset
   118
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   119
  def is_result(msg: XML.Tree): Boolean =
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   120
    msg match {
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   121
      case XML.Elem(Markup(Markup.RESULT, _), _) => true
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   122
      case _ => false
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   123
    }
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   124
50157
76efdb6daab2 tuned whitespace;
wenzelm
parents: 50128
diff changeset
   125
  def is_tracing(msg: XML.Tree): Boolean =
39622
53365ba766ac Command.accumulate: refrain from adding tracing messages to markup tree -- potential scalability problem;
wenzelm
parents: 39511
diff changeset
   126
    msg match {
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50157
diff changeset
   127
      case XML.Elem(Markup(Markup.TRACING, _), _) => true
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50157
diff changeset
   128
      case XML.Elem(Markup(Markup.TRACING_MESSAGE, _), _) => true
39622
53365ba766ac Command.accumulate: refrain from adding tracing messages to markup tree -- potential scalability problem;
wenzelm
parents: 39511
diff changeset
   129
      case _ => false
53365ba766ac Command.accumulate: refrain from adding tracing messages to markup tree -- potential scalability problem;
wenzelm
parents: 39511
diff changeset
   130
    }
53365ba766ac Command.accumulate: refrain from adding tracing messages to markup tree -- potential scalability problem;
wenzelm
parents: 39511
diff changeset
   131
59184
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   132
  def is_state(msg: XML.Tree): Boolean =
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   133
    msg match {
59184
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   134
      case XML.Elem(Markup(Markup.STATE, _), _) => true
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   135
      case XML.Elem(Markup(Markup.STATE_MESSAGE, _), _) => true
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   136
      case _ => false
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   137
    }
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   138
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   139
  def is_information(msg: XML.Tree): Boolean =
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   140
    msg match {
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   141
      case XML.Elem(Markup(Markup.INFORMATION, _), _) => true
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59085
diff changeset
   142
      case XML.Elem(Markup(Markup.INFORMATION_MESSAGE, _), _) => true
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   143
      case _ => false
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   144
    }
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   145
67923
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   146
  def is_writeln(msg: XML.Tree): Boolean =
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   147
    msg match {
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   148
      case XML.Elem(Markup(Markup.WRITELN, _), _) => true
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   149
      case XML.Elem(Markup(Markup.WRITELN_MESSAGE, _), _) => true
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   150
      case _ => false
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   151
    }
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   152
39511
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   153
  def is_warning(msg: XML.Tree): Boolean =
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   154
    msg match {
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50157
diff changeset
   155
      case XML.Elem(Markup(Markup.WARNING, _), _) => true
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50157
diff changeset
   156
      case XML.Elem(Markup(Markup.WARNING_MESSAGE, _), _) => true
39511
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   157
      case _ => false
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   158
    }
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   159
59203
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59184
diff changeset
   160
  def is_legacy(msg: XML.Tree): Boolean =
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59184
diff changeset
   161
    msg match {
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59184
diff changeset
   162
      case XML.Elem(Markup(Markup.LEGACY, _), _) => true
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59184
diff changeset
   163
      case XML.Elem(Markup(Markup.LEGACY_MESSAGE, _), _) => true
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59184
diff changeset
   164
      case _ => false
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59184
diff changeset
   165
    }
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59184
diff changeset
   166
39511
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   167
  def is_error(msg: XML.Tree): Boolean =
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   168
    msg match {
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50157
diff changeset
   169
      case XML.Elem(Markup(Markup.ERROR, _), _) => true
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50157
diff changeset
   170
      case XML.Elem(Markup(Markup.ERROR_MESSAGE, _), _) => true
39511
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   171
      case _ => false
5f318522e6fe some specific message classification;
wenzelm
parents: 39441
diff changeset
   172
    }
38887
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38581
diff changeset
   173
56495
0b9334adcf05 more explicit message discrimination;
wenzelm
parents: 56474
diff changeset
   174
  def is_inlined(msg: XML.Tree): Boolean =
0b9334adcf05 more explicit message discrimination;
wenzelm
parents: 56474
diff changeset
   175
    !(is_result(msg) || is_tracing(msg) || is_state(msg))
0b9334adcf05 more explicit message discrimination;
wenzelm
parents: 56474
diff changeset
   176
67923
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   177
  def is_exported(msg: XML.Tree): Boolean =
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   178
    is_writeln(msg) || is_warning(msg) || is_legacy(msg) || is_error(msg)
3e072441c96a clarified exported messages, e.g. suppress "information", "tracing";
wenzelm
parents: 67915
diff changeset
   179
72874
2206502637e4 clarified types;
wenzelm
parents: 72764
diff changeset
   180
  def message_text(elem: XML.Elem,
72875
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   181
    heading: Boolean = false,
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   182
    pos: Position.T = Position.none,
71649
2acdbb6ee521 pretty formatting as in Isabelle/ML;
wenzelm
parents: 71647
diff changeset
   183
    margin: Double = Pretty.default_margin,
2acdbb6ee521 pretty formatting as in Isabelle/ML;
wenzelm
parents: 71647
diff changeset
   184
    breakgain: Double = Pretty.default_breakgain,
2acdbb6ee521 pretty formatting as in Isabelle/ML;
wenzelm
parents: 71647
diff changeset
   185
    metric: Pretty.Metric = Pretty.Default_Metric): String =
71165
03afc8252225 support for output messages;
wenzelm
parents: 70715
diff changeset
   186
  {
72875
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   187
    val text1 =
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   188
      if (heading) {
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   189
        val h =
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   190
          if (is_warning(elem) || is_legacy(elem)) "Warning"
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   191
          else if (is_error(elem)) "Error"
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   192
          else if (is_information(elem)) "Information"
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   193
          else if (is_tracing(elem)) "Tracing"
72878
80465b791f95 clarified messages;
wenzelm
parents: 72877
diff changeset
   194
          else if (is_state(elem)) "State"
72875
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   195
          else "Output"
72877
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   196
        "\n" + h + Position.here(pos) + ":\n"
72875
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   197
      }
847c6fb05a21 clarified messages;
wenzelm
parents: 72874
diff changeset
   198
      else ""
72877
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   199
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   200
    val body =
72874
2206502637e4 clarified types;
wenzelm
parents: 72764
diff changeset
   201
      Pretty.string_of(Protocol_Message.expose_no_reports(List(elem)),
71649
2acdbb6ee521 pretty formatting as in Isabelle/ML;
wenzelm
parents: 71647
diff changeset
   202
        margin = margin, breakgain = breakgain, metric = metric)
2acdbb6ee521 pretty formatting as in Isabelle/ML;
wenzelm
parents: 71647
diff changeset
   203
72877
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   204
    val text2 =
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   205
      if (is_warning(elem) || is_legacy(elem)) Output.warning_prefix(body)
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   206
      else if (is_error(elem)) Output.error_prefix(body)
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   207
      else body
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   208
313c281766cd clarified messages;
wenzelm
parents: 72875
diff changeset
   209
    text1 + text2
71165
03afc8252225 support for output messages;
wenzelm
parents: 70715
diff changeset
   210
  }
03afc8252225 support for output messages;
wenzelm
parents: 70715
diff changeset
   211
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   212
73835
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   213
  /* ML profiling */
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   214
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   215
  object ML_Profiling
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   216
  {
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   217
    def unapply(msg: XML.Tree): Option[isabelle.ML_Profiling.Report] =
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   218
      msg match {
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   219
        case XML.Elem(_, List(tree)) if is_warning(msg) =>
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   220
          Markup.ML_Profiling.unapply_report(tree)
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   221
        case _ => None
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   222
      }
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   223
  }
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   224
5dae03d50db1 more formal ML profiling messages;
wenzelm
parents: 73340
diff changeset
   225
71624
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   226
  /* export */
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   227
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   228
  object Export
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   229
  {
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   230
    sealed case class Args(
72692
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
   231
      id: Option[String] = None,
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
   232
      serial: Long = 0L,
71624
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   233
      theory_name: String,
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   234
      name: String,
72692
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
   235
      executable: Boolean = false,
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
   236
      compress: Boolean = true,
22aeec526ffd support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents: 72637
diff changeset
   237
      strict: Boolean = true)
71624
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   238
    {
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   239
      def compound_name: String = isabelle.Export.compound_name(theory_name, name)
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   240
    }
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   241
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   242
    def unapply(props: Properties.T): Option[Args] =
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   243
      props match {
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   244
        case
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   245
          List(
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   246
            (Markup.FUNCTION, Markup.EXPORT),
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   247
            (Markup.ID, id),
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   248
            (Markup.SERIAL, Value.Long(serial)),
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   249
            (Markup.THEORY_NAME, theory_name),
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   250
            (Markup.NAME, name),
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   251
            (Markup.EXECUTABLE, Value.Boolean(executable)),
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   252
            (Markup.COMPRESS, Value.Boolean(compress)),
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   253
            (Markup.STRICT, Value.Boolean(strict))) =>
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   254
          Some(Args(proper_string(id), serial, theory_name, name, executable, compress, strict))
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   255
        case _ => None
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   256
      }
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   257
  }
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   258
f0499449e149 clarified modules;
wenzelm
parents: 71601
diff changeset
   259
60882
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   260
  /* breakpoints */
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   261
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   262
  object ML_Breakpoint
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   263
  {
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   264
    def unapply(tree: XML.Tree): Option[Long] =
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   265
    tree match {
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   266
      case XML.Elem(Markup(Markup.ML_BREAKPOINT, Markup.Serial(breakpoint)), _) => Some(breakpoint)
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   267
      case _ => None
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   268
    }
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   269
  }
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   270
45bfd18835f1 tuned signature;
wenzelm
parents: 60879
diff changeset
   271
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   272
  /* dialogs */
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   273
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   274
  object Dialog_Args
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   275
  {
52531
21f8e0e151f5 tuned signature;
wenzelm
parents: 52530
diff changeset
   276
    def unapply(props: Properties.T): Option[(Document_ID.Generic, Long, String)] =
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   277
      (props, props, props) match {
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   278
        case (Position.Id(id), Markup.Serial(serial), Markup.Result(result)) =>
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   279
          Some((id, serial, result))
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   280
        case _ => None
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   281
      }
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   282
  }
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   283
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   284
  object Dialog
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   285
  {
52531
21f8e0e151f5 tuned signature;
wenzelm
parents: 52530
diff changeset
   286
    def unapply(tree: XML.Tree): Option[(Document_ID.Generic, Long, String)] =
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   287
      tree match {
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   288
        case XML.Elem(Markup(Markup.DIALOG, Dialog_Args(id, serial, result)), _) =>
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   289
          Some((id, serial, result))
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   290
        case _ => None
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   291
      }
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   292
  }
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   293
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   294
  object Dialog_Result
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   295
  {
52531
21f8e0e151f5 tuned signature;
wenzelm
parents: 52530
diff changeset
   296
    def apply(id: Document_ID.Generic, serial: Long, result: String): XML.Elem =
50501
6f41f1646617 more careful handling of Dialog_Result, with active area and color feedback;
wenzelm
parents: 50500
diff changeset
   297
    {
6f41f1646617 more careful handling of Dialog_Result, with active area and color feedback;
wenzelm
parents: 50500
diff changeset
   298
      val props = Position.Id(id) ::: Markup.Serial(serial)
6f41f1646617 more careful handling of Dialog_Result, with active area and color feedback;
wenzelm
parents: 50500
diff changeset
   299
      XML.Elem(Markup(Markup.RESULT, props), List(XML.Text(result)))
6f41f1646617 more careful handling of Dialog_Result, with active area and color feedback;
wenzelm
parents: 50500
diff changeset
   300
    }
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   301
50501
6f41f1646617 more careful handling of Dialog_Result, with active area and color feedback;
wenzelm
parents: 50500
diff changeset
   302
    def unapply(tree: XML.Tree): Option[String] =
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   303
      tree match {
50501
6f41f1646617 more careful handling of Dialog_Result, with active area and color feedback;
wenzelm
parents: 50500
diff changeset
   304
        case XML.Elem(Markup(Markup.RESULT, _), List(XML.Text(result))) => Some(result)
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   305
        case _ => None
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   306
      }
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50498
diff changeset
   307
  }
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   308
}
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   309
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   310
57916
2c2c24dbf0a4 generic process wrapping in Prover;
wenzelm
parents: 57911
diff changeset
   311
trait Protocol
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   312
{
57916
2c2c24dbf0a4 generic process wrapping in Prover;
wenzelm
parents: 57911
diff changeset
   313
  /* protocol commands */
2c2c24dbf0a4 generic process wrapping in Prover;
wenzelm
parents: 57911
diff changeset
   314
70661
9c4809ec28ef tuned signature;
wenzelm
parents: 70638
diff changeset
   315
  def protocol_command_raw(name: String, args: List[Bytes]): Unit
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72946
diff changeset
   316
  def protocol_command_args(name: String, args: List[String]): Unit
57916
2c2c24dbf0a4 generic process wrapping in Prover;
wenzelm
parents: 57911
diff changeset
   317
  def protocol_command(name: String, args: String*): Unit
2c2c24dbf0a4 generic process wrapping in Prover;
wenzelm
parents: 57911
diff changeset
   318
2c2c24dbf0a4 generic process wrapping in Prover;
wenzelm
parents: 57911
diff changeset
   319
56387
d92eb5c3960d more general prover operations;
wenzelm
parents: 56372
diff changeset
   320
  /* options */
d92eb5c3960d more general prover operations;
wenzelm
parents: 56372
diff changeset
   321
d92eb5c3960d more general prover operations;
wenzelm
parents: 56372
diff changeset
   322
  def options(opts: Options): Unit =
65345
2fdd4431b30e clarified YXML vs. symbol encoding: operate on whole message;
wenzelm
parents: 65313
diff changeset
   323
    protocol_command("Prover.options", Symbol.encode_yxml(opts.encode))
56387
d92eb5c3960d more general prover operations;
wenzelm
parents: 56372
diff changeset
   324
d92eb5c3960d more general prover operations;
wenzelm
parents: 56372
diff changeset
   325
72637
fd68c9c1b90b more uniform Resources.init_session via YXML;
wenzelm
parents: 72625
diff changeset
   326
  /* resources */
67493
c4e9e0c50487 treat sessions as entities with defining position;
wenzelm
parents: 67471
diff changeset
   327
72637
fd68c9c1b90b more uniform Resources.init_session via YXML;
wenzelm
parents: 72625
diff changeset
   328
  def init_session(resources: Resources): Unit =
fd68c9c1b90b more uniform Resources.init_session via YXML;
wenzelm
parents: 72625
diff changeset
   329
    protocol_command("Prover.init_session", resources.init_session_yxml)
65470
a0f49174dbeb global session_base for PIDE interaction;
wenzelm
parents: 65445
diff changeset
   330
a0f49174dbeb global session_base for PIDE interaction;
wenzelm
parents: 65445
diff changeset
   331
56387
d92eb5c3960d more general prover operations;
wenzelm
parents: 56372
diff changeset
   332
  /* interned items */
54519
5fed81762406 maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents: 54515
diff changeset
   333
56335
8953d4cc060a store blob content within document node: aux. files that were once open are made persistent;
wenzelm
parents: 56306
diff changeset
   334
  def define_blob(digest: SHA1.Digest, bytes: Bytes): Unit =
70661
9c4809ec28ef tuned signature;
wenzelm
parents: 70638
diff changeset
   335
    protocol_command_raw("Document.define_blob", List(Bytes(digest.toString), bytes))
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   336
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   337
  private def encode_command(resources: Resources, command: Command)
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   338
    : (String, String, String, String, String, List[String]) =
54519
5fed81762406 maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents: 54515
diff changeset
   339
  {
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   340
    import XML.Encode._
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   341
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   342
    val parents = command.theory_parents(resources).map(name => File.standard_url(name.node))
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   343
    val parents_yxml = Symbol.encode_yxml(list(string)(parents))
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   344
54519
5fed81762406 maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents: 54515
diff changeset
   345
    val blobs_yxml =
61376
93224745477f output HTML text according to Isabelle/Scala Symbol.Interpretation;
wenzelm
parents: 60992
diff changeset
   346
    {
72745
5a6f7212fc4d more explicit types;
wenzelm
parents: 72692
diff changeset
   347
      val encode_blob: T[Exn.Result[Command.Blob]] =
54519
5fed81762406 maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents: 54515
diff changeset
   348
        variant(List(
72747
5f9d66155081 clarified theory keywords: loaded_files are determined statically in Scala, but ML needs to do it semantically;
wenzelm
parents: 72745
diff changeset
   349
          { case Exn.Res(Command.Blob(a, b, c)) =>
5f9d66155081 clarified theory keywords: loaded_files are determined statically in Scala, but ML needs to do it semantically;
wenzelm
parents: 72745
diff changeset
   350
              (Nil, triple(string, string, option(string))(
5f9d66155081 clarified theory keywords: loaded_files are determined statically in Scala, but ML needs to do it semantically;
wenzelm
parents: 72745
diff changeset
   351
                (a.node, b.implode, c.map(p => p._1.toString)))) },
65345
2fdd4431b30e clarified YXML vs. symbol encoding: operate on whole message;
wenzelm
parents: 65313
diff changeset
   352
          { case Exn.Exn(e) => (Nil, string(Exn.message(e))) }))
59085
08a6901eb035 clarified define_command: send tokens more directly, without requiring keywords in ML;
wenzelm
parents: 58015
diff changeset
   353
65345
2fdd4431b30e clarified YXML vs. symbol encoding: operate on whole message;
wenzelm
parents: 65313
diff changeset
   354
      Symbol.encode_yxml(pair(list(encode_blob), int)(command.blobs, command.blobs_index))
54519
5fed81762406 maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents: 54515
diff changeset
   355
    }
59085
08a6901eb035 clarified define_command: send tokens more directly, without requiring keywords in ML;
wenzelm
parents: 58015
diff changeset
   356
08a6901eb035 clarified define_command: send tokens more directly, without requiring keywords in ML;
wenzelm
parents: 58015
diff changeset
   357
    val toks_yxml =
61376
93224745477f output HTML text according to Isabelle/Scala Symbol.Interpretation;
wenzelm
parents: 60992
diff changeset
   358
    {
64616
wenzelm
parents: 63805
diff changeset
   359
      val encode_tok: T[Token] = (tok => pair(int, int)((tok.kind.id, Symbol.length(tok.source))))
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   360
      Symbol.encode_yxml(list(encode_tok)(command.span.content))
59085
08a6901eb035 clarified define_command: send tokens more directly, without requiring keywords in ML;
wenzelm
parents: 58015
diff changeset
   361
    }
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   362
    val toks_sources = command.span.content.map(tok => Symbol.encode(tok.source))
59085
08a6901eb035 clarified define_command: send tokens more directly, without requiring keywords in ML;
wenzelm
parents: 58015
diff changeset
   363
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   364
    (Document_ID(command.id), Symbol.encode(command.span.name), parents_yxml,
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   365
      blobs_yxml, toks_yxml, toks_sources)
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   366
  }
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   367
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72946
diff changeset
   368
  def define_command(resources: Resources, command: Command): Unit =
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   369
  {
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   370
    val (command_id, name, parents_yxml, blobs_yxml, toks_yxml, toks_sources) =
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   371
      encode_command(resources, command)
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   372
    protocol_command_args(
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   373
      "Document.define_command", command_id :: name :: parents_yxml :: blobs_yxml ::
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   374
        toks_yxml :: toks_sources)
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   375
  }
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   376
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72946
diff changeset
   377
  def define_commands(resources: Resources, commands: List[Command]): Unit =
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   378
  {
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   379
    protocol_command_args("Document.define_commands",
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   380
      commands.map(command =>
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   381
      {
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   382
        import XML.Encode._
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   383
        val (command_id, name, parents_yxml, blobs_yxml, toks_yxml, toks_sources) =
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   384
          encode_command(resources, command)
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   385
        val body =
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   386
          pair(string, pair(string, pair(string, pair(string, pair(string, list(string))))))(
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   387
            command_id, (name, (parents_yxml, (blobs_yxml, (toks_yxml, toks_sources)))))
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   388
        YXML.string_of_body(body)
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   389
      }))
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   390
  }
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   391
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72946
diff changeset
   392
  def define_commands_bulk(resources: Resources, commands: List[Command]): Unit =
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   393
  {
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   394
    val (irregular, regular) = commands.partition(command => YXML.detect(command.source))
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   395
    irregular.foreach(define_command(resources, _))
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   396
    regular match {
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   397
      case Nil =>
72946
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   398
      case List(command) => define_command(resources, command)
9329abcdd651 improved markup for theory header imports;
wenzelm
parents: 72878
diff changeset
   399
      case _ => define_commands(resources, regular)
70664
2bd9e30183b1 prefer define_commands_bulk: fewer protocol messages;
wenzelm
parents: 70661
diff changeset
   400
    }
54519
5fed81762406 maintain blobs within document state: digest + text in ML, digest-only in Scala;
wenzelm
parents: 54515
diff changeset
   401
  }
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   402
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   403
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   404
  /* execution */
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   405
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   406
  def discontinue_execution(): Unit =
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   407
    protocol_command("Document.discontinue_execution")
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   408
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   409
  def cancel_exec(id: Document_ID.Exec): Unit =
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   410
    protocol_command("Document.cancel_exec", Document_ID(id))
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   411
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   412
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   413
  /* document versions */
47343
b8aeab386414 less aggressive discontinue_execution before document update, to avoid unstable execs that need to be re-assigned;
wenzelm
parents: 46938
diff changeset
   414
52530
99dd8b4ef3fe explicit module Document_ID as source of globally unique identifiers across ML/Scala;
wenzelm
parents: 52527
diff changeset
   415
  def update(old_id: Document_ID.Version, new_id: Document_ID.Version,
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72946
diff changeset
   416
    edits: List[Document.Edit_Command], consolidate: List[Document.Node.Name]): Unit =
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   417
  {
69849
09f200c658ed more scalable on 32-bit Poly/ML;
wenzelm
parents: 69846
diff changeset
   418
    val consolidate_yxml =
09f200c658ed more scalable on 32-bit Poly/ML;
wenzelm
parents: 69846
diff changeset
   419
    {
09f200c658ed more scalable on 32-bit Poly/ML;
wenzelm
parents: 69846
diff changeset
   420
      import XML.Encode._
09f200c658ed more scalable on 32-bit Poly/ML;
wenzelm
parents: 69846
diff changeset
   421
      Symbol.encode_yxml(list(string)(consolidate.map(_.node)))
09f200c658ed more scalable on 32-bit Poly/ML;
wenzelm
parents: 69846
diff changeset
   422
    }
44157
a21d3e1e64fd uniform treatment of header edits as document edits;
wenzelm
parents: 44156
diff changeset
   423
    val edits_yxml =
61376
93224745477f output HTML text according to Isabelle/Scala Symbol.Interpretation;
wenzelm
parents: 60992
diff changeset
   424
    {
93224745477f output HTML text according to Isabelle/Scala Symbol.Interpretation;
wenzelm
parents: 60992
diff changeset
   425
      import XML.Encode._
44383
f99906c2a1d3 discontinued redundant Edit_Command_ID;
wenzelm
parents: 44185
diff changeset
   426
      def id: T[Command] = (cmd => long(cmd.id))
46737
09ab89658a5d clarified module Thy_Load;
wenzelm
parents: 46688
diff changeset
   427
      def encode_edit(name: Document.Node.Name)
52849
199e9fa5a5c2 maintain overlays within node perspective;
wenzelm
parents: 52808
diff changeset
   428
          : T[Document.Node.Edit[Command.Edit, Command.Perspective]] =
44979
68b990e950b1 explicit master_dir as part of header -- still required (for Cygwin) since Scala layer does not pass file content yet;
wenzelm
parents: 44866
diff changeset
   429
        variant(List(
68b990e950b1 explicit master_dir as part of header -- still required (for Cygwin) since Scala layer does not pass file content yet;
wenzelm
parents: 44866
diff changeset
   430
          { case Document.Node.Edits(a) => (Nil, list(pair(option(id), option(id)))(a)) },
48707
ba531af91148 simplified Document.Node.Header -- internalized errors;
wenzelm
parents: 48705
diff changeset
   431
          { case Document.Node.Deps(header) =>
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60882
diff changeset
   432
              val master_dir = File.standard_url(name.master_dir)
70638
f164cec7ac22 clarified signature: prefer operations without position;
wenzelm
parents: 70284
diff changeset
   433
              val imports = header.imports.map(_.node)
72764
722c0d02ffab clarified signature;
wenzelm
parents: 72747
diff changeset
   434
              val keywords = header.keywords.map({ case (a, spec) => (a, (spec.kind, spec.tags)) })
44979
68b990e950b1 explicit master_dir as part of header -- still required (for Cygwin) since Scala layer does not pass file content yet;
wenzelm
parents: 44866
diff changeset
   435
              (Nil,
72747
5f9d66155081 clarified theory keywords: loaded_files are determined statically in Scala, but ML needs to do it semantically;
wenzelm
parents: 72745
diff changeset
   436
                pair(string, pair(string, pair(list(string),
5f9d66155081 clarified theory keywords: loaded_files are determined statically in Scala, but ML needs to do it semantically;
wenzelm
parents: 72745
diff changeset
   437
                  pair(list(pair(string, pair(string, list(string)))), list(string)))))(
65445
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65439
diff changeset
   438
                (master_dir, (name.theory, (imports, (keywords, header.errors)))))) },
52849
199e9fa5a5c2 maintain overlays within node perspective;
wenzelm
parents: 52808
diff changeset
   439
          { case Document.Node.Perspective(a, b, c) =>
199e9fa5a5c2 maintain overlays within node perspective;
wenzelm
parents: 52808
diff changeset
   440
              (bool_atom(a) :: b.commands.map(cmd => long_atom(cmd.id)),
65345
2fdd4431b30e clarified YXML vs. symbol encoding: operate on whole message;
wenzelm
parents: 65313
diff changeset
   441
                list(pair(id, pair(string, list(string))))(c.dest)) }))
69849
09f200c658ed more scalable on 32-bit Poly/ML;
wenzelm
parents: 69846
diff changeset
   442
      edits.map({ case (name, edit) =>
09f200c658ed more scalable on 32-bit Poly/ML;
wenzelm
parents: 69846
diff changeset
   443
        Symbol.encode_yxml(pair(string, encode_edit(name))(name.node, edit)) })
68381
2fd3a6d6ba2e less wasteful consolidation, based on PIDE front-end state and recent changes;
wenzelm
parents: 68336
diff changeset
   444
    }
70661
9c4809ec28ef tuned signature;
wenzelm
parents: 70638
diff changeset
   445
    protocol_command_args("Document.update",
9c4809ec28ef tuned signature;
wenzelm
parents: 70638
diff changeset
   446
      Document_ID(old_id) :: Document_ID(new_id) :: consolidate_yxml :: edits_yxml)
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   447
  }
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43731
diff changeset
   448
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72946
diff changeset
   449
  def remove_versions(versions: List[Document.Version]): Unit =
44673
2fa51ac191bc Document.remove_versions on ML side;
wenzelm
parents: 44661
diff changeset
   450
  {
2fa51ac191bc Document.remove_versions on ML side;
wenzelm
parents: 44661
diff changeset
   451
    val versions_yxml =
59364
3b5da177ae6b clarified build_theories;
wenzelm
parents: 59362
diff changeset
   452
    { import XML.Encode._
65345
2fdd4431b30e clarified YXML vs. symbol encoding: operate on whole message;
wenzelm
parents: 65313
diff changeset
   453
      Symbol.encode_yxml(list(long)(versions.map(_.id))) }
52582
31467a4b1466 tuned signature;
wenzelm
parents: 52563
diff changeset
   454
    protocol_command("Document.remove_versions", versions_yxml)
44673
2fa51ac191bc Document.remove_versions on ML side;
wenzelm
parents: 44661
diff changeset
   455
  }
2fa51ac191bc Document.remove_versions on ML side;
wenzelm
parents: 44661
diff changeset
   456
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43731
diff changeset
   457
50498
6647ba2775c1 support dialog via document content;
wenzelm
parents: 50450
diff changeset
   458
  /* dialog via document content */
6647ba2775c1 support dialog via document content;
wenzelm
parents: 50450
diff changeset
   459
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52862
diff changeset
   460
  def dialog_result(serial: Long, result: String): Unit =
63805
c272680df665 clarified modules;
wenzelm
parents: 63579
diff changeset
   461
    protocol_command("Document.dialog_result", Value.Long(serial), result)
38412
c23f3abbf42d moved isar_document.ML/scala to Pure/System/ -- side-by-side with isar.ML;
wenzelm
parents:
diff changeset
   462
}