#ifndef INCLUDE_common_h__
#define INCLUDE_common_h__
#include "git2/common.h"
#include "cc-compat.h"
#if defined(_MSC_VER)
# define GIT_INLINE(type) static __inline type
#else
# define GIT_INLINE(type) static inline type
#endif
#ifndef __has_builtin
# define __has_builtin(x) 0
#endif
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef GIT_WIN32
# include <io.h>
# include <direct.h>
# include <winsock2.h>
# include <windows.h>
# include <ws2tcpip.h>
# include "win32/msvc-compat.h"
# include "win32/mingw-compat.h"
# include "win32/error.h"
# include "win32/version.h"
# ifdef GIT_THREADS
# include "win32/pthread.h"
# endif
# if defined(GIT_MSVC_CRTDBG)
# include "win32/w32_stack.h"
# include "win32/w32_crtdbg_stacktrace.h"
# endif
#else
# include <unistd.h>
# include <strings.h>
# ifdef GIT_THREADS
# include <pthread.h>
# include <sched.h>
# endif
#define GIT_STDLIB_CALL
# include <arpa/inet.h>
#endif
#include "git2/types.h"
#include "git2/errors.h"
#include "thread-utils.h"
#include "integer.h"
#include <regex.h>
#define DEFAULT_BUFSIZE 65536
#define FILEIO_BUFSIZE DEFAULT_BUFSIZE
#define FILTERIO_BUFSIZE DEFAULT_BUFSIZE
#define NETIO_BUFSIZE DEFAULT_BUFSIZE
#define GITERR_CHECK_ALLOC(ptr) if (ptr == NULL) { return -1; }
#define GITERR_CHECK_ERROR(code) \
do
{
int
_err = (code);
if
(_err)
return
_err; }
while
(0)
void
giterr_set(
int
error_class,
const
char
*string, ...);
int
giterr_set_regex(
const
regex_t *regex,
int
error_code);
GIT_INLINE(
int
) giterr_set_after_callback_function(
int
error_code,
const
char
*action)
{
if
(error_code) {
const
git_error *e = giterr_last();
if
(!e || !e->message)
giterr_set(e ? e->klass : GITERR_CALLBACK,
"%s callback returned %d"
, action, error_code);
}
return
error_code;
}
#ifdef GIT_WIN32
#define giterr_set_after_callback(code) \
giterr_set_after_callback_function((code), __FUNCTION__)
#else
#define giterr_set_after_callback(code) \
giterr_set_after_callback_function((code), __func__)
#endif
int
giterr_system_last(
void
);
void
giterr_system_set(
int
code);
typedef
struct
{
int
error_code;
unsigned
int
oom : 1;
git_error error_msg;
} git_error_state;
extern
int
giterr_state_capture(git_error_state *state,
int
error_code);
extern
int
giterr_state_restore(git_error_state *state);
extern
void
giterr_state_free(git_error_state *state);
GIT_INLINE(
int
) giterr__check_version(
const
void
*structure, unsigned
int
expected_max,
const
char
*name)
{
unsigned
int
actual;
if
(!structure)
return
0;
actual = *(
const
unsigned
int
*)structure;
if
(actual > 0 && actual <= expected_max)
return
0;
giterr_set(GITERR_INVALID,
"Invalid version %d on %s"
, actual, name);
return
-1;
}
#define GITERR_CHECK_VERSION(S,V,N) if (giterr__check_version(S,V,N) < 0) return -1
GIT_INLINE(
void
) git__init_structure(
void
*structure,
size_t
len, unsigned
int
version)
{
memset
(structure, 0, len);
*((
int
*)structure) = version;
}
#define GIT_INIT_STRUCTURE(S,V) git__init_structure(S, sizeof(*S), V)
#define GIT_INIT_STRUCTURE_FROM_TEMPLATE(PTR,VERSION,TYPE,TPL) do { \
TYPE _tmpl = TPL; \
GITERR_CHECK_VERSION(&(VERSION), _tmpl.version, #TYPE); \
memcpy
((PTR), &_tmpl,
sizeof
(_tmpl)); }
while
(0)
#define GIT_ADD_SIZET_OVERFLOW(out, one, two) \
(git__add_sizet_overflow(out, one, two) ? (giterr_set_oom(), 1) : 0)
#define GIT_MULTIPLY_SIZET_OVERFLOW(out, nelem, elsize) \
(git__multiply_sizet_overflow(out, nelem, elsize) ? (giterr_set_oom(), 1) : 0)
#define GITERR_CHECK_ALLOC_ADD(out, one, two) \
if
(GIT_ADD_SIZET_OVERFLOW(out, one, two)) {
return
-1; }
#define GITERR_CHECK_ALLOC_ADD3(out, one, two, three) \
if
(GIT_ADD_SIZET_OVERFLOW(out, one, two) || \
GIT_ADD_SIZET_OVERFLOW(out, *(out), three)) {
return
-1; }
#define GITERR_CHECK_ALLOC_ADD4(out, one, two, three, four) \
if
(GIT_ADD_SIZET_OVERFLOW(out, one, two) || \
GIT_ADD_SIZET_OVERFLOW(out, *(out), three) || \
GIT_ADD_SIZET_OVERFLOW(out, *(out), four)) {
return
-1; }
#define GITERR_CHECK_ALLOC_MULTIPLY(out, nelem, elsize) \
if
(GIT_MULTIPLY_SIZET_OVERFLOW(out, nelem, elsize)) {
return
-1; }
#include "util.h"
#endif /* INCLUDE_common_h__ */