src/Pure/Thy/present.ML
author wenzelm
Sun, 25 Jun 2000 23:55:58 +0200
changeset 9136 8196955b02ec
parent 9044 28ee037278a6
child 9416 9144976964e7
permissions -rw-r--r--
adapted to improved presentation; no longer mirror items from structure Latex;
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
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
     3
    Author:     Stefan Berghofer and Markus Wenzel, TU Muenchen
8808
wenzelm
parents: 8660
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     5
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
     6
Theory presentation (HTML, graph files, (PDF)LaTeX documents).
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     7
*)
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     8
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     9
signature BASIC_PRESENT =
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    10
sig
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    11
  val section: string -> unit
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    12
end;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    13
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    14
signature PRESENT =
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    15
sig
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    16
  include BASIC_PRESENT
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
    17
  val init: bool -> string -> string list -> string -> Path.T option -> Url.T option * bool -> unit
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    18
  val finish: unit -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    19
  val init_theory: string -> unit
8192
45a7027136e3 added old_symbol_source;
wenzelm
parents: 8088
diff changeset
    20
  val verbatim_source: string -> (unit -> Symbol.symbol list) -> unit
45a7027136e3 added old_symbol_source;
wenzelm
parents: 8088
diff changeset
    21
  val old_symbol_source: string -> (unit -> Symbol.symbol list) -> unit
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
    22
  val theory_output: string -> string -> unit
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    23
  val begin_theory: string -> string list -> (Path.T * bool) list -> theory -> theory
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    24
  val result: string -> string -> thm -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    25
  val results: string -> string -> thm list -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    26
  val theorem: string -> thm -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    27
  val theorems: string -> thm list -> unit
8088
6ae943d080de chapter;
wenzelm
parents: 7853
diff changeset
    28
  val chapter: string -> unit
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    29
  val subsection: string -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    30
  val subsubsection: string -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    31
  val setup: (theory -> theory) list
7763
fdf7c941a22b Exported function get_info.
berghofe
parents: 7757
diff changeset
    32
  val get_info: theory -> {session: string list, is_local: bool}
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    33
end;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    34
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    35
structure Present: PRESENT =
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    36
struct
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    37
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    38
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    39
(** paths **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    40
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    41
val output_path = Path.variable "ISABELLE_BROWSER_INFO";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    42
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    43
val tex_ext = Path.ext "tex";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    44
val tex_path = tex_ext o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    45
val html_ext = Path.ext "html";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    46
val html_path = html_ext o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    47
val graph_path = Path.ext "graph" o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    48
val index_path = Path.basic "index.html";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    49
val doc_path = Path.basic "document";
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
    50
val doc_indexN = "session";
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    51
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    52
val session_path = Path.basic ".session";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    53
val session_entries_path = Path.unpack ".session/entries";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    54
val pre_index_path = Path.unpack ".session/pre-index";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    55
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
    56
fun mk_rel_path [] ys = Path.make ys
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
    57
  | mk_rel_path xs [] = Path.appends (replicate (length xs) Path.parent)
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
    58
  | mk_rel_path (ps as x::xs) (qs as y::ys) = if x=y then mk_rel_path xs ys else
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
    59
      Path.appends (replicate (length ps) Path.parent @ [Path.make qs]);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    60
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    61
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    62
(** additional theory data **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    63
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    64
structure BrowserInfoArgs =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    65
struct
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    66
  val name = "Pure/browser_info";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    67
  type T = {session: string list, is_local: bool};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    68
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    69
  val empty = {session = [], is_local = false};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    70
  val copy = I;
7763
fdf7c941a22b Exported function get_info.
berghofe
parents: 7757
diff changeset
    71
  fun prep_ext _ = empty;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    72
  fun merge _ = empty;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    73
  fun print _ _ = ();
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    74
end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    75
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    76
structure BrowserInfoData = TheoryDataFun(BrowserInfoArgs);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    77
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    78
fun get_info thy =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    79
  if Theory.eq_thy (thy, ProtoPure.thy) then BrowserInfoArgs.empty
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    80
  else BrowserInfoData.get thy;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    81
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    82
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    83
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    84
(** graphs **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    85
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    86
type graph_node =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    87
  {name: string, ID: string, dir: string, unfold: bool,
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    88
   path: string, parents: string list};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    89
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    90
fun get_graph path = map (fn (a :: b :: c :: d :: e :: r) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    91
  {name = unenclose a, ID = unenclose b,
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    92
   dir = unenclose c, unfold = (d = "+"),
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    93
   path = unenclose (if d = "+" then e else d),
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    94
   parents = map unenclose (fst (split_last (if d = "+" then tl r else r)))})
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    95
     (map (filter_out (equal "") o space_explode " ") (split_lines (File.read path)));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    96
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    97
fun put_graph gr path =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    98
    File.write path (cat_lines (map (fn {name, ID, dir, unfold, path, parents} =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    99
      "\"" ^ name ^ "\" \"" ^ ID ^ "\" \"" ^ dir ^ (if unfold then "\" + \"" else "\" \"") ^
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   100
      path ^ "\" > " ^ space_implode " " (map quote parents) ^ " ;") gr));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   101
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   102
fun dir_of sess = space_implode "/" (case sess of
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   103
  [] => ["Pure"] | [x] => [x, "base"] | xs => xs);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   104
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   105
fun ID_of sess s = dir_of sess ^ "/" ^ s;
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
(* retrieve graph data from theory loader database *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   109
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   110
fun make_graph remote_path unfold curr_sess = map (fn name =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   111
  let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   112
    val {session, is_local} = get_info (ThyInfo.theory name);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   113
    val path' = Path.append (Path.make session) (html_path name)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   114
  in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   115
    {name = name, ID = ID_of session name, dir = dir_of session,
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   116
     path = if null session then "" else
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   117
            if is_some remote_path andalso not is_local then
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   118
              Url.pack (Url.append (the remote_path) (Url.file
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   119
                (Path.append (Path.make session) (html_path name))))
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   120
            else Path.pack (Path.append
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   121
              (mk_rel_path curr_sess session) (html_path name)),
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   122
     unfold = unfold andalso (length session = 1),
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   123
     parents = map (fn s => ID_of (#session (get_info (ThyInfo.theory s))) s)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   124
       (ThyInfo.get_preds name)}
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   125
  end) (ThyInfo.names ());
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   126
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   127
fun add_graph_entry' (entry as {ID, ...}) (gr : graph_node list) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   128
  filter_out (fn entry' => #ID entry' = ID) gr @ [entry];
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   129
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   130
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   131
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   132
(** global browser info state **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   133
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   134
(* type theory_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   135
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   136
type theory_info = {tex_source: Buffer.T, html_source: Buffer.T, html: Buffer.T};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   137
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   138
fun make_theory_info (tex_source, html_source, html) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   139
  {tex_source = tex_source, html_source = html_source, html = html}: theory_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   140
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   141
val empty_theory_info = make_theory_info (Buffer.empty, Buffer.empty, Buffer.empty);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   142
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   143
fun map_theory_info f {tex_source, html_source, html} =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   144
  make_theory_info (f (tex_source, html_source, html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   145
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   146
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   147
(* type browser_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   148
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   149
type browser_info = {theories: theory_info Symtab.table, tex_index: Buffer.T,
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   150
  html_index: Buffer.T, graph: graph_node list, all_graph: graph_node list};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   151
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   152
fun make_browser_info (theories, tex_index, html_index, graph, all_graph) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   153
  {theories = theories, tex_index = tex_index, html_index = html_index,
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   154
    graph = graph, all_graph = all_graph}: browser_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   155
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   156
val empty_browser_info = make_browser_info (Symtab.empty, Buffer.empty, Buffer.empty, [], []);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   157
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   158
fun initial_browser_info remote_path graph_path curr_sess = make_browser_info
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   159
  (Symtab.empty, Buffer.empty, Buffer.empty, make_graph remote_path false curr_sess,
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   160
   if_none (try get_graph graph_path) (make_graph remote_path true [hd curr_sess]));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   161
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   162
fun map_browser_info f {theories, tex_index, html_index, graph, all_graph} =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   163
  make_browser_info (f (theories, tex_index, html_index, graph, all_graph));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   164
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   165
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   166
(* state *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   167
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   168
val browser_info = ref empty_browser_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   169
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   170
fun change_browser_info f = browser_info := map_browser_info f (! browser_info);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   171
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   172
fun init_theory_info name info =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   173
  change_browser_info (fn (theories, tex_index, html_index, graph, all_graph) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   174
    (Symtab.update ((name, info), theories), tex_index, html_index, graph, all_graph));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   175
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   176
fun change_theory_info name f =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   177
  change_browser_info (fn (info as (theories, tex_index, html_index, graph, all_graph)) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   178
    (case Symtab.lookup (theories, name) of
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   179
      None => (warning ("Browser info: cannot access theory document " ^ quote name); info)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   180
    | Some info => (Symtab.update ((name, map_theory_info f info), theories),
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   181
        tex_index, html_index, graph, all_graph)));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   182
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   183
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   184
fun add_tex_index txt =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   185
  change_browser_info (fn (theories, tex_index, html_index, graph, all_graph) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   186
    (theories, Buffer.add txt tex_index, html_index, graph, all_graph));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   187
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   188
fun add_html_index txt =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   189
  change_browser_info (fn (theories, tex_index, html_index, graph, all_graph) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   190
    (theories, tex_index, Buffer.add txt html_index, graph, all_graph));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   191
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   192
(*add entry to graph for current session*)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   193
fun add_graph_entry e =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   194
  change_browser_info (fn (theories, tex_index, html_index, graph, all_graph) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   195
    (theories, tex_index, html_index, add_graph_entry' e graph, all_graph));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   196
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   197
(*add entry to graph for all sessions*)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   198
fun add_all_graph_entry e =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   199
  change_browser_info (fn (theories, tex_index, html_index, graph, all_graph) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   200
    (theories, tex_index, html_index, graph, add_graph_entry' e all_graph));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   201
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   202
fun add_tex_source name txt = change_theory_info name (fn (tex_source, html_source, html) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   203
  (Buffer.add txt tex_source, html_source, html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   204
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   205
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
   206
  (tex_source, Buffer.add txt html_source, html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   207
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   208
fun add_html name txt = change_theory_info name (fn (tex_source, html_source, html) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   209
  (tex_source, html_source, Buffer.add txt html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   210
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   211
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   212
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   213
(** global session state **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   214
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   215
(* session_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   216
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   217
type session_info =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   218
  {name: string, parent: string, session: string, path: string list, html_prefix: Path.T,
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   219
    doc_format: string, doc_prefixes: (Path.T * Path.T option) option,
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   220
    all_graph_path: Path.T, remote_path: Url.T option};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   221
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   222
fun make_session_info (name, parent, session, path, html_prefix, doc_format, doc_prefixes,
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   223
    all_graph_path, remote_path) =
7802
fba7a36e8556 isatool_document;
wenzelm
parents: 7789
diff changeset
   224
  {name = name, parent = parent, session = session, path = path, html_prefix = html_prefix,
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   225
    doc_format = doc_format, doc_prefixes = doc_prefixes,
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   226
    all_graph_path = all_graph_path, remote_path = remote_path}: session_info;
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   227
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   228
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   229
(* state *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   230
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   231
val session_info = ref (None: session_info option);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   232
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   233
fun with_session x f = (case ! session_info of None => x | Some info => f info);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   234
fun with_context f = f (PureThy.get_name (Context.the_context ()));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   235
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   236
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   237
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   238
(** HTML output **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   239
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   240
(* maintain index *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   241
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   242
val session_entries =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   243
  HTML.session_entries o
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   244
    map (fn name => (Url.file (Path.append (Path.basic name) index_path), name));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   245
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   246
fun get_entries dir =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   247
  split_lines (File.read (Path.append dir session_entries_path));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   248
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   249
fun put_entries entries dir =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   250
  File.write (Path.append dir session_entries_path) (cat_lines entries);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   251
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   252
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   253
fun create_index dir =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   254
  File.read (Path.append dir pre_index_path) ^
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   255
    session_entries (get_entries dir) ^ HTML.end_index
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   256
  |> File.write (Path.append dir index_path);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   257
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   258
fun update_index dir name =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   259
  (case try get_entries dir of
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   260
    None => warning ("Browser info: cannot access session index of " ^ quote (Path.pack dir))
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   261
  | Some es => (put_entries ((es \ name) @ [name]) dir; create_index dir));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   262
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   263
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   264
(* init session *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   265
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   266
fun name_of_session elems = space_implode "/" ("Isabelle" :: elems);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   267
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   268
fun could_copy inpath outpath =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   269
  if File.exists inpath then (File.copy inpath outpath; true)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   270
  else false;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   271
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   272
fun copy_files path1 path2 =
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   273
  (File.mkdir path2;
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   274
   File.system_command
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   275
     ("cp " ^ File.sysify_path path1 ^ " " ^ File.sysify_path path2));
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   276
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   277
fun init false _ _ _ _ _ = (browser_info := empty_browser_info; session_info := None)
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   278
  | init true doc path name dump_path (remote_path, first_time) =
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   279
      let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   280
        val parent_name = name_of_session (take (length path - 1, path));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   281
        val session_name = name_of_session path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   282
        val sess_prefix = Path.make path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   283
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   284
        val out_path = Path.expand output_path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   285
        val html_prefix = Path.append out_path sess_prefix;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   286
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   287
        val (doc_prefixes, document_path) =
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   288
          if doc = "" then (None, None)
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   289
          else (Some (Path.append html_prefix doc_path, dump_path), Some (Path.ext doc doc_path));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   290
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   291
        val graph_up_lnk = (Url.file index_path, session_name);
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   292
        val all_graph_path = Path.appends [out_path,
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   293
          Path.basic (hd path), graph_path "all_sessions"];
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   294
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   295
        val _ =
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   296
          (copy_files (Path.unpack "~~/lib/browser/awtUtilities/*.class")
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   297
             (Path.append html_prefix (Path.basic "awtUtilities"));
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   298
           copy_files (Path.unpack "~~/lib/browser/GraphBrowser/*.class")
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   299
             (Path.append html_prefix (Path.basic "GraphBrowser")));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   300
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   301
        fun prep_readme readme =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   302
          let val readme_path = Path.basic readme in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   303
            if could_copy readme_path (Path.append html_prefix readme_path) then Some readme_path
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   304
            else None
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   305
          end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   306
        val opt_readme =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   307
          (case prep_readme "README.html" of None => prep_readme "README" | some => some);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   308
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   309
        val parent_index_path = Path.append Path.parent index_path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   310
        val index_up_lnk = if first_time then
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   311
            Url.append (the remote_path) (Url.file (Path.append sess_prefix parent_index_path))
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   312
          else Url.file parent_index_path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   313
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   314
        val index_text = HTML.begin_index (index_up_lnk, parent_name)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   315
          (Url.file index_path, session_name) (apsome Url.file opt_readme)
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   316
            (apsome Url.file document_path) (Url.unpack "medium.html");
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   317
      in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   318
        File.mkdir (Path.append html_prefix session_path);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   319
        File.write (Path.append html_prefix session_entries_path) "";
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   320
        if is_some doc_prefixes then File.copy_all doc_path html_prefix else ();
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   321
        seq (fn (name, txt) => File.write (Path.append html_prefix (Path.basic name)) txt)
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   322
          (HTML.applet_pages session_name graph_up_lnk (length path = 1));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   323
        session_info := Some (make_session_info (name, parent_name, session_name, path,
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   324
          html_prefix, doc, doc_prefixes, all_graph_path, remote_path));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   325
        browser_info := initial_browser_info remote_path all_graph_path path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   326
        add_html_index index_text
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   327
      end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   328
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   329
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   330
(* finish session *)
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   331
7802
fba7a36e8556 isatool_document;
wenzelm
parents: 7789
diff changeset
   332
fun isatool_document doc_format doc_prefix =
8646
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   333
  let
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   334
    val cmd = "$ISATOOL document -c -o '" ^ doc_format ^ "' '" ^ File.sysify_path doc_prefix ^ "'";
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   335
  in
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   336
    writeln cmd;
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   337
    if system cmd <> 0 orelse not (File.exists (Path.ext doc_format doc_prefix)) then
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   338
      error "Failed to build document"
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   339
    else ()
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   340
  end;
7802
fba7a36e8556 isatool_document;
wenzelm
parents: 7789
diff changeset
   341
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   342
fun write_tex src name path = Buffer.write (Path.append path (tex_path name)) src;
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   343
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   344
fun write_texes src name (path, None) = write_tex src name path
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   345
  | write_texes src name (path, Some path') = (write_tex src name path; write_tex src name path');
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   346
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   347
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   348
fun finish () = with_session ()
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   349
    (fn {name, html_prefix, doc_format, doc_prefixes, all_graph_path, path, ...} =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   350
  let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   351
    val {theories, tex_index, html_index, graph, all_graph} = ! browser_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   352
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   353
    fun finish_node (a, {tex_source, html_source = _, html}) =
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   354
     (doc_prefixes |> apsome (write_texes tex_source a);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   355
      Buffer.write (Path.append html_prefix (html_path a)) (Buffer.add HTML.end_theory html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   356
  in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   357
    seq finish_node (Symtab.dest theories);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   358
    Buffer.write (Path.append html_prefix pre_index_path) html_index;
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   359
    doc_prefixes |> apsome (write_texes tex_index doc_indexN);
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   360
    doc_prefixes |> apsome (isatool_document doc_format o #1);
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   361
    put_graph graph (Path.append html_prefix (graph_path "session"));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   362
    put_graph all_graph all_graph_path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   363
    create_index html_prefix;
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
   364
    if length path > 1 then update_index (Path.append html_prefix Path.parent) name else ();
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   365
    browser_info := empty_browser_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   366
    session_info := None
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   367
  end);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   368
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   369
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   370
(* theory elements *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   371
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   372
fun init_theory name = with_session () (fn _ => init_theory_info name empty_theory_info);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   373
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   374
fun verbatim_source name mk_text =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   375
  with_session () (fn _ => add_html_source name (HTML.verbatim_source (mk_text ())));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   376
8192
45a7027136e3 added old_symbol_source;
wenzelm
parents: 8088
diff changeset
   377
fun old_symbol_source name mk_text =
8499
8958ece3bbdf old_symbol_source: include header;
wenzelm
parents: 8219
diff changeset
   378
  with_session () (fn _ => add_tex_source name (Latex.old_symbol_source name (mk_text ())));
8192
45a7027136e3 added old_symbol_source;
wenzelm
parents: 8088
diff changeset
   379
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
   380
fun theory_output name s =
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
   381
  with_session () (fn _ => add_tex_source name (Latex.isabelle_file s));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   382
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   383
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   384
fun parent_link remote_path curr_session name =
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   385
  let val {session, is_local} = get_info (ThyInfo.theory name)
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   386
  in (if null session then None else
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   387
     Some (if is_some remote_path andalso not is_local then
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   388
       Url.append (the remote_path) (Url.file
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   389
         (Path.append (Path.make session) (html_path name)))
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   390
     else Url.file (Path.append (mk_rel_path curr_session session)
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   391
       (html_path name))), name)
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   392
  end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   393
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   394
fun begin_theory name raw_parents orig_files thy =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   395
  with_session thy (fn {session, path, html_prefix, remote_path, ...} =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   396
  let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   397
    val parents = map (parent_link remote_path path) raw_parents;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   398
    val ml_path = ThyLoad.ml_path name;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   399
    val files = map (apsnd Some) orig_files @
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   400
      (if is_some (ThyLoad.check_file ml_path) then [(ml_path, None)] else []);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   401
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   402
    fun prep_file (raw_path, loadit) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   403
      (case ThyLoad.check_file raw_path of
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   404
        Some (path, _) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   405
          let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   406
            val base = Path.base path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   407
            val base_html = html_ext base;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   408
          in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   409
            File.write (Path.append html_prefix base_html)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   410
              (HTML.ml_file (Url.file base) (File.read path));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   411
            (Some (Url.file base_html), Url.file raw_path, loadit)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   412
          end
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   413
      | None => (warning ("Browser info: expected to find ML file" ^ quote (Path.pack raw_path));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   414
          (None, Url.file raw_path, loadit)));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   415
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   416
    val files_html = map prep_file files;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   417
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   418
    fun prep_html_source (tex_source, html_source, html) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   419
      let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   420
        val txt = HTML.begin_theory (Url.file index_path, session)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   421
          name parents files_html (Buffer.content html_source)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   422
      in (tex_source, Buffer.empty, Buffer.add txt html) end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   423
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   424
    fun make_entry unfold all =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   425
      {name = name, ID = ID_of path name, dir = dir_of path, unfold = unfold,
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   426
       path = Path.pack (Path.append
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   427
         (mk_rel_path (if all then [hd path] else path) path) (html_path name)),
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   428
       parents = map (fn s => ID_of (#session (get_info (ThyInfo.theory s))) s) raw_parents};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   429
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   430
  in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   431
    change_theory_info name prep_html_source;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   432
    add_all_graph_entry (make_entry (length path = 1) true);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   433
    add_graph_entry (make_entry true false);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   434
    add_html_index (HTML.theory_entry (Url.file (html_path name), name));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   435
    add_tex_index (Latex.theory_entry name);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   436
    BrowserInfoData.put {session = path, is_local = is_some remote_path} thy
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   437
  end);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   438
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   439
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   440
fun result k a thm = with_session () (fn _ => with_context add_html (HTML.result k a thm));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   441
fun results k a thms = with_session () (fn _ => with_context add_html (HTML.results k a thms));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   442
fun theorem a thm = with_session () (fn _ => with_context add_html (HTML.theorem a thm));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   443
fun theorems a thms = with_session () (fn _ => with_context add_html (HTML.theorems a thms));
8088
6ae943d080de chapter;
wenzelm
parents: 7853
diff changeset
   444
fun chapter s = with_session () (fn _ => with_context add_html (HTML.chapter s));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   445
fun section s = with_session () (fn _ => with_context add_html (HTML.section s));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   446
fun subsection s = with_session () (fn _ => with_context add_html (HTML.subsection s));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   447
fun subsubsection s = with_session () (fn _ => with_context add_html (HTML.subsubsection s));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   448
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   449
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   450
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   451
(** theory setup **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   452
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   453
val setup = [BrowserInfoData.init];
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   454
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   455
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   456
end;
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   457
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
   458
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
   459
structure BasicPresent: BASIC_PRESENT = Present;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
   460
open BasicPresent;