#include "funcs.hpp" #include "../level-0/errors.hpp" #include "../level-0/memorystore.hpp" #include "concepts.hpp" #include namespace intellect { namespace level1 { using namespace concepts; // ensure name link and backing structure are created prior to first use static auto & namestruct() { static struct name_t { std::unordered_map,std::equal_to> conceptsByName; ref nameref; name_t() : nameref(level0::alloc()) { level0::ref namestr = alloc((std::string)("name")); nameref.set(nameref, namestr); conceptsByName.emplace(namestr.val(), nameref); } } namestruct; return namestruct; } concept* getnamed(std::string const & name) { auto & ns = namestruct(); auto res = ns.conceptsByName.find(name); if (res != ns.conceptsByName.end()) { return res->second; } else { level1::ref con = level0::alloc(); level0::ref namestr = level0::alloc(name); ns.conceptsByName.emplace(namestr.val(), con); con.set(ns.nameref, namestr); return con.ptr(); } } std::string& getname(concept* r) { try { return r->vget(namestruct().nameref); } catch(level0::no_such_link_type&) { return getname(ref("UNNAMED")); } } bool isa(concept* member, concept* group) { for (auto & g : member->getAll(is)) { if (g == group) return true; if (g == member) continue; if (isa(g, group)) return true; } return false; } concept* alloc(std::any val) { ref ret = level0::alloc(val); std::stringstream ss; ss << val.type().name() << "("; if (false); #define t(T) \ else if (val.type() == typeid(T)) { \ ss << ret.val(); \ } t(uint8_t) t(int8_t) t(uint16_t) t(int16_t) t(uint32_t) t(int32_t) t(uint64_t) t(int64_t) t(bool) t(float) t(double) t(std::string) t(char const *) #undef t else { ss << "?"; } ss << ")"; ret.link(concepts::name, level0::alloc(ss.str())); return ret; } concept* hyphenate(concept* a, concept* b) { return getnamed(getname(a) + "-" + getname(b)); } } }