src/Pure/Thy/present.ML
author wenzelm
Sat, 12 Jun 2004 22:45:18 +0200
changeset 14922 88c1e108d0bf
parent 14898 a25550451b51
child 14935 c2441592be14
permissions -rw-r--r--
added Present.drafts;
wenzelm@6203
     1
(*  Title:      Pure/Thy/present.ML
wenzelm@6203
     2
    ID:         $Id$
wenzelm@9416
     3
    Author:     Markus Wenzel and Stefan Berghofer, TU Muenchen
wenzelm@8808
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
wenzelm@6203
     5
wenzelm@9416
     6
Theory presentation: HTML, graph files, (PDF)LaTeX documents.
wenzelm@6203
     7
*)
wenzelm@6203
     8
wenzelm@6203
     9
signature BASIC_PRESENT =
wenzelm@6203
    10
sig
wenzelm@11057
    11
  val no_document: ('a -> 'b) -> 'a -> 'b
wenzelm@7727
    12
  val section: string -> unit
wenzelm@6203
    13
end;
wenzelm@6203
    14
wenzelm@6203
    15
signature PRESENT =
wenzelm@6203
    16
sig
wenzelm@7727
    17
  include BASIC_PRESENT
wenzelm@14922
    18
  val get_info: theory -> {name: string, session: string list, is_local: bool}
wenzelm@9452
    19
  val write_graph: {name: string, ID: string, dir: string, unfold: bool,
wenzelm@9452
    20
   path: string, parents: string list} list -> Path.T -> unit
wenzelm@11911
    21
  val init: bool -> bool -> string -> bool -> string list -> string -> Path.T option
wenzelm@11580
    22
    -> Url.T option * bool -> bool -> unit
wenzelm@7727
    23
  val finish: unit -> unit
wenzelm@7727
    24
  val init_theory: string -> unit
wenzelm@8192
    25
  val verbatim_source: string -> (unit -> Symbol.symbol list) -> unit
wenzelm@8192
    26
  val old_symbol_source: string -> (unit -> Symbol.symbol list) -> unit
wenzelm@9136
    27
  val theory_output: string -> string -> unit
wenzelm@7727
    28
  val begin_theory: string -> string list -> (Path.T * bool) list -> theory -> theory
wenzelm@13532
    29
  val add_hook: (string -> (string * thm list) list -> unit) -> unit
wenzelm@13532
    30
  val results: string -> (string * thm list) list -> unit
wenzelm@7727
    31
  val theorem: string -> thm -> unit
wenzelm@7727
    32
  val theorems: string -> thm list -> unit
wenzelm@8088
    33
  val chapter: string -> unit
wenzelm@7727
    34
  val subsection: string -> unit
wenzelm@7727
    35
  val subsubsection: string -> unit
wenzelm@14922
    36
  val drafts: string -> Path.T list -> Path.T
wenzelm@7727
    37
  val setup: (theory -> theory) list
wenzelm@6203
    38
end;
wenzelm@6203
    39
wenzelm@7685
    40
structure Present: PRESENT =
wenzelm@7685
    41
struct
wenzelm@7685
    42
wenzelm@7685
    43
wenzelm@7727
    44
(** paths **)
wenzelm@7685
    45
wenzelm@7727
    46
val output_path = Path.variable "ISABELLE_BROWSER_INFO";
wenzelm@7685
    47
wenzelm@7727
    48
val tex_ext = Path.ext "tex";
wenzelm@7727
    49
val tex_path = tex_ext o Path.basic;
wenzelm@7727
    50
val html_ext = Path.ext "html";
wenzelm@7727
    51
val html_path = html_ext o Path.basic;
wenzelm@7727
    52
val index_path = Path.basic "index.html";
wenzelm@11856
    53
val readme_html_path = Path.basic "README.html";
wenzelm@11856
    54
val readme_path = Path.basic "README";
wenzelm@7727
    55
val doc_path = Path.basic "document";
wenzelm@8196
    56
val doc_indexN = "session";
wenzelm@11856
    57
val graph_path = Path.basic "session.graph";
wenzelm@11856
    58
val graph_pdf_path = Path.basic "session_graph.pdf";
wenzelm@11856
    59
val graph_eps_path = Path.basic "session_graph.eps";
wenzelm@7727
    60
wenzelm@7727
    61
val session_path = Path.basic ".session";
wenzelm@7727
    62
val session_entries_path = Path.unpack ".session/entries";
wenzelm@7727
    63
val pre_index_path = Path.unpack ".session/pre-index";
wenzelm@7727
    64
berghofe@9044
    65
fun mk_rel_path [] ys = Path.make ys
berghofe@9044
    66
  | mk_rel_path xs [] = Path.appends (replicate (length xs) Path.parent)
wenzelm@9416
    67
  | mk_rel_path (ps as x :: xs) (qs as y :: ys) = if x = y then mk_rel_path xs ys else
berghofe@9044
    68
      Path.appends (replicate (length ps) Path.parent @ [Path.make qs]);
wenzelm@7727
    69
wenzelm@11856
    70
fun show_path path = Path.pack (Path.append (File.pwd ()) path);
wenzelm@11856
    71
wenzelm@7727
    72
wenzelm@14922
    73
wenzelm@7727
    74
(** additional theory data **)
wenzelm@7727
    75
wenzelm@7727
    76
structure BrowserInfoArgs =
wenzelm@7727
    77
struct
wenzelm@7727
    78
  val name = "Pure/browser_info";
wenzelm@9416
    79
  type T = {name: string, session: string list, is_local: bool};
wenzelm@7727
    80
wenzelm@9416
    81
  val empty = {name = "Pure", session = [], is_local = false};
wenzelm@7727
    82
  val copy = I;
wenzelm@9452
    83
  fun prep_ext _ = {name = "", session = [], is_local = false};
wenzelm@7727
    84
  fun merge _ = empty;
wenzelm@7727
    85
  fun print _ _ = ();
wenzelm@7685
    86
end;
wenzelm@7685
    87
wenzelm@7727
    88
structure BrowserInfoData = TheoryDataFun(BrowserInfoArgs);
wenzelm@7727
    89
wenzelm@7727
    90
fun get_info thy =
wenzelm@7727
    91
  if Theory.eq_thy (thy, ProtoPure.thy) then BrowserInfoArgs.empty
wenzelm@7727
    92
  else BrowserInfoData.get thy;
wenzelm@7727
    93
wenzelm@7727
    94
wenzelm@7727
    95
wenzelm@7727
    96
(** graphs **)
wenzelm@7727
    97
wenzelm@7727
    98
type graph_node =
wenzelm@7727
    99
  {name: string, ID: string, dir: string, unfold: bool,
wenzelm@7727
   100
   path: string, parents: string list};
wenzelm@7727
   101
wenzelm@9416
   102
fun write_graph gr path =
wenzelm@9416
   103
  File.write path (cat_lines (map (fn {name, ID, dir, unfold, path, parents} =>
wenzelm@9416
   104
    "\"" ^ name ^ "\" \"" ^ ID ^ "\" \"" ^ dir ^ (if unfold then "\" + \"" else "\" \"") ^
berghofe@14598
   105
    path ^ "\" > " ^ space_implode " " (map Library.quote parents) ^ " ;") gr));
wenzelm@7727
   106
wenzelm@9416
   107
fun ID_of sess s = space_implode "/" (sess @ [s]);
wenzelm@7727
   108
wenzelm@9416
   109
(*retrieve graph data from initial theory loader database*)
wenzelm@9416
   110
fun init_graph remote_path curr_sess = map (fn name =>
wenzelm@7727
   111
  let
wenzelm@9416
   112
    val {name = sess_name, session, is_local} = get_info (ThyInfo.theory name);
wenzelm@9416
   113
    val path' = Path.append (Path.make session) (html_path name);
wenzelm@7727
   114
  in
wenzelm@9416
   115
   {name = name, ID = ID_of session name, dir = sess_name,
wenzelm@9416
   116
    path =
wenzelm@9416
   117
      if null session then "" else
wenzelm@9416
   118
      if is_some remote_path andalso not is_local then
wenzelm@14898
   119
        Url.pack (Url.append (the remote_path) (Url.File
wenzelm@9416
   120
          (Path.append (Path.make session) (html_path name))))
wenzelm@9416
   121
      else Path.pack (Path.append (mk_rel_path curr_sess session) (html_path name)),
wenzelm@9416
   122
    unfold = false,
wenzelm@9416
   123
    parents =
wenzelm@9416
   124
      map (fn s => ID_of (#session (get_info (ThyInfo.theory s))) s) (ThyInfo.get_preds name)}
wenzelm@7727
   125
  end) (ThyInfo.names ());
wenzelm@7727
   126
wenzelm@9416
   127
fun ins_graph_entry (entry as {ID, ...}) (gr: graph_node list) =
wenzelm@7727
   128
  filter_out (fn entry' => #ID entry' = ID) gr @ [entry];
wenzelm@7727
   129
wenzelm@7727
   130
wenzelm@7727
   131
wenzelm@7727
   132
(** global browser info state **)
wenzelm@7727
   133
wenzelm@7727
   134
(* type theory_info *)
wenzelm@7727
   135
wenzelm@7727
   136
type theory_info = {tex_source: Buffer.T, html_source: Buffer.T, html: Buffer.T};
wenzelm@7727
   137
wenzelm@7727
   138
fun make_theory_info (tex_source, html_source, html) =
wenzelm@7727
   139
  {tex_source = tex_source, html_source = html_source, html = html}: theory_info;
wenzelm@7727
   140
wenzelm@7727
   141
val empty_theory_info = make_theory_info (Buffer.empty, Buffer.empty, Buffer.empty);
wenzelm@7727
   142
wenzelm@7727
   143
fun map_theory_info f {tex_source, html_source, html} =
wenzelm@7727
   144
  make_theory_info (f (tex_source, html_source, html));
wenzelm@7727
   145
wenzelm@7727
   146
wenzelm@7727
   147
(* type browser_info *)
wenzelm@7727
   148
wenzelm@11856
   149
type browser_info = {theories: theory_info Symtab.table, files: (Path.T * string) list,
wenzelm@11856
   150
  tex_index: Buffer.T, html_index: Buffer.T, graph: graph_node list};
wenzelm@7727
   151
wenzelm@11856
   152
fun make_browser_info (theories, files, tex_index, html_index, graph) =
wenzelm@11856
   153
  {theories = theories, files = files, tex_index = tex_index, html_index = html_index,
wenzelm@9416
   154
    graph = graph}: browser_info;
wenzelm@7727
   155
wenzelm@11856
   156
val empty_browser_info = make_browser_info (Symtab.empty, [], Buffer.empty, Buffer.empty, []);
wenzelm@7727
   157
wenzelm@9416
   158
fun init_browser_info remote_path curr_sess = make_browser_info
wenzelm@11856
   159
  (Symtab.empty, [], Buffer.empty, Buffer.empty, init_graph remote_path curr_sess);
wenzelm@7727
   160
wenzelm@11856
   161
fun map_browser_info f {theories, files, tex_index, html_index, graph} =
wenzelm@11856
   162
  make_browser_info (f (theories, files, tex_index, html_index, graph));
wenzelm@7727
   163
wenzelm@7727
   164
wenzelm@7727
   165
(* state *)
wenzelm@7727
   166
wenzelm@7727
   167
val browser_info = ref empty_browser_info;
wenzelm@11057
   168
fun change_browser_info f = browser_info := map_browser_info f (! browser_info);
wenzelm@7727
   169
wenzelm@11057
   170
val suppress_tex_source = ref false;
wenzelm@11057
   171
fun no_document f x = Library.setmp suppress_tex_source true f x;
wenzelm@7727
   172
wenzelm@7727
   173
fun init_theory_info name info =
wenzelm@11856
   174
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
wenzelm@11856
   175
    (Symtab.update ((name, info), theories), files, tex_index, html_index, graph));
wenzelm@7727
   176
wenzelm@7727
   177
fun change_theory_info name f =
wenzelm@11856
   178
  change_browser_info (fn (info as (theories, files, tex_index, html_index, graph)) =>
wenzelm@7727
   179
    (case Symtab.lookup (theories, name) of
wenzelm@7727
   180
      None => (warning ("Browser info: cannot access theory document " ^ quote name); info)
wenzelm@11856
   181
    | Some info => (Symtab.update ((name, map_theory_info f info), theories), files,
wenzelm@9416
   182
        tex_index, html_index, graph)));
wenzelm@7727
   183
wenzelm@7727
   184
wenzelm@11856
   185
fun add_file file =
wenzelm@11856
   186
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
wenzelm@11856
   187
    (theories, file :: files, tex_index, html_index, graph));
wenzelm@11856
   188
wenzelm@7727
   189
fun add_tex_index txt =
wenzelm@11856
   190
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
wenzelm@11856
   191
    (theories, files, Buffer.add txt tex_index, html_index, graph));
wenzelm@7727
   192
wenzelm@7727
   193
fun add_html_index txt =
wenzelm@11856
   194
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
wenzelm@11856
   195
    (theories, files, tex_index, Buffer.add txt html_index, graph));
wenzelm@7727
   196
wenzelm@7727
   197
fun add_graph_entry e =
wenzelm@11856
   198
  change_browser_info (fn (theories, files, tex_index, html_index, graph) =>
wenzelm@11856
   199
    (theories, files, tex_index, html_index, ins_graph_entry e graph));
wenzelm@7727
   200
wenzelm@11057
   201
fun add_tex_source name txt =
wenzelm@11057
   202
  if ! suppress_tex_source then ()
wenzelm@11057
   203
  else change_theory_info name (fn (tex_source, html_source, html) =>
wenzelm@11057
   204
    (Buffer.add txt tex_source, html_source, html));
wenzelm@7727
   205
wenzelm@7727
   206
fun add_html_source name txt = change_theory_info name (fn (tex_source, html_source, html) =>
wenzelm@7727
   207
  (tex_source, Buffer.add txt html_source, html));
wenzelm@7727
   208
wenzelm@7727
   209
fun add_html name txt = change_theory_info name (fn (tex_source, html_source, html) =>
wenzelm@7727
   210
  (tex_source, html_source, Buffer.add txt html));
wenzelm@7727
   211
wenzelm@7727
   212
wenzelm@7727
   213
wenzelm@7727
   214
(** global session state **)
wenzelm@7727
   215
wenzelm@7727
   216
(* session_info *)
wenzelm@7727
   217
wenzelm@7727
   218
type session_info =
wenzelm@7727
   219
  {name: string, parent: string, session: string, path: string list, html_prefix: Path.T,
wenzelm@11856
   220
    info: bool, doc_format: string, doc_graph: bool, doc_prefix1: Path.T option,
wenzelm@11856
   221
    doc_prefix2: Path.T option, remote_path: Url.T option, verbose: bool, readme: Path.T option};
wenzelm@7727
   222
wenzelm@9416
   223
fun make_session_info
wenzelm@11856
   224
  (name, parent, session, path, html_prefix, info, doc_format, doc_graph, doc_prefix1,
wenzelm@11856
   225
    doc_prefix2, remote_path, verbose, readme) =
wenzelm@7802
   226
  {name = name, parent = parent, session = session, path = path, html_prefix = html_prefix,
wenzelm@11856
   227
    info = info, doc_format = doc_format, doc_graph = doc_graph, doc_prefix1 = doc_prefix1,
wenzelm@11856
   228
    doc_prefix2 = doc_prefix2, remote_path = remote_path, verbose = verbose,
wenzelm@11856
   229
    readme = readme}: session_info;
wenzelm@7727
   230
wenzelm@7727
   231
wenzelm@7727
   232
(* state *)
wenzelm@7727
   233
wenzelm@7727
   234
val session_info = ref (None: session_info option);
wenzelm@7727
   235
wenzelm@7727
   236
fun with_session x f = (case ! session_info of None => x | Some info => f info);
wenzelm@7727
   237
fun with_context f = f (PureThy.get_name (Context.the_context ()));
wenzelm@7727
   238
wenzelm@7727
   239
wenzelm@7727
   240
wenzelm@14922
   241
(** document preparation **)
wenzelm@7727
   242
wenzelm@7727
   243
(* maintain index *)
wenzelm@7727
   244
wenzelm@7727
   245
val session_entries =
wenzelm@7727
   246
  HTML.session_entries o
wenzelm@14898
   247
    map (fn name => (Url.File (Path.append (Path.basic name) index_path), name));
wenzelm@7727
   248
wenzelm@7727
   249
fun get_entries dir =
wenzelm@7727
   250
  split_lines (File.read (Path.append dir session_entries_path));
wenzelm@7727
   251
wenzelm@7727
   252
fun put_entries entries dir =
wenzelm@7727
   253
  File.write (Path.append dir session_entries_path) (cat_lines entries);
wenzelm@7727
   254
wenzelm@7727
   255
wenzelm@7727
   256
fun create_index dir =
wenzelm@7727
   257
  File.read (Path.append dir pre_index_path) ^
wenzelm@7727
   258
    session_entries (get_entries dir) ^ HTML.end_index
wenzelm@7727
   259
  |> File.write (Path.append dir index_path);
wenzelm@7727
   260
wenzelm@7727
   261
fun update_index dir name =
wenzelm@7727
   262
  (case try get_entries dir of
wenzelm@7727
   263
    None => warning ("Browser info: cannot access session index of " ^ quote (Path.pack dir))
wenzelm@7727
   264
  | Some es => (put_entries ((es \ name) @ [name]) dir; create_index dir));
wenzelm@7727
   265
wenzelm@7727
   266
wenzelm@7727
   267
(* init session *)
wenzelm@7727
   268
wenzelm@12895
   269
fun copy_files path1 path2 =
wenzelm@12895
   270
 (File.mkdir path2;
wenzelm@12895
   271
  system ("cp " ^ File.sysify_path path1 ^ " " ^ File.sysify_path path2));  (*FIXME: quote!?*)
wenzelm@12895
   272
wenzelm@12895
   273
fun copy_all path1 path2 =
wenzelm@14922
   274
 (File.mkdir path2;
kleing@12898
   275
  system ("cp -r " ^ File.quote_sysify_path path1 ^ "/. " ^
kleing@12898
   276
    File.quote_sysify_path path2));
wenzelm@12895
   277
wenzelm@12895
   278
wenzelm@7727
   279
fun name_of_session elems = space_implode "/" ("Isabelle" :: elems);
wenzelm@7727
   280
wenzelm@11911
   281
fun init build info doc doc_graph path name doc_prefix2 (remote_path, first_time) verbose =
wenzelm@11911
   282
  if not build andalso not info andalso doc = "" andalso is_none doc_prefix2 then
wenzelm@11856
   283
    (browser_info := empty_browser_info; session_info := None)
wenzelm@11856
   284
  else
wenzelm@11856
   285
    let
wenzelm@11856
   286
      val parent_name = name_of_session (Library.take (length path - 1, path));
wenzelm@11856
   287
      val session_name = name_of_session path;
wenzelm@11856
   288
      val sess_prefix = Path.make path;
wenzelm@11856
   289
      val html_prefix = Path.append (Path.expand output_path) sess_prefix;
wenzelm@7727
   290
wenzelm@11856
   291
      val (doc_prefix1, document_path) =
wenzelm@11856
   292
        if doc = "" then (None, None)
wenzelm@11856
   293
        else if not (File.exists doc_path) then (conditional verbose (fn () =>
wenzelm@11856
   294
          std_error "Warning: missing document directory\n"); (None, None))
wenzelm@11856
   295
        else (Some (Path.append html_prefix doc_path), Some (Path.ext doc doc_path));
wenzelm@7727
   296
wenzelm@11856
   297
      val parent_index_path = Path.append Path.parent index_path;
wenzelm@11856
   298
      val index_up_lnk = if first_time then
wenzelm@14898
   299
          Url.append (the remote_path) (Url.File (Path.append sess_prefix parent_index_path))
wenzelm@14898
   300
        else Url.File parent_index_path;
wenzelm@11856
   301
      val readme =
wenzelm@11856
   302
        if File.exists readme_html_path then Some readme_html_path
wenzelm@11856
   303
        else if File.exists readme_path then Some readme_path
wenzelm@11856
   304
        else None;
wenzelm@7727
   305
wenzelm@11856
   306
      val index_text = HTML.begin_index (index_up_lnk, parent_name)
wenzelm@14898
   307
        (Url.File index_path, session_name) (apsome Url.File readme)
wenzelm@14898
   308
          (apsome Url.File document_path) (Url.unpack "medium.html");
wenzelm@11856
   309
    in
wenzelm@11856
   310
      session_info := Some (make_session_info (name, parent_name, session_name, path, html_prefix,
wenzelm@11856
   311
      info, doc, doc_graph, doc_prefix1, doc_prefix2, remote_path, verbose, readme));
wenzelm@11856
   312
      browser_info := init_browser_info remote_path path;
wenzelm@11856
   313
      add_html_index index_text
wenzelm@11856
   314
    end;
wenzelm@7727
   315
wenzelm@7727
   316
wenzelm@11856
   317
(* finish session -- output all generated text *)
wenzelm@7727
   318
wenzelm@14922
   319
fun write_tex src name path =
wenzelm@14922
   320
  Buffer.write (Path.append path (tex_path name)) src;
wenzelm@14922
   321
wenzelm@14922
   322
fun write_tex_index tex_index path =
wenzelm@14922
   323
  write_tex (Buffer.add Latex.tex_trailer tex_index) doc_indexN path;
wenzelm@14922
   324
wenzelm@7727
   325
wenzelm@11856
   326
fun isatool_document doc_format path =
wenzelm@12632
   327
  let val s = "\"$ISATOOL\" document -c -o '" ^ doc_format ^ "' " ^
wenzelm@12632
   328
    File.quote_sysify_path path ^ " 2>&1"
wenzelm@12632
   329
  in
wenzelm@11856
   330
    writeln s;
wenzelm@11856
   331
    if system s <> 0 orelse not (File.exists (Path.ext doc_format path)) then
wenzelm@8646
   332
      error "Failed to build document"
wenzelm@8646
   333
    else ()
wenzelm@8646
   334
  end;
wenzelm@7802
   335
wenzelm@11856
   336
fun isatool_browser graph =
wenzelm@11856
   337
  let
wenzelm@11856
   338
    val pdfpath = File.tmp_path graph_pdf_path;
wenzelm@11856
   339
    val epspath = File.tmp_path graph_eps_path;
wenzelm@11856
   340
    val gpath = File.tmp_path graph_path;
wenzelm@11856
   341
    val s = "\"$ISATOOL\" browser -o " ^ File.quote_sysify_path pdfpath ^ " " ^
wenzelm@11856
   342
      File.quote_sysify_path gpath;
wenzelm@11856
   343
  in
wenzelm@11856
   344
    write_graph graph gpath;
wenzelm@11856
   345
    if system s <> 0 orelse not (File.exists epspath) orelse not (File.exists pdfpath) then
wenzelm@11856
   346
      error "Failed to prepare dependency graph"
wenzelm@11856
   347
    else
wenzelm@11856
   348
      let val pdf = File.read pdfpath and eps = File.read epspath
wenzelm@11856
   349
      in File.rm pdfpath; File.rm epspath; File.rm gpath; (pdf, eps) end
wenzelm@11856
   350
  end;
wenzelm@8196
   351
wenzelm@11856
   352
fun finish () = with_session () (fn {name, info, html_prefix, doc_format, doc_graph,
wenzelm@11856
   353
    doc_prefix1, doc_prefix2, path, verbose, readme, ...} =>
wenzelm@7727
   354
  let
wenzelm@11856
   355
    val {theories, files, tex_index, html_index, graph} = ! browser_info;
wenzelm@11856
   356
    val thys = Symtab.dest theories;
wenzelm@9416
   357
    val parent_html_prefix = Path.append html_prefix Path.parent;
wenzelm@7727
   358
wenzelm@11856
   359
    fun finish_tex path (a, {tex_source, ...}: theory_info) = write_tex tex_source a path;
wenzelm@11856
   360
    fun finish_html (a, {html, ...}: theory_info) =
wenzelm@11856
   361
      Buffer.write (Path.append html_prefix (html_path a)) (Buffer.add HTML.end_theory html);
wenzelm@11856
   362
wenzelm@11856
   363
    val opt_graphs =
wenzelm@11856
   364
      if doc_graph andalso (is_some doc_prefix1 orelse is_some doc_prefix2) then
wenzelm@11856
   365
        Some (isatool_browser graph)
wenzelm@11856
   366
      else None;
wenzelm@11856
   367
wenzelm@12895
   368
    fun prepare_sources path =
wenzelm@12895
   369
     (copy_all doc_path path;
wenzelm@12895
   370
      copy_files (Path.unpack "~~/lib/texinputs/*.sty") path;
wenzelm@12849
   371
      (case opt_graphs of None => () | Some (pdf, eps) =>
wenzelm@11856
   372
        (File.write (Path.append path graph_pdf_path) pdf;
wenzelm@11856
   373
          File.write (Path.append path graph_eps_path) eps));
wenzelm@14922
   374
      write_tex_index tex_index path;
wenzelm@11856
   375
      seq (finish_tex path) thys);
wenzelm@7727
   376
  in
wenzelm@11856
   377
    conditional info (fn () =>
wenzelm@11856
   378
     (File.mkdir (Path.append html_prefix session_path);
wenzelm@11856
   379
      Buffer.write (Path.append html_prefix pre_index_path) html_index;
wenzelm@11856
   380
      File.write (Path.append html_prefix session_entries_path) "";
wenzelm@11856
   381
      create_index html_prefix;
wenzelm@11856
   382
      if length path > 1 then update_index parent_html_prefix name else ();
wenzelm@11856
   383
      (case readme of None => () | Some path => File.copy path (Path.append html_prefix path));
wenzelm@11856
   384
      write_graph graph (Path.append html_prefix graph_path);
kleing@14540
   385
      copy_files (Path.unpack "~~/lib/browser/GraphBrowser.jar") html_prefix;
wenzelm@11856
   386
      seq (fn (a, txt) => File.write (Path.append html_prefix (Path.basic a)) txt)
wenzelm@14898
   387
        (HTML.applet_pages name (Url.File index_path, name));
kleing@14540
   388
      copy_files (Path.unpack "~~/lib/html/isabelle.css") html_prefix;
wenzelm@11856
   389
      seq finish_html thys;
wenzelm@11856
   390
      seq (uncurry File.write) files;
wenzelm@11856
   391
      conditional verbose (fn () =>
wenzelm@11856
   392
        std_error ("Browser info at " ^ show_path html_prefix ^ "\n"))));
wenzelm@11856
   393
wenzelm@12895
   394
    (case doc_prefix2 of None => () | Some path =>
wenzelm@12895
   395
     (prepare_sources path;
wenzelm@12895
   396
      conditional verbose (fn () => std_error ("Document sources at " ^ show_path path ^ "\n"))));
wenzelm@12895
   397
wenzelm@11856
   398
    (case doc_prefix1 of None => () | Some path =>
wenzelm@12895
   399
     (prepare_sources path;
wenzelm@11856
   400
      isatool_document doc_format path;
wenzelm@11856
   401
      conditional verbose (fn () =>
wenzelm@11856
   402
        std_error ("Document at " ^ show_path (Path.ext doc_format path) ^ "\n"))));
wenzelm@11856
   403
wenzelm@7727
   404
    browser_info := empty_browser_info;
wenzelm@7727
   405
    session_info := None
wenzelm@7727
   406
  end);
wenzelm@7727
   407
wenzelm@7727
   408
wenzelm@7727
   409
(* theory elements *)
wenzelm@7727
   410
wenzelm@7727
   411
fun init_theory name = with_session () (fn _ => init_theory_info name empty_theory_info);
wenzelm@7727
   412
wenzelm@7727
   413
fun verbatim_source name mk_text =
wenzelm@7727
   414
  with_session () (fn _ => add_html_source name (HTML.verbatim_source (mk_text ())));
wenzelm@7727
   415
wenzelm@8192
   416
fun old_symbol_source name mk_text =
wenzelm@14922
   417
  with_session () (fn _ => add_tex_source name
wenzelm@14922
   418
    (Latex.symbol_source (K true, K true) name (mk_text ())));
wenzelm@8192
   419
wenzelm@9136
   420
fun theory_output name s =
wenzelm@9917
   421
  with_session () (fn _ => add_tex_source name (Latex.isabelle_file name s));
wenzelm@7727
   422
wenzelm@7727
   423
wenzelm@7727
   424
fun parent_link remote_path curr_session name =
wenzelm@9416
   425
  let val {name = _, session, is_local} = get_info (ThyInfo.theory name)
wenzelm@7727
   426
  in (if null session then None else
wenzelm@7727
   427
     Some (if is_some remote_path andalso not is_local then
wenzelm@14898
   428
       Url.append (the remote_path) (Url.File
berghofe@9044
   429
         (Path.append (Path.make session) (html_path name)))
wenzelm@14898
   430
     else Url.File (Path.append (mk_rel_path curr_session session)
berghofe@9044
   431
       (html_path name))), name)
wenzelm@7727
   432
  end;
wenzelm@7727
   433
wenzelm@7727
   434
fun begin_theory name raw_parents orig_files thy =
wenzelm@9416
   435
    with_session thy (fn {name = sess_name, session, path, html_prefix, remote_path, ...} =>
wenzelm@7727
   436
  let
wenzelm@7727
   437
    val parents = map (parent_link remote_path path) raw_parents;
wenzelm@7727
   438
    val ml_path = ThyLoad.ml_path name;
wenzelm@7727
   439
    val files = map (apsnd Some) orig_files @
wenzelm@7727
   440
      (if is_some (ThyLoad.check_file ml_path) then [(ml_path, None)] else []);
wenzelm@7727
   441
wenzelm@7727
   442
    fun prep_file (raw_path, loadit) =
wenzelm@7727
   443
      (case ThyLoad.check_file raw_path of
wenzelm@7727
   444
        Some (path, _) =>
wenzelm@7727
   445
          let
wenzelm@7727
   446
            val base = Path.base path;
wenzelm@7727
   447
            val base_html = html_ext base;
wenzelm@7727
   448
          in
wenzelm@11856
   449
            add_file (Path.append html_prefix base_html,
wenzelm@14898
   450
              HTML.ml_file (Url.File base) (File.read path));
wenzelm@14898
   451
            (Some (Url.File base_html), Url.File raw_path, loadit)
wenzelm@7727
   452
          end
wenzelm@7727
   453
      | None => (warning ("Browser info: expected to find ML file" ^ quote (Path.pack raw_path));
wenzelm@14898
   454
          (None, Url.File raw_path, loadit)));
wenzelm@7727
   455
wenzelm@7727
   456
    val files_html = map prep_file files;
wenzelm@7727
   457
wenzelm@7727
   458
    fun prep_html_source (tex_source, html_source, html) =
wenzelm@7727
   459
      let
wenzelm@14898
   460
        val txt = HTML.begin_theory (Url.File index_path, session)
wenzelm@7727
   461
          name parents files_html (Buffer.content html_source)
wenzelm@7727
   462
      in (tex_source, Buffer.empty, Buffer.add txt html) end;
wenzelm@7727
   463
wenzelm@9416
   464
    val entry =
wenzelm@9416
   465
     {name = name, ID = ID_of path name, dir = sess_name, unfold = true,
wenzelm@9416
   466
      path = Path.pack (html_path name),
wenzelm@9416
   467
      parents = map (fn s => ID_of (#session (get_info (ThyInfo.theory s))) s) raw_parents};
wenzelm@7727
   468
wenzelm@7727
   469
  in
wenzelm@7727
   470
    change_theory_info name prep_html_source;
wenzelm@9416
   471
    add_graph_entry entry;
wenzelm@14898
   472
    add_html_index (HTML.theory_entry (Url.File (html_path name), name));
wenzelm@7727
   473
    add_tex_index (Latex.theory_entry name);
wenzelm@9416
   474
    BrowserInfoData.put {name = sess_name, session = path, is_local = is_some remote_path} thy
wenzelm@7727
   475
  end);
wenzelm@7727
   476
wenzelm@7727
   477
wenzelm@13532
   478
val hooks = ref ([]: (string -> (string * thm list) list -> unit) list);
wenzelm@13532
   479
fun add_hook f = hooks := (f :: ! hooks);
wenzelm@13532
   480
wenzelm@13532
   481
fun results k xs =
wenzelm@13532
   482
 (seq (fn f => (try (fn () => f k xs) (); ())) (! hooks);
wenzelm@13532
   483
  with_session () (fn _ => with_context add_html (HTML.results k xs)));
wenzelm@13532
   484
wenzelm@13532
   485
fun theorem a th = results "theorem" [(a, [th])];
wenzelm@13532
   486
fun theorems a ths = results "theorems" [(a, ths)];
wenzelm@8088
   487
fun chapter s = with_session () (fn _ => with_context add_html (HTML.chapter s));
wenzelm@7727
   488
fun section s = with_session () (fn _ => with_context add_html (HTML.section s));
wenzelm@7727
   489
fun subsection s = with_session () (fn _ => with_context add_html (HTML.subsection s));
wenzelm@7727
   490
fun subsubsection s = with_session () (fn _ => with_context add_html (HTML.subsubsection s));
wenzelm@7727
   491
wenzelm@7727
   492
wenzelm@7727
   493
wenzelm@14922
   494
(** draft document output **)
wenzelm@14922
   495
wenzelm@14922
   496
fun drafts doc_format src_paths =
wenzelm@14922
   497
  let
wenzelm@14922
   498
    val doc_path = File.tmp_path (Path.basic "document");
wenzelm@14922
   499
    val _ = File.mkdir doc_path;
wenzelm@14922
   500
    val root_path = Path.append doc_path (Path.basic "root.tex");
wenzelm@14922
   501
    val _ = File.copy (Path.unpack "~~/lib/texinputs/draft.tex") root_path;
wenzelm@14922
   502
    val _ = File.system_command
wenzelm@14922
   503
      ("\"$ISATOOL\" latex -o sty " ^ File.quote_sysify_path root_path);
wenzelm@14922
   504
    val _ = File.system_command
wenzelm@14922
   505
      ("\"$ISATOOL\" latex -o syms " ^ File.quote_sysify_path root_path);
wenzelm@14922
   506
wenzelm@14922
   507
    fun known name =
wenzelm@14922
   508
      let val ss = split_lines (File.read (Path.append doc_path (Path.basic name)))
wenzelm@14922
   509
      in fn s => s mem_string ss end;
wenzelm@14922
   510
    val known_syms = known "syms.lst";
wenzelm@14922
   511
    val known_ctrls = known "ctrls.lst";
wenzelm@14922
   512
wenzelm@14922
   513
    fun write_draft (tex_index, path) =
wenzelm@14922
   514
      let
wenzelm@14922
   515
        val base = Path.base path;
wenzelm@14922
   516
        val name = Path.pack (#1 (Path.split_ext base));
wenzelm@14922
   517
      in
wenzelm@14922
   518
        Symbol.explode (File.read path)
wenzelm@14922
   519
        |> Latex.symbol_source (known_syms, known_ctrls) (Path.pack base)
wenzelm@14922
   520
        |> File.write (Path.append doc_path (tex_path name));
wenzelm@14922
   521
        Buffer.add (Latex.theory_entry name) tex_index
wenzelm@14922
   522
      end;
wenzelm@14922
   523
wenzelm@14922
   524
    val tex_index = foldl write_draft (Buffer.empty, src_paths);
wenzelm@14922
   525
    val _ = write_tex_index tex_index doc_path;
wenzelm@14922
   526
    val _ = isatool_document doc_format doc_path;
wenzelm@14922
   527
  in Path.ext doc_format doc_path end;
wenzelm@14922
   528
wenzelm@14922
   529
wenzelm@14922
   530
wenzelm@7727
   531
(** theory setup **)
wenzelm@7727
   532
wenzelm@7727
   533
val setup = [BrowserInfoData.init];
wenzelm@7727
   534
wenzelm@7685
   535
wenzelm@7685
   536
end;
wenzelm@7685
   537
wenzelm@6203
   538
wenzelm@6203
   539
structure BasicPresent: BASIC_PRESENT = Present;
wenzelm@6203
   540
open BasicPresent;