src/Pure/PIDE/query_operation.scala
author wenzelm
Mon, 21 Sep 2015 15:55:29 +0200
changeset 61210 a3a05d734858
parent 61206 d5aeb401111a
child 61545 57000ac6291f
permissions -rw-r--r--
support for auto update via caret focus;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
52981
c7afd884dfb2 moved generic module to its proper place;
wenzelm
parents: 52980
diff changeset
     1
/*  Title:      Pure/PIDE/query_operation.scala
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
     3
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
     4
One-shot query operations via asynchronous print functions and temporary
52932
eb7d7c0034b5 removed command location is considered finished, and its overlay removed eventually;
wenzelm
parents: 52931
diff changeset
     5
document overlays.
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
     6
*/
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
     7
52981
c7afd884dfb2 moved generic module to its proper place;
wenzelm
parents: 52980
diff changeset
     8
package isabelle
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
     9
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    10
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    11
object Query_Operation
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    12
{
52935
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
    13
  object Status extends Enumeration
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
    14
  {
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
    15
    val WAITING = Value("waiting")
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
    16
    val RUNNING = Value("running")
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
    17
    val FINISHED = Value("finished")
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
    18
  }
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    19
}
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    20
52980
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52978
diff changeset
    21
class Query_Operation[Editor_Context](
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52978
diff changeset
    22
  editor: Editor[Editor_Context],
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52978
diff changeset
    23
  editor_context: Editor_Context,
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    24
  operation_name: String,
52935
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
    25
  consume_status: Query_Operation.Status.Value => Unit,
52932
eb7d7c0034b5 removed command location is considered finished, and its overlay removed eventually;
wenzelm
parents: 52931
diff changeset
    26
  consume_output: (Document.Snapshot, Command.Results, XML.Body) => Unit)
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    27
{
61206
d5aeb401111a more specific name to reduce danger of clash with direct uses of plain Command.print_function;
wenzelm
parents: 60893
diff changeset
    28
  private val print_function = operation_name + "_query"
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    29
  private val instance = Document_ID.make().toString
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    30
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    31
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 56715
diff changeset
    32
  /* implicit state -- owned by GUI thread */
52874
91032244e4ca query process animation;
wenzelm
parents: 52865
diff changeset
    33
56715
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
    34
  @volatile private var current_location: Option[Command] = None
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
    35
  @volatile private var current_query: List[String] = Nil
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
    36
  @volatile private var current_update_pending = false
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
    37
  @volatile private var current_output: List[XML.Tree] = Nil
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
    38
  @volatile private var current_status = Query_Operation.Status.FINISHED
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
    39
  @volatile private var current_exec_id = Document_ID.none
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    40
61210
a3a05d734858 support for auto update via caret focus;
wenzelm
parents: 61206
diff changeset
    41
  def get_location: Option[Command] = current_location
a3a05d734858 support for auto update via caret focus;
wenzelm
parents: 61206
diff changeset
    42
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    43
  private def reset_state()
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    44
  {
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    45
    current_location = None
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    46
    current_query = Nil
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    47
    current_update_pending = false
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    48
    current_output = Nil
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    49
    current_status = Query_Operation.Status.FINISHED
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
    50
    current_exec_id = Document_ID.none
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    51
  }
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    52
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    53
  private def remove_overlay()
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    54
  {
54310
6ddeb83eb67a clarified remove_overlay: always flush in order to make sure that apply_query can make a fresh start with the same arguments (see also 6e69f9ca8f1c) -- NB: print functions are idempotent;
wenzelm
parents: 53872
diff changeset
    55
    current_location match {
6ddeb83eb67a clarified remove_overlay: always flush in order to make sure that apply_query can make a fresh start with the same arguments (see also 6e69f9ca8f1c) -- NB: print functions are idempotent;
wenzelm
parents: 53872
diff changeset
    56
      case None =>
6ddeb83eb67a clarified remove_overlay: always flush in order to make sure that apply_query can make a fresh start with the same arguments (see also 6e69f9ca8f1c) -- NB: print functions are idempotent;
wenzelm
parents: 53872
diff changeset
    57
      case Some(command) =>
61206
d5aeb401111a more specific name to reduce danger of clash with direct uses of plain Command.print_function;
wenzelm
parents: 60893
diff changeset
    58
        editor.remove_overlay(command, print_function, instance :: current_query)
54310
6ddeb83eb67a clarified remove_overlay: always flush in order to make sure that apply_query can make a fresh start with the same arguments (see also 6e69f9ca8f1c) -- NB: print functions are idempotent;
wenzelm
parents: 53872
diff changeset
    59
        editor.flush()
6ddeb83eb67a clarified remove_overlay: always flush in order to make sure that apply_query can make a fresh start with the same arguments (see also 6e69f9ca8f1c) -- NB: print functions are idempotent;
wenzelm
parents: 53872
diff changeset
    60
    }
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    61
  }
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    62
52877
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
    63
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
    64
  /* content update */
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
    65
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
    66
  private def content_update()
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    67
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 56715
diff changeset
    68
    GUI_Thread.require {}
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    69
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    70
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    71
    /* snapshot */
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    72
56299
8201790fdeb9 more careful treatment of multiple command states (eval + prints): merge content that is actually required;
wenzelm
parents: 55618
diff changeset
    73
    val (snapshot, command_results, removed) =
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    74
      current_location match {
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    75
        case Some(cmd) =>
52974
908e8a36e975 tuned signature;
wenzelm
parents: 52972
diff changeset
    76
          val snapshot = editor.node_snapshot(cmd.node_name)
56299
8201790fdeb9 more careful treatment of multiple command states (eval + prints): merge content that is actually required;
wenzelm
parents: 55618
diff changeset
    77
          val command_results = snapshot.state.command_results(snapshot.version, cmd)
52932
eb7d7c0034b5 removed command location is considered finished, and its overlay removed eventually;
wenzelm
parents: 52931
diff changeset
    78
          val removed = !snapshot.version.nodes(cmd.node_name).commands.contains(cmd)
56299
8201790fdeb9 more careful treatment of multiple command states (eval + prints): merge content that is actually required;
wenzelm
parents: 55618
diff changeset
    79
          (snapshot, command_results, removed)
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    80
        case None =>
56299
8201790fdeb9 more careful treatment of multiple command states (eval + prints): merge content that is actually required;
wenzelm
parents: 55618
diff changeset
    81
          (Document.Snapshot.init, Command.Results.empty, true)
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    82
      }
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
    83
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    84
    val results =
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    85
      (for {
56372
fadb0fef09d7 more explicit iterator terminology, in accordance to Scala 2.8 library;
wenzelm
parents: 56299
diff changeset
    86
        (_, elem @ XML.Elem(Markup(Markup.RESULT, props), _)) <- command_results.iterator
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    87
        if props.contains((Markup.INSTANCE, instance))
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
    88
      } yield elem).toList
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    89
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
    90
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    91
    /* resolve sendback: static command id */
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    92
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    93
    def resolve_sendback(body: XML.Body): XML.Body =
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    94
    {
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    95
      current_location match {
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    96
        case None => body
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    97
        case Some(command) =>
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    98
          def resolve(body: XML.Body): XML.Body =
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
    99
            body map {
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   100
              case XML.Wrapped_Elem(m, b1, b2) => XML.Wrapped_Elem(m, resolve(b1), resolve(b2))
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   101
              case XML.Elem(Markup(Markup.SENDBACK, props), b) =>
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   102
                val props1 =
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   103
                  props.map({
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   104
                    case (Markup.ID, Properties.Value.Long(id)) if id == current_exec_id =>
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   105
                      (Markup.ID, Properties.Value.Long(command.id))
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   106
                    case p => p
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   107
                  })
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   108
                XML.Elem(Markup(Markup.SENDBACK, props1), resolve(b))
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   109
              case XML.Elem(m, b) => XML.Elem(m, resolve(b))
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   110
              case t => t
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   111
            }
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   112
          resolve(body)
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   113
      }
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   114
    }
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   115
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   116
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   117
    /* output */
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   118
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   119
    val new_output =
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   120
      for {
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   121
        XML.Elem(_, List(XML.Elem(markup, body))) <- results
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   122
        if Markup.messages.contains(markup.name)
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   123
        body1 = resolve_sendback(body)
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   124
      } yield XML.Elem(Markup(Markup.message(markup.name), markup.properties), body1)
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   125
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   126
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   127
    /* status */
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   128
52935
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
   129
    def get_status(name: String, status: Query_Operation.Status.Value)
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
   130
        : Option[Query_Operation.Status.Value] =
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   131
      results.collectFirst({ case XML.Elem(_, List(elem: XML.Elem)) if elem.name == name => status })
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   132
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   133
    val new_status =
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   134
      if (removed) Query_Operation.Status.FINISHED
52932
eb7d7c0034b5 removed command location is considered finished, and its overlay removed eventually;
wenzelm
parents: 52931
diff changeset
   135
      else
52935
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
   136
        get_status(Markup.FINISHED, Query_Operation.Status.FINISHED) orElse
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
   137
        get_status(Markup.RUNNING, Query_Operation.Status.RUNNING) getOrElse
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
   138
        Query_Operation.Status.WAITING
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   139
52935
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
   140
    if (new_status == Query_Operation.Status.RUNNING)
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   141
      results.collectFirst(
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   142
      {
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   143
        case XML.Elem(Markup(_, Position.Id(id)), List(elem: XML.Elem))
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   144
        if elem.name == Markup.RUNNING => id
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   145
      }).foreach(id => current_exec_id = id)
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   146
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   147
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   148
    /* state update */
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   149
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   150
    if (current_output != new_output || current_status != new_status) {
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   151
      if (snapshot.is_outdated)
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   152
        current_update_pending = true
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   153
      else {
52877
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   154
        current_update_pending = false
52932
eb7d7c0034b5 removed command location is considered finished, and its overlay removed eventually;
wenzelm
parents: 52931
diff changeset
   155
        if (current_output != new_output && !removed) {
52877
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   156
          current_output = new_output
56299
8201790fdeb9 more careful treatment of multiple command states (eval + prints): merge content that is actually required;
wenzelm
parents: 55618
diff changeset
   157
          consume_output(snapshot, command_results, new_output)
52877
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   158
        }
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   159
        if (current_status != new_status) {
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   160
          current_status = new_status
52935
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
   161
          consume_status(new_status)
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 54327
diff changeset
   162
          if (new_status == Query_Operation.Status.FINISHED)
52877
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   163
            remove_overlay()
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   164
        }
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   165
      }
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   166
    }
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   167
  }
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   168
52877
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   169
52931
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   170
  /* query operations */
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   171
ac6648c0c0fb cancel_query via direct access to the exec_id of the running query process;
wenzelm
parents: 52890
diff changeset
   172
  def cancel_query(): Unit =
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 56715
diff changeset
   173
    GUI_Thread.require { editor.session.cancel_exec(current_exec_id) }
52877
9a26ec5739dd tuned -- more explicit type Status.Value;
wenzelm
parents: 52876
diff changeset
   174
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   175
  def apply_query(query: List[String])
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   176
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 56715
diff changeset
   177
    GUI_Thread.require {}
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   178
52980
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52978
diff changeset
   179
    editor.current_node_snapshot(editor_context) match {
52978
37fbb3fde380 prefer PIDE editor operations;
wenzelm
parents: 52977
diff changeset
   180
      case Some(snapshot) =>
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   181
        remove_overlay()
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52875
diff changeset
   182
        reset_state()
52972
8fd8e1c14988 tuned signature;
wenzelm
parents: 52971
diff changeset
   183
        consume_output(Document.Snapshot.init, Command.Results.empty, Nil)
54325
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 54310
diff changeset
   184
        if (!snapshot.is_outdated) {
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 54310
diff changeset
   185
          editor.current_command(editor_context, snapshot) match {
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 54310
diff changeset
   186
            case Some(command) =>
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 54310
diff changeset
   187
              current_location = Some(command)
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 54310
diff changeset
   188
              current_query = query
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 54310
diff changeset
   189
              current_status = Query_Operation.Status.WAITING
61206
d5aeb401111a more specific name to reduce danger of clash with direct uses of plain Command.print_function;
wenzelm
parents: 60893
diff changeset
   190
              editor.insert_overlay(command, print_function, instance :: query)
54325
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 54310
diff changeset
   191
            case None =>
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 54310
diff changeset
   192
          }
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   193
        }
52935
6fc13c31c775 more abstract consume_status operation;
wenzelm
parents: 52934
diff changeset
   194
        consume_status(current_status)
52974
908e8a36e975 tuned signature;
wenzelm
parents: 52972
diff changeset
   195
        editor.flush()
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   196
      case None =>
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   197
    }
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   198
  }
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   199
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   200
  def locate_query()
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   201
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 56715
diff changeset
   202
    GUI_Thread.require {}
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   203
52980
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52978
diff changeset
   204
    for {
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52978
diff changeset
   205
      command <- current_location
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52978
diff changeset
   206
      snapshot = editor.node_snapshot(command.node_name)
60893
3c8b9b4b577c support hyperlinks with optional focus change;
wenzelm
parents: 57612
diff changeset
   207
      link <- editor.hyperlink_command(true, snapshot, command)
52980
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52978
diff changeset
   208
    } link.follow(editor_context)
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   209
  }
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   210
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   211
56715
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   212
  /* main */
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   213
56715
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   214
  private val main =
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   215
    Session.Consumer[Session.Commands_Changed](getClass.getName) {
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   216
      case changed =>
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   217
        current_location match {
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   218
          case Some(command)
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   219
          if current_update_pending ||
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   220
            (current_status != Query_Operation.Status.FINISHED &&
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   221
              changed.commands.contains(command)) =>
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 56715
diff changeset
   222
            GUI_Thread.later { content_update() }
56715
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   223
          case _ =>
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   224
        }
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   225
    }
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   226
53840
wenzelm
parents: 53000
diff changeset
   227
  def activate() {
56715
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   228
    editor.session.commands_changed += main
53840
wenzelm
parents: 53000
diff changeset
   229
  }
53000
50d06647cf24 more cleanup;
wenzelm
parents: 52981
diff changeset
   230
50d06647cf24 more cleanup;
wenzelm
parents: 52981
diff changeset
   231
  def deactivate() {
56715
52125652e82a clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents: 56662
diff changeset
   232
    editor.session.commands_changed -= main
53000
50d06647cf24 more cleanup;
wenzelm
parents: 52981
diff changeset
   233
    remove_overlay()
54327
148903e47b26 more consistent state and GUI update, e.g. relevant for full-screen mode switch with its exit/init side-effect;
wenzelm
parents: 54325
diff changeset
   234
    reset_state()
148903e47b26 more consistent state and GUI update, e.g. relevant for full-screen mode switch with its exit/init side-effect;
wenzelm
parents: 54325
diff changeset
   235
    consume_output(Document.Snapshot.init, Command.Results.empty, Nil)
148903e47b26 more consistent state and GUI update, e.g. relevant for full-screen mode switch with its exit/init side-effect;
wenzelm
parents: 54325
diff changeset
   236
    consume_status(current_status)
53000
50d06647cf24 more cleanup;
wenzelm
parents: 52981
diff changeset
   237
  }
52865
02a7e7180ee5 slightly more general support for one-shot query operations via asynchronous print functions and temporary document overlay;
wenzelm
parents:
diff changeset
   238
}