/* Copyright (c) 2013 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include #include #include #include #include #include "util/thread.h" #include "util/name.h" #include "util/sstream.h" #include "util/debug.h" #include "util/rc.h" #include "util/buffer.h" #include "util/hash.h" #include "util/trace.h" #include "util/ascii.h" #include "util/object_serializer.h" #include "util/lua_list.h" namespace lean { constexpr char const * anonymous_str = "[anonymous]"; /** \brief Actual implementation of hierarchical names. */ struct name::imp { MK_LEAN_RC() bool m_is_string; unsigned m_hash; imp * m_prefix; union { char * m_str; unsigned m_k; }; void dealloc() { imp * curr = this; while (true) { lean_assert(curr->get_rc() == 0); imp * p = curr->m_prefix; if (curr->m_is_string) delete[] reinterpret_cast(curr); else delete curr; curr = p; if (!curr || !curr->dec_ref_core()) break; } } imp(bool s, imp * p):m_rc(1), m_is_string(s), m_hash(0), m_prefix(p) { if (p) p->inc_ref(); } static void display_core(std::ostream & out, imp * p, char const * sep) { lean_assert(p != nullptr); if (p->m_prefix) { display_core(out, p->m_prefix, sep); out << sep; } if (p->m_is_string) out << p->m_str; else out << p->m_k; } static void display(std::ostream & out, imp * p, char const * sep = lean_name_separator) { if (p == nullptr) out << anonymous_str; else display_core(out, p, sep); } friend void copy_limbs(imp * p, buffer & limbs) { limbs.clear(); while (p != nullptr) { limbs.push_back(p); p = p->m_prefix; } std::reverse(limbs.begin(), limbs.end()); } }; name::name(imp * p) { m_ptr = p; if (m_ptr) m_ptr->inc_ref(); } name::name() { m_ptr = nullptr; } name::name(name const & prefix, char const * name) { size_t sz = strlen(name); lean_assert(sz < (1u << 31)); char * mem = new char[sizeof(imp) + sz + 1]; m_ptr = new (mem) imp(true, prefix.m_ptr); std::memcpy(mem + sizeof(imp), name, sz + 1); m_ptr->m_str = mem + sizeof(imp); if (m_ptr->m_prefix) m_ptr->m_hash = hash_str(sz, name, m_ptr->m_prefix->m_hash); else m_ptr->m_hash = hash_str(sz, name, 0); } name::name(name const & prefix, unsigned k, bool) { m_ptr = new imp(false, prefix.m_ptr); m_ptr->m_k = k; if (m_ptr->m_prefix) m_ptr->m_hash = ::lean::hash(m_ptr->m_prefix->m_hash, k); else m_ptr->m_hash = k; } name::name(name const & prefix, unsigned k):name(prefix, k, true) { lean_assert(prefix.m_ptr); } name::name(char const * n):name(name(), n) { } name::name(unsigned k):name(name(), k, true) { } name::name(name const & other):m_ptr(other.m_ptr) { if (m_ptr) m_ptr->inc_ref(); } name::name(name && other):m_ptr(other.m_ptr) { other.m_ptr = nullptr; } name::name(std::initializer_list const & l):name() { if (l.size() == 0) { return; } else { auto it = l.begin(); *this = name(*it); ++it; for (; it != l.end(); ++it) *this = name(*this, *it); } } name::~name() { if (m_ptr) m_ptr->dec_ref(); } static name g_anonymous; name const & name::anonymous() { lean_assert(g_anonymous.is_anonymous()); return g_anonymous; } static atomic g_next_id(0); name name::mk_internal_unique_name() { unsigned id = g_next_id++; return name(id); } name & name::operator=(name const & other) { LEAN_COPY_REF(other); } name & name::operator=(name && other) { LEAN_MOVE_REF(other); } name_kind name::kind() const { if (m_ptr == nullptr) return name_kind::ANONYMOUS; else return m_ptr->m_is_string ? name_kind::STRING : name_kind::NUMERAL; } unsigned name::get_numeral() const { lean_assert(is_numeral()); return m_ptr->m_k; } char const * name::get_string() const { lean_assert(is_string()); return m_ptr->m_str; } bool operator==(name const & a, name const & b) { name::imp * i1 = a.m_ptr; name::imp * i2 = b.m_ptr; while (true) { if (i1 == i2) return true; if ((i1 == nullptr) != (i2 == nullptr)) return false; if (i1->m_hash != i2->m_hash) return false; lean_assert(i1 != nullptr); lean_assert(i2 != nullptr); if (i1->m_is_string != i2->m_is_string) return false; if (i1->m_is_string) { if (strcmp(i1->m_str, i2->m_str) != 0) return false; } else { if (i1->m_k != i2->m_k) return false; } i1 = i1->m_prefix; i2 = i2->m_prefix; } } bool is_prefix_of(name const & n1, name const & n2) { if (n2.is_atomic()) return n1 == n2; buffer limbs1, limbs2; name::imp* i1 = n1.m_ptr; name::imp* i2 = n2.m_ptr; copy_limbs(i1, limbs1); copy_limbs(i2, limbs2); unsigned sz1 = limbs1.size(); unsigned sz2 = limbs2.size(); if (sz1 > sz2) return false; else if (sz1 == sz2 && n1.hash() != n2.hash()) return false; auto it1 = limbs1.begin(); auto it2 = limbs2.begin(); for (; it1 != limbs1.end(); ++it1, ++it2) { i1 = *it1; i2 = *it2; if (i1->m_is_string != i2->m_is_string) return false; if (i1->m_is_string) { if (strcmp(i1->m_str, i2->m_str) != 0) return false; } else if (i1->m_k != i2->m_k) { return false; } } return true; } bool operator==(name const & a, char const * b) { return a.m_ptr->m_is_string && strcmp(a.m_ptr->m_str, b) == 0; } int cmp(name::imp * i1, name::imp * i2) { buffer limbs1, limbs2; copy_limbs(i1, limbs1); copy_limbs(i2, limbs2); auto it1 = limbs1.begin(); auto it2 = limbs2.begin(); for (; it1 != limbs1.end() && it2 != limbs2.end(); ++it1, ++it2) { i1 = *it1; i2 = *it2; if (i1->m_is_string != i2->m_is_string) return i1->m_is_string ? 1 : -1; if (i1->m_is_string) { int c = strcmp(i1->m_str, i2->m_str); if (c != 0) return c; } else if (i1->m_k != i2->m_k) { return i1->m_k < i2->m_k ? -1 : 1; } } if (it1 == limbs1.end() && it2 == limbs2.end()) return 0; else return it1 == limbs1.end() ? -1 : 1; } bool name::is_atomic() const { return m_ptr == nullptr || m_ptr->m_prefix == nullptr; } name name::get_prefix() const { return is_atomic() ? name() : name(m_ptr->m_prefix); } static unsigned num_digits(unsigned k) { if (k == 0) return 1; int r = 0; while (k != 0) { k /= 10; r++; } return r; } size_t name::size() const { if (m_ptr == nullptr) { return strlen(anonymous_str); } else { imp * i = m_ptr; size_t sep_sz = strlen(lean_name_separator); size_t r = 0; while (true) { if (i->m_is_string) { r += strlen(i->m_str); } else { r += num_digits(i->m_k); } if (i->m_prefix) { r += sep_sz; i = i->m_prefix; } else { break; } } return r; } } unsigned name::hash() const { return m_ptr ? m_ptr->m_hash : 11; } bool name::is_safe_ascii() const { imp * i = m_ptr; while (i) { if (i->m_is_string) { if (!::lean::is_safe_ascii(i->m_str)) return false; } i = i->m_prefix; } return true; } std::string name::to_string(char const * sep) const { std::ostringstream s; imp::display(s, m_ptr, sep); return s.str(); } std::ostream & operator<<(std::ostream & out, name const & n) { name::imp::display(out, n.m_ptr); return out; } name operator+(name const & n1, name const & n2) { if (n2.is_anonymous()) { return n1; } else if (n1.is_anonymous()) { return n2; } else { name prefix; if (!n2.is_atomic()) prefix = n1 + name(n2.m_ptr->m_prefix); else prefix = n1; if (n2.m_ptr->m_is_string) return name(prefix, n2.m_ptr->m_str); else return name(prefix, n2.m_ptr->m_k); } } name name::append_before(char const * p) const { if (is_anonymous()) { return name(p); } else if (is_string()) { return name(get_prefix(), (std::string(p) + std::string(get_string())).c_str()); } else { return name(name(get_prefix(), p), get_numeral()); } } name name::append_after(char const * s) const { if (is_anonymous()) { return name(s); } else if (is_string()) { return name(get_prefix(), (std::string(get_string()) + std::string(s)).c_str()); } else { return name(*this, s); } } name name::append_after(unsigned i) const { std::ostringstream s; s << "_" << i; return append_after(s.str().c_str()); } name name::replace_prefix(name const & prefix, name const & new_prefix) const { if (*this == prefix) return new_prefix; if (is_anonymous()) return *this; name p = get_prefix().replace_prefix(prefix, new_prefix); if (is_string()) return name(p, get_string()); else return name(p, get_numeral()); } enum name_ll_kind { LL_ANON = 0, LL_STRING = 1, LL_INT = 2, LL_STRING_PREFIX = 3, LL_INT_PREFIX = 4 }; name_ll_kind ll_kind(name const & n) { if (n.is_anonymous()) return LL_ANON; if (n.is_atomic()) return n.is_string() ? LL_STRING : LL_INT; else return n.is_string() ? LL_STRING_PREFIX : LL_INT_PREFIX; } class name_serializer : public object_serializer { typedef object_serializer super; public: void write(name const & n) { name_ll_kind k = ll_kind(n); super::write_core(n, k, [&]() { serializer & s = get_owner(); switch (k) { case LL_ANON: break; case LL_STRING: s.write_string(n.get_string()); break; case LL_INT: s.write_unsigned(n.get_numeral()); break; case LL_STRING_PREFIX: write(n.get_prefix()); s.write_string(n.get_string()); break; case LL_INT_PREFIX: write(n.get_prefix()); s.write_unsigned(n.get_numeral()); break; } }); } }; class name_deserializer : public object_deserializer { typedef object_deserializer super; public: name read() { return super::read_core([&](char c) { deserializer & d = get_owner(); name_ll_kind k = static_cast(c); switch (k) { case LL_ANON: return name(); case LL_STRING: return name(d.read_string().c_str()); case LL_INT: return name(name(), d.read_unsigned()); case LL_STRING_PREFIX: { name prefix = read(); return name(prefix, d.read_string().c_str()); } case LL_INT_PREFIX: { name prefix = read(); return name(prefix, d.read_unsigned()); }} throw_corrupted_file(); }); } }; struct name_sd { unsigned m_serializer_extid; unsigned m_deserializer_extid; name_sd() { m_serializer_extid = serializer::register_extension([](){ return std::unique_ptr(new name_serializer()); }); m_deserializer_extid = deserializer::register_extension([](){ return std::unique_ptr(new name_deserializer()); }); } }; static name_sd g_name_sd; serializer & operator<<(serializer & s, name const & n) { s.get_extension(g_name_sd.m_serializer_extid).write(n); return s; } name read_name(deserializer & d) { return d.get_extension(g_name_sd.m_deserializer_extid).read(); } DECL_UDATA(name) static int mk_name(lua_State * L) { int nargs = lua_gettop(L); name r; for (int i = 1; i <= nargs; i++) { switch (lua_type(L, i)) { case LUA_TNIL: break; // skip case LUA_TNUMBER: r = name(r, lua_tointeger(L, i)); break; case LUA_TSTRING: r = name(r, lua_tostring(L, i)); break; case LUA_TUSERDATA: r = r + to_name(L, i); break; default: throw exception(sstream() << "arg #" << i << " must be a hierarchical name, string, or integer"); } } return push_name(L, r); } name to_name_ext(lua_State * L, int idx) { if (lua_isstring(L, idx)) { return luaL_checkstring(L, idx); } else if (lua_isnil(L, idx)) { return name(); } else if (lua_istable(L, idx)) { name r; int n = objlen(L, idx); for (int i = 1; i <= n; i++) { lua_rawgeti(L, idx, i); switch (lua_type(L, -1)) { case LUA_TNIL: break; // skip case LUA_TNUMBER: r = name(r, lua_tointeger(L, -1)); break; case LUA_TSTRING: r = name(r, lua_tostring(L, -1)); break; case LUA_TUSERDATA: r = r + to_name(L, -1); break; default: throw exception("invalid array arguments, elements must be a hierarchical name, string, or integer"); } lua_pop(L, 1); } return r; } else { return to_name(L, idx); } } optional to_optional_name(lua_State * L, int idx) { if (lua_isnil(L, idx)) return optional(); else return optional(to_name_ext(L, idx)); } int push_optional_name(lua_State * L, optional const & n) { if (n) return push_name(L, *n); else return push_nil(L); } static int name_tostring(lua_State * L) { return push_string(L, to_name(L, 1).to_string().c_str()); } static int name_eq(lua_State * L) { return push_boolean(L, to_name(L, 1) == to_name(L, 2)); } static int name_lt(lua_State * L) { return push_boolean(L, to_name(L, 1) < to_name(L, 2)); } static int name_hash(lua_State * L) { return push_integer(L, to_name(L, 1).hash()); } #define NAME_PRED(P) static int name_ ## P(lua_State * L) { check_num_args(L, 1); return push_boolean(L, to_name(L, 1).P()); } NAME_PRED(is_atomic) NAME_PRED(is_anonymous) NAME_PRED(is_string) NAME_PRED(is_numeral) static int name_get_prefix(lua_State * L) { if (to_name(L, 1).is_atomic()) throw exception("invalid get_prefix, non-atomic name expected"); return push_name(L, to_name(L, 1).get_prefix()); } static int name_get_numeral(lua_State * L) { if (!to_name(L, 1).is_numeral()) throw exception("invalid get_numeral, hierarchical name with numeric head expected"); return push_integer(L, to_name(L, 1).get_numeral()); } static int name_get_string(lua_State * L) { if (!to_name(L, 1).is_string()) throw exception("invalid get_string, hierarchical name with string head expected"); return push_string(L, to_name(L, 1).get_string()); } static int name_append_before(lua_State * L) { return push_name(L, to_name(L, 1).append_before(lua_tostring(L, 2))); } static int name_append_after(lua_State * L) { if (lua_isnumber(L, 2)) return push_name(L, to_name(L, 1).append_after(lua_tonumber(L, 2))); else return push_name(L, to_name(L, 1).append_after(lua_tostring(L, 2))); } static int name_replace_prefix(lua_State * L) { return push_name(L, to_name(L, 1).replace_prefix(to_name_ext(L, 2), to_name_ext(L, 3))); } static const struct luaL_Reg name_m[] = { {"__gc", name_gc}, // never throws {"__tostring", safe_function}, {"__eq", safe_function}, {"__lt", safe_function}, {"is_atomic", safe_function}, {"is_anonymous", safe_function}, {"is_numeral", safe_function}, {"is_string", safe_function}, {"get_prefix", safe_function}, {"get_numeral", safe_function}, {"get_string", safe_function}, {"hash", safe_function}, {"append_before", safe_function}, {"append_after", safe_function}, {"replace_prefix", safe_function}, {0, 0} }; DEFINE_LUA_LIST(name, push_name, to_name_ext) void open_name(lua_State * L) { luaL_newmetatable(L, name_mt); lua_pushvalue(L, -1); lua_setfield(L, -2, "__index"); setfuncs(L, name_m, 0); SET_GLOBAL_FUN(mk_name, "name"); SET_GLOBAL_FUN(name_pred, "is_name"); open_list_name(L); } } void print(lean::name const & n) { std::cout << n << std::endl; }