src/Pure/System/build_dialog.scala
author wenzelm
Sat, 15 Dec 2012 13:14:55 +0100
changeset 50546 1b01a57d2749
parent 50539 3b68e5760a2d
permissions -rw-r--r--
clarified build_dialog command line;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/System/build_dialog.scala
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     3
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     4
Dialog for session build process.
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     5
*/
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     6
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     7
package isabelle
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     8
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
     9
50378
72367327bab2 evade ugly default font, notably on Windows laf;
wenzelm
parents: 50377
diff changeset
    10
import java.awt.{GraphicsEnvironment, Point, Font}
50379
a8b0d3729a69 added keyboard shortcut for button (canonical way to do that?);
wenzelm
parents: 50378
diff changeset
    11
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    12
import scala.swing.{ScrollPane, Button, CheckBox, FlowPanel,
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    13
  BorderPanel, MainFrame, TextArea, SwingApplication}
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    14
import scala.swing.event.ButtonClicked
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    15
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    16
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    17
object Build_Dialog
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    18
{
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    19
  def main(args: Array[String]) =
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    20
  {
50539
3b68e5760a2d tuned error dialog;
wenzelm
parents: 50532
diff changeset
    21
    Platform.init_laf()
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    22
    try {
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    23
      args.toList match {
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
    24
        case
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50381
diff changeset
    25
          logic_option ::
50546
1b01a57d2749 clarified build_dialog command line;
wenzelm
parents: 50539
diff changeset
    26
          logic ::
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
    27
          Properties.Value.Boolean(system_mode) ::
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50381
diff changeset
    28
          include_dirs =>
50405
366c4a602500 clarified build_dialog: regular up-to-date check (extra cost of approx. 5s startup for HOL);
wenzelm
parents: 50404
diff changeset
    29
            val more_dirs = include_dirs.map(s => ((false, Path.explode(s))))
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    30
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    31
            val options = Options.init()
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50381
diff changeset
    32
            val session =
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    33
              Isabelle_System.default_logic(logic,
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    34
                if (logic_option != "") options.string(logic_option) else "")
50403
87868964733c more uniform default logic, using settings, options, args etc.;
wenzelm
parents: 50381
diff changeset
    35
50532
345b25cf2e4f actually request heap image in initial up-to-date check;
wenzelm
parents: 50405
diff changeset
    36
            if (Build.build(Build.Ignore_Progress, options, build_heap = true, no_build = true,
50405
366c4a602500 clarified build_dialog: regular up-to-date check (extra cost of approx. 5s startup for HOL);
wenzelm
parents: 50404
diff changeset
    37
                more_dirs = more_dirs, sessions = List(session)) == 0) sys.exit(0)
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    38
            else
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    39
              Swing_Thread.later {
50405
366c4a602500 clarified build_dialog: regular up-to-date check (extra cost of approx. 5s startup for HOL);
wenzelm
parents: 50404
diff changeset
    40
                val top = build_dialog(options, system_mode, more_dirs, session)
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    41
                top.pack()
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    42
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    43
                val point = GraphicsEnvironment.getLocalGraphicsEnvironment().getCenterPoint()
50532
345b25cf2e4f actually request heap image in initial up-to-date check;
wenzelm
parents: 50405
diff changeset
    44
                top.location =
345b25cf2e4f actually request heap image in initial up-to-date check;
wenzelm
parents: 50405
diff changeset
    45
                  new Point(point.x - top.size.width / 2, point.y - top.size.height / 2)
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    46
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    47
                top.visible = true
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    48
              }
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    49
        case _ => error("Bad arguments:\n" + cat_lines(args))
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    50
      }
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    51
    }
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    52
    catch {
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    53
      case exn: Throwable =>
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    54
        Library.error_dialog(null, "Isabelle build failure",
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    55
          Library.scrollable_text(Exn.message(exn)))
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    56
        sys.exit(2)
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    57
    }
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    58
  }
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    59
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    60
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
    61
  def build_dialog(
50404
898cac1dad5e avoid startup within GUI thread -- it is only required later for dialog;
wenzelm
parents: 50403
diff changeset
    62
    options: Options,
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
    63
    system_mode: Boolean,
50405
366c4a602500 clarified build_dialog: regular up-to-date check (extra cost of approx. 5s startup for HOL);
wenzelm
parents: 50404
diff changeset
    64
    more_dirs: List[(Boolean, Path)],
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
    65
    session: String): MainFrame = new MainFrame
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    66
  {
50368
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    67
    /* GUI state */
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    68
50368
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    69
    private var is_stopped = false
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    70
    private var return_code = 0
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    71
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    72
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    73
    /* text */
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    74
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    75
    val text = new TextArea {
50378
72367327bab2 evade ugly default font, notably on Windows laf;
wenzelm
parents: 50377
diff changeset
    76
      font = new Font("SansSerif", Font.PLAIN, 14)
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    77
      editable = false
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
    78
      columns = 40
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
    79
      rows = 10
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    80
    }
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    81
50368
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    82
    val progress = new Build.Progress
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    83
    {
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    84
      override def echo(msg: String): Unit = Swing_Thread.now { text.append(msg + "\n") }
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    85
      override def stopped: Boolean =
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    86
        Swing_Thread.now { val b = is_stopped; is_stopped = false; b  }
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    87
    }
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
    88
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    89
50376
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    90
    /* action button */
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
    91
50376
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    92
    var button_action: () => Unit = (() => is_stopped = true)
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    93
    val button = new Button("Cancel") {
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    94
      reactions += { case ButtonClicked(_) => button_action() }
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    95
    }
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    96
    def button_exit(rc: Int)
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    97
    {
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    98
      button.text = if (rc == 0) "OK" else "Exit"
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
    99
      button_action = (() => sys.exit(rc))
50381
d9711842f1f9 clarified default button (cf. org/gjt/sp/jedit/gui/OptionsDialog.java);
wenzelm
parents: 50379
diff changeset
   100
      button.peer.getRootPane.setDefaultButton(button.peer)
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
   101
    }
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
   102
50376
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
   103
    val action_panel = new FlowPanel(FlowPanel.Alignment.Center)(button)
50368
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
   104
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
   105
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
   106
    /* layout panel */
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
   107
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
   108
    val layout_panel = new BorderPanel
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
   109
    layout_panel.layout(new ScrollPane(text)) = BorderPanel.Position.Center
50376
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
   110
    layout_panel.layout(action_panel) = BorderPanel.Position.South
50368
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
   111
e6c0720e4cef basic interaction with build process;
wenzelm
parents: 50365
diff changeset
   112
    contents = layout_panel
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   113
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   114
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   115
    /* main build */
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   116
50374
1a7cae0711d2 tuned message;
wenzelm
parents: 50372
diff changeset
   117
    title = "Isabelle build (" + Isabelle_System.getenv("ML_IDENTIFIER") + ")"
50372
11c96cac860d tuned message;
wenzelm
parents: 50371
diff changeset
   118
    progress.echo("Build started for Isabelle/" + session + " ...")
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   119
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   120
    default_thread_pool.submit(() => {
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   121
      val (out, rc) =
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   122
        try {
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   123
          ("",
50405
366c4a602500 clarified build_dialog: regular up-to-date check (extra cost of approx. 5s startup for HOL);
wenzelm
parents: 50404
diff changeset
   124
            Build.build(progress, options, build_heap = true, more_dirs = more_dirs,
50370
d5dbb63df0c7 check for existing image (even if outdated);
wenzelm
parents: 50369
diff changeset
   125
              system_mode = system_mode, sessions = List(session)))
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   126
        }
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   127
        catch { case exn: Throwable => (Exn.message(exn) + "\n", 2) }
50376
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
   128
      Swing_Thread.now {
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
   129
        progress.echo(out + (if (rc == 0) "OK\n" else "Return code: " + rc + "\n"))
82cbe4051d98 more direct dialog via existing GUI components;
wenzelm
parents: 50374
diff changeset
   130
        button_exit(rc)
50371
9b6f5f758c31 tuned OK feedback;
wenzelm
parents: 50370
diff changeset
   131
      }
50369
622002c702ad more elementary dialog, with less interaction;
wenzelm
parents: 50368
diff changeset
   132
    })
50365
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
   133
  }
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
   134
}
82f5aea343e7 basic wrapper for session build dialog;
wenzelm
parents:
diff changeset
   135