/* * Copyright (C) 2018-2021 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. */ #ifndef GLOBAL_H #define GLOBAL_H #include #include #include #include #include "QtGlobal" template constexpr inline T operator | (T lhs, T rhs) { static_assert(std::is_enum::value, "template parameter is not an enum type"); return static_cast(static_cast(lhs) | static_cast(rhs)); } template constexpr inline T operator & (T lhs, T rhs) { static_assert(std::is_enum::value, "template parameter is not an enum type"); return static_cast(static_cast(lhs) & static_cast(rhs)); } template constexpr inline T operator >> (T lhs, T rhs) { static_assert(std::is_enum::value, "template parameter is not an enum type"); return static_cast(static_cast(lhs) >> static_cast(rhs)); } template constexpr inline T operator << (T lhs, T rhs) { static_assert(std::is_enum::value, "template parameter is not an enum type"); return static_cast(static_cast(lhs) << static_cast(rhs)); } template constexpr inline T operator ~ (T lhs) { static_assert(std::is_enum::value, "template parameter is not an enum type"); return static_cast(~static_cast(lhs)); } template constexpr inline T operator ^ (T lhs, T rhs) { static_assert(std::is_enum::value, "template parameter is not an enum type"); return static_cast(static_cast(lhs) ^ static_cast(rhs)); } // TO DO need to testing. I am think this is does not work. //template //constexpr IntegerType static_mul(const char* str, unsigned char depth, unsigned char index = 0) noexcept { // return (str[index] && (depth > index))? str[index] * static_mul(str, depth, index + 1) : 1; //} //template //constexpr IntegerType static_hash(const char* str, unsigned char index = 0) noexcept { // return (index && index % sizeof(IntegerType) == 0)? // static_hash(str, index + 1) % static_mul(str, index , index - sizeof(IntegerType)): // (str[index])? // static_hash(str, index + 1): // static_mul(str, index, index - (index % sizeof(IntegerType))); //} //template //uint64_t static_type_hash_64() noexcept { // return static_hash(typeid (T).name()); //}; template /** * @brief static_type_hash_32 This function return hash code of the class T. * For get more information see the std [documentation](https://en.cppreference.com/w/cpp/types/type_info/hash_code). * @note This method will create a T object on stack, so if you have a alredy created object use the static_type_hash_32(const T&) function. * @return uint32_t hash code of the class T */ uint32_t static_type_hash_32() noexcept { return typeid (T).hash_code(); }; template /** * @brief static_type_hash_16 This function return hash code of the class T. * For get more information see the std [documentation](https://en.cppreference.com/w/cpp/types/type_info/hash_code). * @note This method will create a T object on stack, so if you have a alredy created object use the static_type_hash_16(const T&) function. * @return uint16_t hash code of the class T */ uint16_t static_type_hash_16() noexcept { return typeid (T).hash_code() % 0xFFFF; }; template /** * @brief static_type_hash_8 This function return hash code of the class T. * For get more information see the std [documentation](https://en.cppreference.com/w/cpp/types/type_info/hash_code). * @note This method will create a T object on stack, so if you have a alredy created object use the static_type_hash_8(const T&) function. * @return uint8_t hash code of the class T */ uint8_t static_type_hash_8() noexcept { return typeid (T).hash_code() % 0xFF; }; template /** * @brief static_type_hash_32 This function return hash code of a T type using @a object. * @param object This is object of the T type using for generate hash. * @return uint32_t hash code of the class T */ uint32_t static_type_hash_32(T& object) noexcept { return typeid (object).hash_code(); }; template /** * @brief static_type_hash_16 This function return hash code of a T type using @a object. * @param object This is object of the T type using for generate hash. * @return uint16_t hash code of the class T */ uint16_t static_type_hash_16(T& object) noexcept { return typeid (object).hash_code() % 0xFFFF; }; template /** * @brief static_type_hash_8 This function return hash code of a T type using @a object. * @param object This is object of the T type using for generate hash. * @return uint8_t hash code of the class T */ uint8_t static_type_hash_8(T& object) noexcept { return typeid (object).hash_code() % 0xFF; }; /// @brief H_8 This is short wraper of the static_type_hash_8 fucntion. #define H_8 static_type_hash_8 /// @brief H_16 This is short wraper of the static_type_hash_16 fucntion. #define H_16 static_type_hash_16 /// @brief H_32 This is short wraper of the static_type_hash_32 fucntion. #define H_32 static_type_hash_32 #ifndef QT_DEBUG // The debug_assert it is assert that abort application only in debug mode. // In the release mode This assert prin Error message only. #define debug_assert(condition, msg) \ if (!condition) \ QuasarAppUtils::Params::log(msg, QuasarAppUtils::Error); #else // The debug_assert it is assert that abort application only in debug mode. // In the release mode This assert prin Error message only. #define debug_assert(condition, msg) assert(condition && msg) #endif #endif // GLOBAL_H