]> git.ipfire.org Git - thirdparty/git.git/blame - git-compat-util.h
Default core.packdGitWindowSize to 1 MiB if NO_MMAP.
[thirdparty/git.git] / git-compat-util.h
CommitLineData
4050c0df
JH
1#ifndef GIT_COMPAT_UTIL_H
2#define GIT_COMPAT_UTIL_H
3
8f1d2e6f
JH
4#ifndef FLEX_ARRAY
5#if defined(__GNUC__) && (__GNUC__ < 3)
6#define FLEX_ARRAY 0
7#else
8#define FLEX_ARRAY /* empty */
9#endif
10#endif
11
b4f2a6ac
JH
12#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
13
95ca1c6c 14#if !defined(__APPLE__) && !defined(__FreeBSD__)
85023577
JH
15#define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
16#define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
c902c9a6 17#endif
85023577
JH
18#define _GNU_SOURCE
19#define _BSD_SOURCE
20
4050c0df
JH
21#include <unistd.h>
22#include <stdio.h>
23#include <sys/stat.h>
24#include <fcntl.h>
25#include <stddef.h>
26#include <stdlib.h>
27#include <stdarg.h>
28#include <string.h>
29#include <errno.h>
30#include <limits.h>
31#include <sys/param.h>
4050c0df
JH
32#include <sys/types.h>
33#include <dirent.h>
85023577
JH
34#include <sys/time.h>
35#include <time.h>
36#include <signal.h>
37#include <sys/wait.h>
38#include <fnmatch.h>
39#include <sys/poll.h>
40#include <sys/socket.h>
41#include <assert.h>
42#include <regex.h>
43#include <netinet/in.h>
44#include <netinet/tcp.h>
45#include <arpa/inet.h>
46#include <netdb.h>
47#include <pwd.h>
48#include <grp.h>
49
50#ifndef NO_ICONV
51#include <iconv.h>
52#endif
4050c0df 53
d0c2449f
JH
54/* On most systems <limits.h> would have given us this, but
55 * not on some systems (e.g. GNU/Hurd).
56 */
57#ifndef PATH_MAX
58#define PATH_MAX 4096
59#endif
60
4050c0df
JH
61#ifdef __GNUC__
62#define NORETURN __attribute__((__noreturn__))
63#else
64#define NORETURN
65#ifndef __attribute__
66#define __attribute__(x)
67#endif
68#endif
69
70/* General helper functions */
71extern void usage(const char *err) NORETURN;
72extern void die(const char *err, ...) NORETURN __attribute__((format (printf, 1, 2)));
73extern int error(const char *err, ...) __attribute__((format (printf, 1, 2)));
fa39b6b5 74extern void warn(const char *err, ...) __attribute__((format (printf, 1, 2)));
4050c0df 75
39a3f5ea
PB
76extern void set_usage_routine(void (*routine)(const char *err) NORETURN);
77extern void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN);
78extern void set_error_routine(void (*routine)(const char *err, va_list params));
fa39b6b5 79extern void set_warn_routine(void (*routine)(const char *warn, va_list params));
39a3f5ea 80
4050c0df
JH
81#ifdef NO_MMAP
82
83#ifndef PROT_READ
84#define PROT_READ 1
85#define PROT_WRITE 2
86#define MAP_PRIVATE 1
87#define MAP_FAILED ((void*)-1)
88#endif
89
d6779124
SP
90#define mmap git_mmap
91#define munmap git_munmap
92extern void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
93extern int git_munmap(void *start, size_t length);
4050c0df 94
8c82534d
SP
95#define DEFAULT_PACKED_GIT_WINDOW_SIZE (1 * 1024 * 1024)
96
4050c0df
JH
97#else /* NO_MMAP */
98
99#include <sys/mman.h>
8c82534d 100#define DEFAULT_PACKED_GIT_WINDOW_SIZE (32 * 1024 * 1024)
4050c0df
JH
101
102#endif /* NO_MMAP */
103
8c82534d
SP
104#define DEFAULT_PACKED_GIT_LIMIT (256 * 1024 * 1024)
105
4050c0df
JH
106#ifdef NO_SETENV
107#define setenv gitsetenv
108extern int gitsetenv(const char *, const char *, int);
109#endif
110
731043fd
JR
111#ifdef NO_UNSETENV
112#define unsetenv gitunsetenv
113extern void gitunsetenv(const char *);
114#endif
115
4050c0df
JH
116#ifdef NO_STRCASESTR
117#define strcasestr gitstrcasestr
118extern char *gitstrcasestr(const char *haystack, const char *needle);
119#endif
120
817151e6
PE
121#ifdef NO_STRLCPY
122#define strlcpy gitstrlcpy
123extern size_t gitstrlcpy(char *, const char *, size_t);
124#endif
125
9befac47
SP
126static inline char* xstrdup(const char *str)
127{
128 char *ret = strdup(str);
129 if (!ret)
130 die("Out of memory, strdup failed");
131 return ret;
132}
133
4050c0df
JH
134static inline void *xmalloc(size_t size)
135{
136 void *ret = malloc(size);
4e7a2ecc
JH
137 if (!ret && !size)
138 ret = malloc(1);
4050c0df
JH
139 if (!ret)
140 die("Out of memory, malloc failed");
aa5481c1
JH
141#ifdef XMALLOC_POISON
142 memset(ret, 0xA5, size);
143#endif
4050c0df
JH
144 return ret;
145}
146
147static inline void *xrealloc(void *ptr, size_t size)
148{
149 void *ret = realloc(ptr, size);
4e7a2ecc
JH
150 if (!ret && !size)
151 ret = realloc(ptr, 1);
4050c0df
JH
152 if (!ret)
153 die("Out of memory, realloc failed");
154 return ret;
155}
156
157static inline void *xcalloc(size_t nmemb, size_t size)
158{
159 void *ret = calloc(nmemb, size);
4e7a2ecc
JH
160 if (!ret && (!nmemb || !size))
161 ret = calloc(1, 1);
4050c0df
JH
162 if (!ret)
163 die("Out of memory, calloc failed");
164 return ret;
165}
166
1c15afb9
JH
167static inline ssize_t xread(int fd, void *buf, size_t len)
168{
169 ssize_t nr;
170 while (1) {
171 nr = read(fd, buf, len);
172 if ((nr < 0) && (errno == EAGAIN || errno == EINTR))
173 continue;
174 return nr;
175 }
176}
177
178static inline ssize_t xwrite(int fd, const void *buf, size_t len)
179{
180 ssize_t nr;
181 while (1) {
182 nr = write(fd, buf, len);
183 if ((nr < 0) && (errno == EAGAIN || errno == EINTR))
184 continue;
185 return nr;
186 }
187}
188
5bb1cda5 189static inline int has_extension(const char *filename, const char *ext)
83a2b841 190{
5bb1cda5
RS
191 size_t len = strlen(filename);
192 size_t extlen = strlen(ext);
83a2b841
RS
193 return len > extlen && !memcmp(filename + len - extlen, ext, extlen);
194}
195
4050c0df
JH
196/* Sane ctype - no locale, and works with signed chars */
197#undef isspace
198#undef isdigit
199#undef isalpha
200#undef isalnum
201#undef tolower
202#undef toupper
203extern unsigned char sane_ctype[256];
204#define GIT_SPACE 0x01
205#define GIT_DIGIT 0x02
206#define GIT_ALPHA 0x04
207#define sane_istest(x,mask) ((sane_ctype[(unsigned char)(x)] & (mask)) != 0)
208#define isspace(x) sane_istest(x,GIT_SPACE)
209#define isdigit(x) sane_istest(x,GIT_DIGIT)
210#define isalpha(x) sane_istest(x,GIT_ALPHA)
211#define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT)
212#define tolower(x) sane_case((unsigned char)(x), 0x20)
213#define toupper(x) sane_case((unsigned char)(x), 0)
214
215static inline int sane_case(int x, int high)
216{
217 if (sane_istest(x, GIT_ALPHA))
218 x = (x & ~0x20) | high;
219 return x;
220}
221
222#endif