src/Pure/Thy/present.ML
author wenzelm
Thu, 17 Apr 2014 11:42:36 +0200
changeset 56614 d80f43dab30e
parent 56612 74851ff86180
child 56787 81dc6fffdf30
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Thy/present.ML
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
     2
    Author:     Markus Wenzel and Stefan Berghofer, TU Muenchen
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     3
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
     4
Theory presentation: HTML, graph files, (PDF)LaTeX documents.
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     5
*)
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     6
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     7
signature PRESENT =
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     8
sig
24561
7b4aa14d2491 tuned signature;
wenzelm
parents: 24150
diff changeset
     9
  val session_name: theory -> string
56614
wenzelm
parents: 56612
diff changeset
    10
  val document_enabled: string -> bool
56612
wenzelm
parents: 56533
diff changeset
    11
  val document_variants: string -> (string * string) list
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    12
  val init: bool -> bool -> Path.T -> string -> bool -> string -> (string * string) list ->
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
    13
    (Path.T * Path.T) list -> string * string -> bool -> theory list -> unit  (*not thread-safe!*)
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
    14
  val finish: unit -> unit  (*not thread-safe!*)
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
    15
  val theory_output: string -> string -> unit
54456
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
    16
  val begin_theory: int -> (unit -> HTML.text) -> theory -> theory
52549
802576856527 discontinued command 'print_drafts';
wenzelm
parents: 51567
diff changeset
    17
  val display_drafts: Path.T list -> int
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    18
end;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    19
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    20
structure Present: PRESENT =
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    21
struct
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    22
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    23
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    24
(** paths **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    25
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    26
val tex_ext = Path.ext "tex";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    27
val tex_path = tex_ext o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    28
val html_ext = Path.ext "html";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    29
val html_path = html_ext o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    30
val index_path = Path.basic "index.html";
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    31
val readme_html_path = Path.basic "README.html";
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
    32
val documentN = "document";
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
    33
val document_path = Path.basic documentN;
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
    34
val doc_indexN = "session";
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    35
val graph_path = Path.basic "session.graph";
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    36
val graph_pdf_path = Path.basic "session_graph.pdf";
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    37
val graph_eps_path = Path.basic "session_graph.eps";
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    38
51415
8a33d581718b show expanded path, to avoid odd /foo/bar/$ISABELLE_BROWSER_INFO/baz;
wenzelm
parents: 51401
diff changeset
    39
fun show_path path = Path.implode (Path.expand (Path.append (File.pwd ()) path));
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    40
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    41
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
    42
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    43
(** additional theory data **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    44
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
    45
structure Browser_Info = Theory_Data
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22580
diff changeset
    46
(
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    47
  type T = {chapter: string, name: string};
51567
a86c5e02ba58 proper default browser info for interactive mode, notably thy_deps;
wenzelm
parents: 51419
diff changeset
    48
  val empty = {chapter = "Unsorted", name = "Unknown"}: T;
16503
24491bde68df clarify empty vs. pure browser info;
wenzelm
parents: 16426
diff changeset
    49
  fun extend _ = empty;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 32738
diff changeset
    50
  fun merge _ = empty;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22580
diff changeset
    51
);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    52
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 52743
diff changeset
    53
val _ = Theory.setup
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 52743
diff changeset
    54
  (Browser_Info.put {chapter = Context.PureN, name = Context.PureN});
51567
a86c5e02ba58 proper default browser info for interactive mode, notably thy_deps;
wenzelm
parents: 51419
diff changeset
    55
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    56
val session_name = #name o Browser_Info.get;
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    57
val session_chapter_name = (fn {chapter, name} => [chapter, name]) o Browser_Info.get;
24561
7b4aa14d2491 tuned signature;
wenzelm
parents: 24150
diff changeset
    58
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    59
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    60
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    61
(** graphs **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    62
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    63
fun ID_of sess s = space_implode "/" (sess @ [s]);
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    64
fun ID_of_thy thy = ID_of (session_chapter_name thy) (Context.theory_name thy);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    65
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    66
fun theory_link (curr_chapter, curr_session) thy =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    67
  let
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    68
    val {chapter, name = session} = Browser_Info.get thy;
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    69
    val link = html_path (Context.theory_name thy);
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    70
  in
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    71
    if curr_session = session then SOME link
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    72
    else if curr_chapter = chapter then
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    73
      SOME (Path.appends [Path.parent, Path.basic session, link])
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    74
    else if chapter = Context.PureN then NONE
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    75
    else SOME (Path.appends [Path.parent, Path.parent, Path.basic chapter, Path.basic session, link])
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    76
  end;
23899
ab37b1f690c7 clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents: 23884
diff changeset
    77
ab37b1f690c7 clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents: 23884
diff changeset
    78
(*retrieve graph data from initial collection of theories*)
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    79
fun init_graph (curr_chapter, curr_session) = rev o map (fn thy =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    80
  let
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    81
    val {chapter, name = session_name} = Browser_Info.get thy;
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    82
    val thy_name = Context.theory_name thy;
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    83
    val path =
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    84
      (case theory_link (curr_chapter, curr_session) thy of
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    85
        NONE => ""
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    86
      | SOME p => Path.implode p);
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
    87
    val entry =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    88
     {name = thy_name,
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    89
      ID = ID_of [chapter, session_name] thy_name,
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    90
      dir = session_name,
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    91
      path = path,
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
    92
      unfold = false,
49561
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
    93
      parents = map ID_of_thy (Theory.parents_of thy),
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
    94
      content = []};
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
    95
  in (0, entry) end);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    96
49561
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
    97
fun ins_graph_entry (i, entry as {ID, ...}) (gr: (int * Graph_Display.node) list) =
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
    98
  (i, entry) :: filter_out (fn (_, entry') => #ID entry' = ID) gr;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    99
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   100
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   101
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   102
(** global browser info state **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   103
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   104
(* type theory_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   105
54456
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   106
type theory_info = {tex_source: string, html_source: string};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   107
54456
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   108
fun make_theory_info (tex_source, html_source) =
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   109
  {tex_source = tex_source, html_source = html_source}: theory_info;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   110
54456
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   111
fun map_theory_info f {tex_source, html_source} =
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   112
  make_theory_info (f (tex_source, html_source));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   113
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   114
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   115
(* type browser_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   116
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   117
type browser_info =
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   118
 {theories: theory_info Symtab.table,
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   119
  tex_index: (int * string) list,
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   120
  html_index: (int * string) list,
49561
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
   121
  graph: (int * Graph_Display.node) list};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   122
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   123
fun make_browser_info (theories, tex_index, html_index, graph) : browser_info =
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   124
  {theories = theories, tex_index = tex_index, html_index = html_index, graph = graph};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   125
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   126
val empty_browser_info = make_browser_info (Symtab.empty, [], [], []);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   127
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   128
fun init_browser_info session thys =
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   129
  make_browser_info (Symtab.empty, [], [], init_graph session thys);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   130
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   131
fun map_browser_info f {theories, tex_index, html_index, graph} =
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   132
  make_browser_info (f (theories, tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   133
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   134
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   135
(* state *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   136
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   137
val browser_info = Unsynchronized.ref empty_browser_info;
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   138
fun change_browser_info f =
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   139
  CRITICAL (fn () => Unsynchronized.change browser_info (map_browser_info f));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   140
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   141
fun init_theory_info name info =
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   142
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   143
    (Symtab.update (name, info) theories, tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   144
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   145
fun change_theory_info name f =
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   146
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17221
diff changeset
   147
    (case Symtab.lookup theories name of
27491
c8178a6a6480 begin_theory: files_html needs to be produced outside of prep_html_source to make ML files appear!
wenzelm
parents: 27329
diff changeset
   148
      NONE => error ("Browser info: cannot access theory document " ^ quote name)
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   149
    | SOME info =>
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   150
        (Symtab.update (name, map_theory_info f info) theories, tex_index, html_index, graph)));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   151
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   152
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   153
fun add_tex_index txt =
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   154
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   155
    (theories, txt :: tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   156
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   157
fun add_html_index txt =
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   158
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   159
    (theories, tex_index, txt :: html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   160
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   161
fun add_graph_entry entry =
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   162
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   163
    (theories, tex_index, html_index, ins_graph_entry entry graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   164
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   165
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   166
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   167
(** global session state **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   168
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   169
(* session_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   170
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   171
type session_info =
56530
5c178501cf78 removed obsolete doc_dump option (see also 892061142ba6);
wenzelm
parents: 54683
diff changeset
   172
  {name: string, chapter: string, info_path: Path.T, info: bool,
5c178501cf78 removed obsolete doc_dump option (see also 892061142ba6);
wenzelm
parents: 54683
diff changeset
   173
    doc_format: string, doc_graph: bool, doc_output: Path.T option,
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   174
    doc_files: (Path.T * Path.T) list, documents: (string * string) list,
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   175
    verbose: bool, readme: Path.T option};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   176
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   177
fun make_session_info
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   178
  (name, chapter, info_path, info, doc_format, doc_graph, doc_output,
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   179
    doc_files, documents, verbose, readme) =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   180
  {name = name, chapter = chapter, info_path = info_path, info = info,
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   181
    doc_format = doc_format, doc_graph = doc_graph, doc_output = doc_output,
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   182
    doc_files = doc_files, documents = documents, verbose = verbose,
51398
c3d02b3518c2 discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents: 51293
diff changeset
   183
    readme = readme}: session_info;
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   184
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   185
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   186
(* state *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   187
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   188
val session_info = Unsynchronized.ref (NONE: session_info option);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   189
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   190
fun with_session_info x f = (case ! session_info of NONE => x | SOME info => f info);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   191
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   192
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   193
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   194
(** document preparation **)
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   195
56614
wenzelm
parents: 56612
diff changeset
   196
(* options *)
wenzelm
parents: 56612
diff changeset
   197
wenzelm
parents: 56612
diff changeset
   198
fun document_enabled s = s <> "" andalso s <> "false";
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   199
56612
wenzelm
parents: 56533
diff changeset
   200
fun document_variants str =
wenzelm
parents: 56533
diff changeset
   201
  let
wenzelm
parents: 56533
diff changeset
   202
    fun read_variant s =
wenzelm
parents: 56533
diff changeset
   203
      (case space_explode "=" s of
wenzelm
parents: 56533
diff changeset
   204
        [name] => (name, "")
wenzelm
parents: 56533
diff changeset
   205
      | [name, tags] => (name, tags)
wenzelm
parents: 56533
diff changeset
   206
      | _ => error ("Malformed document variant specification: " ^ quote s));
wenzelm
parents: 56533
diff changeset
   207
    val variants = map read_variant (space_explode ":" str);
wenzelm
parents: 56533
diff changeset
   208
    val _ =
wenzelm
parents: 56533
diff changeset
   209
      (case duplicates (op =) (map #1 variants) of
wenzelm
parents: 56533
diff changeset
   210
        [] => ()
wenzelm
parents: 56533
diff changeset
   211
      | dups => error ("Duplicate document variants: " ^ commas_quote dups));
wenzelm
parents: 56533
diff changeset
   212
  in variants end;
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   213
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   214
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   215
(* init session *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   216
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   217
fun init build info info_path doc doc_graph document_output doc_variants doc_files
56530
5c178501cf78 removed obsolete doc_dump option (see also 892061142ba6);
wenzelm
parents: 54683
diff changeset
   218
    (chapter, name) verbose thys =
5c178501cf78 removed obsolete doc_dump option (see also 892061142ba6);
wenzelm
parents: 54683
diff changeset
   219
  if not build andalso not info andalso doc = "" then
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   220
    (browser_info := empty_browser_info; session_info := NONE)
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   221
  else
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   222
    let
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   223
      val doc_output =
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   224
        if document_output = "" then NONE else SOME (Path.explode document_output);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   225
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   226
      val documents =
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   227
        if doc = "" then []
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   228
        else if null doc_files andalso not (can File.check_dir document_path) then
44389
a3b5fdfb04a3 tuned signature -- contrast physical output primitives versus Output.raw_message;
wenzelm
parents: 43850
diff changeset
   229
          (if verbose then Output.physical_stderr "Warning: missing document directory\n"
a3b5fdfb04a3 tuned signature -- contrast physical output primitives versus Output.raw_message;
wenzelm
parents: 43850
diff changeset
   230
           else (); [])
48804
6348e5fca42e more direct interpretation of document_variants for build (unchanged for usedir);
wenzelm
parents: 48543
diff changeset
   231
        else doc_variants;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   232
51419
5313abe76bd4 include only README.html, not historic README, which tends towards surprises like src/HOL/SPARK/Examples/README;
wenzelm
parents: 51415
diff changeset
   233
      val readme = if File.exists readme_html_path then SOME readme_html_path else NONE;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   234
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   235
      val docs =
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   236
        (case readme of NONE => [] | SOME p => [(Url.File p, "README")]) @
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   237
          map (fn (name, _) => (Url.File (Path.ext doc (Path.basic name)), name)) documents;
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   238
    in
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   239
      session_info :=
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   240
        SOME (make_session_info (name, chapter, info_path, info, doc,
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   241
          doc_graph, doc_output, doc_files, documents, verbose, readme));
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   242
      browser_info := init_browser_info (chapter, name) thys;
51401
wenzelm
parents: 51400
diff changeset
   243
      add_html_index (0, HTML.begin_session_index name docs (Url.explode "medium.html"))
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
   244
    end;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   245
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   246
28496
4cff10648928 renamed isatool to isabelle_tool in programming interfaces;
wenzelm
parents: 28375
diff changeset
   247
(* isabelle tool wrappers *)
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   248
48805
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   249
fun isabelle_document {verbose, purge} format name tags dir =
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   250
  let
48805
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   251
    val s = "\"$ISABELLE_TOOL\" document" ^ (if purge then " -c" else "") ^ " -o '" ^ format ^ "' \
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   252
      \-n '" ^ name ^ "' -t '" ^ tags ^ "' " ^ File.shell_path dir ^ " 2>&1";
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   253
    val doc_path = Path.appends [dir, Path.parent, Path.basic name |> Path.ext format];
33682
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   254
    val _ = if verbose then writeln s else ();
43850
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43712
diff changeset
   255
    val (out, rc) = Isabelle_System.bash_output s;
33682
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   256
    val _ =
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   257
      if not (File.exists doc_path) orelse rc <> 0 then
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   258
        cat_error out ("Failed to build document " ^ quote (show_path doc_path))
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   259
      else if verbose then writeln out
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   260
      else ();
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   261
  in doc_path end;
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   262
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   263
fun isabelle_browser graph = Isabelle_System.with_tmp_dir "browser" (fn dir =>
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   264
  let
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   265
    val pdf_path = Path.append dir graph_pdf_path;
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   266
    val eps_path = Path.append dir graph_eps_path;
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   267
    val graph_path = Path.append dir graph_path;
49565
ea4308b7ef0f ML support for generic graph display, with browser and graphview backends (via print modes);
wenzelm
parents: 49561
diff changeset
   268
    val _ = Graph_Display.write_graph_browser graph_path graph;
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   269
    val args = "-o " ^ File.shell_path pdf_path ^ " " ^ File.shell_path graph_path;
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   270
  in
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   271
    if Isabelle_System.isabelle_tool "browser" args = 0 andalso
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   272
      File.exists pdf_path andalso File.exists eps_path
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   273
    then (File.read pdf_path, File.read eps_path)
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   274
    else error "Failed to prepare dependency graph"
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   275
  end);
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   276
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   277
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   278
(* finish session -- output all generated text *)
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   279
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   280
fun sorted_index index = map snd (sort (int_ord o pairself fst) (rev index));
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   281
fun index_buffer index = Buffer.add (implode (sorted_index index)) Buffer.empty;
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   282
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   283
fun write_tex src name path =
28027
051d5ccbafc5 renamed Buffer.write to File.write_buffer;
wenzelm
parents: 27862
diff changeset
   284
  File.write_buffer (Path.append path (tex_path name)) src;
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   285
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   286
fun write_tex_index tex_index path =
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   287
  write_tex (index_buffer tex_index |> Buffer.add Latex.tex_trailer) doc_indexN path;
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   288
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
   289
fun finish () =
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   290
  with_session_info () (fn {name, chapter, info, info_path, doc_format, doc_graph,
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   291
    doc_output, doc_files, documents, verbose, readme, ...} =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   292
  let
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   293
    val {theories, tex_index, html_index, graph} = ! browser_info;
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   294
    val thys = Symtab.dest theories;
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   295
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   296
    val chapter_prefix = Path.append info_path (Path.basic chapter);
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   297
    val session_prefix = Path.append chapter_prefix (Path.basic name);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   298
54456
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   299
    fun finish_html (a, {html_source, ...}: theory_info) =
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   300
      File.write (Path.append session_prefix (html_path a)) html_source;
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   301
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   302
    val sorted_graph = sorted_index graph;
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   303
    val opt_graphs =
56530
5c178501cf78 removed obsolete doc_dump option (see also 892061142ba6);
wenzelm
parents: 54683
diff changeset
   304
      if doc_graph andalso not (null documents) then
28496
4cff10648928 renamed isatool to isabelle_tool in programming interfaces;
wenzelm
parents: 28375
diff changeset
   305
        SOME (isabelle_browser sorted_graph)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   306
      else NONE;
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   307
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   308
    val _ =
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   309
      if info then
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   310
       (Isabelle_System.mkdirs session_prefix;
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   311
        File.write_buffer (Path.append session_prefix index_path)
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   312
          (index_buffer html_index |> Buffer.add HTML.end_document);
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   313
        (case readme of NONE => () | SOME path => Isabelle_System.copy_file path session_prefix);
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   314
        Graph_Display.write_graph_browser (Path.append session_prefix graph_path) sorted_graph;
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   315
        Isabelle_System.isabelle_tool "browser" "-b";
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   316
        Isabelle_System.copy_file (Path.explode "~~/lib/browser/GraphBrowser.jar") session_prefix;
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   317
        List.app (fn (a, txt) => File.write (Path.append session_prefix (Path.basic a)) txt)
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   318
          (HTML.applet_pages name (Url.File index_path, name));
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   319
        Isabelle_System.copy_file (Path.explode "~~/etc/isabelle.css") session_prefix;
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   320
        List.app finish_html thys;
54455
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   321
        if verbose
1d977436c1bf removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents: 53171
diff changeset
   322
        then Output.physical_stderr ("Browser info at " ^ show_path session_prefix ^ "\n")
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   323
        else ())
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   324
      else ();
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   325
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   326
    fun document_job doc_prefix backdrop (doc_name, tags) =
48935
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   327
      let
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   328
        val doc_dir = Path.append doc_prefix (Path.basic doc_name);
56531
wenzelm
parents: 56530
diff changeset
   329
        val _ = Isabelle_System.mkdirs doc_dir;
wenzelm
parents: 56530
diff changeset
   330
        val _ =
wenzelm
parents: 56530
diff changeset
   331
          Isabelle_System.isabelle_tool "latex"
wenzelm
parents: 56530
diff changeset
   332
            ("-o sty " ^ File.shell_path (Path.append doc_dir (Path.basic "root.tex")));
wenzelm
parents: 56530
diff changeset
   333
        val _ =
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   334
          if null doc_files then Isabelle_System.copy_dir document_path doc_dir
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   335
          else List.app (fn file => Isabelle_System.copy_file_base file doc_dir) doc_files;
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   336
        val _ =
56531
wenzelm
parents: 56530
diff changeset
   337
          (case opt_graphs of
wenzelm
parents: 56530
diff changeset
   338
            NONE => ()
wenzelm
parents: 56530
diff changeset
   339
          | SOME (pdf, eps) =>
wenzelm
parents: 56530
diff changeset
   340
              (File.write (Path.append doc_dir graph_pdf_path) pdf;
wenzelm
parents: 56530
diff changeset
   341
                File.write (Path.append doc_dir graph_eps_path) eps));
wenzelm
parents: 56530
diff changeset
   342
        val _ = write_tex_index tex_index doc_dir;
wenzelm
parents: 56530
diff changeset
   343
        val _ =
wenzelm
parents: 56530
diff changeset
   344
          List.app (fn (a, {tex_source, ...}) =>
wenzelm
parents: 56530
diff changeset
   345
            write_tex (Buffer.add tex_source Buffer.empty) a doc_dir) thys;
48935
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   346
      in
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   347
        fn () =>
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   348
          (isabelle_document {verbose = true, purge = backdrop} doc_format doc_name tags doc_dir,
56531
wenzelm
parents: 56530
diff changeset
   349
            fn doc =>
wenzelm
parents: 56530
diff changeset
   350
              if verbose orelse not backdrop then
wenzelm
parents: 56530
diff changeset
   351
                Output.physical_stderr ("Document at " ^ show_path doc ^ "\n")
wenzelm
parents: 56530
diff changeset
   352
              else ())
48935
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   353
      end;
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   354
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   355
    val jobs =
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   356
      (if info orelse is_none doc_output then
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   357
        map (document_job session_prefix true) documents
48935
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   358
       else []) @
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   359
      (case doc_output of
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   360
        NONE => []
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   361
      | SOME path => map (document_job path false) documents);
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   362
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   363
    val _ =
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   364
      if not (null jobs) andalso null doc_files then
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   365
        Output.physical_stderr ("### Document preparation for session " ^ quote name ^
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   366
          " without 'document_files'\n")
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   367
      else ();
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   368
48935
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   369
    val _ = jobs |> Par_List.map (fn job => job ()) |> List.app (op |>);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   370
  in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   371
    browser_info := empty_browser_info;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   372
    session_info := NONE
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
   373
  end);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   374
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   375
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   376
(* theory elements *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   377
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
   378
fun theory_output name s =
54458
96ccc8972fc7 prefer explicit "document" flag -- eliminated stateful Present.no_document;
wenzelm
parents: 54456
diff changeset
   379
  with_session_info () (fn _ =>
96ccc8972fc7 prefer explicit "document" flag -- eliminated stateful Present.no_document;
wenzelm
parents: 54456
diff changeset
   380
    change_theory_info name (fn (_, html_source) => (Latex.isabelle_file name s, html_source)));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   381
54456
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   382
fun begin_theory update_time mk_text thy =
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   383
  with_session_info thy (fn {name = session_name, chapter, ...} =>
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   384
    let
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   385
      val name = Context.theory_name thy;
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   386
      val parents = Theory.parents_of thy;
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   387
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   388
      val parent_specs = parents |> map (fn parent =>
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   389
        (Option.map Url.File (theory_link (chapter, session_name) parent),
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   390
          (Context.theory_name parent)));
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   391
      val html_source = HTML.theory name parent_specs (mk_text ());
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   392
54456
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   393
      val graph_entry =
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   394
       {name = name,
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   395
        ID = ID_of [chapter, session_name] name,
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   396
        dir = session_name,
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   397
        unfold = true,
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   398
        path = Path.implode (html_path name),
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   399
        parents = map ID_of_thy parents,
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   400
        content = []};
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   401
    in
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   402
      init_theory_info name (make_theory_info ("", html_source));
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   403
      add_graph_entry (update_time, graph_entry);
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   404
      add_html_index (update_time, HTML.theory_entry (Url.File (html_path name), name));
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   405
      add_tex_index (update_time, Latex.theory_entry name);
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   406
      Browser_Info.put {chapter = chapter, name = session_name} thy
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   407
    end);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   408
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   409
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   410
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   411
(** draft document output **)
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   412
52549
802576856527 discontinued command 'print_drafts';
wenzelm
parents: 51567
diff changeset
   413
fun display_drafts src_paths = Isabelle_System.with_tmp_dir "drafts" (fn dir =>
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   414
  let
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   415
    fun prep_draft path i =
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   416
      let
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   417
        val base = Path.base path;
14972
wenzelm
parents: 14967
diff changeset
   418
        val name =
24829
e1214fa781ca avoid gensym;
wenzelm
parents: 24561
diff changeset
   419
          (case Path.implode (#1 (Path.split_ext base)) of
44986
6f27ecf2a951 unique file names via serial numbers, to allow files like "root" or multiple files with same base name;
wenzelm
parents: 44389
diff changeset
   420
            "" => "DUMMY"
6f27ecf2a951 unique file names via serial numbers, to allow files like "root" or multiple files with same base name;
wenzelm
parents: 44389
diff changeset
   421
          | s => s)  ^ serial_string ();
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   422
      in
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   423
        if File.exists path then
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   424
          (((name, base, File.read path), (i, Latex.theory_entry name)), i + 1)
41944
b97091ae583a Path.print is the official way to show file-system paths to users -- note that Path.implode often indicates violation of the abstract datatype;
wenzelm
parents: 41886
diff changeset
   425
        else error ("Bad file: " ^ Path.print path)
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   426
      end;
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   427
    val (srcs, tex_index) = split_list (fst (fold_map prep_draft src_paths 0));
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   428
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   429
    val doc_path = Path.append dir document_path;
40743
b07a0dbc8a38 more explicit Isabelle_System operations;
wenzelm
parents: 39733
diff changeset
   430
    val _ = Isabelle_System.mkdirs doc_path;
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   431
    val root_path = Path.append doc_path (Path.basic "root.tex");
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   432
    val _ = Isabelle_System.copy_file (Path.explode "~~/lib/texinputs/draft.tex") root_path;
40743
b07a0dbc8a38 more explicit Isabelle_System operations;
wenzelm
parents: 39733
diff changeset
   433
    val _ = Isabelle_System.isabelle_tool "latex" ("-o sty " ^ File.shell_path root_path);
b07a0dbc8a38 more explicit Isabelle_System operations;
wenzelm
parents: 39733
diff changeset
   434
    val _ = Isabelle_System.isabelle_tool "latex" ("-o syms " ^ File.shell_path root_path);
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   435
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   436
    fun known name =
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   437
      let val ss = split_lines (File.read (Path.append doc_path (Path.basic name)))
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20577
diff changeset
   438
      in member (op =) ss end;
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   439
    val known_syms = known "syms.lst";
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   440
    val known_ctrls = known "ctrls.lst";
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   441
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   442
    val _ = srcs |> List.app (fn (name, base, txt) =>
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   443
      Symbol.explode txt
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   444
      |> Latex.symbol_source (known_syms, known_ctrls) (Path.implode base)
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   445
      |> File.write (Path.append doc_path (tex_path name)));
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   446
    val _ = write_tex_index tex_index doc_path;
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   447
48805
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   448
    val result =
52743
a7d69a11f395 discontinued ISABELLE_DOC_FORMAT;
wenzelm
parents: 52551
diff changeset
   449
      isabelle_document {verbose = false, purge = true} "pdf" documentN "" doc_path;
54683
cf48ddc266e5 clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents: 54458
diff changeset
   450
cf48ddc266e5 clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents: 54458
diff changeset
   451
    val target_dir = Path.explode "$ISABELLE_HOME_USER/tmp";
cf48ddc266e5 clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents: 54458
diff changeset
   452
    val target = Path.explode "$ISABELLE_HOME_USER/tmp/drafts.pdf"
cf48ddc266e5 clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents: 54458
diff changeset
   453
    val _ = Isabelle_System.mkdirs target_dir;
56533
cd8b6d849b6a explicit 'document_files' in session ROOT specifications;
wenzelm
parents: 56531
diff changeset
   454
    val _ = Isabelle_System.copy_file result target;
52549
802576856527 discontinued command 'print_drafts';
wenzelm
parents: 51567
diff changeset
   455
  in
54683
cf48ddc266e5 clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents: 54458
diff changeset
   456
    Isabelle_System.isabelle_tool "display" (File.shell_path target ^ " &")
52549
802576856527 discontinued command 'print_drafts';
wenzelm
parents: 51567
diff changeset
   457
  end);
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   458
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   459
end;
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   460