/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: AuroraUtils.hpp Date: 2021-6-9 Author: Reece ***/ #pragma once #if !defined(AURORA_RUNTIME_MAKE_SHARED) #define AURORA_RUNTIME_MAKE_SHARED std::make_shared #endif template static inline AuSPtr AuMakeShared(Args... args) { return AURORA_RUNTIME_MAKE_SHARED(args...); } #if !defined(AURORA_RUNTIME_MAKE_PAIR) #define AURORA_RUNTIME_MAKE_PAIR std::make_pair #endif template static inline auto AuMakePair(Args... args) { return AURORA_RUNTIME_MAKE_PAIR(args...); } #if defined(AURORA_PLATFORM_WIN32) static inline void AuWin32CloseHandle(HANDLE &handle) { HANDLE local; if ((local = std::exchange(handle, INVALID_HANDLE_VALUE)) != INVALID_HANDLE_VALUE) { CloseHandle(local); } } #endif template static AuSPtr AuUnsafeRaiiToShared(T *in) { return AuSPtr(in, [](T *){}); } template static constexpr int AuArraySize(const T(&array)[Z]) { return Z; } #if defined(DEBUG) || defined(STAGING) template static void inline SafeDelete(T *in) { static_assert(std::is_base_of::type>::value, "Couldn't not safe delete from type T because it is not derived from Z"); auto cast = dynamic_cast(in); if (cast == nullptr) { Z re; SysPanic("Tried to free: 0x{:x}, type \"{}\" was not inherited from \"{}\"", AuUInt(in), typeid(in).name(), typeid(re).name()); } delete cast; } #else template static void inline SafeDelete(T *in) { static_assert(std::is_base_of::type>::value, "Couldn't not safe delete from type T because it is not derived from Z"); delete static_cast(in); } #endif static constexpr inline AuUInt32 AuConvertMagicTag32(const char buffer[4]) { AuUInt32 magic {}; if (Aurora::Build::kCurrentEndian == Aurora::Build::ECPUEndian::eCPULittle) { magic |= AuUInt32(buffer[0]); magic |= AuUInt32(buffer[1]) << 8; magic |= AuUInt32(buffer[2]) << 16; magic |= AuUInt32(buffer[3]) << 24; // LE will look alright in memory dumps // MSFT uses tags that read back the initial string value when read back hex ints // I prefer binary streams and file headers contain a 4x or 8x ascii char headers (eg. LuaX) } else { // Lazy reinterpret cast reads will always be flipped // Assume byte buffers read/write machine endian // Assume *reinterpret_cast returns machine endian // BE needs to be flipped in memory // BE will look fine in memory dumps // BE will also look fine in stack/variable dumps when printed in hex magic |= AuUInt32(buffer[4]); magic |= AuUInt32(buffer[2]) << 8; magic |= AuUInt32(buffer[1]) << 16; magic |= AuUInt32(buffer[0]) << 24; } // Determinstic across platforms, perhaps unexpected by endian normalized streams // When asserting read(noEndian) against a tag, an endian swap would cause the // assertion to fail, thus providing you with the endian match check // This step is delegated to a de-facto machine endian buffer builder // ByteBuffers that normalize for endianness continue to work with tags // irrespective of reader/writer endianness return magic; } static constexpr inline AuUInt64 AuConvertMagicTag64(const char buffer[8]) { AuUInt64 magic {}; if (Aurora::Build::kCurrentEndian == Aurora::Build::ECPUEndian::eCPULittle) { magic |= AuUInt64(buffer[0]); magic |= AuUInt64(buffer[1]) << 8; magic |= AuUInt64(buffer[2]) << 16; magic |= AuUInt64(buffer[3]) << 24; magic |= AuUInt64(buffer[4]) << 32; magic |= AuUInt64(buffer[5]) << 40; magic |= AuUInt64(buffer[6]) << 48; magic |= AuUInt64(buffer[7]) << 56; } else { magic |= AuUInt64(buffer[7]); magic |= AuUInt64(buffer[6]) << 8; magic |= AuUInt64(buffer[5]) << 16; magic |= AuUInt64(buffer[4]) << 24; magic |= AuUInt64(buffer[3]) << 32; magic |= AuUInt64(buffer[2]) << 40; magic |= AuUInt64(buffer[1]) << 48; magic |= AuUInt64(buffer[0]) << 56; } return magic; } template static inline AuOptional> AuOptionalSharedDynamicCast(AuOptional> &in) { if (!in.has_value()) return {}; return std::dynamic_pointer_cast(in.value()); } template static inline AuOptional> AuOptionalSharedStaticCast(AuOptional> &in) { if (!in.has_value()) return {}; return std::static_pointer_cast(in.value()); } static inline bool AuEndsWith(std::string const &value, std::string const &ending) { if (ending.size() > value.size()) return false; return std::equal(ending.rbegin(), ending.rend(), value.rbegin()); } static inline bool AuStartsWith(std::string const &value, std::string const &starting) { return value.rfind(starting, 0) == 0; } template static inline AuString AuToStringASCIIOp(T op, const AuString &in) { AuString ret; ret.resize(in.size()); std::transform(in.begin(), in.end(), ret.begin(), [=](const char &c) { return op(c); }); return ret; } static inline AuString AuToLower(const AuString &in) { return AuToStringASCIIOp(std::tolower, in); } static inline AuString AuToUpper(const AuString &in) { return AuToStringASCIIOp(std::toupper, in); } template static inline bool AuTryFind(Map &map, const Key &key, Value *&ptr) { auto itr = map.find(key); if (itr != map.end()) { ptr = &itr->second; return true; } else { ptr = nullptr; return false; } } template static inline bool AuTryFind(Map *map, const Key &key, Value *&ptr) { auto itr = map->find(key); if (itr != map->end()) { ptr = &itr->second; return true; } else { ptr = nullptr; return false; } } template static inline bool AuTryFind(Map &map, const Key &key) { auto itr = map.find(key); if (itr != map.end()) { return true; } else { return false; } } template static inline bool AuTryFind(Map *map, const Key &key) { auto itr = map->find(key); if (itr != map->end()) { return true; } else { return false; } } template static inline bool AuTryFindGeneric(Map &map, const Key &key, Value *&ptr) { auto itr = map.find(key); if (itr != map.end()) { ptr = &*itr; return true; } else { ptr = nullptr; return false; } } template static inline bool AuTryDelete(Map &map, const Key &key) { auto itr = map.find(key); if (itr != map.end()) { map.erase(itr); return true; } else { return false; } } template static inline bool AuTryDeleteList(List &list, const Key &key) { auto itr = std::find(list.begin(), list.end(), key); if (itr != list.end()) { list.erase(itr); return true; } else { return false; } } template static inline bool AuTryInsert(Container &container, const Type &value) { try { container.insert(container.end(), value); return true; } catch (...) { return false; } } template static inline bool AuTryInsert(Container &container, Type &&value) { try { container.insert(container.end(), value); return true; } catch (...) { return false; } } template static inline bool AuTryInsert(Container *container, const Type &value) { try { container->insert(container->end(), value); return true; } catch (...) { return false; } } template static inline bool AuTryInsert(Container *container, Type &&value) { try { container->insert(container->end(), value); return true; } catch (...) { return false; } } template static inline bool AuTryInsertNoEnd(Container &container, Type &&value) // move { try { container.insert(value); return true; } catch (...) { return false; } } template static inline bool AuTryInsertNoEnd(Container &container, const Type &value) // copy { try { container.insert(value); return true; } catch (...) { return false; } } template static inline bool AuTryInsertNoEnd(Container *container, Type &&value) // move { try { container->insert(value); return true; } catch (...) { return false; } } template static inline bool AuTryInsertNoEnd(Container *container, const Type &value) // copy { try { container->insert(value); return true; } catch (...) { return false; } } template static inline bool AuTryResize(T &list, AuUInt length) { try { if constexpr (std::is_same_v) { return list.Resize(length); } else { list.resize(length); return true; } } catch (...) { return false; } } static inline std::string AuReplaceAll(std::string &str, const std::string &from, const std::string &to) { size_t start_pos = 0; while ((start_pos = str.find(from, start_pos)) != std::string::npos) { str.replace(start_pos, from.length(), to); start_pos += to.length(); // Handles case where 'to' is a substring of 'from' } return str; } // i told myself not to copy this, required a split function twice, now here we are :D static inline AuList AuSplitString(const AuString& str, const AuString& delim, bool ignoreEmpty = true) { AuList tokens; AuUInt prev = 0, pos = 0; do { pos = str.find(delim, prev); if (pos == AuString::npos) pos = str.length(); auto token = str.substr(prev, pos-prev); if ((!token.empty()) && ignoreEmpty) tokens.push_back(token); prev = pos + delim.length(); } while (pos < str.length() && prev < str.length()); return tokens; } // more copy/pasta. work smart, not hard. // i dont want to waste time working out template kinks between clang and msvc template class base,typename derived> struct is_base_of_template_impl_au { template static constexpr std::true_type test(const base *); static constexpr std::false_type test(...); using type = decltype(test(std::declval())); }; template < template class base,typename derived> using AuIsBaseOfTemplate = typename is_base_of_template_impl_au::type; static inline bool AuTestBit(AuUInt32 value, AuUInt8 idx) { return value & (1 << idx); }