src/Pure/Isar/locale.ML
author wenzelm
Thu, 01 Nov 2001 21:10:47 +0100
changeset 12014 035ab884b9e0
parent 11896 1ff33f896720
child 12046 a404358fd965
permissions -rw-r--r--
beginnings of new locales (not yet functional);

(*  Title:      Pure/Isar/locale.ML
    ID:         $Id$
    Author:     Florian Kammueller, University of Cambridge
    Author:     Markus Wenzel, TU Muenchen
    License:    GPL (GNU GENERAL PUBLIC LICENSE)

Locales. The theory section 'locale' declarings constants, assumptions
and definitions that have local scope.

TODO:
  - reset scope context on qed of legacy goal (!??);
  - Notes: source form (of atts etc.) (!????);
*)

signature BASIC_LOCALE =
sig
  val print_locales: theory -> unit
end;

signature LOCALE =
sig
  include BASIC_LOCALE
  type locale
  type expression
  type ('a, 'b) element
  val cond_extern: Sign.sg -> string -> xstring
(*
  val add_locale: bstring -> xstring option -> (string * string * mixfix) list ->
    ((string * ProofContext.context attribute list) * string) list ->
    ((string * ProofContext.context attribute list) * string) list -> theory -> theory
  val add_locale_i: bstring -> xstring option -> (string * typ * mixfix) list ->
    ((string * ProofContext.context attribute list) * term) list ->
    ((string * ProofContext.context attribute list) * term) list -> theory -> theory
  val read_prop_schematic: Sign.sg -> string -> cterm
*)
  val setup: (theory -> theory) list
end;

structure Locale: LOCALE =
struct


(** locale elements and locales **)

type context = ProofContext.context;

type expression = unit;  (* FIXME *)

datatype ('typ, 'term) element =
  Fixes of (string * 'typ * mixfix option) list |
  Assumes of ((string * context attribute list) * ('term * ('term list * 'term list)) list) list |
  Defines of ((string * context attribute list) * ('term * 'term list)) list |
  Notes of ((string * context attribute list) * (thm list * context attribute list) list) list |
  Uses of expression;

fun fixes_of_elem (Fixes fixes) = map #1 fixes
  | fixes_of_elem _ = [];

fun frees_of_elem _ = [];  (* FIXME *)



(** theory data **)

(* data kind 'Pure/locales' *)

type locale = string list * (typ, term) element list;

type locale_data =
  {space: NameSpace.T,
    locales: locale Symtab.table,
    scope: ((string * locale) list * ProofContext.context option) ref};

fun make_locale_data space locales scope =
  {space = space, locales = locales, scope = scope}: locale_data;

val empty_scope = ([], None);

structure LocalesArgs =
struct
  val name = "Isar/locales";
  type T = locale_data;

  val empty = make_locale_data NameSpace.empty Symtab.empty (ref empty_scope);
  fun copy {space, locales, scope = ref r} = make_locale_data space locales (ref r);
  fun prep_ext {space, locales, scope = _} = make_locale_data space locales (ref empty_scope);
  fun merge ({space = space1, locales = locales1, scope = _},
    {space = space2, locales = locales2, scope = _}) =
      make_locale_data (NameSpace.merge (space1, space2))
        (Symtab.merge (K true) (locales1, locales2)) (ref empty_scope);

  fun print _ {space, locales, scope = _} =
    Pretty.strs ("locales:" :: map (NameSpace.cond_extern space o #1) (Symtab.dest locales))
    |> Pretty.writeln;
end;

structure LocalesData = TheoryDataFun(LocalesArgs);
val print_locales = LocalesData.print;

val intern = NameSpace.intern o #space o LocalesData.get_sg;
val cond_extern = NameSpace.cond_extern o #space o LocalesData.get_sg;


(* access locales *)

fun get_locale_sg sg name = Symtab.lookup (#locales (LocalesData.get_sg sg), name);
val get_locale = get_locale_sg o Theory.sign_of;

fun put_locale (name, locale) = LocalesData.map (fn {space, locales, scope} =>
  make_locale_data (NameSpace.extend (space, [name]))
    (Symtab.update ((name, locale), locales)) scope);

fun the_locale thy name =
  (case get_locale thy name of
    Some loc => loc
  | None => error ("Unknown locale " ^ quote name));


(* access scope *)

fun get_scope_sg sg =
  if Sign.eq_sg (sg, Theory.sign_of ProtoPure.thy) then empty_scope
  else ! (#scope (LocalesData.get_sg sg));

val get_scope = get_scope_sg o Theory.sign_of;
val nonempty_scope_sg = not o null o #1 o get_scope_sg;

fun change_scope f thy =
  let val {scope, ...} = LocalesData.get thy
  in scope := f (! scope); thy end;

fun print_scope thy =
  Pretty.writeln (Pretty.strs ("current scope:" ::
    rev (map (cond_extern (Theory.sign_of thy) o #1) (#1 (get_scope thy)))));


(* print locales *)

fun pretty_locale thy xname =
  let
    val sg = Theory.sign_of thy;
    val name = intern sg xname;
    val (ancestors, elements) = the_locale thy name;

    val prt_typ = Pretty.quote o Sign.pretty_typ sg;
    val prt_term = Pretty.quote o Sign.pretty_term sg;

    fun prt_syn syn =
      let val s = (case syn of None => "(structure)" | Some mx => Syntax.string_of_mixfix mx)
      in if s = "" then [] else [Pretty.brk 4, Pretty.str s] end;
    fun prt_fix (x, T, syn) = Pretty.block (Pretty.str (x ^ " ::") :: Pretty.brk 1 ::
      prt_typ T :: Pretty.brk 1 :: prt_syn syn);

    fun prt_asm ((a, _), ts) = Pretty.block
      (Pretty.breaks (Pretty.str (a ^ ":") :: map (prt_term o fst) ts));
    fun prt_asms asms = Pretty.block
      (flat (separate [Pretty.fbrk, Pretty.str "and"] (map (single o prt_asm) asms)));

    fun prt_def ((a, _), (t, _)) = Pretty.block
      [Pretty.str (a ^ ":"), Pretty.brk 1, prt_term t];

    fun prt_fact ((a, _), ths) = Pretty.block
      (Pretty.breaks (Pretty.str (a ^ ":") :: map Display.pretty_thm (flat (map fst ths))));

    fun prt_elem (Fixes fixes) = Pretty.big_list "fixes" (map prt_fix fixes)
      | prt_elem (Assumes asms) = Pretty.big_list "assumes" (map prt_asm asms)
      | prt_elem (Defines defs) = Pretty.big_list "defines" (map prt_def defs)
      | prt_elem (Notes facts) = Pretty.big_list "notes" (map prt_fact facts)
      | prt_elem (Uses _) = Pretty.str "FIXME";

    val prt_header = Pretty.block (Pretty.str ("locale " ^ cond_extern sg name ^ " =") ::
       (if null ancestors then [] else
       (flat (separate [Pretty.str "+", Pretty.brk 1] (map (single o Pretty.str) ancestors)) @
         [Pretty.str "+"])));
  in Pretty.block (Pretty.fbreaks (prt_header :: map prt_elem elements)) end;

val print_locale = Pretty.writeln oo pretty_locale;



(** activate locales **)

(* FIXME old
fun pack_def eq =
  let
    val (lhs, rhs) = Logic.dest_equals eq;
    val (f, xs) = Term.strip_comb lhs;
  in (xs, Logic.mk_equals (f, foldr (uncurry lambda) (xs, rhs))) end;

fun unpack_def xs thm =
  let
    val cxs = map (Thm.cterm_of (Thm.sign_of_thm thm)) xs;
    fun unpack (th, cx) =
      Thm.combination th (Thm.reflexive cx)
      |> MetaSimplifier.fconv_rule (Thm.beta_conversion true);
  in foldl unpack (thm, cxs) end;

fun prep_def ((name, atts), eq) =
  let val (xs, eq') = pack_def eq
  in ((name, Drule.rule_attribute (K (unpack_def xs)) :: atts), [(eq', ([], []))]) end;
*)


fun activate (Fixes fixes) =
      ProofContext.fix_direct (map (fn (x, T, FIXME) => ([x], Some T)) fixes)
  | activate (Assumes asms) = #1 o ProofContext.assume_i ProofContext.export_assume asms
  | activate (Defines defs) = #1 o ProofContext.assume_i ProofContext.export_def
      (map (fn (a, (t, ps)) => (a, [(t, (ps, []))])) defs)
  | activate (Notes facts) = #1 o ProofContext.have_thmss facts
  | activate (Uses FIXME) = I;

val activate_elements = foldl (fn (c, elem) => activate elem c);

fun activate_locale_elems (ctxt, name) =
  let
    val thy = ProofContext.theory_of ctxt;
    val elems = #2 (the_locale thy name);
  in
    activate_elements (ctxt, elems) handle ProofContext.CONTEXT (msg, c) =>
      raise ProofContext.CONTEXT (msg ^ "\nThe error(s) above occurred in locale " ^
        quote (cond_extern (Theory.sign_of thy) name), c)
  end;

fun activate_locale name ctxt =
  foldl activate_locale_elems
    (ctxt, (#1 (the_locale (ProofContext.theory_of ctxt) name) @ [name]));



(* FIXME
(** define locales **)

(* prepare types *)

fun read_typ sg (envT, s) =
  let
    fun def_sort (x, ~1) = assoc (envT, x)
      | def_sort _ = None;
    val T = Type.no_tvars (Sign.read_typ (sg, def_sort) s) handle TYPE (msg, _, _) => error msg;
  in (Term.add_typ_tfrees (T, envT), T) end;

fun cert_typ sg (envT, raw_T) =
  let val T = Type.no_tvars (Sign.certify_typ sg raw_T) handle TYPE (msg, _, _) => error msg
  in (Term.add_typ_tfrees (T, envT), T) end;


(* prepare props *)

(* Bind a term with !! over a list of "free" Free's.
   To enable definitions like x + y == .... (without quantifier).
   Complications, because x and y have to be removed from defaults *)
fun abs_over_free clist ((defaults: (string * sort) list * (string * typ) list * string list), (s, term)) =
    let val diffl = rev(difflist term clist);
        fun abs_o (t, (x as Free(v,T))) = all(T) $ Abs(v, T, abstract_over (x,t))
          | abs_o (_ , _) = error ("Can't be: abs_over_free");
        val diffl' = map (fn (Free (s, T)) => s) diffl;
        val defaults' = (#1 defaults, filter (fn x => not((fst x) mem diffl')) (#2 defaults), #3 defaults)
    in (defaults', (s, foldl abs_o (term, diffl))) end;

(* assume a definition, i.e assume the cterm of a definiton term and then eliminate
   the binding !!, so that the def can be applied as rewrite. The meta hyp will still contain !! *)
fun prep_hyps clist sg = forall_elim_vars(0) o Thm.assume o (Thm.cterm_of sg);


(* concrete syntax *)

fun mark_syn c = "\\<^locale>" ^ c;

fun mk_loc_tr c ts = list_comb (Free (c, dummyT), ts);


(* add_locale *)

fun gen_add_locale prep_typ prep_term bname bpar raw_fixes raw_assumes raw_defs thy =
  let val sign = Theory.sign_of thy;

    val name = Sign.full_name sign bname;

    val (envSb, old_loc_fixes, _) =
                    case bpar of
                       Some loc => (get_defaults thy loc)
                     | None      => ([],[],[]);

    val old_nosyn = case bpar of
                       Some loc => #nosyn(#2(the_locale thy loc))
                     | None      => [];

    (* Get the full name of the parent *)
    val parent = case bparent of
                       Some loc => Some(#1(the_locale thy loc))
                     | None      => None;

     (* prepare locale fixes *)

    fun prep_const (envS, (raw_c, raw_T, raw_mx)) =
      let
        val c = Syntax.const_name raw_c raw_mx;
        val c_syn = mark_syn c;
        val mx = Syntax.fix_mixfix raw_c raw_mx;
        val (envS', T) = prep_typ sign (envS, raw_T) handle ERROR =>
          error ("The error(s) above occured in locale constant " ^ quote c);
        val trfun = if mx = Syntax.NoSyn then None else Some (c_syn, mk_loc_tr c);
      in (envS', ((c, T), (c_syn, T, mx), trfun)) end;

    val (envS0, loc_fixes_syn) = foldl_map prep_const (envSb, raw_fixes);
    val loc_fixes = map #1 loc_fixes_syn;
    val loc_fixes = old_loc_fixes @ loc_fixes;
    val loc_syn = map #2 loc_fixes_syn;
    val nosyn = old_nosyn @ (map (#1 o #1) (filter (fn x => (#3(#2 x)) = NoSyn) loc_fixes_syn));
    val loc_trfuns = mapfilter #3 loc_fixes_syn;


    (* 1st stage: syntax_thy *)

    val syntax_thy =
      thy
      |> Theory.add_modesyntax_i ("", true) loc_syn
      |> Theory.add_trfuns ([], loc_trfuns, [], []);

    val syntax_sign = Theory.sign_of syntax_thy;


    (* prepare assumes and defs *)

    fun prep_axiom (env, (a, raw_t)) =
      let
        val (env', t) = prep_term syntax_sign (env, (a, raw_t)) handle ERROR =>
          error ("The error(s) above occured in locale rule / definition " ^ quote a);
      in (env', (a, t)) end;

    val ((envS1, envT1, used1), loc_assumes) =
      foldl_map prep_axiom ((envS0, loc_fixes, map fst envS0), raw_assumes);
    val (defaults, loc_defs) =
        foldl_map prep_axiom ((envS1, envT1, used1), raw_defs);

    val old_loc_fixes = collect_fixes syntax_sign;
    val new_loc_fixes = (map #1 loc_fixes);
    val all_loc_fixes = old_loc_fixes @ new_loc_fixes;

    val (defaults, loc_defs_terms) =
        foldl_map (abs_over_free all_loc_fixes) (defaults, loc_defs);
    val loc_defs_thms =
        map (apsnd (prep_hyps (map #1 loc_fixes) syntax_sign)) loc_defs_terms;
    val (defaults, loc_thms_terms) =
        foldl_map (abs_over_free all_loc_fixes) (defaults, loc_assumes);
    val loc_thms = map (apsnd (prep_hyps (map #1 loc_fixes) syntax_sign))
                       (loc_thms_terms)
                   @ loc_defs_thms;


    (* error messages *)

    fun locale_error msg = error (msg ^ "\nFor locale " ^ quote name);

    val err_dup_locale =
      if is_none (get_locale thy name) then []
      else ["Duplicate definition of locale " ^ quote name];

    (* check if definientes are locale constants
       (in the same locale, so no redefining!) *)
    val err_def_head =
      let fun peal_appl t =
            case t of
                 t1 $ t2 => peal_appl t1
               | Free(t) => t
               | _ => locale_error ("Bad form of LHS in locale definition");
          fun lhs (_, Const ("==" , _) $  d1 $ d2) = peal_appl d1
            | lhs _ = locale_error ("Definitions must use the == relation");
          val defs = map lhs loc_defs;
          val check = defs subset loc_fixes
      in if check then []
         else ["defined item not declared fixed in locale " ^ quote name]
      end;

    (* check that variables on rhs of definitions are either fixed or on lhs *)
    val err_var_rhs =
      let fun compare_var_sides (t, (_, Const ("==", _) $ d1 $ d2)) =
                let val varl1 = difflist d1 all_loc_fixes;
                    val varl2 = difflist d2 all_loc_fixes
                in t andalso (varl2 subset varl1)
                end
            | compare_var_sides (_,_) =
                locale_error ("Definitions must use the == relation")
          val check = foldl compare_var_sides (true, loc_defs)
      in if check then []
         else ["nonfixed variable on right hand side of a locale definition in locale " ^ quote name]
      end;

    val errs = err_dup_locale @ err_def_head @ err_var_rhs;
  in
    if null errs then ()
    else error (cat_lines errs);

    syntax_thy
    |> put_locale (name,
                   make_locale parent loc_fixes nosyn loc_thms_terms
                                        loc_defs_terms   loc_thms defaults)
  end;


val add_locale = gen_add_locale read_typ read_axm;
val add_locale_i = gen_add_locale cert_typ cert_axm;



(*
(** support for legacy proof scripts (cf. goals.ML) **)     (* FIXME move to goals.ML (!?) *)

(* hyps_in_scope *)

fun hyps_in_scope sg hyps =
  let val locs = map #2 (#1 (get_scope_sg sg))
  in gen_subset Term.aconv (hyps, map #2 (flat (map #assumes locs @ map #defines locs))) end;


(* get theorems *)

fun thmx get_local get_global name =
  let val thy = Context.the_context () in
    (case #2 (get_scope thy) of
      None => get_global thy name
    | Some ctxt => get_local ctxt name)
  end;

val thm = thmx ProofContext.get_thm PureThy.get_thm;
val thms = thmx ProofContext.get_thms PureThy.get_thms;


(** scope operations -- for old-style goals **)  (* FIXME move to goals.ML (!?) *)

(* open *)

local

fun is_open thy name = exists (equal name o #1) (#1 (get_scope thy));

fun open_loc thy name =
  let
    val (ancestors, elements) = the_locale thy name;
  in
    (case #parent locale of None => thy
    | Some par =>
        if is_open thy par then thy
        else (writeln ("Opening locale " ^ quote par ^ "(required by " ^ quote name ^ ")");
          open_loc name thy))
    |> change_scope (fn (locs, _) => ((name, locale) :: locs, None))
  end;

in

fun open_locale xname thy =
  let val name = intern (Theory.sign_of thy) xname in
    if is_open thy name then (warning ("Locale " ^ quote name ^ " already open"); thy)
    else open_loc name thy
  end;

end;


(* close *)

fun close_locale xname thy =
  let val name = intern_locale (Theory.sign_of thy) xname in
    thy |> change_scope (fn ([], _) => error "Currently no open locales"
    | ((name', _) :: locs, _) =>
        if name <> name' then error ("Locale " ^ quote name ^ " not at top of scope")
        else (locs, None))
  end;


(* implicit context versions *)

fun Open_locale xname = (open_locale xname (Context.the_context ()); ());
fun Close_locale xname = (close_locale xname (Context.the_context ()); ());
fun Print_scope () = (print_scope (Context.the_context ()); ());
*)


(** locale theory setup **)
*)
val setup =
 [LocalesData.init];

end;

structure BasicLocale: BASIC_LOCALE = Locale;
open BasicLocale;