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