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