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