author | wenzelm |
Wed, 04 Nov 2015 23:27:00 +0100 | |
changeset 61578 | 6623c81cb15a |
parent 61512 | 933463440449 |
child 62036 | 773cb226738c |
permissions | -rw-r--r-- |
50687 | 1 |
/* Title: Pure/Tools/main.scala |
47663
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
3 |
|
53419
1c87e79bb838
main application entry point involves implicit Cygwin init, depending on "uninitialized" file indicator;
wenzelm
parents:
52675
diff
changeset
|
4 |
Main Isabelle application entry point. |
47663
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
5 |
*/ |
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
6 |
|
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
7 |
package isabelle |
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
8 |
|
53419
1c87e79bb838
main application entry point involves implicit Cygwin init, depending on "uninitialized" file indicator;
wenzelm
parents:
52675
diff
changeset
|
9 |
|
55618 | 10 |
import java.lang.{Class, ClassLoader} |
47663
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
11 |
|
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
12 |
|
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
13 |
object Main |
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
14 |
{ |
61282 | 15 |
/* main entry point */ |
53461 | 16 |
|
53456 | 17 |
def main(args: Array[String]) |
53449 | 18 |
{ |
61282 | 19 |
val start = |
61277 | 20 |
{ |
21 |
try { |
|
61282 | 22 |
Isabelle_System.init() |
61307
be3a5fee11e3
clarified init (again): isabelle.Main is responsible to provide basic JVM setup, jedit.jar picks this up (e.g. list of known fonts), plugin cannot be loaded in isolation without isabelle.Main;
wenzelm
parents:
61291
diff
changeset
|
23 |
GUI.install_fonts() |
61282 | 24 |
|
25 |
||
61277 | 26 |
/* settings directory */ |
27 |
||
28 |
val settings_dir = Path.explode("$JEDIT_SETTINGS") |
|
29 |
Isabelle_System.mkdirs(settings_dir + Path.explode("DockableWindowManager")) |
|
30 |
||
31 |
if (!(settings_dir + Path.explode("perspective.xml")).is_file) { |
|
32 |
File.write(settings_dir + Path.explode("DockableWindowManager/perspective-view0.xml"), |
|
33 |
"""<DOCKING LEFT="" TOP="" RIGHT="isabelle-documentation" BOTTOM="" LEFT_POS="0" TOP_POS="0" RIGHT_POS="250" BOTTOM_POS="250" />""") |
|
34 |
File.write(settings_dir + Path.explode("perspective.xml"), |
|
35 |
"""<?xml version="1.0" encoding="UTF-8" ?> |
|
36 |
<!DOCTYPE PERSPECTIVE SYSTEM "perspective.dtd"> |
|
37 |
<PERSPECTIVE> |
|
38 |
<VIEW PLAIN="FALSE"> |
|
39 |
<GEOMETRY X="0" Y="35" WIDTH="1072" HEIGHT="787" EXT_STATE="0" /> |
|
40 |
</VIEW> |
|
41 |
</PERSPECTIVE>""") |
|
42 |
} |
|
43 |
||
44 |
||
45 |
/* args */ |
|
46 |
||
47 |
val jedit_options = |
|
48 |
Isabelle_System.getenv_strict("JEDIT_OPTIONS").split(" +") |
|
49 |
||
50 |
val jedit_settings = |
|
51 |
Array("-settings=" + File.platform_path(Path.explode("$JEDIT_SETTINGS"))) |
|
52 |
||
53 |
val more_args = |
|
61512
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61307
diff
changeset
|
54 |
{ |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61307
diff
changeset
|
55 |
args.toList.dropWhile(arg => arg.startsWith("-") && arg != "--") match { |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61307
diff
changeset
|
56 |
case Nil | List("--") => |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61307
diff
changeset
|
57 |
args ++ Array(File.platform_path(Path.explode("$USER_HOME/Scratch.thy"))) |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61307
diff
changeset
|
58 |
case List(":") => args.slice(0, args.size - 1) |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61307
diff
changeset
|
59 |
case _ => args |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61307
diff
changeset
|
60 |
} |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61307
diff
changeset
|
61 |
} |
61277 | 62 |
|
63 |
||
64 |
/* main startup */ |
|
65 |
||
66 |
update_environment() |
|
67 |
||
68 |
System.setProperty("jedit.home", File.platform_path(Path.explode("$JEDIT_HOME/dist"))) |
|
69 |
System.setProperty("scala.home", File.platform_path(Path.explode("$SCALA_HOME"))) |
|
70 |
||
71 |
val jedit = |
|
72 |
Class.forName("org.gjt.sp.jedit.jEdit", true, ClassLoader.getSystemClassLoader) |
|
73 |
val jedit_main = jedit.getMethod("main", classOf[Array[String]]) |
|
74 |
||
75 |
() => jedit_main.invoke(null, jedit_options ++ jedit_settings ++ more_args) |
|
76 |
} |
|
61282 | 77 |
catch { |
78 |
case exn: Throwable => |
|
79 |
GUI.init_laf() |
|
80 |
GUI.dialog(null, "Isabelle", GUI.scrollable_text(Exn.message(exn))) |
|
81 |
sys.exit(2) |
|
82 |
} |
|
61277 | 83 |
} |
61282 | 84 |
start() |
53445
811db2b751ed
warm start of Isabelle/jEdit from Isabelle/Scala;
wenzelm
parents:
53423
diff
changeset
|
85 |
} |
53461 | 86 |
|
87 |
||
61282 | 88 |
/* adhoc update of JVM environment variables */ |
53965
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
89 |
|
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
90 |
def update_environment() |
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
91 |
{ |
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
92 |
val update = |
53966
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
93 |
{ |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
94 |
val isabelle_home = Isabelle_System.getenv("ISABELLE_HOME") |
54351 | 95 |
val isabelle_home_user = Isabelle_System.getenv("ISABELLE_HOME_USER") |
53965
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
96 |
|
53966
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
97 |
(env0: Any) => { |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
98 |
val env = env0.asInstanceOf[java.util.Map[String, String]] |
60997 | 99 |
env.put("ISABELLE_HOME", File.platform_path(isabelle_home)) |
100 |
env.put("ISABELLE_HOME_USER", File.platform_path(isabelle_home_user)) |
|
53966
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
101 |
} |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
102 |
} |
53965
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
103 |
|
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
104 |
classOf[java.util.Collections].getDeclaredClasses |
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
105 |
.find(c => c.getName == "java.util.Collections$UnmodifiableMap") match |
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
106 |
{ |
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
107 |
case Some(c) => |
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
108 |
val m = c.getDeclaredField("m") |
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
109 |
m.setAccessible(true) |
53966
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
110 |
update(m.get(System.getenv())) |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
111 |
|
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
112 |
if (Platform.is_windows) { |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
113 |
val ProcessEnvironment = Class.forName("java.lang.ProcessEnvironment") |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
114 |
val field = ProcessEnvironment.getDeclaredField("theCaseInsensitiveEnvironment") |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
115 |
field.setAccessible(true) |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
116 |
update(field.get(null)) |
53965
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
117 |
} |
53966
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
118 |
|
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
119 |
case None => |
5a546a881f90
update second environment that is used for System.getenv(String);
wenzelm
parents:
53965
diff
changeset
|
120 |
error("Failed to update JVM environment -- platform incompatibility") |
53965
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
121 |
} |
cca95e9055ba
adhoc update of JVM environment variables, which is relevant for cold start of jEdit;
wenzelm
parents:
53912
diff
changeset
|
122 |
} |
47663
20e0865ae9e7
default Isabelle application wrapper -- JVM entry point for Isabelle.exe;
wenzelm
parents:
diff
changeset
|
123 |
} |