/*! * Copyright (c) 2017 by Contributors * \file registry.cc * \brief The global registry of packed function. */ #include #include #include #include #include #include #include #include "runtime_base.h" namespace dgl { namespace runtime { struct Registry::Manager { // map storing the functions. // We delibrately used raw pointer // This is because PackedFunc can contain callbacks into the host // languge(python) and the resource can become invalid because of // indeterminstic order of destruction. The resources will only be recycled // during program exit. std::unordered_map fmap; // vtable for extension type std::array ext_vtable; // mutex std::mutex mutex; Manager() { for (auto& x : ext_vtable) { x.destroy = nullptr; } } static Manager* Global() { static Manager inst; return &inst; } }; Registry& Registry::set_body(PackedFunc f) { // NOLINT(*) func_ = f; return *this; } Registry& Registry::Register( const std::string& name, bool override) { // NOLINT(*) Manager* m = Manager::Global(); std::lock_guard lock(m->mutex); auto it = m->fmap.find(name); if (it == m->fmap.end()) { Registry* r = new Registry(); r->name_ = name; m->fmap[name] = r; return *r; } else { CHECK(override) << "Global PackedFunc " << name << " is already registered"; return *it->second; } } bool Registry::Remove(const std::string& name) { Manager* m = Manager::Global(); std::lock_guard lock(m->mutex); auto it = m->fmap.find(name); if (it == m->fmap.end()) return false; m->fmap.erase(it); return true; } const PackedFunc* Registry::Get(const std::string& name) { Manager* m = Manager::Global(); std::lock_guard lock(m->mutex); auto it = m->fmap.find(name); if (it == m->fmap.end()) return nullptr; return &(it->second->func_); } std::vector Registry::ListNames() { Manager* m = Manager::Global(); std::lock_guard lock(m->mutex); std::vector keys; keys.reserve(m->fmap.size()); for (const auto& kv : m->fmap) { keys.push_back(kv.first); } return keys; } ExtTypeVTable* ExtTypeVTable::Get(int type_code) { CHECK(type_code > kExtBegin && type_code < kExtEnd); Registry::Manager* m = Registry::Manager::Global(); ExtTypeVTable* vt = &(m->ext_vtable[type_code]); CHECK(vt->destroy != nullptr) << "Extension type not registered"; return vt; } ExtTypeVTable* ExtTypeVTable::RegisterInternal( int type_code, const ExtTypeVTable& vt) { CHECK(type_code > kExtBegin && type_code < kExtEnd); Registry::Manager* m = Registry::Manager::Global(); std::lock_guard lock(m->mutex); ExtTypeVTable* pvt = &(m->ext_vtable[type_code]); pvt[0] = vt; return pvt; } } // namespace runtime } // namespace dgl /*! \brief entry to to easily hold returning information */ struct DGLFuncThreadLocalEntry { /*! \brief result holder for returning strings */ std::vector ret_vec_str; /*! \brief result holder for returning string pointers */ std::vector ret_vec_charp; }; /*! \brief Thread local store that can be used to hold return values. */ typedef dmlc::ThreadLocalStore DGLFuncThreadLocalStore; int DGLExtTypeFree(void* handle, int type_code) { API_BEGIN(); dgl::runtime::ExtTypeVTable::Get(type_code)->destroy(handle); API_END(); } int DGLFuncRegisterGlobal(const char* name, DGLFunctionHandle f, int override) { API_BEGIN(); dgl::runtime::Registry::Register(name, override != 0) .set_body(*static_cast(f)); API_END(); } int DGLFuncGetGlobal(const char* name, DGLFunctionHandle* out) { API_BEGIN(); const dgl::runtime::PackedFunc* fp = dgl::runtime::Registry::Get(name); if (fp != nullptr) { *out = new dgl::runtime::PackedFunc(*fp); // NOLINT(*) } else { *out = nullptr; } API_END(); } int DGLFuncListGlobalNames(int* out_size, const char*** out_array) { API_BEGIN(); DGLFuncThreadLocalEntry* ret = DGLFuncThreadLocalStore::Get(); ret->ret_vec_str = dgl::runtime::Registry::ListNames(); ret->ret_vec_charp.clear(); for (size_t i = 0; i < ret->ret_vec_str.size(); ++i) { ret->ret_vec_charp.push_back(ret->ret_vec_str[i].c_str()); } *out_array = dmlc::BeginPtr(ret->ret_vec_charp); *out_size = static_cast(ret->ret_vec_str.size()); API_END(); }