#pragma once #include #include #include #include "../debug/Log.hpp" #include "../macros.hpp" #include "ConfigManager.hpp" template class CConfigValue { public: CConfigValue(const std::string& val) { const auto PVHYPRLANG = g_pConfigManager->getHyprlangConfigValuePtr(val); p_ = PVHYPRLANG->getDataStaticPtr(); #ifdef HYPRLAND_DEBUG // verify type const auto ANY = PVHYPRLANG->getValue(); const auto TYPE = std::type_index(ANY.type()); // exceptions const bool STRINGEX = (typeid(T) == typeid(std::string) && TYPE == typeid(Hyprlang::STRING)); const bool CUSTOMEX = (typeid(T) == typeid(Hyprlang::CUSTOMTYPE) && (TYPE == typeid(Hyprlang::CUSTOMTYPE*) || TYPE == typeid(void*) /* dunno why it does this? */)); RASSERT(typeid(T) == TYPE || STRINGEX || CUSTOMEX, "Mismatched type in CConfigValue, got {} but has {}", typeid(T).name(), TYPE.name()); #endif } T* ptr() const { return *(T* const*)p_; } T operator*() const { return *ptr(); } private: void* const* p_ = nullptr; }; template <> inline std::string* CConfigValue::ptr() const { RASSERT(false, "Impossible to implement ptr() of CConfigValue"); return nullptr; } template <> inline std::string CConfigValue::operator*() const { return std::string{*(Hyprlang::STRING*)p_}; } template <> inline Hyprlang::STRING* CConfigValue::ptr() const { return (Hyprlang::STRING*)p_; } template <> inline Hyprlang::STRING CConfigValue::operator*() const { return *(Hyprlang::STRING*)p_; } template <> inline Hyprlang::CUSTOMTYPE* CConfigValue::ptr() const { return *(Hyprlang::CUSTOMTYPE* const*)p_; } template <> inline Hyprlang::CUSTOMTYPE CConfigValue::operator*() const { RASSERT(false, "Impossible to implement operator* of CConfigValue, use ptr()"); return *ptr(); }