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