2024-04-25 10:38:13 +08:00
|
|
|
#pragma once
|
|
|
|
|
2024-08-04 11:57:56 +08:00
|
|
|
#pragma region Operating System Identifier Macros
|
|
|
|
|
2024-04-25 10:38:13 +08:00
|
|
|
// Define operating system macros
|
|
|
|
#define YYCC_OS_WINDOWS 2
|
|
|
|
#define YYCC_OS_LINUX 3
|
|
|
|
// Check current operating system.
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#define YYCC_OS YYCC_OS_WINDOWS
|
|
|
|
#else
|
|
|
|
#define YYCC_OS YYCC_OS_LINUX
|
|
|
|
#endif
|
2024-04-29 15:48:10 +08:00
|
|
|
|
2024-08-04 11:57:56 +08:00
|
|
|
#pragma endregion
|
|
|
|
|
|
|
|
#pragma region Windows Shitty Behavior Disable Macros
|
|
|
|
|
2024-05-23 09:37:41 +08:00
|
|
|
// If we are in Windows,
|
|
|
|
// we need add 2 macros to disable Windows shitty warnings and errors of
|
|
|
|
// depracted functions and not secure functions.
|
|
|
|
#if YYCC_OS == YYCC_OS_WINDOWS
|
|
|
|
|
|
|
|
#if !defined(_CRT_SECURE_NO_WARNINGS)
|
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
#endif
|
|
|
|
#if !defined(_CRT_NONSTDC_NO_DEPRECATE)
|
|
|
|
#define _CRT_NONSTDC_NO_DEPRECATE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2024-08-04 11:57:56 +08:00
|
|
|
#pragma endregion
|
|
|
|
|
|
|
|
#pragma region YYCC UTF8 Types
|
|
|
|
|
2024-06-26 21:04:56 +08:00
|
|
|
// Define the UTF8 char type we used.
|
|
|
|
// And do a polyfill if no embedded char8_t type.
|
2024-07-26 15:08:12 +08:00
|
|
|
|
2024-06-26 21:04:56 +08:00
|
|
|
#include <string>
|
2024-06-27 20:49:02 +08:00
|
|
|
#include <string_view>
|
2024-07-26 15:08:12 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Library core namespace
|
|
|
|
* @details Almost library functions are located in this namespace.
|
|
|
|
*/
|
2024-06-26 21:04:56 +08:00
|
|
|
namespace YYCC {
|
|
|
|
#if defined(__cpp_char8_t)
|
|
|
|
using yycc_char8_t = char8_t;
|
|
|
|
using yycc_u8string = std::u8string;
|
2024-06-27 20:49:02 +08:00
|
|
|
using yycc_u8string_view = std::u8string_view;
|
2024-06-26 21:04:56 +08:00
|
|
|
#else
|
|
|
|
using yycc_char8_t = unsigned char;
|
|
|
|
using yycc_u8string = std::basic_string<yycc_char8_t>;
|
2024-06-27 20:49:02 +08:00
|
|
|
using yycc_u8string_view = std::basic_string_view<yycc_char8_t>;
|
2024-06-26 21:04:56 +08:00
|
|
|
#endif
|
|
|
|
}
|
2024-07-26 15:08:12 +08:00
|
|
|
/**
|
2024-07-30 10:35:41 +08:00
|
|
|
\typedef YYCC::yycc_char8_t
|
2024-07-26 15:08:12 +08:00
|
|
|
\brief YYCC UTF8 char type.
|
|
|
|
\details
|
|
|
|
This char type is an alias to \c std::char8_t if your current C++ standard support it.
|
|
|
|
Otherwise it is defined as <TT>unsigned char</TT> as C++ 20 stdandard does.
|
|
|
|
*/
|
|
|
|
/**
|
2024-07-30 10:35:41 +08:00
|
|
|
\typedef YYCC::yycc_u8string
|
2024-07-26 15:08:12 +08:00
|
|
|
\brief YYCC UTF8 string container type.
|
|
|
|
\details
|
|
|
|
This type is defined as \c std::basic_string<yycc_char8_t>.
|
|
|
|
It is equal to \c std::u8string if your current C++ standard support it.
|
|
|
|
*/
|
|
|
|
/**
|
2024-07-30 10:35:41 +08:00
|
|
|
\typedef YYCC::yycc_u8string_view
|
2024-07-26 15:08:12 +08:00
|
|
|
\brief YYCC UTF8 string view type.
|
|
|
|
\details
|
|
|
|
This type is defined as \c std::basic_string_view<yycc_char8_t>.
|
|
|
|
It is equal to \c std::u8string_view if your current C++ standard support it.
|
|
|
|
*/
|
|
|
|
|
2024-08-04 11:57:56 +08:00
|
|
|
#pragma endregion
|
|
|
|
|
|
|
|
#pragma region Batch Class Move / Copy Function Macros
|
|
|
|
|
|
|
|
/// @brief Explicitly remove copy (\c constructor and \c operator\=) for given class.
|
|
|
|
#define YYCC_DEL_CLS_COPY(CLSNAME) \
|
|
|
|
CLSNAME(const CLSNAME&) = delete; \
|
|
|
|
CLSNAME& operator=(const CLSNAME&) = delete;
|
|
|
|
|
|
|
|
/// @brief Explicitly remove move (\c constructor and \c operator\=) for given class.
|
|
|
|
#define YYCC_DEL_CLS_MOVE(CLSNAME) \
|
|
|
|
CLSNAME(CLSNAME&&) = delete; \
|
|
|
|
CLSNAME& operator=(CLSNAME&&) = delete;
|
|
|
|
|
|
|
|
/// @brief Explicitly remove (copy and move) (\c constructor and \c operator\=) for given class.
|
|
|
|
#define YYCC_DEL_CLS_COPY_MOVE(CLSNAME) \
|
|
|
|
YYCC_DEL_CLS_COPY(CLSNAME) \
|
|
|
|
YYCC_DEL_CLS_MOVE(CLSNAME)
|
|
|
|
|
|
|
|
/// @brief Explicitly set default copy (\c constructor and \c operator\=) for given class.
|
|
|
|
#define YYCC_DEF_CLS_COPY(CLSNAME) \
|
|
|
|
CLSNAME(const CLSNAME&) = default; \
|
|
|
|
CLSNAME& operator=(const CLSNAME&) = default;
|
|
|
|
|
|
|
|
/// @brief Explicitly set default move (\c constructor and \c operator\=) for given class.
|
|
|
|
#define YYCC_DEF_CLS_MOVE(CLSNAME) \
|
|
|
|
CLSNAME(CLSNAME&&) = default; \
|
|
|
|
CLSNAME& operator=(CLSNAME&&) = default;
|
|
|
|
|
|
|
|
/// @brief Explicitly set default (copy and move) (\c constructor and \c operator\=) for given class.
|
|
|
|
#define YYCC_DEF_CLS_COPY_MOVE(CLSNAME) \
|
|
|
|
YYCC_DEF_CLS_COPY(CLSNAME) \
|
|
|
|
YYCC_DEF_CLS_MOVE(CLSNAME)
|
|
|
|
|
|
|
|
#pragma endregion
|
|
|
|
|
2024-06-26 21:04:56 +08:00
|
|
|
|