Changeset 782 for git/branches/dmik/git-compat-util.h
- Timestamp:
- Jun 23, 2014, 9:45:51 PM (11 years ago)
- Location:
- git/branches/dmik
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
git/branches/dmik ¶
- Property svn:mergeinfo changed
/git/vendor/2.0.0 (added) merged: 777 /git/vendor/current merged: 772,774,776
- Property svn:mergeinfo changed
-
TabularUnified git/branches/dmik/git-compat-util.h ¶
r630 r782 75 75 # endif 76 76 #elif !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && \ 77 !defined(_M_UNIX) && !defined(__sgi) && !defined(__DragonFly__) 77 !defined(_M_UNIX) && !defined(__sgi) && !defined(__DragonFly__) && \ 78 !defined(__TANDEM) && !defined(__QNX__) && !defined(__MirBSD__) 78 79 #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */ 79 80 #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */ … … 85 86 #define _SGI_SOURCE 1 86 87 87 #ifdef WIN32 /* Both MinGW and MSVC */ 88 #if defined(WIN32) && !defined(__CYGWIN__) /* Both MinGW and MSVC */ 89 # if defined (_MSC_VER) && !defined(_WIN32_WINNT) 90 # define _WIN32_WINNT 0x0502 91 # endif 88 92 #define WIN32_LEAN_AND_MEAN /* stops windows.h including winsock.h */ 89 93 #include <winsock2.h> 90 94 #include <windows.h> 95 #define GIT_WINDOWS_NATIVE 91 96 #endif 92 97 … … 99 104 #include <stdarg.h> 100 105 #include <string.h> 106 #ifdef HAVE_STRINGS_H 107 #include <strings.h> /* for strcasecmp() */ 108 #endif 101 109 #include <errno.h> 102 110 #include <limits.h> 111 #ifdef NEEDS_SYS_PARAM_H 103 112 #include <sys/param.h> 113 #endif 104 114 #include <sys/types.h> 105 115 #include <dirent.h> … … 107 117 #include <time.h> 108 118 #include <signal.h> 109 #include <fnmatch.h>110 119 #include <assert.h> 111 120 #include <regex.h> … … 119 128 #include <poll.h> 120 129 #endif 130 121 131 #if defined(__MINGW32__) 122 132 /* pull in Windows compatibility stuff */ … … 144 154 #include <stdint.h> 145 155 #endif 156 #ifdef NO_INTPTR_T 157 /* 158 * On I16LP32, ILP32 and LP64 "long" is the save bet, however 159 * on LLP86, IL33LLP64 and P64 it needs to be "long long", 160 * while on IP16 and IP16L32 it is "int" (resp. "short") 161 * Size needs to match (or exceed) 'sizeof(void *)'. 162 * We can't take "long long" here as not everybody has it. 163 */ 164 typedef long intptr_t; 165 typedef unsigned long uintptr_t; 166 #endif 146 167 #if defined(__CYGWIN__) 147 168 #undef _XOPEN_SOURCE 148 169 #include <grp.h> 149 170 #define _XOPEN_SOURCE 600 150 #include "compat/cygwin.h"151 171 #else 152 172 #undef _ALL_SOURCE /* AIX 5.3L defines a struct list with _ALL_SOURCE. */ … … 159 179 #endif 160 180 181 /* used on Mac OS X */ 182 #ifdef PRECOMPOSE_UNICODE 183 #include "compat/precompose_utf8.h" 184 #else 185 #define precompose_str(in,i_nfd2nfc) 186 #define precompose_argv(c,v) 187 #define probe_utf8_pathname_composition(a,b) 188 #endif 189 190 #ifdef MKDIR_WO_TRAILING_SLASH 191 #define mkdir(a,b) compat_mkdir_wo_trailing_slash((a),(b)) 192 extern int compat_mkdir_wo_trailing_slash(const char*, mode_t); 193 #endif 194 195 #ifdef NO_STRUCT_ITIMERVAL 196 struct itimerval { 197 struct timeval it_interval; 198 struct timeval it_value; 199 } 200 #endif 201 202 #ifdef NO_SETITIMER 203 #define setitimer(which,value,ovalue) 204 #endif 205 161 206 #ifndef NO_LIBGEN_H 162 207 #include <libgen.h> … … 173 218 #include <openssl/ssl.h> 174 219 #include <openssl/err.h> 220 #endif 221 222 /* On most systems <netdb.h> would have given us this, but 223 * not on some systems (e.g. z/OS). 224 */ 225 #ifndef NI_MAXHOST 226 #define NI_MAXHOST 1025 227 #endif 228 229 #ifndef NI_MAXSERV 230 #define NI_MAXSERV 32 175 231 #endif 176 232 … … 242 298 #endif 243 299 300 /* The sentinel attribute is valid from gcc version 4.0 */ 301 #if defined(__GNUC__) && (__GNUC__ >= 4) 302 #define LAST_ARG_MUST_BE_NULL __attribute__((sentinel)) 303 #else 304 #define LAST_ARG_MUST_BE_NULL 305 #endif 306 244 307 #include "compat/bswap.h" 308 309 #include "wildmatch.h" 245 310 246 311 /* General helper functions */ … … 254 319 extern void warning(const char *err, ...) __attribute__((__format__ (__printf__, 1, 2))); 255 320 321 #ifndef NO_OPENSSL 322 #ifdef APPLE_COMMON_CRYPTO 323 #include "compat/apple-common-crypto.h" 324 #else 325 #include <openssl/evp.h> 326 #include <openssl/hmac.h> 327 #endif /* APPLE_COMMON_CRYPTO */ 328 #include <openssl/x509v3.h> 329 #endif /* NO_OPENSSL */ 330 331 /* 332 * Let callers be aware of the constant return value; this can help 333 * gcc with -Wuninitialized analysis. We restrict this trick to gcc, though, 334 * because some compilers may not support variadic macros. Since we're only 335 * trying to help gcc, anyway, it's OK; other compilers will fall back to 336 * using the function as usual. 337 */ 338 #if defined(__GNUC__) && ! defined(__clang__) 339 #define error(...) (error(__VA_ARGS__), -1) 340 #endif 341 256 342 extern void set_die_routine(NORETURN_PTR void (*routine)(const char *err, va_list params)); 257 343 extern void set_error_routine(void (*routine)(const char *err, va_list params)); 258 259 extern int prefixcmp(const char *str, const char *prefix); 260 extern int suffixcmp(const char *str, const char *suffix); 344 extern void set_die_is_recursing_routine(int (*routine)(void)); 345 346 extern int starts_with(const char *str, const char *prefix); 347 extern int ends_with(const char *str, const char *suffix); 261 348 262 349 static inline const char *skip_prefix(const char *str, const char *prefix) 263 350 { 264 size_t len = strlen(prefix); 265 return strncmp(str, prefix, len) ? NULL : str + len; 351 do { 352 if (!*prefix) 353 return str; 354 } while (*str++ == *prefix++); 355 return NULL; 266 356 } 267 357 … … 361 451 #endif 362 452 363 #ifdef NO_STRTOK_R364 #define strtok_r gitstrtok_r365 extern char *gitstrtok_r(char *s, const char *delim, char **save_ptr);366 #endif367 368 453 #ifdef NO_HSTRERROR 369 454 #define hstrerror githstrerror … … 377 462 #endif 378 463 464 #ifdef NO_GETPAGESIZE 465 #define getpagesize() sysconf(_SC_PAGESIZE) 466 #endif 467 379 468 #ifdef FREAD_READS_DIRECTORIES 380 469 #ifdef fopen … … 386 475 387 476 #ifdef SNPRINTF_RETURNS_BOGUS 477 #ifdef snprintf 478 #undef snprintf 479 #endif 388 480 #define snprintf git_snprintf 389 481 extern int git_snprintf(char *str, size_t maxsize, 390 482 const char *format, ...); 483 #ifdef vsnprintf 484 #undef vsnprintf 485 #endif 391 486 #define vsnprintf git_vsnprintf 392 487 extern int git_vsnprintf(char *str, size_t maxsize, … … 427 522 #endif 428 523 429 extern void release_pack_memory(size_t , int);524 extern void release_pack_memory(size_t); 430 525 431 526 typedef void (*try_to_free_t)(size_t); … … 447 542 extern int xmkstemp_mode(char *template, int mode); 448 543 extern int odb_mkstemp(char *template, size_t limit, const char *pattern); 449 extern int odb_pack_keep(char *name, size_t namesz, unsigned char *sha1);544 extern int odb_pack_keep(char *name, size_t namesz, const unsigned char *sha1); 450 545 451 546 static inline size_t xsize_t(off_t len) … … 462 557 return len > extlen && !memcmp(filename + len - extlen, ext, extlen); 463 558 } 559 560 /* in ctype.c, for kwset users */ 561 extern const char tolower_trans_tbl[256]; 464 562 465 563 /* Sane ctype - no locale, and works with signed chars */ … … 469 567 #undef isalpha 470 568 #undef isalnum 569 #undef isprint 471 570 #undef islower 472 571 #undef isupper 473 572 #undef tolower 474 573 #undef toupper 475 extern unsigned char sane_ctype[256]; 574 #undef iscntrl 575 #undef ispunct 576 #undef isxdigit 577 578 extern const unsigned char sane_ctype[256]; 476 579 #define GIT_SPACE 0x01 477 580 #define GIT_DIGIT 0x02 … … 480 583 #define GIT_REGEX_SPECIAL 0x10 481 584 #define GIT_PATHSPEC_MAGIC 0x20 585 #define GIT_CNTRL 0x40 586 #define GIT_PUNCT 0x80 482 587 #define sane_istest(x,mask) ((sane_ctype[(unsigned char)(x)] & (mask)) != 0) 483 588 #define isascii(x) (((x) & ~0x7f) == 0) … … 486 591 #define isalpha(x) sane_istest(x,GIT_ALPHA) 487 592 #define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT) 593 #define isprint(x) ((x) >= 0x20 && (x) <= 0x7e) 488 594 #define islower(x) sane_iscase(x, 1) 489 595 #define isupper(x) sane_iscase(x, 0) 490 596 #define is_glob_special(x) sane_istest(x,GIT_GLOB_SPECIAL) 491 597 #define is_regex_special(x) sane_istest(x,GIT_GLOB_SPECIAL | GIT_REGEX_SPECIAL) 598 #define iscntrl(x) (sane_istest(x,GIT_CNTRL)) 599 #define ispunct(x) sane_istest(x, GIT_PUNCT | GIT_REGEX_SPECIAL | \ 600 GIT_GLOB_SPECIAL | GIT_PATHSPEC_MAGIC) 601 #define isxdigit(x) (hexval_table[x] != -1) 492 602 #define tolower(x) sane_case((unsigned char)(x), 0x20) 493 603 #define toupper(x) sane_case((unsigned char)(x), 0) … … 598 708 int remove_or_warn(unsigned int mode, const char *path); 599 709 600 #endif 710 /* 711 * Call access(2), but warn for any error except "missing file" 712 * (ENOENT or ENOTDIR). 713 */ 714 #define ACCESS_EACCES_OK (1U << 0) 715 int access_or_warn(const char *path, int mode, unsigned flag); 716 int access_or_die(const char *path, int mode, unsigned flag); 717 718 /* Warn on an inaccessible file that ought to be accessible */ 719 void warn_on_inaccessible(const char *path); 720 721 /* Get the passwd entry for the UID of the current process. */ 722 struct passwd *xgetpwuid_self(void); 723 724 #ifdef GMTIME_UNRELIABLE_ERRORS 725 struct tm *git_gmtime(const time_t *); 726 struct tm *git_gmtime_r(const time_t *, struct tm *); 727 #define gmtime git_gmtime 728 #define gmtime_r git_gmtime_r 729 #endif 730 731 #endif
Note:
See TracChangeset
for help on using the changeset viewer.