src/Pure/Thy/present.ML
author wenzelm
Tue, 12 Mar 2013 18:30:28 +0100
changeset 51400 96361e8f0a54
parent 51399 6ac3c29a300e
child 51401 f390b59b4b4a
permissions -rw-r--r--
more accurate theory links;
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 BASIC_PRESENT =
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     8
sig
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
     9
  val no_document: ('a -> 'b) -> 'a -> 'b  (*not thread-safe!*)
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    10
end;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    11
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    12
signature PRESENT =
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    13
sig
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    14
  include BASIC_PRESENT
24561
7b4aa14d2491 tuned signature;
wenzelm
parents: 24150
diff changeset
    15
  val session_name: theory -> string
48804
6348e5fca42e more direct interpretation of document_variants for build (unchanged for usedir);
wenzelm
parents: 48543
diff changeset
    16
  val read_variant: string -> string * string
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    17
  val init: bool -> bool -> Path.T -> string -> bool -> string -> (string * string) list ->
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    18
    string * string -> bool * 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
    19
  val finish: unit -> unit  (*not thread-safe!*)
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    20
  val init_theory: string -> unit
27862
8f727f7c8c1d removed obsolete verbatim_source, results, chapter, section etc.;
wenzelm
parents: 27491
diff changeset
    21
  val theory_source: string -> (unit -> HTML.text) -> unit
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
    22
  val theory_output: string -> string -> unit
51293
05b1bbae748d discontinued obsolete 'uses' within theory header;
wenzelm
parents: 50707
diff changeset
    23
  val begin_theory: int -> Path.T -> theory -> theory
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
    24
  val drafts: string -> Path.T list -> Path.T
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    25
end;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    26
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    27
structure Present: PRESENT =
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    28
struct
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    29
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    30
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    31
(** paths **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    32
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    33
val tex_ext = Path.ext "tex";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    34
val tex_path = tex_ext o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    35
val html_ext = Path.ext "html";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    36
val html_path = html_ext o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    37
val index_path = Path.basic "index.html";
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    38
val readme_html_path = Path.basic "README.html";
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    39
val readme_path = Path.basic "README";
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
    40
val documentN = "document";
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
    41
val document_path = Path.basic documentN;
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
    42
val doc_indexN = "session";
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    43
val graph_path = Path.basic "session.graph";
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    44
val graph_pdf_path = Path.basic "session_graph.pdf";
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    45
val graph_eps_path = Path.basic "session_graph.eps";
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    46
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
    47
fun show_path path = Path.implode (Path.append (File.pwd ()) path);
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
    48
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    49
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
    50
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    51
(** additional theory data **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    52
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
    53
structure Browser_Info = Theory_Data
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22580
diff changeset
    54
(
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    55
  type T = {chapter: string, name: string};
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    56
  val empty = {chapter = Context.PureN, name = Context.PureN}: T;
16503
24491bde68df clarify empty vs. pure browser info;
wenzelm
parents: 16426
diff changeset
    57
  fun extend _ = empty;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 32738
diff changeset
    58
  fun merge _ = empty;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22580
diff changeset
    59
);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    60
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    61
val session_name = #name o Browser_Info.get;
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    62
val session_chapter_name = (fn {chapter, name} => [chapter, name]) o Browser_Info.get;
24561
7b4aa14d2491 tuned signature;
wenzelm
parents: 24150
diff changeset
    63
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    64
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    65
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    66
(** graphs **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    67
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    68
fun ID_of sess s = space_implode "/" (sess @ [s]);
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    69
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
    70
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    71
fun theory_link (curr_chapter, curr_session) thy =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    72
  let
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    73
    val {chapter, name = session} = Browser_Info.get thy;
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    74
    val link = html_path (Context.theory_name thy);
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    75
  in
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    76
    if curr_session = session then SOME link
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    77
    else if curr_chapter = chapter then
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    78
      SOME (Path.appends [Path.parent, Path.basic session, link])
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    79
    else if chapter = Context.PureN then NONE
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    80
    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
    81
  end;
23899
ab37b1f690c7 clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents: 23884
diff changeset
    82
ab37b1f690c7 clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents: 23884
diff changeset
    83
(*retrieve graph data from initial collection of theories*)
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    84
fun init_graph (curr_chapter, curr_session) = rev o map (fn thy =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    85
  let
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    86
    val {chapter, name = session_name} = Browser_Info.get thy;
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    87
    val thy_name = Context.theory_name thy;
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    88
    val path =
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    89
      (case theory_link (curr_chapter, curr_session) thy of
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    90
        NONE => ""
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    91
      | SOME p => Path.implode p);
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
    92
    val entry =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    93
     {name = thy_name,
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    94
      ID = ID_of [chapter, session_name] thy_name,
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
    95
      dir = session_name,
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
    96
      path = path,
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
    97
      unfold = false,
49561
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
    98
      parents = map ID_of_thy (Theory.parents_of thy),
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
    99
      content = []};
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   100
  in (0, entry) end);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   101
49561
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
   102
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
   103
  (i, entry) :: filter_out (fn (_, entry') => #ID entry' = ID) gr;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   104
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   105
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   106
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   107
(** global browser info state **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   108
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   109
(* type theory_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   110
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   111
type theory_info = {tex_source: Buffer.T, html_source: Buffer.T, html: Buffer.T};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   112
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   113
fun make_theory_info (tex_source, html_source, html) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   114
  {tex_source = tex_source, html_source = html_source, html = html}: theory_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   115
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   116
val empty_theory_info = make_theory_info (Buffer.empty, Buffer.empty, Buffer.empty);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   117
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   118
fun map_theory_info f {tex_source, html_source, html} =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   119
  make_theory_info (f (tex_source, html_source, html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   120
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   121
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   122
(* type browser_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   123
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   124
type browser_info = {theories: theory_info Symtab.table, files: (Path.T * string) list,
49561
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
   125
  tex_index: (int * string) list, html_index: (int * string) list,
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
   126
  graph: (int * Graph_Display.node) list};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   127
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   128
fun make_browser_info (theories, files, tex_index, html_index, graph) =
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   129
  {theories = theories, files = files, tex_index = tex_index, html_index = html_index,
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   130
    graph = graph}: browser_info;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   131
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   132
val empty_browser_info = make_browser_info (Symtab.empty, [], [], [], []);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   133
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   134
fun init_browser_info session thys =
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   135
  make_browser_info (Symtab.empty, [], [], [], init_graph session thys);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   136
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   137
fun map_browser_info f {theories, files, tex_index, html_index, graph} =
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   138
  make_browser_info (f (theories, files, tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   139
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   140
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   141
(* state *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   142
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   143
val browser_info = Unsynchronized.ref empty_browser_info;
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   144
fun change_browser_info f =
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   145
  CRITICAL (fn () => Unsynchronized.change browser_info (map_browser_info f));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   146
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   147
val suppress_tex_source = Unsynchronized.ref false;
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
   148
fun no_document f x = Unsynchronized.setmp suppress_tex_source true f x;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   149
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   150
fun init_theory_info name info =
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   151
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17221
diff changeset
   152
    (Symtab.update (name, info) theories, files, tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   153
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   154
fun change_theory_info name f =
42010
04f8c4851219 eliminated dead code;
wenzelm
parents: 42009
diff changeset
   155
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17221
diff changeset
   156
    (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
   157
      NONE => error ("Browser info: cannot access theory document " ^ quote name)
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17221
diff changeset
   158
    | SOME info => (Symtab.update (name, map_theory_info f info) theories, files,
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   159
        tex_index, html_index, graph)));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   160
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   161
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   162
fun add_file file =
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   163
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   164
    (theories, file :: files, tex_index, html_index, graph));
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   165
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   166
fun add_tex_index txt =
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   167
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   168
    (theories, files, txt :: tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   169
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   170
fun add_html_index txt =
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   171
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   172
    (theories, files, tex_index, txt :: html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   173
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   174
fun add_graph_entry entry =
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   175
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   176
    (theories, files, tex_index, html_index, ins_graph_entry entry graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   177
11057
e68becb804fe added no_document
wenzelm
parents: 9917
diff changeset
   178
fun add_tex_source name txt =
e68becb804fe added no_document
wenzelm
parents: 9917
diff changeset
   179
  if ! suppress_tex_source then ()
e68becb804fe added no_document
wenzelm
parents: 9917
diff changeset
   180
  else change_theory_info name (fn (tex_source, html_source, html) =>
e68becb804fe added no_document
wenzelm
parents: 9917
diff changeset
   181
    (Buffer.add txt tex_source, html_source, html));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   182
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   183
fun add_html_source name txt = change_theory_info name (fn (tex_source, html_source, html) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   184
  (tex_source, Buffer.add txt html_source, html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   185
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   186
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   187
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   188
(** global session state **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   189
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   190
(* session_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   191
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   192
type session_info =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   193
  {name: string, chapter: string, info_path: Path.T,
48805
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   194
    info: bool, doc_format: string, doc_graph: bool, doc_output: Path.T option,
51398
c3d02b3518c2 discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents: 51293
diff changeset
   195
    documents: (string * string) list, doc_dump: (bool * string), verbose: bool,
c3d02b3518c2 discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents: 51293
diff changeset
   196
    readme: Path.T option};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   197
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   198
fun make_session_info
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   199
  (name, chapter, info_path, info, doc_format, doc_graph, doc_output,
51398
c3d02b3518c2 discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents: 51293
diff changeset
   200
    documents, doc_dump, verbose, readme) =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   201
  {name = name, chapter = chapter, info_path = info_path, info = info,
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   202
    doc_format = doc_format, doc_graph = doc_graph, doc_output = doc_output,
51398
c3d02b3518c2 discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents: 51293
diff changeset
   203
    documents = documents, doc_dump = doc_dump, verbose = verbose,
c3d02b3518c2 discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents: 51293
diff changeset
   204
    readme = readme}: session_info;
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   205
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   206
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   207
(* state *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   208
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   209
val session_info = Unsynchronized.ref (NONE: session_info option);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   210
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   211
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
   212
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   213
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   214
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   215
(** document preparation **)
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   216
42004
e06351ffb475 tuned terminology for document variants;
wenzelm
parents: 42003
diff changeset
   217
(* document variants *)
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   218
42004
e06351ffb475 tuned terminology for document variants;
wenzelm
parents: 42003
diff changeset
   219
fun read_variant str =
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   220
  (case space_explode "=" str of
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   221
    [name] => (name, "")
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   222
  | [name, tags] => (name, tags)
42004
e06351ffb475 tuned terminology for document variants;
wenzelm
parents: 42003
diff changeset
   223
  | _ => error ("Malformed document variant specification: " ^ quote str));
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   224
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   225
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   226
(* init session *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   227
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   228
fun init build info info_path doc doc_graph document_output doc_variants
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   229
    (chapter, name) (doc_dump as (_, dump_prefix)) verbose thys =
48516
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   230
  if not build andalso not info andalso doc = "" andalso dump_prefix = "" then
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   231
    (browser_info := empty_browser_info; session_info := NONE)
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   232
  else
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   233
    let
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   234
      val doc_output =
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   235
        if document_output = "" then NONE else SOME (Path.explode document_output);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   236
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   237
      val documents =
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   238
        if doc = "" then []
42005
wenzelm
parents: 42004
diff changeset
   239
        else if 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
   240
          (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
   241
           else (); [])
48804
6348e5fca42e more direct interpretation of document_variants for build (unchanged for usedir);
wenzelm
parents: 48543
diff changeset
   242
        else doc_variants;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   243
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   244
      val readme =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   245
        if File.exists readme_html_path then SOME readme_html_path
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   246
        else if File.exists readme_path then SOME readme_path
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   247
        else NONE;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   248
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   249
      val docs =
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   250
        (case readme of NONE => [] | SOME p => [(Url.File p, "README")]) @
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   251
          map (fn (name, _) => (Url.File (Path.ext doc (Path.basic name)), name)) documents;
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   252
      val index_text =  (* FIXME move to finish!? *)
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   253
        HTML.begin_session_index name docs (Url.explode "medium.html");
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   254
    in
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   255
      session_info :=
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   256
        SOME (make_session_info (name, chapter, info_path, info, doc,
51398
c3d02b3518c2 discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents: 51293
diff changeset
   257
          doc_graph, doc_output, documents, doc_dump, verbose, readme));
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   258
      browser_info := init_browser_info (chapter, name) thys;
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   259
      add_html_index (0, index_text)
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
   260
    end;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   261
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   262
28496
4cff10648928 renamed isatool to isabelle_tool in programming interfaces;
wenzelm
parents: 28375
diff changeset
   263
(* isabelle tool wrappers *)
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   264
48805
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   265
fun isabelle_document {verbose, purge} format name tags dir =
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   266
  let
48805
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   267
    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
   268
      \-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
   269
    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
   270
    val _ = if verbose then writeln s else ();
43850
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43712
diff changeset
   271
    val (out, rc) = Isabelle_System.bash_output s;
33682
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   272
    val _ =
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   273
      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
   274
        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
   275
      else if verbose then writeln out
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   276
      else ();
0c5d1485dea7 isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents: 33522
diff changeset
   277
  in doc_path end;
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   278
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   279
fun isabelle_browser graph = Isabelle_System.with_tmp_dir "browser" (fn dir =>
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   280
  let
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   281
    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
   282
    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
   283
    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
   284
    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
   285
    val args = "-o " ^ File.shell_path pdf_path ^ " " ^ File.shell_path graph_path;
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   286
  in
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   287
    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
   288
      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
   289
    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
   290
    else error "Failed to prepare dependency graph"
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   291
  end);
17082
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   292
b0e9462db0b4 support for document versions;
wenzelm
parents: 16503
diff changeset
   293
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   294
(* finish session -- output all generated text *)
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   295
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   296
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
   297
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
   298
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   299
fun write_tex src name path =
28027
051d5ccbafc5 renamed Buffer.write to File.write_buffer;
wenzelm
parents: 27862
diff changeset
   300
  File.write_buffer (Path.append path (tex_path name)) src;
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   301
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   302
fun write_tex_index tex_index path =
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   303
  write_tex (index_buffer tex_index |> Buffer.add Latex.tex_trailer) doc_indexN path;
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   304
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   305
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
   306
fun finish () =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   307
  with_session_info () (fn {name, chapter, info, info_path, doc_format, doc_graph, doc_output,
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   308
    documents, doc_dump = (dump_copy, dump_prefix), verbose, readme, ...} =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   309
  let
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   310
    val {theories, files, tex_index, html_index, graph} = ! browser_info;
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   311
    val thys = Symtab.dest theories;
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   312
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   313
    val chapter_prefix = Path.append info_path (Path.basic chapter);
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   314
    val session_prefix = Path.append chapter_prefix (Path.basic name);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   315
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   316
    fun finish_html (a, {html, ...}: theory_info) =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   317
      File.write_buffer (Path.append session_prefix (html_path a))
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   318
        (Buffer.add HTML.end_document html);
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   319
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   320
    val sorted_graph = sorted_index graph;
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   321
    val opt_graphs =
48516
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   322
      if doc_graph andalso (not (null documents) orelse dump_prefix <> "") then
28496
4cff10648928 renamed isatool to isabelle_tool in programming interfaces;
wenzelm
parents: 28375
diff changeset
   323
        SOME (isabelle_browser sorted_graph)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   324
      else NONE;
11856
a35af478aee4 graceful interpretation of -i/-d/-D options;
wenzelm
parents: 11580
diff changeset
   325
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   326
    val _ =
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   327
      if info then
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   328
       (Isabelle_System.mkdirs session_prefix;
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   329
        File.write_buffer (Path.append session_prefix index_path)
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   330
          (index_buffer html_index |> Buffer.add HTML.end_document);
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   331
        (case readme of NONE => () | SOME path => File.copy path session_prefix);
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   332
        Graph_Display.write_graph_browser (Path.append session_prefix graph_path) sorted_graph;
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   333
        Isabelle_System.isabelle_tool "browser" "-b";
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   334
        File.copy (Path.explode "~~/lib/browser/GraphBrowser.jar") session_prefix;
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   335
        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
   336
          (HTML.applet_pages name (Url.File index_path, name));
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   337
        File.copy (Path.explode "~~/etc/isabelle.css") session_prefix;
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   338
        List.app finish_html thys;
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   339
        List.app (uncurry File.write) files;
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   340
        if verbose then Output.physical_stderr ("Browser info at " ^ show_path session_prefix ^ "\n")
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   341
        else ())
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   342
      else ();
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   343
50121
97d2b77313a0 isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents: 49565
diff changeset
   344
    fun prepare_sources doc_copy doc_dir =
48933
wenzelm
parents: 48805
diff changeset
   345
     (Isabelle_System.mkdirs doc_dir;
50121
97d2b77313a0 isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents: 49565
diff changeset
   346
      if doc_copy then Isabelle_System.copy_dir document_path doc_dir else ();
97d2b77313a0 isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents: 49565
diff changeset
   347
      Isabelle_System.isabelle_tool "latex"
97d2b77313a0 isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents: 49565
diff changeset
   348
        ("-o sty " ^ File.shell_path (Path.append doc_dir (Path.basic "root.tex")));
48933
wenzelm
parents: 48805
diff changeset
   349
      (case opt_graphs of NONE => () | SOME (pdf, eps) =>
wenzelm
parents: 48805
diff changeset
   350
        (File.write (Path.append doc_dir graph_pdf_path) pdf;
wenzelm
parents: 48805
diff changeset
   351
          File.write (Path.append doc_dir graph_eps_path) eps));
wenzelm
parents: 48805
diff changeset
   352
      write_tex_index tex_index doc_dir;
wenzelm
parents: 48805
diff changeset
   353
      List.app (fn (a, {tex_source, ...}) => write_tex tex_source a doc_dir) thys);
wenzelm
parents: 48805
diff changeset
   354
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   355
    val _ =
48516
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   356
      if dump_prefix = "" then ()
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   357
      else
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   358
        let
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   359
          val path = Path.explode dump_prefix;
50121
97d2b77313a0 isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents: 49565
diff changeset
   360
          val _ = prepare_sources dump_copy path;
48516
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   361
        in
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   362
          if verbose then
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   363
            Output.physical_stderr ("Document sources at " ^ show_path path ^ "\n")
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   364
          else ()
c5d0f19ef7cb refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents: 48445
diff changeset
   365
        end;
42007
2142883ec29f eliminated redundant doc_prefix1;
wenzelm
parents: 42006
diff changeset
   366
48935
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   367
    fun document_job doc_prefix backdrop (name, tags) =
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   368
      let
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   369
        val _ =
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   370
          File.eq (document_path, doc_prefix) andalso
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   371
            error ("Overlap of document input and output directory " ^ Path.print doc_prefix);
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   372
        val dir = Path.append doc_prefix (Path.basic name);
50121
97d2b77313a0 isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents: 49565
diff changeset
   373
        val copy = not (File.eq (document_path, dir));
97d2b77313a0 isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents: 49565
diff changeset
   374
        val _ = prepare_sources copy dir;
48935
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   375
        fun inform doc =
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   376
          if verbose orelse not backdrop then
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   377
            Output.physical_stderr ("Document at " ^ show_path doc ^ "\n")
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   378
          else ();
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   379
      in
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   380
        fn () =>
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   381
          (isabelle_document {verbose = true, purge = backdrop} doc_format name tags dir, inform)
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   382
      end;
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   383
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   384
    val jobs =
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   385
      (if info orelse is_none doc_output then
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   386
        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
   387
       else []) @
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   388
      (case doc_output of
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   389
        NONE => []
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   390
      | 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
   391
4c92a2f310b6 clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents: 48933
diff changeset
   392
    val _ = jobs |> Par_List.map (fn job => job ()) |> List.app (op |>);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   393
  in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   394
    browser_info := empty_browser_info;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15159
diff changeset
   395
    session_info := NONE
42008
7423e833a880 Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents: 42007
diff changeset
   396
  end);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   397
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   398
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   399
(* theory elements *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   400
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   401
fun init_theory name = with_session_info () (fn _ => init_theory_info name empty_theory_info);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   402
27862
8f727f7c8c1d removed obsolete verbatim_source, results, chapter, section etc.;
wenzelm
parents: 27491
diff changeset
   403
fun theory_source name mk_text =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   404
  with_session_info () (fn _ => add_html_source name (HTML.theory_source (mk_text ())));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   405
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
   406
fun theory_output name s =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   407
  with_session_info () (fn _ => add_tex_source name (Latex.isabelle_file name s));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   408
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   409
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   410
fun begin_theory update_time dir thy =
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   411
    with_session_info thy (fn {name = session_name, chapter, info_path, ...} =>
23899
ab37b1f690c7 clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents: 23884
diff changeset
   412
  let
ab37b1f690c7 clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents: 23884
diff changeset
   413
    val name = Context.theory_name thy;
ab37b1f690c7 clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents: 23884
diff changeset
   414
    val parents = Theory.parents_of thy;
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   415
    val parent_specs = parents |> map (fn parent =>
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   416
      (Option.map Url.File (theory_link (chapter, session_name) parent),
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   417
        (Context.theory_name parent)));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   418
51293
05b1bbae748d discontinued obsolete 'uses' within theory header;
wenzelm
parents: 50707
diff changeset
   419
    val files = [];  (* FIXME *)
37939
965537d86fcc discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents: 37216
diff changeset
   420
    val files_html = files |> map (fn (raw_path, loadit) =>
965537d86fcc discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents: 37216
diff changeset
   421
      let
43712
3c2c912af2ef moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents: 43437
diff changeset
   422
        val path = File.check_file (File.full_path dir raw_path);
37939
965537d86fcc discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents: 37216
diff changeset
   423
        val base = Path.base path;
965537d86fcc discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents: 37216
diff changeset
   424
        val base_html = html_ext base;
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   425
        (* FIXME retain file path!? *)
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   426
        val session_prefix = Path.appends [info_path, Path.basic chapter, Path.basic name];
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   427
        val _ =
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   428
          add_file (Path.append session_prefix base_html,
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   429
            HTML.external_file (Url.File base) (File.read path));
37939
965537d86fcc discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents: 37216
diff changeset
   430
      in (Url.File base_html, Url.File raw_path, loadit) end);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   431
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   432
    fun prep_html_source (tex_source, html_source, html) =
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   433
      let val txt = HTML.begin_theory name parent_specs files_html (Buffer.content html_source)
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   434
      in (tex_source, Buffer.empty, Buffer.add txt html) end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   435
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   436
    val entry =
51400
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   437
     {name = name,
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   438
      ID = ID_of [chapter, session_name] name,
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   439
      dir = session_name,
96361e8f0a54 more accurate theory links;
wenzelm
parents: 51399
diff changeset
   440
      unfold = true,
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   441
      path = Path.implode (html_path name),
49561
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
   442
      parents = map ID_of_thy parents,
26fc70e983c2 separate module Graph_Display;
wenzelm
parents: 48935
diff changeset
   443
      content = []};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   444
  in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   445
    change_theory_info name prep_html_source;
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   446
    add_graph_entry (update_time, entry);
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   447
    add_html_index (update_time, HTML.theory_entry (Url.File (html_path name), name));
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   448
    add_tex_index (update_time, Latex.theory_entry name);
51399
6ac3c29a300e discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents: 51398
diff changeset
   449
    Browser_Info.put {chapter = chapter, name = session_name} thy
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   450
  end);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   451
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   452
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   453
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   454
(** draft document output **)
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   455
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   456
fun drafts doc_format src_paths = Isabelle_System.with_tmp_dir "drafts" (fn dir =>
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   457
  let
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   458
    fun prep_draft path i =
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   459
      let
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   460
        val base = Path.base path;
14972
wenzelm
parents: 14967
diff changeset
   461
        val name =
24829
e1214fa781ca avoid gensym;
wenzelm
parents: 24561
diff changeset
   462
          (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
   463
            "" => "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
   464
          | s => s)  ^ serial_string ();
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   465
      in
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   466
        if File.exists path then
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   467
          (((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
   468
        else error ("Bad file: " ^ Path.print path)
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   469
      end;
24150
ed724867099a sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents: 24102
diff changeset
   470
    val (srcs, tex_index) = split_list (fst (fold_map prep_draft src_paths 0));
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   471
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   472
    val doc_path = Path.append dir document_path;
40743
b07a0dbc8a38 more explicit Isabelle_System operations;
wenzelm
parents: 39733
diff changeset
   473
    val _ = Isabelle_System.mkdirs doc_path;
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   474
    val root_path = Path.append doc_path (Path.basic "root.tex");
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   475
    val _ = File.copy (Path.explode "~~/lib/texinputs/draft.tex") root_path;
40743
b07a0dbc8a38 more explicit Isabelle_System operations;
wenzelm
parents: 39733
diff changeset
   476
    val _ = Isabelle_System.isabelle_tool "latex" ("-o sty " ^ File.shell_path root_path);
b07a0dbc8a38 more explicit Isabelle_System operations;
wenzelm
parents: 39733
diff changeset
   477
    val _ = Isabelle_System.isabelle_tool "latex" ("-o syms " ^ File.shell_path root_path);
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   478
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   479
    fun known name =
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   480
      let val ss = split_lines (File.read (Path.append doc_path (Path.basic name)))
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20577
diff changeset
   481
      in member (op =) ss end;
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   482
    val known_syms = known "syms.lst";
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   483
    val known_ctrls = known "ctrls.lst";
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   484
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   485
    val _ = srcs |> List.app (fn (name, base, txt) =>
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   486
      Symbol.explode txt
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   487
      |> Latex.symbol_source (known_syms, known_ctrls) (Path.implode base)
14935
c2441592be14 tuned Present.drafts;
wenzelm
parents: 14922
diff changeset
   488
      |> File.write (Path.append doc_path (tex_path name)));
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   489
    val _ = write_tex_index tex_index doc_path;
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   490
48805
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   491
    val result =
c3ea910b3581 explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents: 48804
diff changeset
   492
      isabelle_document {verbose = false, purge = true} doc_format documentN "" doc_path;
42127
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   493
    val result' = Isabelle_System.create_tmp_path documentN doc_format;
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   494
    val _ = File.copy result result';
8223e7f4b0da Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents: 42126
diff changeset
   495
  in result' end);
14922
88c1e108d0bf added Present.drafts;
wenzelm
parents: 14898
diff changeset
   496
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   497
end;
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   498
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   499
structure Basic_Present: BASIC_PRESENT = Present;
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 31819
diff changeset
   500
open Basic_Present;