src/HOL/Import/import_syntax.ML
author wenzelm
Thu, 04 Mar 2010 21:02:21 +0100
changeset 35567 309e75c58af2
parent 33317 b4534348b8fd
child 36959 f5417836dbea
permissions -rw-r--r--
point to http://hginit.com/
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14620
1be590fd2422 Minor cleanup of headers and some speedup of the HOL4 import.
skalberg
parents: 14518
diff changeset
     1
(*  Title:      HOL/Import/import_syntax.ML
1be590fd2422 Minor cleanup of headers and some speedup of the HOL4 import.
skalberg
parents: 14518
diff changeset
     2
    Author:     Sebastian Skalberg (TU Muenchen)
1be590fd2422 Minor cleanup of headers and some speedup of the HOL4 import.
skalberg
parents: 14518
diff changeset
     3
*)
1be590fd2422 Minor cleanup of headers and some speedup of the HOL4 import.
skalberg
parents: 14518
diff changeset
     4
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
     5
signature HOL4_IMPORT_SYNTAX =
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
     6
sig
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
     7
    type token = OuterLex.token
19064
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
     8
    type command  = token list -> (theory -> theory) * token list 
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
     9
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    10
    val import_segment: token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    11
    val import_theory : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    12
    val end_import    : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    13
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    14
    val setup_theory  : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    15
    val end_setup     : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    16
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    17
    val thm_maps      : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    18
    val ignore_thms   : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    19
    val type_maps     : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    20
    val def_maps      : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    21
    val const_maps    : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    22
    val const_moves   : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    23
    val const_renames : token list -> (theory -> theory) * token list
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    24
19064
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    25
    val skip_import_dir : token list -> (theory -> theory) * token list
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    26
    val skip_import     : token list -> (theory -> theory) * token list
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    27
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    28
    val setup        : unit -> unit
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    29
end
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    30
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    31
structure HOL4ImportSyntax :> HOL4_IMPORT_SYNTAX =
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    32
struct
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    33
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
    34
type token = OuterLex.token
19064
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    35
type command  = token list -> (theory -> theory) * token list 
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    36
17057
0934ac31985f OuterKeyword;
wenzelm
parents: 15570
diff changeset
    37
local structure P = OuterParse and K = OuterKeyword in
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    38
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    39
(* Parsers *)
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    40
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    41
val import_segment = P.name >> set_import_segment
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    42
19064
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    43
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    44
val import_theory = P.name >> (fn thyname =>
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    45
                               fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    46
                                  thy |> set_generating_thy thyname
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    47
                                      |> Sign.add_path thyname
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    48
                                      |> add_dump (";setup_theory " ^ thyname))
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    49
19064
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    50
fun do_skip_import_dir s = (ImportRecorder.set_skip_import_dir (SOME s); I)
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    51
val skip_import_dir : command = P.string >> do_skip_import_dir
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    52
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    53
val lower = String.map Char.toLower
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    54
fun do_skip_import s = (ImportRecorder.set_skip_import (case lower s of "on" => true | "off" => false | _ => Scan.fail ()); I)
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    55
val skip_import : command = P.short_ident >> do_skip_import
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
    56
14518
c3019a66180f Added a number of explicit type casts and delayed evaluations (all seemingly
skalberg
parents: 14516
diff changeset
    57
fun end_import toks =
c3019a66180f Added a number of explicit type casts and delayed evaluations (all seemingly
skalberg
parents: 14516
diff changeset
    58
    Scan.succeed
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    59
        (fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    60
            let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    61
                val thyname = get_generating_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    62
                val segname = get_import_segment thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    63
                val (int_thms,facts) = Replay.setup_int_thms thyname thy
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 32960
diff changeset
    64
                val thmnames = filter_out (should_ignore thyname thy) facts
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    65
                fun replay thy = 
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    66
                    let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    67
                        val _ = ImportRecorder.load_history thyname
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    68
                        val thy = Replay.import_thms thyname int_thms thmnames thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    69
                            handle x => (ImportRecorder.save_history thyname; raise x)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    70
                        val _ = ImportRecorder.save_history thyname
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    71
                        val _ = ImportRecorder.clear_history ()
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    72
                    in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    73
                        thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    74
                    end                                 
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    75
            in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    76
                thy |> clear_import_thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    77
                    |> set_segment thyname segname
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    78
                    |> set_used_names facts
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    79
                    |> replay 
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    80
                    |> clear_used_names
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    81
                    |> export_hol4_pending
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    82
                    |> Sign.parent_path
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    83
                    |> dump_import_thy thyname
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    84
                    |> add_dump ";end_setup"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    85
            end) toks
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    86
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    87
val ignore_thms = Scan.repeat1 P.name
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    88
                               >> (fn ignored =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    89
                                   fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    90
                                      let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    91
                                          val thyname = get_import_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    92
                                      in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    93
                                          Library.foldl (fn (thy,thmname) => ignore_hol4 thyname thmname thy) (thy,ignored)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    94
                                      end)
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    95
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
    96
val thm_maps = Scan.repeat1 (P.name --| P.$$$ ">" -- P.xname)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    97
                            >> (fn thmmaps =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    98
                                fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
    99
                                   let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   100
                                       val thyname = get_import_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   101
                                   in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   102
                                       Library.foldl (fn (thy,(hol,isa)) => add_hol4_mapping thyname hol isa thy) (thy,thmmaps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   103
                                   end)
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   104
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   105
val type_maps = Scan.repeat1 (P.name --| P.$$$ ">" -- P.xname)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   106
                             >> (fn typmaps =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   107
                                 fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   108
                                    let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   109
                                        val thyname = get_import_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   110
                                    in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   111
                                        Library.foldl (fn (thy,(hol,isa)) => add_hol4_type_mapping thyname hol false isa thy) (thy,typmaps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   112
                                    end)
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   113
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   114
val def_maps = Scan.repeat1 (P.name --| P.$$$ ">" -- P.xname)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   115
                            >> (fn defmaps =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   116
                                fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   117
                                   let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   118
                                       val thyname = get_import_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   119
                                   in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   120
                                       Library.foldl (fn (thy,(hol,isa)) => add_defmap thyname hol isa thy) (thy,defmaps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   121
                                   end)
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   122
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   123
val const_renames = Scan.repeat1 (P.name --| P.$$$ ">" -- P.name)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   124
                                 >> (fn renames =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   125
                                     fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   126
                                        let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   127
                                            val thyname = get_import_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   128
                                        in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   129
                                            Library.foldl (fn (thy,(hol,isa)) => add_hol4_const_renaming thyname hol isa thy) (thy,renames)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   130
                                        end)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   131
                                                                                                                                      
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   132
val const_maps = Scan.repeat1 (P.name --| P.$$$ ">" -- P.xname -- Scan.option (P.$$$ "::" |-- P.typ))
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   133
                              >> (fn constmaps =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   134
                                  fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   135
                                     let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   136
                                         val thyname = get_import_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   137
                                     in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   138
                                         Library.foldl (fn (thy,((hol,isa),NONE)) => add_hol4_const_mapping thyname hol false isa thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   139
                                                 | (thy,((hol,isa),SOME ty)) => add_hol4_const_wt_mapping thyname hol false isa (Syntax.read_typ_global thy ty) thy) (thy,constmaps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   140
                                     end)
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   141
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   142
val const_moves = Scan.repeat1 (P.name --| P.$$$ ">" -- P.xname -- Scan.option (P.$$$ "::" |-- P.typ))
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   143
                               >> (fn constmaps =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   144
                                   fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   145
                                      let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   146
                                          val thyname = get_import_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   147
                                      in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   148
                                          Library.foldl (fn (thy,((hol,isa),NONE)) => add_hol4_const_mapping thyname hol true isa thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   149
                                                  | (thy,((hol,isa),SOME ty)) => add_hol4_const_wt_mapping thyname hol true isa (Syntax.read_typ_global thy ty) thy) (thy,constmaps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   150
                                      end)
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   151
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   152
fun import_thy s =
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   153
    let
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   154
        val is = TextIO.openIn(s ^ ".imp")
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   155
        val inp = TextIO.inputAll is
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   156
        val _ = TextIO.closeIn is
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   157
        val orig_source = Source.of_string inp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   158
        val symb_source = Symbol.source {do_recover = false} orig_source
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   159
        val lexes = Unsynchronized.ref
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   160
          (Scan.make_lexicon (map Symbol.explode ["import_segment","ignore_thms","import","end",">","::","const_maps","const_moves","thm_maps","const_renames","type_maps","def_maps"]),
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   161
                  Scan.empty_lexicon)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   162
        val get_lexes = fn () => !lexes
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   163
        val token_source = OuterLex.source {do_recover = NONE} get_lexes Position.start symb_source
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   164
        val token_list = filter_out (OuterLex.is_kind OuterLex.Space) (Source.exhaust token_source)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   165
        val import_segmentP = OuterParse.$$$ "import_segment" |-- import_segment
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   166
        val type_mapsP = OuterParse.$$$ "type_maps" |-- type_maps
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   167
        val def_mapsP = OuterParse.$$$ "def_maps" |-- def_maps
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   168
        val const_mapsP = OuterParse.$$$ "const_maps" |-- const_maps
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   169
        val const_movesP = OuterParse.$$$ "const_moves" |-- const_moves
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   170
        val const_renamesP = OuterParse.$$$ "const_renames" |-- const_renames
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   171
        val ignore_thmsP = OuterParse.$$$ "ignore_thms" |-- ignore_thms
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   172
        val thm_mapsP = OuterParse.$$$ "thm_maps" |-- thm_maps
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   173
        val parser = type_mapsP || def_mapsP || const_mapsP || const_movesP || const_renamesP || thm_mapsP || ignore_thmsP || import_segmentP
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   174
        val importP = OuterParse.$$$ "import" |-- Scan.repeat parser --| OuterParse.$$$ "end"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   175
        fun apply [] thy = thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   176
          | apply (f::fs) thy = apply fs (f thy)
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   177
    in
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   178
        apply (set_replaying_thy s::Sign.add_path s::(fst (importP token_list)))
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   179
    end
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   180
14620
1be590fd2422 Minor cleanup of headers and some speedup of the HOL4 import.
skalberg
parents: 14518
diff changeset
   181
fun create_int_thms thyname thy =
17370
754b7fcff03e global quick_and_dirty;
wenzelm
parents: 17057
diff changeset
   182
    if ! quick_and_dirty
14627
5d137da82f03 Forgot a couple of checks for the quick_and_dirty flag the other day.
skalberg
parents: 14620
diff changeset
   183
    then thy
5d137da82f03 Forgot a couple of checks for the quick_and_dirty flag the other day.
skalberg
parents: 14620
diff changeset
   184
    else
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   185
        case ImportData.get thy of
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   186
            NONE => ImportData.put (SOME (fst (Replay.setup_int_thms thyname thy))) thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   187
          | SOME _ => error "Import data not closed - forgotten an end_setup, mayhap?"
14620
1be590fd2422 Minor cleanup of headers and some speedup of the HOL4 import.
skalberg
parents: 14518
diff changeset
   188
1be590fd2422 Minor cleanup of headers and some speedup of the HOL4 import.
skalberg
parents: 14518
diff changeset
   189
fun clear_int_thms thy =
17370
754b7fcff03e global quick_and_dirty;
wenzelm
parents: 17057
diff changeset
   190
    if ! quick_and_dirty
14627
5d137da82f03 Forgot a couple of checks for the quick_and_dirty flag the other day.
skalberg
parents: 14620
diff changeset
   191
    then thy
5d137da82f03 Forgot a couple of checks for the quick_and_dirty flag the other day.
skalberg
parents: 14620
diff changeset
   192
    else
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   193
        case ImportData.get thy of
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   194
            NONE => error "Import data already cleared - forgotten a setup_theory?"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   195
          | SOME _ => ImportData.put NONE thy
14620
1be590fd2422 Minor cleanup of headers and some speedup of the HOL4 import.
skalberg
parents: 14518
diff changeset
   196
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   197
val setup_theory = P.name
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   198
                       >>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   199
                       (fn thyname =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   200
                        fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   201
                           (case HOL4DefThy.get thy of
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   202
                                NoImport => thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   203
                              | Generating _ => error "Currently generating a theory!"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   204
                              | Replaying _ => thy |> clear_import_thy)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   205
                               |> import_thy thyname
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   206
                               |> create_int_thms thyname)
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   207
14518
c3019a66180f Added a number of explicit type casts and delayed evaluations (all seemingly
skalberg
parents: 14516
diff changeset
   208
fun end_setup toks =
c3019a66180f Added a number of explicit type casts and delayed evaluations (all seemingly
skalberg
parents: 14516
diff changeset
   209
    Scan.succeed
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   210
        (fn thy =>
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   211
            let
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   212
                val thyname = get_import_thy thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   213
                val segname = get_import_segment thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   214
            in
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   215
                thy |> set_segment thyname segname
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   216
                    |> clear_import_thy
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   217
                    |> clear_int_thms
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   218
                    |> Sign.parent_path
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   219
            end) toks
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   220
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   221
val set_dump  = P.string -- P.string   >> setup_dump
14518
c3019a66180f Added a number of explicit type casts and delayed evaluations (all seemingly
skalberg
parents: 14516
diff changeset
   222
fun fl_dump toks  = Scan.succeed flush_dump toks
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   223
val append_dump = (P.verbatim || P.string) >> add_dump
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   224
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   225
fun setup () =
27353
71c4dd53d4cb moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents: 24867
diff changeset
   226
  (OuterKeyword.keyword ">";
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   227
   OuterSyntax.command "import_segment"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   228
                       "Set import segment name"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   229
                       K.thy_decl (import_segment >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   230
   OuterSyntax.command "import_theory"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   231
                       "Set default HOL4 theory name"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   232
                       K.thy_decl (import_theory >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   233
   OuterSyntax.command "end_import"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   234
                       "End HOL4 import"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   235
                       K.thy_decl (end_import >> Toplevel.theory);
19064
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
   236
   OuterSyntax.command "skip_import_dir" 
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
   237
                       "Sets caching directory for skipping importing"
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
   238
                       K.thy_decl (skip_import_dir >> Toplevel.theory);
19064
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
   239
   OuterSyntax.command "skip_import" 
bf19cc5a7899 fixed bugs, added caching
obua
parents: 17644
diff changeset
   240
                       "Switches skipping importing on or off"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   241
                       K.thy_decl (skip_import >> Toplevel.theory);                   
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   242
   OuterSyntax.command "setup_theory"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   243
                       "Setup HOL4 theory replaying"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   244
                       K.thy_decl (setup_theory >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   245
   OuterSyntax.command "end_setup"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   246
                       "End HOL4 setup"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   247
                       K.thy_decl (end_setup >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   248
   OuterSyntax.command "setup_dump"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   249
                       "Setup the dump file name"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   250
                       K.thy_decl (set_dump >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   251
   OuterSyntax.command "append_dump"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   252
                       "Add text to dump file"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   253
                       K.thy_decl (append_dump >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   254
   OuterSyntax.command "flush_dump"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   255
                       "Write the dump to file"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   256
                       K.thy_decl (fl_dump >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   257
   OuterSyntax.command "ignore_thms"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   258
                       "Theorems to ignore in next HOL4 theory import"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   259
                       K.thy_decl (ignore_thms >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   260
   OuterSyntax.command "type_maps"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   261
                       "Map HOL4 type names to existing Isabelle/HOL type names"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   262
                       K.thy_decl (type_maps >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   263
   OuterSyntax.command "def_maps"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   264
                       "Map HOL4 constant names to their primitive definitions"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   265
                       K.thy_decl (def_maps >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   266
   OuterSyntax.command "thm_maps"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   267
                       "Map HOL4 theorem names to existing Isabelle/HOL theorem names"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   268
                       K.thy_decl (thm_maps >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   269
   OuterSyntax.command "const_renames"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   270
                       "Rename HOL4 const names"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   271
                       K.thy_decl (const_renames >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   272
   OuterSyntax.command "const_moves"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   273
                       "Rename HOL4 const names to other HOL4 constants"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   274
                       K.thy_decl (const_moves >> Toplevel.theory);
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   275
   OuterSyntax.command "const_maps"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   276
                       "Map HOL4 const names to existing Isabelle/HOL const names"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32740
diff changeset
   277
                       K.thy_decl (const_maps >> Toplevel.theory));
14516
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   278
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   279
end
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   280
a183dec876ab Added HOL proof importer.
skalberg
parents:
diff changeset
   281
end