src/Tools/jEdit/src/prover/Prover.scala
author wenzelm
Mon, 29 Dec 2008 21:01:55 +0100
changeset 34458 e2aa32bb73c0
parent 34456 14367c0715e8
child 34459 b08299e7bbe6
permissions -rw-r--r--
- renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
34407
aad6834ba380 added some headers and comments;
wenzelm
parents: 34404
diff changeset
     1
/*
aad6834ba380 added some headers and comments;
wenzelm
parents: 34404
diff changeset
     2
 * Higher-level prover communication
aad6834ba380 added some headers and comments;
wenzelm
parents: 34404
diff changeset
     3
 *
aad6834ba380 added some headers and comments;
wenzelm
parents: 34404
diff changeset
     4
 * @author Johannes Hölzl, TU Munich
aad6834ba380 added some headers and comments;
wenzelm
parents: 34404
diff changeset
     5
 * @author Fabian Immler, TU Munich
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
     6
 * @author Makarius
34407
aad6834ba380 added some headers and comments;
wenzelm
parents: 34404
diff changeset
     7
 */
aad6834ba380 added some headers and comments;
wenzelm
parents: 34404
diff changeset
     8
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
     9
package isabelle.prover
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    10
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    11
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    12
import java.util.Properties
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    13
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    14
import scala.collection.mutable.{HashMap, HashSet}
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    15
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    16
import org.gjt.sp.util.Log
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    17
34443
f2e13329cc49 dynamic instances Isabelle.system, Isabelle.symbols;
wenzelm
parents: 34410
diff changeset
    18
import isabelle.proofdocument.{ProofDocument, Text, Token}
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    19
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    20
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    21
class Prover(isabelle_system: IsabelleSystem, isabelle_symbols: Symbol.Interpretation)
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    22
{
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    23
  private var _logic = isabelle_system.getenv_strict("ISABELLE_LOGIC")
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    24
  private var process: Isar = null
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    25
  private var commands = new HashMap[String, Command]
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    26
34399
5b8b89b7e597 interpretation of STATUS messages in one place, deleting inner syntax
immler@in.tum.de
parents: 34397
diff changeset
    27
  val command_decls = new HashSet[String]
5b8b89b7e597 interpretation of STATUS messages in one place, deleting inner syntax
immler@in.tum.de
parents: 34397
diff changeset
    28
  val keyword_decls = new HashSet[String]
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    29
  private var initialized = false
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    30
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    31
  val activated = new EventBus[Unit]
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    32
  val command_info = new EventBus[Command]
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    33
  val output_info = new EventBus[String]
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    34
  var document: Document = null
34399
5b8b89b7e597 interpretation of STATUS messages in one place, deleting inner syntax
immler@in.tum.de
parents: 34397
diff changeset
    35
34444
a245f6cc3105 replaced inUIThread by scala-style swing/swing_async combinators;
wenzelm
parents: 34443
diff changeset
    36
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    37
  def command_change(c: Command) = Swing.now { command_info.event(c) }
34399
5b8b89b7e597 interpretation of STATUS messages in one place, deleting inner syntax
immler@in.tum.de
parents: 34397
diff changeset
    38
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    39
  private def handle_result(r: IsabelleProcess.Result) = {
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    40
    val id = if (r.props != null) r.props.getProperty(Markup.ID) else null
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    41
    val st = if (id != null) commands.getOrElse(id, null) else null
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    42
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    43
    if (r.kind == IsabelleProcess.Kind.STDOUT || r.kind == IsabelleProcess.Kind.STDIN)
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    44
      Swing.now { output_info.event(r.result) }
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    45
    else if (r.kind == IsabelleProcess.Kind.WRITELN && !initialized) {
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    46
      initialized = true
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    47
      Swing.now {
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    48
        if (document != null) {
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    49
          document.activate()
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    50
          activated.event(())
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    51
        }
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    52
      }
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    53
    }
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    54
    else {
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    55
      val tree = YXML.parse_failsafe(isabelle_symbols.decode(r.result))
34458
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
    56
      if (st == null || (st.status != Command.Status.REMOVED && st.status != Command.Status.REMOVE)) {
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    57
        r.kind match {
34404
98155c35d252 delayed repainting new phase in buffer and overview;
immler@in.tum.de
parents: 34401
diff changeset
    58
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    59
          case IsabelleProcess.Kind.STATUS =>
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    60
            //{{{ handle all kinds of status messages here
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    61
            tree match {
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    62
              case XML.Elem(Markup.MESSAGE, _, elems) =>
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    63
                for (elem <- elems) {
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    64
                  elem match {
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    65
                    //{{{
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    66
                    // command status
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    67
                    case XML.Elem(Markup.FINISHED, _, _) =>
34458
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
    68
                      st.status = Command.Status.FINISHED
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    69
                      command_change(st)
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    70
                    case XML.Elem(Markup.UNPROCESSED, _, _) =>
34458
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
    71
                      st.status = Command.Status.UNPROCESSED
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    72
                      command_change(st)
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    73
                    case XML.Elem(Markup.FAILED, _, _) =>
34458
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
    74
                      st.status = Command.Status.FAILED
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    75
                      command_change(st)
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    76
                    case XML.Elem(Markup.DISPOSED, _, _) =>
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    77
                      document.prover.commands.removeKey(st.id)
34458
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
    78
                      st.status = Command.Status.REMOVED
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    79
                      command_change(st)
34399
5b8b89b7e597 interpretation of STATUS messages in one place, deleting inner syntax
immler@in.tum.de
parents: 34397
diff changeset
    80
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    81
                    // command and keyword declarations
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    82
                    case XML.Elem(Markup.COMMAND_DECL, (Markup.NAME, name) :: _, _) =>
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    83
                      command_decls += name
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    84
                    case XML.Elem(Markup.KEYWORD_DECL, (Markup.NAME, name) :: _, _) =>
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
    85
                      keyword_decls += name
34404
98155c35d252 delayed repainting new phase in buffer and overview;
immler@in.tum.de
parents: 34401
diff changeset
    86
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    87
                    // other markup
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    88
                    case XML.Elem(kind,
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    89
                        (Markup.OFFSET, offset) :: (Markup.END_OFFSET, end_offset) ::
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    90
                             (Markup.ID, markup_id) :: _, _) =>
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    91
                      val begin = Int.unbox(java.lang.Integer.valueOf(offset)) - 1
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    92
                      val end = Int.unbox(java.lang.Integer.valueOf(end_offset)) - 1
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    93
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    94
                      val command =
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    95
                        // outer syntax: no id in props
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    96
                        if (st == null) commands.getOrElse(markup_id, null)
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    97
                        // inner syntax: id from props
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    98
                        else st
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
    99
                      command.root_node.insert(command.node_from(kind, begin, end))
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   100
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   101
                    case _ =>
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   102
                    //}}}
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   103
                  }
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   104
                }
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   105
              case _ =>
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   106
            }
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   107
            //}}}
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   108
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   109
          case IsabelleProcess.Kind.ERROR if st != null =>
34458
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
   110
            if (st.status != Command.Status.REMOVED && st.status != Command.Status.REMOVE)
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
   111
              st.status = Command.Status.FAILED
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   112
            st.add_result(tree)
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   113
            command_change(st)
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   114
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   115
          case IsabelleProcess.Kind.WRITELN | IsabelleProcess.Kind.PRIORITY
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   116
            | IsabelleProcess.Kind.WARNING if st != null =>
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   117
            st.add_result(tree)
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   118
            command_change(st)
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   119
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   120
          case _ =>
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   121
        }
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   122
      }
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   123
    }
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   124
  }
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   125
34370
e0679b361a0e register to buffer all messages
immler@in.tum.de
parents: 34359
diff changeset
   126
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   127
  def start(logic: String) {
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   128
    if (logic != null) _logic = logic
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   129
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   130
    val results = new EventBus[IsabelleProcess.Result]
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   131
    results += handle_result
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   132
    results.logger = Log.log(Log.ERROR, null, _)
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   133
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   134
    process = new Isar(isabelle_system, results, "-m", "xsymbols", _logic)
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   135
  }
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   136
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   137
  def stop() {
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   138
    process.kill
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   139
  }
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   140
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   141
  def set_document(text: Text, path: String) {
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   142
    this.document = new Document(text, this)
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   143
    process.ML("ThyLoad.add_path " + IsabelleSyntax.encode_string(path))
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   144
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   145
    document.structural_changes += (changes => {
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   146
      for (cmd <- changes.removedCommands) remove(cmd)
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   147
      for (cmd <- changes.addedCommands) send(cmd)
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   148
    })
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   149
    if (initialized) {
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   150
      document.activate()
34456
14367c0715e8 replaced EventSource by EventBus;
wenzelm
parents: 34454
diff changeset
   151
      activated.event(())
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   152
    }
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   153
  }
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   154
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   155
  private def send(cmd: Command) {
34458
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
   156
    cmd.status = Command.Status.UNPROCESSED
34451
3b9d0074ed44 command id via Isabelle.plugin;
wenzelm
parents: 34444
diff changeset
   157
    commands.put(cmd.id, cmd)
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   158
34451
3b9d0074ed44 command id via Isabelle.plugin;
wenzelm
parents: 34444
diff changeset
   159
    val props = new Properties
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   160
    props.setProperty(Markup.ID, cmd.id)
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   161
    props.setProperty(Markup.OFFSET, "1")
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   162
34443
f2e13329cc49 dynamic instances Isabelle.system, Isabelle.symbols;
wenzelm
parents: 34410
diff changeset
   163
    val content = isabelle_symbols.encode(document.getContent(cmd))
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   164
    process.create_command(props, content)
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   165
    process.insert_command(if (cmd.previous == null) "" else cmd.previous.id, cmd.id)
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   166
  }
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   167
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   168
  def remove(cmd: Command) {
34458
e2aa32bb73c0 - renamed Command.Phase to Command.Status (cf. src/Pure/Isar/isar.ML);
wenzelm
parents: 34456
diff changeset
   169
    cmd.status = Command.Status.REMOVE
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   170
    process.remove_command(cmd.id)
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   171
  }
34453
dfa99a91951b eliminated hardwired string constants;
wenzelm
parents: 34452
diff changeset
   172
}