mirror of https://github.com/libAthena/athena.git
172 lines
4.5 KiB
C++
172 lines
4.5 KiB
C++
#ifndef GLOBAL_HPP
|
|
#define GLOBAL_HPP
|
|
|
|
#include <iostream>
|
|
#include "Athena/Types.hpp"
|
|
#include "Athena/Utility.hpp"
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4996)
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG)
|
|
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
|
#endif
|
|
|
|
#if !defined(S_ISDIR) && defined(S_IFMT) && defined(S_IFDIR)
|
|
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
|
#endif
|
|
|
|
#if !defined(S_ISLNK)
|
|
#define S_ISLNK(m) 0
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef AT_PRETTY_FUNCTION
|
|
# if defined(__PRETTY_FUNCTION__) || defined(__GNUC__)
|
|
# define AT_PRETTY_FUNCTION __PRETTY_FUNCTION__
|
|
# elif defined(__FUNCSIG__)
|
|
# define AT_PRETTY_FUNCTION __FUNCSIG__
|
|
# elif defined(__FUNCTION__)
|
|
# define AT_PRETTY_FUNCTION __FUNCTION__
|
|
# elif defined(__FUNC__)
|
|
# define AT_PRETTY_FUNCTION __FUNC__
|
|
# elif defined(__func__)
|
|
# define AT_PRETTY_FUNCTION __func__
|
|
# else
|
|
# define AT_PRETTY_FUNCTION "<unknown>"
|
|
# endif
|
|
#endif
|
|
|
|
|
|
#ifdef GEKKO
|
|
#include "gekko_support.h"
|
|
typedef struct stat stat64_t;
|
|
#define stat64 stat
|
|
#elif _WIN32
|
|
typedef struct _stat64 stat64_t;
|
|
#elif __FreeBSD__
|
|
typedef struct stat stat64_t;
|
|
#define stat64 stat
|
|
#define fseeko64 fseeko
|
|
#define ftello64 ftello
|
|
#else
|
|
typedef struct stat64 stat64_t;
|
|
#endif
|
|
|
|
#ifndef BLOCKSZ
|
|
#define BLOCKSZ 512
|
|
#endif
|
|
|
|
#define ROUND_UP_32(val) (((val) + 31) & ~31)
|
|
#define ROUND_UP_16(val) (((val) + 15) & ~15)
|
|
|
|
namespace Athena
|
|
{
|
|
namespace error
|
|
{
|
|
enum Level
|
|
{
|
|
LevelMessage,
|
|
LevelWarning,
|
|
LevelError,
|
|
LevelFatal
|
|
};
|
|
}
|
|
enum SeekOrigin
|
|
{
|
|
Begin,
|
|
Current,
|
|
End
|
|
};
|
|
|
|
enum Endian
|
|
{
|
|
LittleEndian,
|
|
BigEndian
|
|
};
|
|
} // Athena
|
|
|
|
typedef void (*atEXCEPTION_HANDLER)(const Athena::error::Level& level, const char* file, const char* function, int line, const char* fmt, ...);
|
|
|
|
atEXCEPTION_HANDLER atGetExceptionHandler();
|
|
void atSetExceptionHandler(atEXCEPTION_HANDLER func);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const Athena::SeekOrigin& origin);
|
|
std::ostream& operator<<(std::ostream& os, const Athena::Endian& endian);
|
|
|
|
#ifdef _MSC_VER
|
|
#ifndef NDEBUG
|
|
#define atDebug(fmt, ...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelMessage, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt, ##__VA_ARGS__); \
|
|
} while(0)
|
|
#else
|
|
#define atDebug(fmt, ...)
|
|
#endif
|
|
|
|
#define atMessage(fmt, ...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelMessage, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt, ##__VA_ARGS__); \
|
|
} while(0)
|
|
|
|
#define atWarning(fmt, ...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelWarning, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt, ##__VA_ARGS__); \
|
|
} while(0)
|
|
|
|
#define atError(fmt, ...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelError, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt, ##__VA_ARGS__); \
|
|
} while(0)
|
|
|
|
#define atFatal(fmt, ...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelFatal, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt, ##__VA_ARGS__); \
|
|
} while(0)
|
|
#elif defined(__GNUC__)
|
|
|
|
#ifndef NDEBUG
|
|
#define atDebug(fmt...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelMessage, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt); \
|
|
} while(0)
|
|
#else // _MSC_VER
|
|
#define atDebug(fmt, ...)
|
|
#endif // NDEBUG
|
|
|
|
#define atMessage(fmt...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelMessage, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt); \
|
|
} while(0)
|
|
|
|
#define atWarning(fmt...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelWarning, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt); \
|
|
} while(0)
|
|
|
|
#define atError(fmt...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelError, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt); \
|
|
} while(0)
|
|
|
|
#define atFatal(fmt...) \
|
|
do { atEXCEPTION_HANDLER __handler = atGetExceptionHandler(); \
|
|
if (__handler) \
|
|
__handler(Athena::error::LevelFatal, __FILE__, AT_PRETTY_FUNCTION, __LINE__, fmt); \
|
|
} while(0)
|
|
#endif // defined(__GNUC__)
|
|
|
|
#endif // GLOBAL_HPP
|