src/Tools/jEdit/src/session_dockable.scala
author wenzelm
Tue, 06 Sep 2011 11:25:27 +0200
changeset 45625 7313e2db3d39
parent 45547 07dad1433cd7
child 45646 27930cf6f0f7
permissions -rw-r--r--
more specific message channels to avoid potential bottle-neck of raw_messages;
     1 /*  Title:      Tools/jEdit/src/session_dockable.scala
     2     Author:     Makarius
     3 
     4 Dockable window for prover session management.
     5 */
     6 
     7 package isabelle.jedit
     8 
     9 
    10 import isabelle._
    11 
    12 import scala.actors.Actor._
    13 import scala.swing.{FlowPanel, Button, TextArea, Label, ListView,
    14   ScrollPane, TabbedPane, Component, Swing}
    15 import scala.swing.event.{ButtonClicked, SelectionChanged}
    16 
    17 import java.lang.System
    18 import java.awt.BorderLayout
    19 import javax.swing.JList
    20 import javax.swing.border.{BevelBorder, SoftBevelBorder}
    21 
    22 import org.gjt.sp.jedit.View
    23 
    24 
    25 class Session_Dockable(view: View, position: String) extends Dockable(view: View, position: String)
    26 {
    27   /* main tabs */
    28 
    29   private val readme = new HTML_Panel("SansSerif", 14)
    30   readme.render_document(Isabelle_System.try_read(List(Path.explode("$JEDIT_HOME/README.html"))))
    31 
    32   val status = new ListView(Nil: List[String])
    33   status.peer.setLayoutOrientation(JList.VERTICAL_WRAP)
    34   status.selection.intervalMode = ListView.IntervalMode.Single
    35 
    36   private val syslog = new TextArea(Isabelle.session.syslog())
    37 
    38   private val tabs = new TabbedPane {
    39     pages += new TabbedPane.Page("README", Component.wrap(readme))
    40     pages += new TabbedPane.Page("Theory Status", new ScrollPane(status))
    41     pages += new TabbedPane.Page("System Log", new ScrollPane(syslog))
    42 
    43     selection.index =
    44     {
    45       val index = Isabelle.Int_Property("session-panel.selection", 0)
    46       if (index >= pages.length) 0 else index
    47     }
    48     listenTo(selection)
    49     reactions += {
    50       case SelectionChanged(_) =>
    51         Isabelle.Int_Property("session-panel.selection") = selection.index
    52     }
    53   }
    54 
    55   set_content(tabs)
    56 
    57 
    58   /* controls */
    59 
    60   val session_phase = new Label(Isabelle.session.phase.toString)
    61   session_phase.border = new SoftBevelBorder(BevelBorder.LOWERED)
    62   session_phase.tooltip = "Prover status"
    63 
    64   private val logic = Isabelle.logic_selector(Isabelle.Property("logic"))
    65   logic.listenTo(logic.selection)
    66   logic.reactions += {
    67     case SelectionChanged(_) => Isabelle.Property("logic") = logic.selection.item.name
    68   }
    69 
    70   private val controls = new FlowPanel(FlowPanel.Alignment.Right)(session_phase, logic)
    71   add(controls.peer, BorderLayout.NORTH)
    72 
    73 
    74   /* component state -- owned by Swing thread */
    75 
    76   private var nodes_status: Map[Document.Node.Name, String] = Map.empty
    77 
    78   private def handle_changed(changed_nodes: Set[Document.Node.Name])
    79   {
    80     Swing_Thread.now {
    81       // FIXME correlation to changed_nodes!?
    82       val state = Isabelle.session.current_state()
    83       val version = state.recent_stable.version.get_finished
    84 
    85       var nodes_status1 = nodes_status
    86       for {
    87         name <- changed_nodes
    88         node <- version.nodes.get(name)
    89         val status = Isar_Document.node_status(state, version, node)
    90       } nodes_status1 += (name -> status.toString)
    91 
    92       if (nodes_status != nodes_status1) {
    93         nodes_status = nodes_status1
    94         val order =
    95           Library.sort_wrt((name: Document.Node.Name) => name.theory,
    96             nodes_status.keySet.toList)
    97         status.listData = order.map(name => name.theory + " " + nodes_status(name))
    98       }
    99     }
   100   }
   101 
   102 
   103   /* main actor */
   104 
   105   private val main_actor = actor {
   106     loop {
   107       react {
   108         case result: Isabelle_Process.Result =>
   109           if (result.is_syslog)
   110             Swing_Thread.now {
   111               val text = Isabelle.session.syslog()
   112               if (text != syslog.text) {
   113                 syslog.text = text
   114               }
   115             }
   116 
   117         case phase: Session.Phase =>
   118           Swing_Thread.now { session_phase.text = " " + phase.toString + " " }
   119 
   120         case changed: Session.Commands_Changed => handle_changed(changed.nodes)
   121 
   122         case bad => System.err.println("Session_Dockable: ignoring bad message " + bad)
   123       }
   124     }
   125   }
   126 
   127   override def init() {
   128     Isabelle.session.syslog_messages += main_actor
   129     Isabelle.session.phase_changed += main_actor
   130     Isabelle.session.commands_changed += main_actor
   131   }
   132 
   133   override def exit() {
   134     Isabelle.session.syslog_messages -= main_actor
   135     Isabelle.session.phase_changed -= main_actor
   136     Isabelle.session.commands_changed -= main_actor
   137   }
   138 }