author | wenzelm |
Mon, 09 Jan 2017 20:26:59 +0100 | |
changeset 64854 | f5aa712e6250 |
parent 64839 | 842163abfc0d |
child 64856 | 5e9bf964510a |
permissions | -rw-r--r-- |
43282
5d294220ca43
moved sources -- eliminated Netbeans artifact of jedit package directory;
wenzelm
parents:
41537
diff
changeset
|
1 |
/* Title: Tools/jEdit/src/plugin.scala |
36760 | 2 |
Author: Makarius |
3 |
||
50362 | 4 |
Main plumbing for PIDE infrastructure as jEdit plugin. |
36760 | 5 |
*/ |
34407 | 6 |
|
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
7 |
package isabelle.jedit |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
8 |
|
34429 | 9 |
|
36015 | 10 |
import isabelle._ |
11 |
||
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
12 |
import javax.swing.JOptionPane |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
13 |
|
49246 | 14 |
import scala.swing.{ListView, ScrollPane} |
34406
f81cd75ae331
restructured: independent provers in different buffers
immler@in.tum.de
parents:
34337
diff
changeset
|
15 |
|
60205
9ee125c3bff7
avoid auto-load dialog while exit/closeAllBuffers is active: the perspective manager happens to indicate this precisely in jEdit 5.2.0;
wenzelm
parents:
60075
diff
changeset
|
16 |
import org.gjt.sp.jedit.{jEdit, EBMessage, EBPlugin, Buffer, View, Debug, PerspectiveManager} |
53487 | 17 |
import org.gjt.sp.jedit.gui.AboutDialog |
39043 | 18 |
import org.gjt.sp.jedit.textarea.{JEditTextArea, TextArea} |
59077
7e0d3da6e6d8
node-specific syntax, with base_syntax as default;
wenzelm
parents:
58928
diff
changeset
|
19 |
import org.gjt.sp.jedit.buffer.JEditBuffer |
50362 | 20 |
import org.gjt.sp.jedit.syntax.ModeProvider |
49100
e7aecf2a5fc4
prefer old startup dialog scheme (cf. 514bb82514df);
wenzelm
parents:
49099
diff
changeset
|
21 |
import org.gjt.sp.jedit.msg.{EditorStarted, BufferUpdate, EditPaneUpdate, PropertiesChanged} |
43443
5d9693c2337e
basic support for extended syntax styles: sub/superscript;
wenzelm
parents:
43390
diff
changeset
|
22 |
import org.gjt.sp.util.SyntaxUtilities |
62228
6dfe5b12c5b2
report error on internal channel as well: startup_failure dialog may be too late;
wenzelm
parents:
62227
diff
changeset
|
23 |
import org.gjt.sp.util.Log |
39241 | 24 |
|
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
25 |
|
50205 | 26 |
object PIDE |
34618 | 27 |
{ |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
28 |
/* plugin instance */ |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
29 |
|
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
49195
diff
changeset
|
30 |
val options = new JEdit_Options |
53337
b3817a0e3211
sort items according to persistent history of frequency of use;
wenzelm
parents:
53277
diff
changeset
|
31 |
val completion_history = new Completion.History_Variable |
56558
05c833d402bc
tuned signature -- explicit Spell_Checker_Variable;
wenzelm
parents:
56557
diff
changeset
|
32 |
val spell_checker = new Spell_Checker_Variable |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
49195
diff
changeset
|
33 |
|
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
34 |
@volatile var startup_failure: Option[Throwable] = None |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
35 |
@volatile var startup_notified = false |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
36 |
|
49101
21c8d2070be9
continue with more robust dummy session after failed startup;
wenzelm
parents:
49100
diff
changeset
|
37 |
@volatile var plugin: Plugin = null |
60835 | 38 |
@volatile var session: Session = new Session(JEdit_Resources.empty) |
49101
21c8d2070be9
continue with more robust dummy session after failed startup;
wenzelm
parents:
49100
diff
changeset
|
39 |
|
62068 | 40 |
def options_changed() { if (plugin != null) plugin.options_changed() } |
41 |
def deps_changed() { if (plugin != null) plugin.deps_changed() } |
|
52815
eaad5fe7bb1b
actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents:
52807
diff
changeset
|
42 |
|
56208 | 43 |
def resources(): JEdit_Resources = |
44 |
session.resources.asInstanceOf[JEdit_Resources] |
|
44955 | 45 |
|
52971
31926d2c04ee
tuned signature -- more abstract PIDE editor operations;
wenzelm
parents:
52876
diff
changeset
|
46 |
lazy val editor = new JEdit_Editor |
31926d2c04ee
tuned signature -- more abstract PIDE editor operations;
wenzelm
parents:
52876
diff
changeset
|
47 |
|
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
48 |
|
53244 | 49 |
/* popups */ |
50 |
||
51 |
def dismissed_popups(view: View): Boolean = |
|
52 |
{ |
|
53272 | 53 |
var dismissed = false |
54 |
||
53274
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
55 |
JEdit_Lib.jedit_text_areas(view).foreach(text_area => |
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
56 |
if (Completion_Popup.Text_Area.dismissed(text_area)) dismissed = true) |
53272 | 57 |
|
58 |
if (Pretty_Tooltip.dismissed_all()) dismissed = true |
|
59 |
||
60 |
dismissed |
|
53244 | 61 |
} |
62 |
||
63 |
||
43449 | 64 |
/* document model and view */ |
65 |
||
55712 | 66 |
def document_view(text_area: TextArea): Option[Document_View] = Document_View(text_area) |
43449 | 67 |
|
44379 | 68 |
def document_views(buffer: Buffer): List[Document_View] = |
69 |
for { |
|
49406 | 70 |
text_area <- JEdit_Lib.jedit_text_areas(buffer).toList |
54529 | 71 |
doc_view <- document_view(text_area) |
72 |
} yield doc_view |
|
44379 | 73 |
|
50344
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
74 |
def exit_models(buffers: List[Buffer]) |
47058
34761733526c
refined init_model: allow change of buffer name as caused by "Save as", for example;
wenzelm
parents:
46997
diff
changeset
|
75 |
{ |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57611
diff
changeset
|
76 |
GUI_Thread.now { |
50344
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
77 |
buffers.foreach(buffer => |
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
78 |
JEdit_Lib.buffer_lock(buffer) { |
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
79 |
JEdit_Lib.jedit_text_areas(buffer).foreach(Document_View.exit) |
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
80 |
Document_Model.exit(buffer) |
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
81 |
}) |
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
82 |
} |
47058
34761733526c
refined init_model: allow change of buffer name as caused by "Save as", for example;
wenzelm
parents:
46997
diff
changeset
|
83 |
} |
34761733526c
refined init_model: allow change of buffer name as caused by "Save as", for example;
wenzelm
parents:
46997
diff
changeset
|
84 |
|
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
85 |
def init_models() |
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
86 |
{ |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57611
diff
changeset
|
87 |
GUI_Thread.now { |
54461 | 88 |
PIDE.editor.flush() |
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
89 |
|
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
90 |
for { |
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
91 |
buffer <- JEdit_Lib.jedit_buffers() |
62068 | 92 |
if buffer != null && !buffer.getBooleanProperty(Buffer.GZIPPED) |
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
93 |
} { |
62068 | 94 |
if (buffer.isLoaded) { |
95 |
JEdit_Lib.buffer_lock(buffer) { |
|
96 |
val node_name = resources.node_name(buffer) |
|
64817 | 97 |
val model = Document_Model.init(session, node_name, buffer) |
62068 | 98 |
for { |
99 |
text_area <- JEdit_Lib.jedit_text_areas(buffer) |
|
100 |
if document_view(text_area).map(_.model) != Some(model) |
|
101 |
} Document_View.init(model, text_area) |
|
102 |
} |
|
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
103 |
} |
62068 | 104 |
else if (plugin != null) plugin.delay_init.invoke() |
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
105 |
} |
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
106 |
|
64524
e6a3c55b929b
explicit option editor_generated_input_delay, which is more aggressive by default;
wenzelm
parents:
64521
diff
changeset
|
107 |
PIDE.editor.invoke_generated() |
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
108 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
109 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
110 |
|
56774 | 111 |
def init_view(buffer: Buffer, text_area: JEditTextArea): Unit = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57611
diff
changeset
|
112 |
GUI_Thread.now { |
56774 | 113 |
JEdit_Lib.buffer_lock(buffer) { |
64813 | 114 |
Document_Model.get(buffer) match { |
56774 | 115 |
case Some(model) => Document_View.init(model, text_area) |
116 |
case None => |
|
117 |
} |
|
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
118 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
119 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
120 |
|
56774 | 121 |
def exit_view(buffer: Buffer, text_area: JEditTextArea): Unit = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57611
diff
changeset
|
122 |
GUI_Thread.now { |
56774 | 123 |
JEdit_Lib.buffer_lock(buffer) { |
124 |
Document_View.exit(text_area) |
|
125 |
} |
|
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
126 |
} |
55621
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
127 |
|
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
128 |
|
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
129 |
/* current document content */ |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
130 |
|
62062
ee610059b0e9
fewer use of GUI_Thread.now to reduce danger of deadlock on shutdown;
wenzelm
parents:
62051
diff
changeset
|
131 |
def snapshot(view: View): Document.Snapshot = GUI_Thread.now |
55621
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
132 |
{ |
64813 | 133 |
Document_Model.get(view.getBuffer) match { |
55621
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
134 |
case Some(model) => model.snapshot |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
135 |
case None => error("No document model for current buffer") |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
136 |
} |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
137 |
} |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
138 |
|
64621 | 139 |
def rendering(view: View): JEdit_Rendering = GUI_Thread.now |
55621
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
140 |
{ |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
141 |
val text_area = view.getTextArea |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
142 |
document_view(text_area) match { |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
143 |
case Some(doc_view) => doc_view.get_rendering() |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
144 |
case None => error("No document view for current text area") |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
145 |
} |
8d69c15b6fb9
added PIDE.snapshot, PIDE.rendering for convenience;
wenzelm
parents:
55618
diff
changeset
|
146 |
} |
34318
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 |
|
34429 | 149 |
|
34618 | 150 |
class Plugin extends EBPlugin |
151 |
{ |
|
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56208
diff
changeset
|
152 |
/* global changes */ |
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
153 |
|
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56208
diff
changeset
|
154 |
def options_changed() |
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56208
diff
changeset
|
155 |
{ |
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
156 |
PIDE.session.global_options.post(Session.Global_Options(PIDE.options.value)) |
56770
e160ae47db94
mane delayed events outside of Swing thread -- triggers no longer require Swing_Thread.later;
wenzelm
parents:
56715
diff
changeset
|
157 |
delay_load.invoke() |
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
158 |
} |
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
159 |
|
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56208
diff
changeset
|
160 |
def deps_changed() |
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56208
diff
changeset
|
161 |
{ |
56770
e160ae47db94
mane delayed events outside of Swing thread -- triggers no longer require Swing_Thread.later;
wenzelm
parents:
56715
diff
changeset
|
162 |
delay_load.invoke() |
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56208
diff
changeset
|
163 |
} |
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56208
diff
changeset
|
164 |
|
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
165 |
|
44577
96b6388d06c4
separate module for jEdit primitives for loading theory files;
wenzelm
parents:
44574
diff
changeset
|
166 |
/* theory files */ |
44574 | 167 |
|
62068 | 168 |
lazy val delay_init = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57611
diff
changeset
|
169 |
GUI_Thread.delay_last(PIDE.options.seconds("editor_load_delay")) |
50344
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
170 |
{ |
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
171 |
PIDE.init_models() |
50344
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
172 |
} |
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
173 |
|
57582 | 174 |
private val delay_load_active = Synchronized(false) |
175 |
private def delay_load_activated(): Boolean = |
|
176 |
delay_load_active.guarded_access(a => Some((!a, true))) |
|
62068 | 177 |
private def delay_load_action() |
178 |
{ |
|
179 |
if (Isabelle.continuous_checking && delay_load_activated() && |
|
180 |
PerspectiveManager.isPerspectiveEnabled) |
|
44574 | 181 |
{ |
64835
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
182 |
if (JEdit_Lib.jedit_buffers().exists(_.isLoading)) delay_load.invoke() |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
183 |
else { |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
184 |
val required_files = |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
185 |
{ |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
186 |
val models = Document_Model.get_models() |
44574 | 187 |
|
62068 | 188 |
val thys = |
64835
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
189 |
(for ((node_name, model) <- models.iterator if model.is_theory) |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
190 |
yield (node_name, Position.none)).toList |
64839 | 191 |
val thy_files = PIDE.resources.thy_info.dependencies("", thys).deps.map(_.name) |
46761 | 192 |
|
64839 | 193 |
val aux_files = |
62068 | 194 |
if (PIDE.options.bool("jedit_auto_resolve")) { |
64835
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
195 |
val stable_tip_version = |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
196 |
if (models.forall(p => p._2.is_stable)) |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
197 |
PIDE.session.current_state().stable_tip_version |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
198 |
else None |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
199 |
stable_tip_version match { |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
200 |
case Some(version) => PIDE.resources.undefined_blobs(version.nodes) |
64478
812c22e556b9
more robust jedit_auto_resolve: avoid losing events deps_changed() / delay_load.invoke();
wenzelm
parents:
63754
diff
changeset
|
201 |
case None => delay_load.invoke(); Nil |
57582 | 202 |
} |
62068 | 203 |
} |
204 |
else Nil |
|
205 |
||
64835
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
206 |
(thy_files ::: aux_files).filterNot(models.isDefinedAt(_)) |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
207 |
} |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
208 |
if (required_files.nonEmpty) { |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
209 |
try { |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
210 |
Standard_Thread.fork("resolve_dependencies") { |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
211 |
val loaded_files = |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
212 |
for { |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
213 |
name <- required_files |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
214 |
text <- PIDE.resources.read_file_content(name) |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
215 |
} yield (name, text) |
62068 | 216 |
|
64835
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
217 |
GUI_Thread.later { |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
218 |
try { |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
219 |
Document_Model.provide_files(PIDE.session, loaded_files) |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
220 |
delay_init.invoke() |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
221 |
} |
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
222 |
finally { delay_load_active.change(_ => false) } |
53715 | 223 |
} |
53074 | 224 |
} |
46761 | 225 |
} |
64835
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
226 |
catch { case _: Throwable => delay_load_active.change(_ => false) } |
46761 | 227 |
} |
64835
fd1efd6dd385
resolve dependencies implicitly via File_Model, without jEdit Buffer_Model;
wenzelm
parents:
64818
diff
changeset
|
228 |
else delay_load_active.change(_ => false) |
44606 | 229 |
} |
44574 | 230 |
} |
62068 | 231 |
} |
232 |
||
64478
812c22e556b9
more robust jedit_auto_resolve: avoid losing events deps_changed() / delay_load.invoke();
wenzelm
parents:
63754
diff
changeset
|
233 |
private lazy val delay_load = |
62068 | 234 |
GUI_Thread.delay_last(PIDE.options.seconds("editor_load_delay")) { delay_load_action() } |
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
235 |
|
44574 | 236 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
237 |
/* session phase */ |
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
238 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
239 |
private val session_phase = |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
240 |
Session.Consumer[Session.Phase](getClass.getName) { |
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
241 |
case Session.Inactive | Session.Failed => |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57611
diff
changeset
|
242 |
GUI_Thread.later { |
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
243 |
GUI.error_dialog(jEdit.getActiveView, "Prover process terminated", |
56775
59f70b89e5fd
improved syslog performance -- avoid denial-of-service e.g. with threads_trace = 5 and active Syslog dockable;
wenzelm
parents:
56774
diff
changeset
|
244 |
"Isabelle Syslog", GUI.scrollable_text(PIDE.session.syslog_content())) |
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
245 |
} |
39735
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
246 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
247 |
case Session.Ready => |
60910 | 248 |
Debugger.init_session(PIDE.session) |
60075 | 249 |
PIDE.session.update_options(PIDE.options.value) |
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
250 |
PIDE.init_models() |
57640
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
251 |
|
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
252 |
if (!Isabelle.continuous_checking) { |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
253 |
GUI_Thread.later { |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
254 |
val answer = |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
255 |
GUI.confirm_dialog(jEdit.getActiveView, |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
256 |
"Continuous checking of PIDE document", |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
257 |
JOptionPane.YES_NO_OPTION, |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
258 |
"Continuous checking is presently disabled:", |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
259 |
"editor buffers will remain inactive!", |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
260 |
"Enable continuous checking now?") |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
261 |
if (answer == 0) Isabelle.continuous_checking = true |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
262 |
} |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
263 |
} |
0a28cf866d5d
reconfirm continuous checking on startup, to address common trap of disabling it accidentally;
wenzelm
parents:
57612
diff
changeset
|
264 |
|
56770
e160ae47db94
mane delayed events outside of Swing thread -- triggers no longer require Swing_Thread.later;
wenzelm
parents:
56715
diff
changeset
|
265 |
delay_load.invoke() |
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
266 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
267 |
case Session.Shutdown => |
62062
ee610059b0e9
fewer use of GUI_Thread.now to reduce danger of deadlock on shutdown;
wenzelm
parents:
62051
diff
changeset
|
268 |
GUI_Thread.later { |
ee610059b0e9
fewer use of GUI_Thread.now to reduce danger of deadlock on shutdown;
wenzelm
parents:
62051
diff
changeset
|
269 |
delay_load.revoke() |
64838 | 270 |
delay_init.revoke() |
271 |
PIDE.editor.flush() |
|
62062
ee610059b0e9
fewer use of GUI_Thread.now to reduce danger of deadlock on shutdown;
wenzelm
parents:
62051
diff
changeset
|
272 |
PIDE.exit_models(JEdit_Lib.jedit_buffers().toList) |
ee610059b0e9
fewer use of GUI_Thread.now to reduce danger of deadlock on shutdown;
wenzelm
parents:
62051
diff
changeset
|
273 |
} |
46740
852baa599351
explicitly revoke delay, to avoid spurious timer events after deactivation of related components;
wenzelm
parents:
46204
diff
changeset
|
274 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
275 |
case _ => |
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
276 |
} |
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
277 |
|
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
278 |
|
34618 | 279 |
/* main plugin plumbing */ |
34433 | 280 |
|
34767 | 281 |
override def handleMessage(message: EBMessage) |
34618 | 282 |
{ |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57611
diff
changeset
|
283 |
GUI_Thread.assert {} |
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
284 |
|
50205 | 285 |
if (PIDE.startup_failure.isDefined && !PIDE.startup_notified) { |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
286 |
message match { |
49100
e7aecf2a5fc4
prefer old startup dialog scheme (cf. 514bb82514df);
wenzelm
parents:
49099
diff
changeset
|
287 |
case msg: EditorStarted => |
51616 | 288 |
GUI.error_dialog(null, "Isabelle plugin startup failure", |
289 |
GUI.scrollable_text(Exn.message(PIDE.startup_failure.get)), |
|
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
290 |
"Prover IDE inactive!") |
50205 | 291 |
PIDE.startup_notified = true |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
292 |
case _ => |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
293 |
} |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
294 |
} |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
295 |
|
50205 | 296 |
if (PIDE.startup_failure.isEmpty) { |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
297 |
message match { |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
298 |
case msg: EditorStarted => |
57649
a43898f76ae9
further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents:
57640
diff
changeset
|
299 |
if (Distribution.is_identified && !Distribution.is_official) { |
57680 | 300 |
GUI.warning_dialog(jEdit.getActiveView, "Isabelle version for testing", |
60206 | 301 |
"This is " + Distribution.version + ".", |
57649
a43898f76ae9
further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents:
57640
diff
changeset
|
302 |
"It is for testing only, not for production use.") |
a43898f76ae9
further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents:
57640
diff
changeset
|
303 |
} |
a43898f76ae9
further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents:
57640
diff
changeset
|
304 |
|
64602 | 305 |
val view = jEdit.getActiveView() |
306 |
||
307 |
Session_Build.session_build(view) |
|
63747 | 308 |
|
64602 | 309 |
Keymap_Merge.check_dialog(view) |
310 |
||
311 |
PIDE.editor.hyperlink_position(true, Document.Snapshot.init, |
|
312 |
JEdit_Sessions.session_info().open_root).foreach(_.follow(view)) |
|
61277 | 313 |
|
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
314 |
case msg: BufferUpdate |
64818
67a0a563d2b3
clarified buffer events: exit model while loading;
wenzelm
parents:
64817
diff
changeset
|
315 |
if msg.getWhat == BufferUpdate.LOAD_STARTED || msg.getWhat == BufferUpdate.CLOSING => |
64838 | 316 |
if (msg.getBuffer != null) { |
317 |
PIDE.exit_models(List(msg.getBuffer)) |
|
318 |
PIDE.editor.invoke_generated() |
|
319 |
} |
|
57611
b6256ea3b7c5
proper change of perspective for removed nodes (stemming from closed buffers);
wenzelm
parents:
57582
diff
changeset
|
320 |
|
64818
67a0a563d2b3
clarified buffer events: exit model while loading;
wenzelm
parents:
64817
diff
changeset
|
321 |
case msg: BufferUpdate |
67a0a563d2b3
clarified buffer events: exit model while loading;
wenzelm
parents:
64817
diff
changeset
|
322 |
if msg.getWhat == BufferUpdate.PROPERTIES_CHANGED || msg.getWhat == BufferUpdate.LOADED => |
50205 | 323 |
if (PIDE.session.is_ready) { |
55791
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
324 |
delay_init.invoke() |
5821b1937fa5
clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents:
55784
diff
changeset
|
325 |
delay_load.invoke() |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
326 |
} |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
327 |
|
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
328 |
case msg: EditPaneUpdate |
60215 | 329 |
if msg.getWhat == EditPaneUpdate.BUFFER_CHANGING || |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
330 |
msg.getWhat == EditPaneUpdate.BUFFER_CHANGED || |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
331 |
msg.getWhat == EditPaneUpdate.CREATED || |
60215 | 332 |
msg.getWhat == EditPaneUpdate.DESTROYED => |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
333 |
val edit_pane = msg.getEditPane |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
334 |
val buffer = edit_pane.getBuffer |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
335 |
val text_area = edit_pane.getTextArea |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
336 |
|
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
337 |
if (buffer != null && text_area != null) { |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
338 |
if (msg.getWhat == EditPaneUpdate.BUFFER_CHANGED || |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
339 |
msg.getWhat == EditPaneUpdate.CREATED) { |
50205 | 340 |
if (PIDE.session.is_ready) |
341 |
PIDE.init_view(buffer, text_area) |
|
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
342 |
} |
52867
8d8cb75ab20a
more central Pretty_Tooltip.dismissed_all -- avoid spurious crash of Rich_Text_Area.robust_body in asynchronous mouse_motion_listener;
wenzelm
parents:
52816
diff
changeset
|
343 |
else { |
53244 | 344 |
PIDE.dismissed_popups(text_area.getView) |
52867
8d8cb75ab20a
more central Pretty_Tooltip.dismissed_all -- avoid spurious crash of Rich_Text_Area.robust_body in asynchronous mouse_motion_listener;
wenzelm
parents:
52816
diff
changeset
|
345 |
PIDE.exit_view(buffer, text_area) |
8d8cb75ab20a
more central Pretty_Tooltip.dismissed_all -- avoid spurious crash of Rich_Text_Area.robust_body in asynchronous mouse_motion_listener;
wenzelm
parents:
52816
diff
changeset
|
346 |
} |
53274
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
347 |
|
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
348 |
if (msg.getWhat == EditPaneUpdate.CREATED) |
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
349 |
Completion_Popup.Text_Area.init(text_area) |
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
350 |
|
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
351 |
if (msg.getWhat == EditPaneUpdate.DESTROYED) |
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
352 |
Completion_Popup.Text_Area.exit(text_area) |
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
353 |
} |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
354 |
|
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
355 |
case msg: PropertiesChanged => |
62264
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
356 |
for { |
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
357 |
view <- JEdit_Lib.jedit_views |
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
358 |
edit_pane <- JEdit_Lib.jedit_edit_panes(view) |
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
359 |
} { |
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
360 |
val buffer = edit_pane.getBuffer |
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
361 |
val text_area = edit_pane.getTextArea |
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
362 |
if (buffer != null && text_area != null) PIDE.init_view(buffer, text_area) |
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
363 |
} |
340f98836fd9
re-init document views for the sake of Text_Overview size;
wenzelm
parents:
62228
diff
changeset
|
364 |
|
56558
05c833d402bc
tuned signature -- explicit Spell_Checker_Variable;
wenzelm
parents:
56557
diff
changeset
|
365 |
PIDE.spell_checker.update(PIDE.options.value) |
52084
573e80625c78
more explicit Session.update_options as source of Global_Options event;
wenzelm
parents:
51616
diff
changeset
|
366 |
PIDE.session.update_options(PIDE.options.value) |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
367 |
|
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
368 |
case _ => |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
369 |
} |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
370 |
} |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
371 |
} |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
372 |
|
34618 | 373 |
override def start() |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
374 |
{ |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
375 |
try { |
50709
985c081a4f11
disable search dialog pool on all platforms -- to prevent GUI synchronization problems seen on KDE (e.g. Kubuntu 12.10);
wenzelm
parents:
50566
diff
changeset
|
376 |
Debug.DISABLE_SEARCH_DIALOG_POOL = true |
985c081a4f11
disable search dialog pool on all platforms -- to prevent GUI synchronization problems seen on KDE (e.g. Kubuntu 12.10);
wenzelm
parents:
50566
diff
changeset
|
377 |
|
50205 | 378 |
PIDE.plugin = this |
62917
eed66ba99bd9
backout 930a30c1a9af: leads to odd effect of command-line options becoming persistent preferences;
wenzelm
parents:
62914
diff
changeset
|
379 |
PIDE.options.store(Options.init()) |
53337
b3817a0e3211
sort items according to persistent history of frequency of use;
wenzelm
parents:
53277
diff
changeset
|
380 |
PIDE.completion_history.load() |
56558
05c833d402bc
tuned signature -- explicit Spell_Checker_Variable;
wenzelm
parents:
56557
diff
changeset
|
381 |
PIDE.spell_checker.update(PIDE.options.value) |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
49195
diff
changeset
|
382 |
|
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
383 |
SyntaxUtilities.setStyleExtender(new Token_Markup.Style_Extender) |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
384 |
if (ModeProvider.instance.isInstanceOf[ModeProvider]) |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
385 |
ModeProvider.instance = new Token_Markup.Mode_Provider(ModeProvider.instance) |
48870
4accee106f0f
clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents:
48791
diff
changeset
|
386 |
|
53274
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
387 |
JEdit_Lib.jedit_text_areas.foreach(Completion_Popup.Text_Area.init _) |
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
388 |
|
64854 | 389 |
val resources = new JEdit_Resources(JEdit_Sessions.session_content(false)) |
49524
68796a77c42b
Thy_Syntax.consolidate_spans is subject to editor_reparse_limit, for improved experience of unbalanced comments etc.;
wenzelm
parents:
49523
diff
changeset
|
390 |
|
62051 | 391 |
PIDE.session.stop() |
56208 | 392 |
PIDE.session = new Session(resources) { |
50207 | 393 |
override def output_delay = PIDE.options.seconds("editor_output_delay") |
57867
abae8aff6262
added system option editor_output_delay: lower value might help big sessions under low-memory situations;
wenzelm
parents:
57680
diff
changeset
|
394 |
override def prune_delay = PIDE.options.seconds("editor_prune_delay") |
57974 | 395 |
override def syslog_limit = PIDE.options.int("editor_syslog_limit") |
50205 | 396 |
override def reparse_limit = PIDE.options.int("editor_reparse_limit") |
49288 | 397 |
} |
48870
4accee106f0f
clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents:
48791
diff
changeset
|
398 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
399 |
PIDE.session.phase_changed += session_phase |
50205 | 400 |
PIDE.startup_failure = None |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
401 |
} |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
402 |
catch { |
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
403 |
case exn: Throwable => |
50205 | 404 |
PIDE.startup_failure = Some(exn) |
405 |
PIDE.startup_notified = false |
|
62228
6dfe5b12c5b2
report error on internal channel as well: startup_failure dialog may be too late;
wenzelm
parents:
62227
diff
changeset
|
406 |
Log.log(Log.ERROR, this, exn) |
49099
10e899bb6530
more permissive handling of plugin startup failure;
wenzelm
parents:
49098
diff
changeset
|
407 |
} |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
408 |
} |
34618 | 409 |
|
39628
f6e82967b5cd
Plugin.stop: refrain from invalidating Isabelle.session -- some actors/dockables out there might still refer to it;
wenzelm
parents:
39518
diff
changeset
|
410 |
override def stop() |
34618 | 411 |
{ |
53274
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
412 |
JEdit_Lib.jedit_text_areas.foreach(Completion_Popup.Text_Area.exit _) |
1760c01f1c78
maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents:
53272
diff
changeset
|
413 |
|
53337
b3817a0e3211
sort items according to persistent history of frequency of use;
wenzelm
parents:
53277
diff
changeset
|
414 |
if (PIDE.startup_failure.isEmpty) { |
50205 | 415 |
PIDE.options.value.save_prefs() |
53337
b3817a0e3211
sort items according to persistent history of frequency of use;
wenzelm
parents:
53277
diff
changeset
|
416 |
PIDE.completion_history.value.save() |
b3817a0e3211
sort items according to persistent history of frequency of use;
wenzelm
parents:
53277
diff
changeset
|
417 |
} |
49245
cb70157293c0
manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents:
49195
diff
changeset
|
418 |
|
56715
52125652e82a
clarified Session.Consumer, with Session.Outlet managed by dispatcher thread;
wenzelm
parents:
56662
diff
changeset
|
419 |
PIDE.session.phase_changed -= session_phase |
50344
608265769ce0
emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents:
50209
diff
changeset
|
420 |
PIDE.exit_models(JEdit_Lib.jedit_buffers().toList) |
50205 | 421 |
PIDE.session.stop() |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
422 |
} |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
423 |
} |