Ignore:
Timestamp:
Jun 23, 2014, 9:45:51 PM (11 years ago)
Author:
dmik
Message:

git: Merge version 2.0.0 from vendor to dmik branch.

Location:
git/branches/dmik
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • git/branches/dmik

  • TabularUnified git/branches/dmik/git-compat-util.h

    r630 r782  
    7575# endif
    7676#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__)
    7879#define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
    7980#define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
     
    8586#define _SGI_SOURCE 1
    8687
    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
    8892#define WIN32_LEAN_AND_MEAN  /* stops windows.h including winsock.h */
    8993#include <winsock2.h>
    9094#include <windows.h>
     95#define GIT_WINDOWS_NATIVE
    9196#endif
    9297
     
    99104#include <stdarg.h>
    100105#include <string.h>
     106#ifdef HAVE_STRINGS_H
     107#include <strings.h> /* for strcasecmp() */
     108#endif
    101109#include <errno.h>
    102110#include <limits.h>
     111#ifdef NEEDS_SYS_PARAM_H
    103112#include <sys/param.h>
     113#endif
    104114#include <sys/types.h>
    105115#include <dirent.h>
     
    107117#include <time.h>
    108118#include <signal.h>
    109 #include <fnmatch.h>
    110119#include <assert.h>
    111120#include <regex.h>
     
    119128#include <poll.h>
    120129#endif
     130
    121131#if defined(__MINGW32__)
    122132/* pull in Windows compatibility stuff */
     
    144154#include <stdint.h>
    145155#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 */
     164typedef long intptr_t;
     165typedef unsigned long uintptr_t;
     166#endif
    146167#if defined(__CYGWIN__)
    147168#undef _XOPEN_SOURCE
    148169#include <grp.h>
    149170#define _XOPEN_SOURCE 600
    150 #include "compat/cygwin.h"
    151171#else
    152172#undef _ALL_SOURCE /* AIX 5.3L defines a struct list with _ALL_SOURCE. */
     
    159179#endif
    160180
     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))
     192extern int compat_mkdir_wo_trailing_slash(const char*, mode_t);
     193#endif
     194
     195#ifdef NO_STRUCT_ITIMERVAL
     196struct 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
    161206#ifndef NO_LIBGEN_H
    162207#include <libgen.h>
     
    173218#include <openssl/ssl.h>
    174219#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
    175231#endif
    176232
     
    242298#endif
    243299
     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
    244307#include "compat/bswap.h"
     308
     309#include "wildmatch.h"
    245310
    246311/* General helper functions */
     
    254319extern void warning(const char *err, ...) __attribute__((__format__ (__printf__, 1, 2)));
    255320
     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
    256342extern void set_die_routine(NORETURN_PTR void (*routine)(const char *err, va_list params));
    257343extern 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);
     344extern void set_die_is_recursing_routine(int (*routine)(void));
     345
     346extern int starts_with(const char *str, const char *prefix);
     347extern int ends_with(const char *str, const char *suffix);
    261348
    262349static inline const char *skip_prefix(const char *str, const char *prefix)
    263350{
    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;
    266356}
    267357
     
    361451#endif
    362452
    363 #ifdef NO_STRTOK_R
    364 #define strtok_r gitstrtok_r
    365 extern char *gitstrtok_r(char *s, const char *delim, char **save_ptr);
    366 #endif
    367 
    368453#ifdef NO_HSTRERROR
    369454#define hstrerror githstrerror
     
    377462#endif
    378463
     464#ifdef NO_GETPAGESIZE
     465#define getpagesize() sysconf(_SC_PAGESIZE)
     466#endif
     467
    379468#ifdef FREAD_READS_DIRECTORIES
    380469#ifdef fopen
     
    386475
    387476#ifdef SNPRINTF_RETURNS_BOGUS
     477#ifdef snprintf
     478#undef snprintf
     479#endif
    388480#define snprintf git_snprintf
    389481extern int git_snprintf(char *str, size_t maxsize,
    390482                        const char *format, ...);
     483#ifdef vsnprintf
     484#undef vsnprintf
     485#endif
    391486#define vsnprintf git_vsnprintf
    392487extern int git_vsnprintf(char *str, size_t maxsize,
     
    427522#endif
    428523
    429 extern void release_pack_memory(size_t, int);
     524extern void release_pack_memory(size_t);
    430525
    431526typedef void (*try_to_free_t)(size_t);
     
    447542extern int xmkstemp_mode(char *template, int mode);
    448543extern 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);
     544extern int odb_pack_keep(char *name, size_t namesz, const unsigned char *sha1);
    450545
    451546static inline size_t xsize_t(off_t len)
     
    462557        return len > extlen && !memcmp(filename + len - extlen, ext, extlen);
    463558}
     559
     560/* in ctype.c, for kwset users */
     561extern const char tolower_trans_tbl[256];
    464562
    465563/* Sane ctype - no locale, and works with signed chars */
     
    469567#undef isalpha
    470568#undef isalnum
     569#undef isprint
    471570#undef islower
    472571#undef isupper
    473572#undef tolower
    474573#undef toupper
    475 extern unsigned char sane_ctype[256];
     574#undef iscntrl
     575#undef ispunct
     576#undef isxdigit
     577
     578extern const unsigned char sane_ctype[256];
    476579#define GIT_SPACE 0x01
    477580#define GIT_DIGIT 0x02
     
    480583#define GIT_REGEX_SPECIAL 0x10
    481584#define GIT_PATHSPEC_MAGIC 0x20
     585#define GIT_CNTRL 0x40
     586#define GIT_PUNCT 0x80
    482587#define sane_istest(x,mask) ((sane_ctype[(unsigned char)(x)] & (mask)) != 0)
    483588#define isascii(x) (((x) & ~0x7f) == 0)
     
    486591#define isalpha(x) sane_istest(x,GIT_ALPHA)
    487592#define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT)
     593#define isprint(x) ((x) >= 0x20 && (x) <= 0x7e)
    488594#define islower(x) sane_iscase(x, 1)
    489595#define isupper(x) sane_iscase(x, 0)
    490596#define is_glob_special(x) sane_istest(x,GIT_GLOB_SPECIAL)
    491597#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)
    492602#define tolower(x) sane_case((unsigned char)(x), 0x20)
    493603#define toupper(x) sane_case((unsigned char)(x), 0)
     
    598708int remove_or_warn(unsigned int mode, const char *path);
    599709
    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)
     715int access_or_warn(const char *path, int mode, unsigned flag);
     716int access_or_die(const char *path, int mode, unsigned flag);
     717
     718/* Warn on an inaccessible file that ought to be accessible */
     719void warn_on_inaccessible(const char *path);
     720
     721/* Get the passwd entry for the UID of the current process. */
     722struct passwd *xgetpwuid_self(void);
     723
     724#ifdef GMTIME_UNRELIABLE_ERRORS
     725struct tm *git_gmtime(const time_t *);
     726struct 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.