src/Pure/ProofGeneral/proof_general_emacs.ML
author wenzelm
Tue, 15 Jul 2008 11:50:04 +0200
changeset 27602 86cf8f2493ca
parent 27592 6d81c734f7af
child 27604 6c347b96d941
permissions -rw-r--r--
simplified commit_exit;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
     1
(*  Title:      Pure/ProofGeneral/proof_general_emacs.ML
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
     2
    ID:         $Id$
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
     3
    Author:     David Aspinall and Markus Wenzel
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
     4
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
     5
Isabelle/Isar configuration for Emacs Proof General.
26549
9838e45c6e6c moved test_markup here;
wenzelm
parents: 26542
diff changeset
     6
See also http://proofgeneral.inf.ed.ac.uk
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
     7
*)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
     8
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
     9
signature PROOF_GENERAL =
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    10
sig
26549
9838e45c6e6c moved test_markup here;
wenzelm
parents: 26542
diff changeset
    11
  val test_markupN: string
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    12
  val init: bool -> unit
24874
e4400a70eeaa export init_outer_syntax;
wenzelm
parents: 24873
diff changeset
    13
  val init_outer_syntax: unit -> unit
24289
bfd59eb6e24e added sendback;
wenzelm
parents: 24244
diff changeset
    14
  val sendback: string -> Pretty.T list -> unit
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    15
end;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    16
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    17
structure ProofGeneral: PROOF_GENERAL =
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    18
struct
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    19
21945
wenzelm
parents: 21940
diff changeset
    20
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    21
(* print modes *)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    22
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    23
val proof_generalN = "ProofGeneralEmacs";  (*token markup (colouring vars, etc.)*)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    24
val pgasciiN = "PGASCII";                  (*plain 7-bit ASCII communication*)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    25
val thm_depsN = "thm_deps";                (*meta-information about theorem deps*)
26549
9838e45c6e6c moved test_markup here;
wenzelm
parents: 26542
diff changeset
    26
val test_markupN = "test_markup";          (*XML markup for everything*)
9838e45c6e6c moved test_markup here;
wenzelm
parents: 26542
diff changeset
    27
27592
6d81c734f7af print_mode "test_markup": do not change prompt, otherwise Proof General will not work;
wenzelm
parents: 27591
diff changeset
    28
val _ = Markup.add_mode test_markupN (fn (name, props) =>
6d81c734f7af print_mode "test_markup": do not change prompt, otherwise Proof General will not work;
wenzelm
parents: 27591
diff changeset
    29
  if name = Markup.promptN then ("", "") else XML.output_markup (name, props));
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    30
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    31
fun special oct =
26526
d1557acb9ef9 Symbol.SOH;
wenzelm
parents: 26463
diff changeset
    32
  if print_mode_active pgasciiN then Symbol.SOH ^ chr (ord (oct_char oct) - 167)
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    33
  else oct_char oct;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    34
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    35
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    36
(* text output: print modes for xsymbol *)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    37
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    38
local
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    39
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    40
fun xsym_output "\\" = "\\\\"
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    41
  | xsym_output s = if Symbol.is_raw s then Symbol.decode_raw s else s;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    42
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    43
fun xsymbols_output s =
22590
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
    44
  if print_mode_active Symbol.xsymbolsN andalso exists_string (equal "\\") s then
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    45
    let val syms = Symbol.explode s
23621
e070a6ab1891 simplified pretty token metric: type int;
wenzelm
parents: 22699
diff changeset
    46
    in (implode (map xsym_output syms), Symbol.length syms) end
e070a6ab1891 simplified pretty token metric: type int;
wenzelm
parents: 22699
diff changeset
    47
  else Output.default_output s;
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    48
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    49
in
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    50
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    51
fun setup_xsymbols_output () =
23641
d6f9d3acffaa toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23621
diff changeset
    52
  Output.add_mode Symbol.xsymbolsN xsymbols_output Symbol.encode_raw;
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    53
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    54
end;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    55
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    56
23641
d6f9d3acffaa toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23621
diff changeset
    57
(* common markup *)
d6f9d3acffaa toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23621
diff changeset
    58
26706
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    59
val _ = Markup.add_mode proof_generalN (fn (name, props) =>
25630
wenzelm
parents: 25553
diff changeset
    60
  let
wenzelm
parents: 25553
diff changeset
    61
    val (bg1, en1) =
25848
fb998d0bf175 replaced prompt markup by prompt channel setup;
wenzelm
parents: 25749
diff changeset
    62
      if name = Markup.stateN then (special "366" ^ "\n", "\n" ^ special "367")
25630
wenzelm
parents: 25553
diff changeset
    63
      else if name = Markup.sendbackN then (special "376", special "377")
wenzelm
parents: 25553
diff changeset
    64
      else if name = Markup.hiliteN then (special "327", special "330")
26706
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    65
      else if name = Markup.classN then (special "351", special "350")
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    66
      else if name = Markup.tfreeN then (special "352", special "350")
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    67
      else if name = Markup.tvarN then (special "353", special "350")
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    68
      else if name = Markup.freeN then (special "354", special "350")
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    69
      else if name = Markup.boundN then (special "355", special "350")
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    70
      else if name = Markup.varN then (special "356", special "350")
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    71
      else if name = Markup.skolemN then (special "357", special "350")
25630
wenzelm
parents: 25553
diff changeset
    72
      else ("", "");
wenzelm
parents: 25553
diff changeset
    73
    val (bg2, en2) =
27592
6d81c734f7af print_mode "test_markup": do not change prompt, otherwise Proof General will not work;
wenzelm
parents: 27591
diff changeset
    74
      if name <> Markup.promptN andalso print_mode_active test_markupN
26542
ffc1f97ab5fc XML.output_markup;
wenzelm
parents: 26526
diff changeset
    75
      then XML.output_markup (name, props)
25630
wenzelm
parents: 25553
diff changeset
    76
      else ("", "");
26706
4ea64590d28b replaced token translations by common markup;
wenzelm
parents: 26643
diff changeset
    77
  in (bg1 ^ bg2, en2 ^ en1) end);
23641
d6f9d3acffaa toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23621
diff changeset
    78
d6f9d3acffaa toplevel prompt/print_state: proper markup, removed hooks;
wenzelm
parents: 23621
diff changeset
    79
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    80
(* messages and notification *)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    81
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    82
fun decorate bg en prfx =
22590
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
    83
  Output.writeln_default o enclose bg en o prefix_lines prfx;
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    84
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    85
fun setup_messages () =
23662
91d06b04951f simplified writeln_fn;
wenzelm
parents: 23641
diff changeset
    86
 (Output.writeln_fn := Output.writeln_default;
22590
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
    87
  Output.priority_fn := (fn s => decorate (special "360") (special "361") "" s);
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
    88
  Output.tracing_fn := (fn s => decorate (special "360" ^ special "375") (special "361") "" s);
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
    89
  Output.debug_fn := (fn s => decorate (special "362") (special "363") "+++ " s);
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
    90
  Output.warning_fn := (fn s => decorate (special "362") (special "363") "### " s);
25848
fb998d0bf175 replaced prompt markup by prompt channel setup;
wenzelm
parents: 25749
diff changeset
    91
  Output.error_fn := (fn s => decorate (special "364") (special "365") "*** " s);
fb998d0bf175 replaced prompt markup by prompt channel setup;
wenzelm
parents: 25749
diff changeset
    92
  Output.prompt_fn := (fn s => Output.std_output (s ^ special "372")));
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    93
22699
938c1011ac94 removed unused Output.panic hook -- internal to PG wrapper;
wenzelm
parents: 22678
diff changeset
    94
fun panic s =
938c1011ac94 removed unused Output.panic hook -- internal to PG wrapper;
wenzelm
parents: 22678
diff changeset
    95
  (decorate (special "364") (special "365") "!!! " ("## SYSTEM EXIT ##\n" ^ s); exit 1);
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    96
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    97
fun emacs_notify s = decorate (special "360") (special "361") "" s;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    98
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
    99
fun tell_clear_goals () =
21940
fbd068dd4d29 minor tuning;
wenzelm
parents: 21858
diff changeset
   100
  emacs_notify "Proof General, please clear the goals buffer.";
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   101
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   102
fun tell_clear_response () =
21940
fbd068dd4d29 minor tuning;
wenzelm
parents: 21858
diff changeset
   103
  emacs_notify "Proof General, please clear the response buffer.";
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   104
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   105
fun tell_file_loaded path =
21940
fbd068dd4d29 minor tuning;
wenzelm
parents: 21858
diff changeset
   106
  emacs_notify ("Proof General, this file is loaded: " ^ quote (File.platform_path path));
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   107
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   108
fun tell_file_retracted path =
21940
fbd068dd4d29 minor tuning;
wenzelm
parents: 21858
diff changeset
   109
  emacs_notify ("Proof General, you can unlock the file " ^ quote (File.platform_path path));
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   110
24289
bfd59eb6e24e added sendback;
wenzelm
parents: 24244
diff changeset
   111
fun sendback heading prts =
bfd59eb6e24e added sendback;
wenzelm
parents: 24244
diff changeset
   112
  Pretty.writeln (Pretty.big_list heading [Pretty.markup Markup.sendback prts]);
bfd59eb6e24e added sendback;
wenzelm
parents: 24244
diff changeset
   113
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   114
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   115
(* theory loader actions *)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   116
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   117
local
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   118
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   119
fun trace_action action name =
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   120
  if action = ThyInfo.Update then
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   121
    List.app tell_file_loaded (ThyInfo.loaded_files name)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   122
  else if action = ThyInfo.Outdate orelse action = ThyInfo.Remove then
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   123
    List.app tell_file_retracted (ThyInfo.loaded_files name)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   124
  else ();
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   125
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   126
in
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   127
  fun setup_thy_loader () = ThyInfo.add_hook trace_action;
26613
725a3d9011d1 ThyInfo.get_names;
wenzelm
parents: 26607
diff changeset
   128
  fun sync_thy_loader () = List.app (trace_action ThyInfo.Update) (ThyInfo.get_names ());
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   129
end;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   130
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   131
21948
e34bc5e4e7bc removed obsolete init_pgip;
wenzelm
parents: 21945
diff changeset
   132
(* get informed about files *)
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   133
25442
0337e3df3187 removed unused inform_file_processed;
wenzelm
parents: 25436
diff changeset
   134
(*liberal low-level version*)
0337e3df3187 removed unused inform_file_processed;
wenzelm
parents: 25436
diff changeset
   135
val thy_name = perhaps (try (unsuffix ".thy")) o List.last o space_explode "/";
0337e3df3187 removed unused inform_file_processed;
wenzelm
parents: 25436
diff changeset
   136
0337e3df3187 removed unused inform_file_processed;
wenzelm
parents: 25436
diff changeset
   137
val inform_file_retracted = ThyInfo.if_known_thy ThyInfo.remove_thy o thy_name;
0337e3df3187 removed unused inform_file_processed;
wenzelm
parents: 25436
diff changeset
   138
27577
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   139
fun inform_file_processed file =
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   140
  let
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   141
    val name = thy_name file;
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   142
    val _ = name = "" andalso error ("Bad file name: " ^ quote file);
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   143
    val _ =
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   144
      if ThyInfo.check_known_thy name then
27602
86cf8f2493ca simplified commit_exit;
wenzelm
parents: 27592
diff changeset
   145
        (Isar.>> Toplevel.commit_exit; ThyInfo.touch_child_thys name; ThyInfo.register_thy name)
27585
2234ace5b538 inform_file_processed: try harder not to fail, ensure
wenzelm
parents: 27577
diff changeset
   146
          handle ERROR msg =>
27591
5e499b223a1e tuned message;
wenzelm
parents: 27589
diff changeset
   147
            (warning (cat_lines ["Failed to register theory: " ^ quote name, msg]);
27585
2234ace5b538 inform_file_processed: try harder not to fail, ensure
wenzelm
parents: 27577
diff changeset
   148
              tell_file_retracted (ThyLoad.thy_path name))
27577
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   149
      else ();
27589
68f98953c784 inform_file_processed: Isar.init_point last!
wenzelm
parents: 27585
diff changeset
   150
    val _ = Isar.init_point ();
27577
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   151
  in () end;
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   152
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   153
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   154
(* restart top-level loop (keeps most state information) *)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   155
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   156
val welcome = priority o Session.welcome;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   157
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   158
fun restart () =
21940
fbd068dd4d29 minor tuning;
wenzelm
parents: 21858
diff changeset
   159
 (sync_thy_loader ();
fbd068dd4d29 minor tuning;
wenzelm
parents: 21858
diff changeset
   160
  tell_clear_goals ();
fbd068dd4d29 minor tuning;
wenzelm
parents: 21858
diff changeset
   161
  tell_clear_response ();
27537
17838612217b restart: Isar.init_point;
wenzelm
parents: 27536
diff changeset
   162
  Isar.init_point ();
27577
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   163
  welcome ());
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   164
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   165
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   166
(* theorem dependency output *)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   167
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   168
local
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   169
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   170
val spaces_quote = space_implode " " o map quote;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   171
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   172
fun thm_deps_message (thms, deps) =
21948
e34bc5e4e7bc removed obsolete init_pgip;
wenzelm
parents: 21945
diff changeset
   173
  emacs_notify ("Proof General, theorem dependencies of " ^ thms ^ " are " ^ deps);
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   174
21968
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   175
fun tell_thm_deps ths =
22590
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
   176
  if print_mode_active thm_depsN then
21968
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   177
    let
22228
7c27195a4afc proper use of PureThy.has_name_hint instead of hard-wired string'';
wenzelm
parents: 22225
diff changeset
   178
      val names = map PureThy.get_name_hint (filter PureThy.has_name_hint ths);
22225
30ab97554602 Fix tell_thm_deps to match changse in PureThy.
aspinall
parents: 22159
diff changeset
   179
      val deps = Symtab.keys (fold Proofterm.thms_of_proof'
30ab97554602 Fix tell_thm_deps to match changse in PureThy.
aspinall
parents: 22159
diff changeset
   180
				   (map Thm.proof_of ths) Symtab.empty);
21968
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   181
    in
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   182
      if null names orelse null deps then ()
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   183
      else thm_deps_message (spaces_quote names, spaces_quote deps)
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   184
    end
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   185
  else ();
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   186
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   187
in
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   188
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   189
fun setup_present_hook () =
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   190
  Present.add_hook (fn _ => fn res => tell_thm_deps (maps #2 res));
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   191
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   192
end;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   193
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   194
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   195
(* additional outer syntax for Isar *)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   196
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   197
local structure P = OuterParse and K = OuterKeyword in
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   198
25192
b568f8c5d5ca made command 'undo' silent ('ProofGeneral.undo' becomes a historical relic);
wenzelm
parents: 24882
diff changeset
   199
fun undoP () = (*undo without output -- historical*)
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   200
  OuterSyntax.improper_command "ProofGeneral.undo" "(internal)" K.control
27535
518380d43585 activated new versions of undo, kill_proof;
wenzelm
parents: 27532
diff changeset
   201
    (Scan.succeed (Toplevel.no_timing o Toplevel.imperative (fn () => Isar.undo 1)));
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   202
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   203
fun restartP () =
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   204
  OuterSyntax.improper_command "ProofGeneral.restart" "(internal)" K.control
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   205
    (P.opt_unit >> (Toplevel.no_timing oo K (Toplevel.imperative restart)));
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   206
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   207
fun kill_proofP () =
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   208
  OuterSyntax.improper_command "ProofGeneral.kill_proof" "(internal)" K.control
27532
f3d92b5dcd45 added ProofGeneral.isar_kill_proof;
wenzelm
parents: 26706
diff changeset
   209
    (Scan.succeed (Toplevel.no_timing o
f3d92b5dcd45 added ProofGeneral.isar_kill_proof;
wenzelm
parents: 26706
diff changeset
   210
      Toplevel.imperative (fn () => (Isar.kill_proof (); tell_clear_goals ()))));
f3d92b5dcd45 added ProofGeneral.isar_kill_proof;
wenzelm
parents: 26706
diff changeset
   211
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   212
fun inform_file_processedP () =
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   213
  OuterSyntax.improper_command "ProofGeneral.inform_file_processed" "(internal)" K.control
27577
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   214
    (P.name >> (fn file =>
7c7a9a343ca5 proper_inform_file_processed: new implementation based on global Isar state (cf. isar.ML);
wenzelm
parents: 27537
diff changeset
   215
      Toplevel.no_timing o Toplevel.imperative (fn () => inform_file_processed file)));
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   216
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   217
fun inform_file_retractedP () =
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   218
  OuterSyntax.improper_command "ProofGeneral.inform_file_retracted" "(internal)" K.control
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   219
    (P.name >> (Toplevel.no_timing oo
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   220
      (fn file => Toplevel.imperative (fn () => inform_file_retracted file))));
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   221
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   222
fun process_pgipP () =
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   223
  OuterSyntax.improper_command "ProofGeneral.process_pgip" "(internal)" K.control
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   224
    (P.text >> (Toplevel.no_timing oo
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   225
      (fn txt => Toplevel.imperative (fn () => ProofGeneralPgip.process_pgip txt))));
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   226
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   227
fun init_outer_syntax () = List.app (fn f => f ())
27535
518380d43585 activated new versions of undo, kill_proof;
wenzelm
parents: 27532
diff changeset
   228
  [undoP, restartP, kill_proofP, inform_file_processedP, inform_file_retractedP, process_pgipP];
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   229
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   230
end;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   231
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   232
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   233
(* init *)
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   234
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   235
val initialized = ref false;
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   236
22699
938c1011ac94 removed unused Output.panic hook -- internal to PG wrapper;
wenzelm
parents: 22678
diff changeset
   237
fun init false = panic "No Proof General interface support for Isabelle/classic mode."
21940
fbd068dd4d29 minor tuning;
wenzelm
parents: 21858
diff changeset
   238
  | init true =
21968
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   239
      (! initialized orelse
22590
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
   240
        (Output.no_warnings init_outer_syntax ();
21968
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   241
          setup_xsymbols_output ();
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   242
          setup_messages ();
22590
ac84debdd7d3 removed unused info channel;
wenzelm
parents: 22228
diff changeset
   243
          ProofGeneralPgip.init_pgip_channel (! Output.priority_fn);
21968
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   244
          setup_thy_loader ();
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   245
          setup_present_hook ();
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   246
          set initialized);
883cd697112e removed conditional combinator;
wenzelm
parents: 21959
diff changeset
   247
        sync_thy_loader ();
25749
wenzelm
parents: 25630
diff changeset
   248
       change print_mode (update (op =) proof_generalN);
26643
99f5407c05ef Isar.toplevel_loop: separate init/welcome flag;
wenzelm
parents: 26613
diff changeset
   249
       Isar.toplevel_loop {init = true, welcome = true, sync = true, secure = Secure.is_secure ()});
21642
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   250
54b00ca67e0e Add separate PG Emacs configuration
aspinall
parents:
diff changeset
   251
end;