src/Tools/jEdit/src/plugin.scala
author wenzelm
Sun, 17 Nov 2013 16:02:06 +0100
changeset 54461 6c360a6ade0e
parent 54326 c5556b404902
child 54509 1f77110c94ef
permissions -rw-r--r--
centralized management of pending buffer edits;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43282
5d294220ca43 moved sources -- eliminated Netbeans artifact of jedit package directory;
wenzelm
parents: 41537
diff changeset
     1
/*  Title:      Tools/jEdit/src/plugin.scala
36760
b82a698ef6c9 tuned headers;
wenzelm
parents: 36015
diff changeset
     2
    Author:     Makarius
b82a698ef6c9 tuned headers;
wenzelm
parents: 36015
diff changeset
     3
50362
wenzelm
parents: 50344
diff changeset
     4
Main plumbing for PIDE infrastructure as jEdit plugin.
36760
b82a698ef6c9 tuned headers;
wenzelm
parents: 36015
diff changeset
     5
*/
34407
aad6834ba380 added some headers and comments;
wenzelm
parents: 34406
diff changeset
     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
wenzelm
parents: 34422
diff changeset
     9
36015
6111de7c916a adapted to Scala 2.8.0 Beta 1;
wenzelm
parents: 34871
diff changeset
    10
import isabelle._
6111de7c916a adapted to Scala 2.8.0 Beta 1;
wenzelm
parents: 34871
diff changeset
    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
248e66e8321f more systematic JEdit_Options.make_component;
wenzelm
parents: 49245
diff changeset
    14
import scala.swing.{ListView, ScrollPane}
34406
f81cd75ae331 restructured: independent provers in different buffers
immler@in.tum.de
parents: 34337
diff changeset
    15
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
    16
import org.gjt.sp.jedit.{jEdit, EBMessage, EBPlugin, Buffer, View, Debug}
53487
fc87164e3577 more robust Mac OS X application support;
wenzelm
parents: 53338
diff changeset
    17
import org.jedit.options.CombinedOptions
fc87164e3577 more robust Mac OS X application support;
wenzelm
parents: 53338
diff changeset
    18
import org.gjt.sp.jedit.gui.AboutDialog
39043
a0d7e9b580ec added gfx_range convenience;
wenzelm
parents: 38854
diff changeset
    19
import org.gjt.sp.jedit.textarea.{JEditTextArea, TextArea}
50362
wenzelm
parents: 50344
diff changeset
    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}
34429
wenzelm
parents: 34422
diff changeset
    22
43443
5d9693c2337e basic support for extended syntax styles: sub/superscript;
wenzelm
parents: 43390
diff changeset
    23
import org.gjt.sp.util.SyntaxUtilities
39241
e9a442606db3 Isabelle.load_icon with some sanity checks;
wenzelm
parents: 39167
diff changeset
    24
44721
ba478c3f7255 tuned imports;
wenzelm
parents: 44699
diff changeset
    25
import scala.actors.Actor._
39630
44181423183a explicit Session.Phase indication with associated event bus;
wenzelm
parents: 39628
diff changeset
    26
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    27
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
    28
object PIDE
34618
e45052ff7233 added Boolean_Property, Int_Property;
wenzelm
parents: 34615
diff changeset
    29
{
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34782
diff changeset
    30
  /* plugin instance */
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34782
diff changeset
    31
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 49195
diff changeset
    32
  val options = new JEdit_Options
53337
b3817a0e3211 sort items according to persistent history of frequency of use;
wenzelm
parents: 53277
diff changeset
    33
  val completion_history = new Completion.History_Variable
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 49195
diff changeset
    34
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
    35
  @volatile var startup_failure: Option[Throwable] = None
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
    36
  @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
    37
49101
21c8d2070be9 continue with more robust dummy session after failed startup;
wenzelm
parents: 49100
diff changeset
    38
  @volatile var plugin: Plugin = null
21c8d2070be9 continue with more robust dummy session after failed startup;
wenzelm
parents: 49100
diff changeset
    39
  @volatile var session: Session = new Session(new JEdit_Thy_Load(Set.empty, Outer_Syntax.empty))
21c8d2070be9 continue with more robust dummy session after failed startup;
wenzelm
parents: 49100
diff changeset
    40
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
    41
  def options_changed() {
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
    42
    session.global_options.event(Session.Global_Options(options.value))
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
    43
    plugin.load_theories()
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
    44
  }
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 52807
diff changeset
    45
48870
4accee106f0f clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents: 48791
diff changeset
    46
  def thy_load(): JEdit_Thy_Load =
4accee106f0f clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents: 48791
diff changeset
    47
    session.thy_load.asInstanceOf[JEdit_Thy_Load]
44955
9adaf5cd4f1c tuned signature;
wenzelm
parents: 44954
diff changeset
    48
52971
31926d2c04ee tuned signature -- more abstract PIDE editor operations;
wenzelm
parents: 52876
diff changeset
    49
  lazy val editor = new JEdit_Editor
31926d2c04ee tuned signature -- more abstract PIDE editor operations;
wenzelm
parents: 52876
diff changeset
    50
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34782
diff changeset
    51
53244
ec6011bf2362 dismiss popups more uniformly;
wenzelm
parents: 53074
diff changeset
    52
  /* popups */
ec6011bf2362 dismiss popups more uniformly;
wenzelm
parents: 53074
diff changeset
    53
ec6011bf2362 dismiss popups more uniformly;
wenzelm
parents: 53074
diff changeset
    54
  def dismissed_popups(view: View): Boolean =
ec6011bf2362 dismiss popups more uniformly;
wenzelm
parents: 53074
diff changeset
    55
  {
53272
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53246
diff changeset
    56
    var dismissed = false
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53246
diff changeset
    57
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    58
    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
    59
      if (Completion_Popup.Text_Area.dismissed(text_area)) dismissed = true)
53272
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53246
diff changeset
    60
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53246
diff changeset
    61
    if (Pretty_Tooltip.dismissed_all()) dismissed = true
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53246
diff changeset
    62
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53246
diff changeset
    63
    dismissed
53244
ec6011bf2362 dismiss popups more uniformly;
wenzelm
parents: 53074
diff changeset
    64
  }
ec6011bf2362 dismiss popups more uniformly;
wenzelm
parents: 53074
diff changeset
    65
ec6011bf2362 dismiss popups more uniformly;
wenzelm
parents: 53074
diff changeset
    66
43449
591598bc52bc convenience functions;
wenzelm
parents: 43443
diff changeset
    67
  /* document model and view */
591598bc52bc convenience functions;
wenzelm
parents: 43443
diff changeset
    68
591598bc52bc convenience functions;
wenzelm
parents: 43443
diff changeset
    69
  def document_model(buffer: Buffer): Option[Document_Model] = Document_Model(buffer)
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    70
43449
591598bc52bc convenience functions;
wenzelm
parents: 43443
diff changeset
    71
  def document_view(text_area: JEditTextArea): Option[Document_View] = Document_View(text_area)
591598bc52bc convenience functions;
wenzelm
parents: 43443
diff changeset
    72
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 44238
diff changeset
    73
  def document_views(buffer: Buffer): List[Document_View] =
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 44238
diff changeset
    74
    for {
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents: 49288
diff changeset
    75
      text_area <- JEdit_Lib.jedit_text_areas(buffer).toList
46997
395b7277ed76 misc tuning to accomodate scala-2.10.0-M2;
wenzelm
parents: 46918
diff changeset
    76
      doc_view = document_view(text_area)
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 44238
diff changeset
    77
      if doc_view.isDefined
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 44238
diff changeset
    78
    } yield doc_view.get
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 44238
diff changeset
    79
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
    80
  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
    81
  {
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
    82
    Swing_Thread.now {
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54326
diff changeset
    83
      PIDE.editor.flush()
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
    84
      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
    85
        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
    86
          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
    87
          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
    88
        })
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
    89
      }
47058
34761733526c refined init_model: allow change of buffer name as caused by "Save as", for example;
wenzelm
parents: 46997
diff changeset
    90
  }
34761733526c refined init_model: allow change of buffer name as caused by "Save as", for example;
wenzelm
parents: 46997
diff changeset
    91
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
    92
  def init_models(buffers: List[Buffer])
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
    93
  {
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
    94
    Swing_Thread.now {
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54326
diff changeset
    95
      PIDE.editor.flush()
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
    96
      val init_edits =
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
    97
        (List.empty[Document.Edit_Text] /: buffers) { case (edits, 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
    98
          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
    99
            val (model_edits, opt_model) =
50566
b43c4f660320 tuned signature: use thy_load to adapt to prover/editor specific view on sources;
wenzelm
parents: 50414
diff changeset
   100
              thy_load.buffer_node_name(buffer) match {
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
   101
                case Some(node_name) =>
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
   102
                  document_model(buffer) match {
52973
d5f7fa1498b7 tuned signature;
wenzelm
parents: 52971
diff changeset
   103
                    case Some(model) if model.node_name == node_name => (Nil, Some(model))
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
   104
                    case _ =>
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
   105
                      val model = Document_Model.init(session, buffer, node_name)
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
   106
                      (model.init_edits(), Some(model))
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
   107
                  }
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
   108
                case None => (Nil, None)
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
   109
              }
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
   110
            if (opt_model.isDefined) {
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
   111
              for (text_area <- JEdit_Lib.jedit_text_areas(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
   112
                if (document_view(text_area).map(_.model) != opt_model)
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
   113
                  Document_View.init(opt_model.get, text_area)
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
   114
              }
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
   115
            }
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
   116
            model_edits ::: edits
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
   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
        }
50566
b43c4f660320 tuned signature: use thy_load to adapt to prover/editor specific view on sources;
wenzelm
parents: 50414
diff changeset
   119
      session.update(init_edits)
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
   120
    }
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
   121
  }
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
   122
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
   123
  def init_view(buffer: Buffer, text_area: JEditTextArea)
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
   124
  {
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents: 49288
diff changeset
   125
    JEdit_Lib.swing_buffer_lock(buffer) {
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
      document_model(buffer) match {
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
   127
        case Some(model) => Document_View.init(model, text_area)
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
   128
        case None =>
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
   129
      }
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
   130
    }
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
   131
  }
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
   132
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
   133
  def exit_view(buffer: Buffer, text_area: JEditTextArea)
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
   134
  {
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents: 49288
diff changeset
   135
    JEdit_Lib.swing_buffer_lock(buffer) {
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
   136
      Document_View.exit(text_area)
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
   137
    }
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
   138
  }
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   139
}
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   140
34429
wenzelm
parents: 34422
diff changeset
   141
34618
e45052ff7233 added Boolean_Property, Int_Property;
wenzelm
parents: 34615
diff changeset
   142
class Plugin extends EBPlugin
e45052ff7233 added Boolean_Property, Int_Property;
wenzelm
parents: 34615
diff changeset
   143
{
44577
96b6388d06c4 separate module for jEdit primitives for loading theory files;
wenzelm
parents: 44574
diff changeset
   144
  /* theory files */
44574
24444588fddd actual auto loading of required files;
wenzelm
parents: 44573
diff changeset
   145
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
   146
  private lazy val delay_init =
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
   147
    Swing_Thread.delay_last(PIDE.options.seconds("editor_load_delay"))
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
   148
    {
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
   149
      PIDE.init_models(JEdit_Lib.jedit_buffers().toList)
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
   150
    }
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
   151
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   152
  def load_theories() { Swing_Thread.later { delay_load.invoke() }}
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   153
44573
51f8895b9ad9 some dialog for auto loading of required files (still inactive);
wenzelm
parents: 44434
diff changeset
   154
  private lazy val delay_load =
50207
54be125d8cdc tuned signature;
wenzelm
parents: 50206
diff changeset
   155
    Swing_Thread.delay_last(PIDE.options.seconds("editor_load_delay"))
44574
24444588fddd actual auto loading of required files;
wenzelm
parents: 44573
diff changeset
   156
    {
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   157
      if (Isabelle.continuous_checking) {
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   158
        val view = jEdit.getActiveView()
44963
4662dddc2fd8 explicit check_file wrt. jEdit VFS, to avoid slightly confusing empty buffer after IO error;
wenzelm
parents: 44955
diff changeset
   159
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   160
        val buffers = JEdit_Lib.jedit_buffers().toList
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   161
        if (buffers.forall(_.isLoaded)) {
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   162
          def loaded_buffer(name: String): Boolean =
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   163
            buffers.exists(buffer => JEdit_Lib.buffer_name(buffer) == name)
44574
24444588fddd actual auto loading of required files;
wenzelm
parents: 44573
diff changeset
   164
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   165
          val thys =
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   166
            for (buffer <- buffers; model <- PIDE.document_model(buffer))
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   167
              yield model.node_name
46761
b0a797158e34 avoid buffer loading overrun;
wenzelm
parents: 46740
diff changeset
   168
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   169
          val thy_info = new Thy_Info(PIDE.thy_load)
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   170
          // FIXME avoid I/O in Swing thread!?!
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   171
          val files = thy_info.dependencies(thys).deps.map(_.name.node).
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   172
            filter(file => !loaded_buffer(file) && PIDE.thy_load.check_file(view, file))
44574
24444588fddd actual auto loading of required files;
wenzelm
parents: 44573
diff changeset
   173
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   174
          if (!files.isEmpty) {
53715
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   175
            if (PIDE.options.bool("jedit_auto_load")) {
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   176
              files.foreach(file => jEdit.openFile(null: View, file))
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   177
            }
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   178
            else {
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   179
              val files_list = new ListView(files.sorted)
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   180
              for (i <- 0 until files.length)
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   181
                files_list.selection.indices += i
44606
b625650aa2db improved auto loading: selectable file list;
wenzelm
parents: 44580
diff changeset
   182
53715
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   183
              val answer =
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   184
                GUI.confirm_dialog(view,
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   185
                  "Auto loading of required files",
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   186
                  JOptionPane.YES_NO_OPTION,
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   187
                  "The following files are required to resolve theory imports.",
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   188
                  "Reload selected files now?",
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   189
                  new ScrollPane(files_list),
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   190
                  new Isabelle.Continuous_Checking)
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   191
              if (answer == 0) {
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   192
                files.foreach(file =>
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   193
                  if (files_list.selection.items.contains(file))
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   194
                    jEdit.openFile(null: View, file))
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53487
diff changeset
   195
              }
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   196
            }
46761
b0a797158e34 avoid buffer loading overrun;
wenzelm
parents: 46740
diff changeset
   197
          }
b0a797158e34 avoid buffer loading overrun;
wenzelm
parents: 46740
diff changeset
   198
        }
44606
b625650aa2db improved auto loading: selectable file list;
wenzelm
parents: 44580
diff changeset
   199
      }
44574
24444588fddd actual auto loading of required files;
wenzelm
parents: 44573
diff changeset
   200
    }
44573
51f8895b9ad9 some dialog for auto loading of required files (still inactive);
wenzelm
parents: 44434
diff changeset
   201
44574
24444588fddd actual auto loading of required files;
wenzelm
parents: 44573
diff changeset
   202
24444588fddd actual auto loading of required files;
wenzelm
parents: 44573
diff changeset
   203
  /* session manager */
44573
51f8895b9ad9 some dialog for auto loading of required files (still inactive);
wenzelm
parents: 44434
diff changeset
   204
39633
26a28110ece5 simplified Session.Phase;
wenzelm
parents: 39631
diff changeset
   205
  private val session_manager = actor {
26a28110ece5 simplified Session.Phase;
wenzelm
parents: 39631
diff changeset
   206
    loop {
26a28110ece5 simplified Session.Phase;
wenzelm
parents: 39631
diff changeset
   207
      react {
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
   208
        case phase: Session.Phase =>
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
   209
          phase match {
50808
1702ed63c2db more general prover termination dialog, which might indicate undetected failure or just ML "exit 0";
wenzelm
parents: 50709
diff changeset
   210
            case Session.Inactive | Session.Failed =>
46918
1752164d916b prefer asynchronous context switch from actor to swing thread, to reduce danger of deadlocks;
wenzelm
parents: 46771
diff changeset
   211
              Swing_Thread.later {
51616
949e2cf02a3d tuned signature -- concentrate GUI tools;
wenzelm
parents: 51614
diff changeset
   212
                GUI.error_dialog(jEdit.getActiveView, "Prover process terminated",
949e2cf02a3d tuned signature -- concentrate GUI tools;
wenzelm
parents: 51614
diff changeset
   213
                    "Isabelle Syslog", GUI.scrollable_text(PIDE.session.current_syslog()))
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
   214
              }
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
   215
44573
51f8895b9ad9 some dialog for auto loading of required files (still inactive);
wenzelm
parents: 44434
diff changeset
   216
            case Session.Ready =>
52084
573e80625c78 more explicit Session.update_options as source of Global_Options event;
wenzelm
parents: 51616
diff changeset
   217
              PIDE.session.update_options(PIDE.options.value)
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
   218
              PIDE.init_models(JEdit_Lib.jedit_buffers().toList)
49195
9d10bd85c1be more explicit Delay operations;
wenzelm
parents: 49101
diff changeset
   219
              Swing_Thread.later { delay_load.invoke() }
44573
51f8895b9ad9 some dialog for auto loading of required files (still inactive);
wenzelm
parents: 44434
diff changeset
   220
46740
852baa599351 explicitly revoke delay, to avoid spurious timer events after deactivation of related components;
wenzelm
parents: 46204
diff changeset
   221
            case Session.Shutdown =>
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
   222
              PIDE.exit_models(JEdit_Lib.jedit_buffers().toList)
49195
9d10bd85c1be more explicit Delay operations;
wenzelm
parents: 49101
diff changeset
   223
              Swing_Thread.later { delay_load.revoke() }
46740
852baa599351 explicitly revoke delay, to avoid spurious timer events after deactivation of related components;
wenzelm
parents: 46204
diff changeset
   224
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
   225
            case _ =>
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
   226
          }
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents: 49288
diff changeset
   227
        case bad => java.lang.System.err.println("session_manager: ignoring bad message " + bad)
39630
44181423183a explicit Session.Phase indication with associated event bus;
wenzelm
parents: 39628
diff changeset
   228
      }
44181423183a explicit Session.Phase indication with associated event bus;
wenzelm
parents: 39628
diff changeset
   229
    }
44181423183a explicit Session.Phase indication with associated event bus;
wenzelm
parents: 39628
diff changeset
   230
  }
44181423183a explicit Session.Phase indication with associated event bus;
wenzelm
parents: 39628
diff changeset
   231
44181423183a explicit Session.Phase indication with associated event bus;
wenzelm
parents: 39628
diff changeset
   232
34618
e45052ff7233 added Boolean_Property, Int_Property;
wenzelm
parents: 34615
diff changeset
   233
  /* main plugin plumbing */
34433
3da749b53842 renamed Plugin.plugin to Plugin.self;
wenzelm
parents: 34429
diff changeset
   234
34767
8dd19c5f8c56 added properties_changed event bus;
wenzelm
parents: 34764
diff changeset
   235
  override def handleMessage(message: EBMessage)
34618
e45052ff7233 added Boolean_Property, Int_Property;
wenzelm
parents: 34615
diff changeset
   236
  {
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
   237
    Swing_Thread.assert()
39630
44181423183a explicit Session.Phase indication with associated event bus;
wenzelm
parents: 39628
diff changeset
   238
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   239
    if (PIDE.startup_failure.isDefined && !PIDE.startup_notified) {
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   240
      message match {
49100
e7aecf2a5fc4 prefer old startup dialog scheme (cf. 514bb82514df);
wenzelm
parents: 49099
diff changeset
   241
        case msg: EditorStarted =>
51616
949e2cf02a3d tuned signature -- concentrate GUI tools;
wenzelm
parents: 51614
diff changeset
   242
          GUI.error_dialog(null, "Isabelle plugin startup failure",
949e2cf02a3d tuned signature -- concentrate GUI tools;
wenzelm
parents: 51614
diff changeset
   243
            GUI.scrollable_text(Exn.message(PIDE.startup_failure.get)),
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   244
            "Prover IDE inactive!")
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   245
          PIDE.startup_notified = true
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   246
        case _ =>
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   247
      }
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   248
    }
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   249
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   250
    if (PIDE.startup_failure.isEmpty) {
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   251
      message match {
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   252
        case msg: EditorStarted =>
50408
1fac4ff86381 discontinued option jedit_auto_start, which is somewhat pointless as there is no manual session start within Isabelle/jEdit;
wenzelm
parents: 50363
diff changeset
   253
          PIDE.session.start(Isabelle_Logic.session_args())
37557
1ae272fd4082 refresh Isabelle token marker after buffer properties changed, e.g. when fold mode is switched;
wenzelm
parents: 37241
diff changeset
   254
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   255
        case msg: BufferUpdate
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   256
        if msg.getWhat == BufferUpdate.LOADED || msg.getWhat == BufferUpdate.PROPERTIES_CHANGED =>
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   257
          if (PIDE.session.is_ready) {
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   258
            val buffer = msg.getBuffer
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
   259
            if (buffer != null && !buffer.isLoading) delay_init.invoke()
53074
e62c7a4b6697 load_theories if continuous_checking;
wenzelm
parents: 52974
diff changeset
   260
            load_theories()
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   261
          }
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34782
diff changeset
   262
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   263
        case msg: EditPaneUpdate
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   264
        if (msg.getWhat == EditPaneUpdate.BUFFER_CHANGING ||
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   265
            msg.getWhat == EditPaneUpdate.BUFFER_CHANGED ||
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   266
            msg.getWhat == EditPaneUpdate.CREATED ||
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   267
            msg.getWhat == EditPaneUpdate.DESTROYED) =>
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   268
          val edit_pane = msg.getEditPane
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   269
          val buffer = edit_pane.getBuffer
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   270
          val text_area = edit_pane.getTextArea
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   271
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   272
          if (buffer != null && text_area != null) {
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   273
            if (msg.getWhat == EditPaneUpdate.BUFFER_CHANGED ||
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   274
                msg.getWhat == EditPaneUpdate.CREATED) {
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   275
              if (PIDE.session.is_ready)
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   276
                PIDE.init_view(buffer, text_area)
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   277
            }
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
   278
            else {
53244
ec6011bf2362 dismiss popups more uniformly;
wenzelm
parents: 53074
diff changeset
   279
              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
   280
              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
   281
            }
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
   282
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
   283
            if (msg.getWhat == EditPaneUpdate.CREATED)
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
   284
              Completion_Popup.Text_Area.init(text_area)
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
   285
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
   286
            if (msg.getWhat == EditPaneUpdate.DESTROYED)
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
   287
              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
   288
          }
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34782
diff changeset
   289
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   290
        case msg: PropertiesChanged =>
52084
573e80625c78 more explicit Session.update_options as source of Global_Options event;
wenzelm
parents: 51616
diff changeset
   291
          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
   292
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   293
        case _ =>
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   294
      }
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   295
    }
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   296
  }
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   297
34618
e45052ff7233 added Boolean_Property, Int_Property;
wenzelm
parents: 34615
diff changeset
   298
  override def start()
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   299
  {
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   300
    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
   301
      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
   302
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   303
      PIDE.plugin = this
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   304
      Isabelle_System.init()
51614
22d1dd43f089 separate module Isabelle_Font, to keep this out of the way of generic Isabelle_System operations, notably for non-Isabelle/jEdit applications;
wenzelm
parents: 51294
diff changeset
   305
      Isabelle_Font.install_fonts()
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   306
53338
69a0bdfc7fa5 simplified (see 7c39677f9ea0);
wenzelm
parents: 53337
diff changeset
   307
      PIDE.options.update(Options.init())
53337
b3817a0e3211 sort items according to persistent history of frequency of use;
wenzelm
parents: 53277
diff changeset
   308
      PIDE.completion_history.load()
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 49195
diff changeset
   309
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   310
      SyntaxUtilities.setStyleExtender(new Token_Markup.Style_Extender)
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   311
      if (ModeProvider.instance.isInstanceOf[ModeProvider])
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   312
        ModeProvider.instance = new Token_Markup.Mode_Provider(ModeProvider.instance)
48870
4accee106f0f clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents: 48791
diff changeset
   313
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
   314
      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
   315
49246
248e66e8321f more systematic JEdit_Options.make_component;
wenzelm
parents: 49245
diff changeset
   316
      val content = Isabelle_Logic.session_content(false)
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   317
      val thy_load = new JEdit_Thy_Load(content.loaded_theories, content.syntax)
49524
68796a77c42b Thy_Syntax.consolidate_spans is subject to editor_reparse_limit, for improved experience of unbalanced comments etc.;
wenzelm
parents: 49523
diff changeset
   318
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   319
      PIDE.session = new Session(thy_load) {
50207
54be125d8cdc tuned signature;
wenzelm
parents: 50206
diff changeset
   320
        override def output_delay = PIDE.options.seconds("editor_output_delay")
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   321
        override def reparse_limit = PIDE.options.int("editor_reparse_limit")
49288
2c9272cb4568 more options;
wenzelm
parents: 49272
diff changeset
   322
      }
48870
4accee106f0f clarified initialization of Thy_Load, Thy_Info, Session;
wenzelm
parents: 48791
diff changeset
   323
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   324
      PIDE.session.phase_changed += session_manager
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   325
      PIDE.startup_failure = None
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   326
    }
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   327
    catch {
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   328
      case exn: Throwable =>
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   329
        PIDE.startup_failure = Some(exn)
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   330
        PIDE.startup_notified = false
49099
10e899bb6530 more permissive handling of plugin startup failure;
wenzelm
parents: 49098
diff changeset
   331
    }
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   332
  }
34618
e45052ff7233 added Boolean_Property, Int_Property;
wenzelm
parents: 34615
diff changeset
   333
39628
f6e82967b5cd Plugin.stop: refrain from invalidating Isabelle.session -- some actors/dockables out there might still refer to it;
wenzelm
parents: 39518
diff changeset
   334
  override def stop()
34618
e45052ff7233 added Boolean_Property, Int_Property;
wenzelm
parents: 34615
diff changeset
   335
  {
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
   336
    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
   337
53337
b3817a0e3211 sort items according to persistent history of frequency of use;
wenzelm
parents: 53277
diff changeset
   338
    if (PIDE.startup_failure.isEmpty) {
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   339
      PIDE.options.value.save_prefs()
53337
b3817a0e3211 sort items according to persistent history of frequency of use;
wenzelm
parents: 53277
diff changeset
   340
      PIDE.completion_history.value.save()
b3817a0e3211 sort items according to persistent history of frequency of use;
wenzelm
parents: 53277
diff changeset
   341
    }
49245
cb70157293c0 manage Isabelle/jEdit options as Isabelle/Scala options (with persistent preferences);
wenzelm
parents: 49195
diff changeset
   342
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   343
    PIDE.session.phase_changed -= session_manager
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
   344
    PIDE.exit_models(JEdit_Lib.jedit_buffers().toList)
50205
788c8263e634 renamed main plugin object to PIDE;
wenzelm
parents: 50183
diff changeset
   345
    PIDE.session.stop()
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   346
  }
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
   347
}