2014-05-31 04:05:47 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include <utility>
|
2014-06-13 15:26:05 +00:00
|
|
|
#include <algorithm>
|
2014-05-31 04:05:47 +00:00
|
|
|
#include "util/rb_map.h"
|
|
|
|
#include "util/name_generator.h"
|
2014-06-12 19:29:04 +00:00
|
|
|
#include "util/sstream.h"
|
2014-05-31 04:05:47 +00:00
|
|
|
#include "kernel/abstract.h"
|
|
|
|
#include "kernel/instantiate.h"
|
|
|
|
#include "library/expr_lt.h"
|
|
|
|
#include "library/kernel_bindings.h"
|
|
|
|
#include "library/aliases.h"
|
|
|
|
#include "library/placeholder.h"
|
2014-06-13 18:24:26 +00:00
|
|
|
#include "library/scoped_ext.h"
|
2014-09-03 22:01:13 +00:00
|
|
|
#include "library/protected.h"
|
2014-05-31 04:05:47 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2014-06-13 18:24:26 +00:00
|
|
|
struct aliases_ext;
|
|
|
|
static aliases_ext const & get_extension(environment const & env);
|
|
|
|
static environment update(environment const & env, aliases_ext const & ext);
|
|
|
|
|
2014-05-31 04:05:47 +00:00
|
|
|
struct aliases_ext : public environment_extension {
|
2014-06-13 18:24:26 +00:00
|
|
|
struct state {
|
2014-10-12 00:35:59 +00:00
|
|
|
bool m_in_context;
|
2014-09-28 17:23:11 +00:00
|
|
|
name_map<list<name>> m_aliases;
|
|
|
|
name_map<name> m_inv_aliases;
|
|
|
|
name_map<name> m_level_aliases;
|
|
|
|
name_map<name> m_inv_level_aliases;
|
2014-10-12 00:35:59 +00:00
|
|
|
state():m_in_context(false) {}
|
2014-07-07 22:40:32 +00:00
|
|
|
|
2014-11-30 02:29:48 +00:00
|
|
|
void add_expr_alias(name const & a, name const & e, bool overwrite) {
|
2014-07-07 22:40:32 +00:00
|
|
|
auto it = m_aliases.find(a);
|
2014-11-30 02:29:48 +00:00
|
|
|
if (it && !overwrite)
|
2014-08-03 20:50:48 +00:00
|
|
|
m_aliases.insert(a, cons(e, filter(*it, [&](name const & t) { return t != e; })));
|
2014-07-07 22:40:32 +00:00
|
|
|
else
|
2014-08-03 20:50:48 +00:00
|
|
|
m_aliases.insert(a, to_list(e));
|
2014-07-07 22:40:32 +00:00
|
|
|
m_inv_aliases.insert(e, a);
|
|
|
|
}
|
2014-06-13 18:24:26 +00:00
|
|
|
};
|
2014-07-07 22:40:32 +00:00
|
|
|
|
2014-06-13 18:24:26 +00:00
|
|
|
state m_state;
|
|
|
|
list<state> m_scopes;
|
|
|
|
|
2014-11-30 02:29:48 +00:00
|
|
|
void add_expr_alias(name const & a, name const & e, bool overwrite) {
|
|
|
|
m_state.add_expr_alias(a, e, overwrite);
|
2014-06-10 17:05:51 +00:00
|
|
|
}
|
2014-06-12 19:29:04 +00:00
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
void add_level_alias(name const & a, name const & l) {
|
2014-06-13 18:24:26 +00:00
|
|
|
auto it = m_state.m_level_aliases.find(a);
|
2014-06-12 19:29:04 +00:00
|
|
|
if (it)
|
|
|
|
throw exception(sstream() << "universe level alias '" << a << "' shadows existing alias");
|
2014-06-13 18:24:26 +00:00
|
|
|
m_state.m_level_aliases.insert(a, l);
|
|
|
|
m_state.m_inv_level_aliases.insert(l, a);
|
|
|
|
}
|
|
|
|
|
2014-11-30 02:29:48 +00:00
|
|
|
list<state> add_expr_alias_rec_core(list<state> const & scopes, name const & a, name const & e, bool overwrite) {
|
2014-07-07 22:40:32 +00:00
|
|
|
if (empty(scopes)) {
|
|
|
|
return scopes;
|
|
|
|
} else {
|
|
|
|
state s = head(scopes);
|
2014-11-30 02:29:48 +00:00
|
|
|
s.add_expr_alias(a, e, overwrite);
|
2014-10-12 00:35:59 +00:00
|
|
|
if (s.m_in_context) {
|
2014-11-30 02:29:48 +00:00
|
|
|
return cons(s, add_expr_alias_rec_core(tail(scopes), a, e, overwrite));
|
2014-07-07 22:40:32 +00:00
|
|
|
} else {
|
|
|
|
return cons(s, tail(scopes));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-30 02:29:48 +00:00
|
|
|
void add_expr_alias_rec(name const & a, name const & e, bool overwrite = false) {
|
2014-10-12 00:35:59 +00:00
|
|
|
if (m_state.m_in_context) {
|
2014-11-30 02:29:48 +00:00
|
|
|
m_scopes = add_expr_alias_rec_core(m_scopes, a, e, overwrite);
|
2014-07-07 22:40:32 +00:00
|
|
|
}
|
2014-12-13 22:57:15 +00:00
|
|
|
add_expr_alias(a, e, overwrite);
|
2014-07-07 22:40:32 +00:00
|
|
|
}
|
|
|
|
|
2014-10-12 00:35:59 +00:00
|
|
|
void push(bool in_context) {
|
2014-08-03 20:50:48 +00:00
|
|
|
m_scopes = cons(m_state, m_scopes);
|
2014-10-12 00:35:59 +00:00
|
|
|
m_state.m_in_context = in_context;
|
2014-06-13 18:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void pop() {
|
|
|
|
m_state = head(m_scopes);
|
|
|
|
m_scopes = tail(m_scopes);
|
|
|
|
}
|
|
|
|
|
2014-09-02 19:57:20 +00:00
|
|
|
void for_each_expr_alias(std::function<void(name const &, list<name> const &)> const & fn) {
|
|
|
|
m_state.m_aliases.for_each(fn);
|
|
|
|
}
|
|
|
|
|
2014-06-13 18:24:26 +00:00
|
|
|
static environment using_namespace(environment const & env, io_state const &, name const &) {
|
|
|
|
// do nothing, aliases are treated in a special way in the frontend.
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2014-09-04 01:37:01 +00:00
|
|
|
static environment export_namespace(environment const & env, io_state const &, name const &) {
|
|
|
|
// do nothing, aliases are treated in a special way in the frontend.
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2014-08-23 22:44:28 +00:00
|
|
|
static environment push_scope(environment const & env, scope_kind k) {
|
2014-06-13 18:24:26 +00:00
|
|
|
aliases_ext ext = get_extension(env);
|
2014-08-23 22:44:28 +00:00
|
|
|
ext.push(k != scope_kind::Namespace);
|
2014-06-13 18:24:26 +00:00
|
|
|
environment new_env = update(env, ext);
|
2014-12-13 22:57:15 +00:00
|
|
|
if (!::lean::in_context(new_env) && !::lean::in_section(new_env))
|
2014-06-13 18:24:26 +00:00
|
|
|
new_env = add_aliases(new_env, get_namespace(new_env), name());
|
|
|
|
return new_env;
|
|
|
|
}
|
|
|
|
|
2014-08-23 22:44:28 +00:00
|
|
|
static environment pop_scope(environment const & env, scope_kind) {
|
2014-06-13 18:24:26 +00:00
|
|
|
aliases_ext ext = get_extension(env);
|
|
|
|
ext.pop();
|
|
|
|
return update(env, ext);
|
2014-06-12 19:29:04 +00:00
|
|
|
}
|
2014-05-31 04:05:47 +00:00
|
|
|
};
|
|
|
|
|
2014-09-23 00:30:29 +00:00
|
|
|
static name * g_aliases = nullptr;
|
2014-06-13 18:24:26 +00:00
|
|
|
|
2014-05-31 04:05:47 +00:00
|
|
|
struct aliases_ext_reg {
|
|
|
|
unsigned m_ext_id;
|
2014-06-13 18:24:26 +00:00
|
|
|
aliases_ext_reg() {
|
2014-09-23 00:30:29 +00:00
|
|
|
register_scoped_ext(*g_aliases,
|
2014-09-04 01:37:01 +00:00
|
|
|
aliases_ext::using_namespace, aliases_ext::export_namespace,
|
|
|
|
aliases_ext::push_scope, aliases_ext::pop_scope);
|
2014-06-13 18:24:26 +00:00
|
|
|
m_ext_id = environment::register_extension(std::make_shared<aliases_ext>());
|
|
|
|
}
|
2014-05-31 04:05:47 +00:00
|
|
|
};
|
2014-09-23 00:30:29 +00:00
|
|
|
static aliases_ext_reg * g_ext = nullptr;
|
2014-05-31 04:05:47 +00:00
|
|
|
static aliases_ext const & get_extension(environment const & env) {
|
2014-09-23 00:30:29 +00:00
|
|
|
return static_cast<aliases_ext const &>(env.get_extension(g_ext->m_ext_id));
|
2014-05-31 04:05:47 +00:00
|
|
|
}
|
|
|
|
static environment update(environment const & env, aliases_ext const & ext) {
|
2014-09-23 00:30:29 +00:00
|
|
|
return env.update(g_ext->m_ext_id, std::make_shared<aliases_ext>(ext));
|
2014-05-31 04:05:47 +00:00
|
|
|
}
|
|
|
|
|
2014-11-30 02:29:48 +00:00
|
|
|
environment add_expr_alias(environment const & env, name const & a, name const & e, bool overwrite) {
|
2014-05-31 04:05:47 +00:00
|
|
|
aliases_ext ext = get_extension(env);
|
2014-11-30 02:29:48 +00:00
|
|
|
ext.add_expr_alias(a, e, overwrite);
|
2014-05-31 04:05:47 +00:00
|
|
|
return update(env, ext);
|
|
|
|
}
|
|
|
|
|
2014-11-30 02:29:48 +00:00
|
|
|
environment add_expr_alias_rec(environment const & env, name const & a, name const & e, bool overwrite) {
|
2014-07-07 22:40:32 +00:00
|
|
|
aliases_ext ext = get_extension(env);
|
2014-11-30 02:29:48 +00:00
|
|
|
ext.add_expr_alias_rec(a, e, overwrite);
|
2014-07-07 22:40:32 +00:00
|
|
|
return update(env, ext);
|
|
|
|
}
|
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
optional<name> is_expr_aliased(environment const & env, name const & t) {
|
2014-06-13 18:24:26 +00:00
|
|
|
auto it = get_extension(env).m_state.m_inv_aliases.find(t);
|
2014-05-31 04:05:47 +00:00
|
|
|
return it ? optional<name>(*it) : optional<name>();
|
|
|
|
}
|
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
list<name> get_expr_aliases(environment const & env, name const & n) {
|
2014-08-03 20:50:48 +00:00
|
|
|
return ptr_to_list(get_extension(env).m_state.m_aliases.find(n));
|
2014-05-31 04:05:47 +00:00
|
|
|
}
|
|
|
|
|
2014-07-07 22:40:32 +00:00
|
|
|
static void check_no_shadow(environment const & env, name const & a) {
|
2014-06-13 15:26:05 +00:00
|
|
|
if (env.is_universe(a))
|
2014-06-12 19:29:04 +00:00
|
|
|
throw exception(sstream() << "universe level alias '" << a << "' shadows existing global universe level");
|
2014-07-07 22:40:32 +00:00
|
|
|
}
|
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
environment add_level_alias(environment const & env, name const & a, name const & l) {
|
2014-07-07 22:40:32 +00:00
|
|
|
check_no_shadow(env, a);
|
2014-06-12 19:29:04 +00:00
|
|
|
aliases_ext ext = get_extension(env);
|
2014-07-28 04:01:59 +00:00
|
|
|
ext.add_level_alias(a, l);
|
2014-06-12 19:29:04 +00:00
|
|
|
return update(env, ext);
|
|
|
|
}
|
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
optional<name> is_level_aliased(environment const & env, name const & l) {
|
2014-06-13 18:24:26 +00:00
|
|
|
auto it = get_extension(env).m_state.m_inv_level_aliases.find(l);
|
2014-06-12 19:29:04 +00:00
|
|
|
return it ? optional<name>(*it) : optional<name>();
|
|
|
|
}
|
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
optional<name> get_level_alias(environment const & env, name const & n) {
|
2014-06-13 18:24:26 +00:00
|
|
|
auto it = get_extension(env).m_state.m_level_aliases.find(n);
|
2014-07-28 04:01:59 +00:00
|
|
|
return it ? optional<name>(*it) : optional<name>();
|
2014-06-12 19:29:04 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 15:26:05 +00:00
|
|
|
// Return true iff \c n is (prefix + ex) for some ex in exceptions
|
2014-09-04 01:37:01 +00:00
|
|
|
bool is_exception(name const & n, name const & prefix, unsigned num_exceptions, name const * exceptions) {
|
2014-06-13 15:26:05 +00:00
|
|
|
return std::any_of(exceptions, exceptions + num_exceptions, [&](name const & ex) { return (prefix + ex) == n; });
|
|
|
|
}
|
|
|
|
|
|
|
|
environment add_aliases(environment const & env, name const & prefix, name const & new_prefix,
|
2014-11-30 02:29:48 +00:00
|
|
|
unsigned num_exceptions, name const * exceptions, bool overwrite) {
|
2014-06-13 15:26:05 +00:00
|
|
|
aliases_ext ext = get_extension(env);
|
|
|
|
env.for_each_declaration([&](declaration const & d) {
|
2014-12-03 22:25:02 +00:00
|
|
|
if (is_prefix_of(prefix, d.get_name()) && !is_exception(d.get_name(), prefix, num_exceptions, exceptions)) {
|
2014-06-13 15:26:05 +00:00
|
|
|
name a = d.get_name().replace_prefix(prefix, new_prefix);
|
2014-12-03 22:25:02 +00:00
|
|
|
if (!(is_protected(env, d.get_name()) && a.is_atomic()) &&
|
|
|
|
!(a.is_anonymous()))
|
2014-11-30 02:29:48 +00:00
|
|
|
ext.add_expr_alias(a, d.get_name(), overwrite);
|
2014-06-13 15:26:05 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
env.for_each_universe([&](name const & u) {
|
2014-12-03 22:25:02 +00:00
|
|
|
if (is_prefix_of(prefix, u) && !is_exception(u, prefix, num_exceptions, exceptions)) {
|
2014-06-13 15:26:05 +00:00
|
|
|
name a = u.replace_prefix(prefix, new_prefix);
|
|
|
|
if (env.is_universe(a))
|
|
|
|
throw exception(sstream() << "universe level alias '" << a << "' shadows existing global universe level");
|
2014-12-03 22:25:02 +00:00
|
|
|
if (!(is_protected(env, u) && a.is_atomic()) &&
|
|
|
|
!a.is_anonymous())
|
2014-08-07 15:24:56 +00:00
|
|
|
ext.add_level_alias(a, u);
|
2014-06-13 15:26:05 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return update(env, ext);
|
|
|
|
}
|
|
|
|
|
2014-09-02 19:57:20 +00:00
|
|
|
void for_each_expr_alias(environment const & env, std::function<void(name const &, list<name> const &)> const & fn) {
|
|
|
|
aliases_ext ext = get_extension(env);
|
|
|
|
ext.for_each_expr_alias(fn);
|
|
|
|
}
|
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
static int add_expr_alias(lua_State * L) {
|
|
|
|
return push_environment(L, add_expr_alias(to_environment(L, 1), to_name_ext(L, 2), to_name_ext(L, 3)));
|
2014-05-31 04:05:47 +00:00
|
|
|
}
|
2014-07-28 04:01:59 +00:00
|
|
|
static int add_level_alias(lua_State * L) {
|
|
|
|
return push_environment(L, add_level_alias(to_environment(L, 1), to_name_ext(L, 2), to_name_ext(L, 3)));
|
2014-06-12 19:29:04 +00:00
|
|
|
}
|
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
static int is_expr_aliased(lua_State * L) {
|
|
|
|
return push_optional_name(L, is_expr_aliased(to_environment(L, 1), to_name_ext(L, 2)));
|
|
|
|
}
|
|
|
|
static int is_level_aliased(lua_State * L) {
|
|
|
|
return push_optional_name(L, is_level_aliased(to_environment(L, 1), to_name_ext(L, 2)));
|
2014-05-31 04:05:47 +00:00
|
|
|
}
|
|
|
|
|
2014-07-28 04:01:59 +00:00
|
|
|
static int get_expr_aliases(lua_State * L) {
|
|
|
|
return push_list_name(L, get_expr_aliases(to_environment(L, 1), to_name_ext(L, 2)));
|
|
|
|
}
|
|
|
|
static int get_level_alias(lua_State * L) {
|
|
|
|
return push_optional_name(L, get_level_alias(to_environment(L, 1), to_name_ext(L, 2)));
|
2014-05-31 04:05:47 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 15:26:05 +00:00
|
|
|
static int add_aliases(lua_State * L) {
|
|
|
|
int nargs = lua_gettop(L);
|
|
|
|
if (nargs == 2) {
|
|
|
|
return push_environment(L, add_aliases(to_environment(L, 1), to_name_ext(L, 2), name()));
|
|
|
|
} else if (nargs == 3) {
|
|
|
|
return push_environment(L, add_aliases(to_environment(L, 1), to_name_ext(L, 2), to_name_ext(L, 3)));
|
|
|
|
} else {
|
|
|
|
buffer<name> exs;
|
|
|
|
luaL_checktype(L, 4, LUA_TTABLE);
|
|
|
|
int n = objlen(L, 4);
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
|
|
lua_rawgeti(L, 4, i);
|
|
|
|
exs.push_back(to_name_ext(L, -1));
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
return push_environment(L, add_aliases(to_environment(L, 1), to_name_ext(L, 2), to_name_ext(L, 3),
|
|
|
|
exs.size(), exs.data()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-31 04:05:47 +00:00
|
|
|
void open_aliases(lua_State * L) {
|
2014-07-28 04:01:59 +00:00
|
|
|
SET_GLOBAL_FUN(add_expr_alias, "add_expr_alias");
|
|
|
|
SET_GLOBAL_FUN(add_level_alias, "add_level_alias");
|
|
|
|
SET_GLOBAL_FUN(is_expr_aliased, "is_expr_aliased");
|
|
|
|
SET_GLOBAL_FUN(is_level_aliased, "is_level_aliased");
|
|
|
|
SET_GLOBAL_FUN(get_expr_aliases, "get_expr_aliases");
|
|
|
|
SET_GLOBAL_FUN(get_level_alias, "get_level_alias");
|
|
|
|
SET_GLOBAL_FUN(add_aliases, "add_aliases");
|
2014-05-31 04:05:47 +00:00
|
|
|
}
|
2014-09-23 00:30:29 +00:00
|
|
|
|
|
|
|
void initialize_aliases() {
|
|
|
|
g_aliases = new name("aliases");
|
|
|
|
g_ext = new aliases_ext_reg();
|
|
|
|
}
|
|
|
|
|
|
|
|
void finalize_aliases() {
|
|
|
|
delete g_ext;
|
|
|
|
delete g_aliases;
|
|
|
|
}
|
2014-05-31 04:05:47 +00:00
|
|
|
}
|