2022-03-05 12:44:06 +02:00
|
|
|
|
#ifndef __INC_LIBTHECORE_UTILS_H__
|
|
|
|
|
#define __INC_LIBTHECORE_UTILS_H__
|
|
|
|
|
|
2022-11-27 14:36:04 +02:00
|
|
|
|
// Random number generator
|
|
|
|
|
#include "effolkronium/random.hpp"
|
|
|
|
|
using Random = effolkronium::random_static;
|
2022-03-05 12:44:06 +02:00
|
|
|
|
|
2022-11-27 22:18:08 +02:00
|
|
|
|
#include <algorithm>
|
2022-03-05 12:44:06 +02:00
|
|
|
|
|
|
|
|
|
#define LOWER(c) (((c)>='A' && (c) <= 'Z') ? ((c)+('a'-'A')) : (c))
|
|
|
|
|
#define UPPER(c) (((c)>='a' && (c) <= 'z') ? ((c)+('A'-'a')) : (c))
|
|
|
|
|
|
|
|
|
|
#define str_cmp strcasecmp
|
|
|
|
|
|
|
|
|
|
#define core_dump() core_dump_unix(__FILE__, __LINE__)
|
|
|
|
|
extern void core_dump_unix(const char *who, WORD line); // <20>ھ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|
|
|
|
|
|
|
|
|
#define TOKEN(string) if (!str_cmp(token_string, string))
|
|
|
|
|
// src = <20><>ū : <20><>
|
|
|
|
|
extern void parse_token(char * src, char * token, char * value);
|
|
|
|
|
|
|
|
|
|
extern void trim_and_lower(const char * src, char * dest, size_t dest_size);
|
|
|
|
|
|
|
|
|
|
// a<><61> b<><62> <20>ð<EFBFBD><C3B0><EFBFBD> <20><EFBFBD> <20><><EFBFBD>̳<EFBFBD><CCB3><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|
|
|
|
extern struct timeval * timediff(const struct timeval *a, const struct timeval *b);
|
|
|
|
|
|
|
|
|
|
// a<><61> <20>ð<EFBFBD><C3B0><EFBFBD> b<><62> <20>ð<EFBFBD><C3B0><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|
|
|
|
extern struct timeval * timeadd(struct timeval *a, struct timeval *b);
|
|
|
|
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD> <20>ð<EFBFBD> curr_tm<74><6D><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> days<79><73> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|
|
|
|
extern struct tm * tm_calc(const struct tm *curr_tm, int days);
|
|
|
|
|
|
|
|
|
|
extern void thecore_sleep(struct timeval * timeout); // timeout<75><74>ŭ <20><><EFBFBD>μ<EFBFBD><CEBC><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|
|
|
|
|
|
|
|
|
extern float get_float_time();
|
|
|
|
|
extern DWORD get_dword_time();
|
|
|
|
|
|
|
|
|
|
extern char * time_str(time_t ct);
|
|
|
|
|
|
2022-03-12 11:39:41 +02:00
|
|
|
|
std::string GetSocketHost(const sockaddr * address);
|
|
|
|
|
in_port_t GetSocketPort(const sockaddr * address);
|
|
|
|
|
|
2022-03-05 12:44:06 +02:00
|
|
|
|
#define CREATE(result, type, number) do { \
|
|
|
|
|
if (!((result) = (type *) calloc ((number), sizeof(type)))) { \
|
|
|
|
|
sys_err("calloc failed [%d] %s", errno, strerror(errno)); \
|
|
|
|
|
abort(); } } while(0)
|
|
|
|
|
|
|
|
|
|
#define RECREATE(result,type,number) do { \
|
|
|
|
|
if (!((result) = (type *) realloc ((result), sizeof(type) * (number)))) { \
|
|
|
|
|
sys_err("realloc failed [%d] %s", errno, strerror(errno)); \
|
|
|
|
|
abort(); } } while(0)
|
|
|
|
|
|
|
|
|
|
// Next <20><> Prev <20><> <20>ִ<EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE> <20>߰<EFBFBD>
|
|
|
|
|
#define INSERT_TO_TW_LIST(item, head, prev, next) \
|
|
|
|
|
if (!(head)) \
|
|
|
|
|
{ \
|
|
|
|
|
head = item; \
|
|
|
|
|
(head)->prev = (head)->next = NULL; \
|
|
|
|
|
} \
|
|
|
|
|
else \
|
|
|
|
|
{ \
|
|
|
|
|
(head)->prev = item; \
|
|
|
|
|
(item)->next = head; \
|
|
|
|
|
(item)->prev = NULL; \
|
|
|
|
|
head = item; \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define REMOVE_FROM_TW_LIST(item, head, prev, next) \
|
|
|
|
|
if ((item) == (head)) \
|
|
|
|
|
{ \
|
|
|
|
|
if (((head) = (item)->next)) \
|
|
|
|
|
(head)->prev = NULL; \
|
|
|
|
|
} \
|
|
|
|
|
else \
|
|
|
|
|
{ \
|
|
|
|
|
if ((item)->next) \
|
|
|
|
|
(item)->next->prev = (item)->prev; \
|
|
|
|
|
\
|
|
|
|
|
if ((item)->prev) \
|
|
|
|
|
(item)->prev->next = (item)->next; \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define INSERT_TO_LIST(item, head, next) \
|
|
|
|
|
(item)->next = (head); \
|
|
|
|
|
(head) = (item); \
|
|
|
|
|
|
|
|
|
|
#define REMOVE_FROM_LIST(item, head, next) \
|
|
|
|
|
if ((item) == (head)) \
|
|
|
|
|
head = (item)->next; \
|
|
|
|
|
else \
|
|
|
|
|
{ \
|
|
|
|
|
temp = head; \
|
|
|
|
|
\
|
|
|
|
|
while (temp && (temp->next != (item))) \
|
|
|
|
|
temp = temp->next; \
|
|
|
|
|
\
|
|
|
|
|
if (temp) \
|
|
|
|
|
temp->next = (item)->next; \
|
|
|
|
|
} \
|
|
|
|
|
|
|
|
|
|
#ifndef MAKEFOURCC
|
|
|
|
|
#define MAKEFOURCC(ch0, ch1, ch2, ch3) \
|
|
|
|
|
((DWORD)(BYTE) (ch0 ) | ((DWORD)(BYTE) (ch1) << 8) | \
|
|
|
|
|
((DWORD)(BYTE) (ch2) << 16) | ((DWORD)(BYTE) (ch3) << 24))
|
|
|
|
|
#endif // defined(MAKEFOURCC)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// _countof for gcc/g++
|
|
|
|
|
#if !defined(_countof)
|
|
|
|
|
#if !defined(__cplusplus)
|
|
|
|
|
#define _countof(_Array) (sizeof(_Array) / sizeof(_Array[0]))
|
|
|
|
|
#else
|
|
|
|
|
extern "C++"
|
|
|
|
|
{
|
|
|
|
|
template <typename _CountofType, size_t _SizeOfArray>
|
|
|
|
|
char (*__countof_helper(_CountofType (&_Array)[_SizeOfArray]))[_SizeOfArray];
|
|
|
|
|
#define _countof(_Array) sizeof(*__countof_helper(_Array))
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __WIN32__
|
|
|
|
|
extern void gettimeofday(struct timeval* t, struct timezone* dummy);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // __INC_UTILS_H__
|