/* 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 #include "util/rb_map.h" #include "util/name_generator.h" #include "kernel/abstract.h" #include "kernel/instantiate.h" #include "library/expr_lt.h" #include "library/kernel_bindings.h" #include "library/aliases.h" #include "library/io_state_stream.h" #include "library/placeholder.h" namespace lean { struct aliases_ext : public environment_extension { rb_map m_aliases; rb_map m_inv_aliases; }; struct aliases_ext_reg { unsigned m_ext_id; aliases_ext_reg() { m_ext_id = environment::register_extension(std::make_shared()); } }; static aliases_ext_reg g_ext; static aliases_ext const & get_extension(environment const & env) { return static_cast(env.get_extension(g_ext.m_ext_id)); } static environment update(environment const & env, aliases_ext const & ext) { return env.update(g_ext.m_ext_id, std::make_shared(ext)); } static void check_name(environment const & env, name const & a, io_state const & ios) { if (get_extension(env).m_aliases.contains(a)) diagnostic(env, ios) << "alias '" << a << "' shadows existing alias\n"; if (env.find(a)) diagnostic(env, ios) << "alias '" << a << "' shadows existing declaration\n"; } environment add_alias(environment const & env, name const & a, expr const & e, io_state const & ios) { check_name(env, a, ios); aliases_ext ext = get_extension(env); ext.m_aliases.insert(a, e); ext.m_inv_aliases.insert(e, a); return update(env, ext); } environment add_aliases(environment const & env, name const & prefix, name const & new_prefix, io_state const & ios) { aliases_ext ext = get_extension(env); env.for_each([&](declaration const & d) { if (is_prefix_of(prefix, d.get_name())) { name a = d.get_name().replace_prefix(prefix, new_prefix); check_name(env, a, ios); levels ls = map2(d.get_univ_params(), [](name const &) { return mk_level_placeholder(); }); expr c = mk_constant(d.get_name(), ls); ext.m_aliases.insert(a, c); ext.m_inv_aliases.insert(c, a); } }); return update(env, ext); } optional is_aliased(environment const & env, expr const & t) { auto it = get_extension(env).m_inv_aliases.find(t); return it ? optional(*it) : optional(); } optional get_alias(environment const & env, name const & n) { auto it = get_extension(env).m_aliases.find(n); return it ? optional(*it) : optional(); } static int add_alias(lua_State * L) { return push_environment(L, add_alias(to_environment(L, 1), to_name_ext(L, 2), to_expr(L, 3), to_io_state_ext(L, 4))); } 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(), get_io_state(L))); } else if (nargs == 3) { return push_environment(L, add_aliases(to_environment(L, 1), to_name_ext(L, 2), to_name_ext(L, 3), get_io_state(L))); } else { return push_environment(L, add_aliases(to_environment(L, 1), to_name_ext(L, 2), to_name_ext(L, 3), to_io_state(L, 4))); } } static int is_aliased(lua_State * L) { return push_optional_name(L, is_aliased(to_environment(L, 1), to_expr(L, 2))); } static int get_alias(lua_State * L) { return push_optional_expr(L, get_alias(to_environment(L, 1), to_name_ext(L, 2))); } void open_aliases(lua_State * L) { SET_GLOBAL_FUN(add_alias, "add_alias"); SET_GLOBAL_FUN(add_aliases, "add_aliases"); SET_GLOBAL_FUN(is_aliased, "is_aliased"); SET_GLOBAL_FUN(get_alias, "get_alias"); } }