123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941 |
- #ifndef Py_PYPORT_H
- #define Py_PYPORT_H
- #include "pyconfig.h"
- #ifdef HAVE_INTTYPES_H
- #include <inttypes.h>
- #endif
- #ifdef HAVE_STDINT_H
- #include <stdint.h>
- #endif
- #ifdef HAVE_PROTOTYPES
- #define Py_PROTO(x) x
- #else
- #define Py_PROTO(x) ()
- #endif
- #ifndef Py_FPROTO
- #define Py_FPROTO(x) Py_PROTO(x)
- #endif
- #ifdef HAVE_LONG_LONG
- #ifndef PY_LONG_LONG
- #define PY_LONG_LONG long long
- #if defined(LLONG_MAX)
- #define PY_LLONG_MIN LLONG_MIN
- #define PY_LLONG_MAX LLONG_MAX
- #define PY_ULLONG_MAX ULLONG_MAX
- #elif defined(__LONG_LONG_MAX__)
- #define PY_LLONG_MAX __LONG_LONG_MAX__
- #define PY_LLONG_MIN (-PY_LLONG_MAX-1)
- #define PY_ULLONG_MAX (__LONG_LONG_MAX__*2ULL + 1ULL)
- #else
- #define PY_ULLONG_MAX (~0ULL)
- #define PY_LLONG_MAX ((long long)(PY_ULLONG_MAX>>1))
- #define PY_LLONG_MIN (-PY_LLONG_MAX-1)
- #endif
- #endif
- #endif
- #ifdef uint32_t
- #define HAVE_UINT32_T 1
- #endif
- #ifdef HAVE_UINT32_T
- #ifndef PY_UINT32_T
- #define PY_UINT32_T uint32_t
- #endif
- #endif
- #ifdef uint64_t
- #define HAVE_UINT64_T 1
- #endif
- #ifdef HAVE_UINT64_T
- #ifndef PY_UINT64_T
- #define PY_UINT64_T uint64_t
- #endif
- #endif
- #ifdef int32_t
- #define HAVE_INT32_T 1
- #endif
- #ifdef HAVE_INT32_T
- #ifndef PY_INT32_T
- #define PY_INT32_T int32_t
- #endif
- #endif
- #ifdef int64_t
- #define HAVE_INT64_T 1
- #endif
- #ifdef HAVE_INT64_T
- #ifndef PY_INT64_T
- #define PY_INT64_T int64_t
- #endif
- #endif
- #ifndef PYLONG_BITS_IN_DIGIT
- #if (defined HAVE_UINT64_T && defined HAVE_INT64_T && \
- defined HAVE_UINT32_T && defined HAVE_INT32_T && SIZEOF_VOID_P >= 8)
- #define PYLONG_BITS_IN_DIGIT 30
- #else
- #define PYLONG_BITS_IN_DIGIT 15
- #endif
- #endif
- #ifdef HAVE_UINTPTR_T
- typedef uintptr_t Py_uintptr_t;
- typedef intptr_t Py_intptr_t;
- #elif SIZEOF_VOID_P <= SIZEOF_INT
- typedef unsigned int Py_uintptr_t;
- typedef int Py_intptr_t;
- #elif SIZEOF_VOID_P <= SIZEOF_LONG
- typedef unsigned long Py_uintptr_t;
- typedef long Py_intptr_t;
- #elif defined(HAVE_LONG_LONG) && (SIZEOF_VOID_P <= SIZEOF_LONG_LONG)
- typedef unsigned PY_LONG_LONG Py_uintptr_t;
- typedef PY_LONG_LONG Py_intptr_t;
- #else
- # error "Python needs a typedef for Py_uintptr_t in pyport.h."
- #endif
- #ifdef HAVE_SSIZE_T
- typedef ssize_t Py_ssize_t;
- #elif SIZEOF_VOID_P == SIZEOF_SIZE_T
- typedef Py_intptr_t Py_ssize_t;
- #else
- # error "Python needs a typedef for Py_ssize_t in pyport.h."
- #endif
- #ifdef SIZE_MAX
- #define PY_SIZE_MAX SIZE_MAX
- #else
- #define PY_SIZE_MAX ((size_t)-1)
- #endif
- #define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1))
- #define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
- #if SIZEOF_PID_T > SIZEOF_LONG
- # error "Python doesn't support sizeof(pid_t) > sizeof(long)"
- #endif
- #ifndef PY_FORMAT_SIZE_T
- # if SIZEOF_SIZE_T == SIZEOF_INT && !defined(__APPLE__)
- # define PY_FORMAT_SIZE_T ""
- # elif SIZEOF_SIZE_T == SIZEOF_LONG
- # define PY_FORMAT_SIZE_T "l"
- # elif defined(MS_WINDOWS)
- # define PY_FORMAT_SIZE_T "I"
- # else
- # error "This platform's pyconfig.h needs to define PY_FORMAT_SIZE_T"
- # endif
- #endif
- #ifdef HAVE_LONG_LONG
- # ifndef PY_FORMAT_LONG_LONG
- # if defined(MS_WIN64) || defined(MS_WINDOWS)
- # define PY_FORMAT_LONG_LONG "I64"
- # else
- # error "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG"
- # endif
- # endif
- #endif
- #undef USE_INLINE
- #if defined(_MSC_VER)
- #if defined(PY_LOCAL_AGGRESSIVE)
- #pragma optimize("agtw", on)
- #endif
- #pragma warning(disable: 4710)
- #define Py_LOCAL(type) static type __fastcall
- #define Py_LOCAL_INLINE(type) static __inline type __fastcall
- #elif defined(USE_INLINE)
- #define Py_LOCAL(type) static type
- #define Py_LOCAL_INLINE(type) static inline type
- #else
- #define Py_LOCAL(type) static type
- #define Py_LOCAL_INLINE(type) static type
- #endif
- #if defined(_MSC_VER)
- #define Py_MEMCPY(target, source, length) do { \
- size_t i_, n_ = (length); \
- char *t_ = (void*) (target); \
- const char *s_ = (void*) (source); \
- if (n_ >= 16) \
- memcpy(t_, s_, n_); \
- else \
- for (i_ = 0; i_ < n_; i_++) \
- t_[i_] = s_[i_]; \
- } while (0)
- #else
- #define Py_MEMCPY memcpy
- #endif
- #include <stdlib.h>
- #ifdef HAVE_IEEEFP_H
- #include <ieeefp.h> /* needed for 'finite' declaration on some platforms */
- #endif
- #include <math.h> /* Moved here from the math section, before extern "C" */
- #ifdef TIME_WITH_SYS_TIME
- #include <sys/time.h>
- #include <time.h>
- #else
- #ifdef HAVE_SYS_TIME_H
- #include <sys/time.h>
- #else
- #include <time.h>
- #endif
- #endif
- #ifdef HAVE_SYS_SELECT_H
- #include <sys/select.h>
- #endif
- #ifndef DONT_HAVE_STAT
- #define HAVE_STAT
- #endif
- #ifndef DONT_HAVE_FSTAT
- #define HAVE_FSTAT
- #endif
- #ifdef RISCOS
- #include <sys/types.h>
- #include "unixstuff.h"
- #endif
- #ifdef HAVE_SYS_STAT_H
- #if defined(PYOS_OS2) && defined(PYCC_GCC)
- #include <sys/types.h>
- #endif
- #include <sys/stat.h>
- #elif defined(HAVE_STAT_H)
- #include <stat.h>
- #endif
- #if defined(PYCC_VACPP)
- #define S_IFMT (S_IFDIR|S_IFCHR|S_IFREG)
- #endif
- #ifndef S_ISREG
- #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
- #endif
- #ifndef S_ISDIR
- #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef SIGNED_RIGHT_SHIFT_ZERO_FILLS
- #define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) \
- ((I) < 0 ? -1-((-1-(I)) >> (J)) : (I) >> (J))
- #else
- #define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J))
- #endif
- #define Py_FORCE_EXPANSION(X) X
- #ifdef Py_DEBUG
- #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \
- (assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE))
- #else
- #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)
- #endif
- #if defined(__FreeBSD__) || defined(__OpenBSD__) || (defined(__hpux) && defined(__ia64))
- #define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM;
- #else
- #define _Py_SET_EDOM_FOR_NAN(X) ;
- #endif
- #define Py_SET_ERRNO_ON_MATH_ERROR(X) \
- do { \
- if (errno == 0) { \
- if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
- errno = ERANGE; \
- else _Py_SET_EDOM_FOR_NAN(X) \
- } \
- } while(0)
- #define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X)
- #define Py_ADJUST_ERANGE1(X) \
- do { \
- if (errno == 0) { \
- if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
- errno = ERANGE; \
- } \
- else if (errno == ERANGE && (X) == 0.0) \
- errno = 0; \
- } while(0)
- #define Py_ADJUST_ERANGE2(X, Y) \
- do { \
- if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL || \
- (Y) == Py_HUGE_VAL || (Y) == -Py_HUGE_VAL) { \
- if (errno == 0) \
- errno = ERANGE; \
- } \
- else if (errno == ERANGE) \
- errno = 0; \
- } while(0)
- #ifdef HAVE_GCC_ASM_FOR_X87
- #define HAVE_PY_SET_53BIT_PRECISION 1
- #define _Py_SET_53BIT_PRECISION_HEADER \
- unsigned short old_387controlword, new_387controlword
- #define _Py_SET_53BIT_PRECISION_START \
- do { \
- old_387controlword = _Py_get_387controlword(); \
- new_387controlword = (old_387controlword & ~0x0f00) | 0x0200; \
- if (new_387controlword != old_387controlword) \
- _Py_set_387controlword(new_387controlword); \
- } while (0)
- #define _Py_SET_53BIT_PRECISION_END \
- if (new_387controlword != old_387controlword) \
- _Py_set_387controlword(old_387controlword)
- #endif
- #if defined(_MSC_VER) && !defined(_WIN64)
- #define HAVE_PY_SET_53BIT_PRECISION 1
- #define _Py_SET_53BIT_PRECISION_HEADER \
- unsigned int old_387controlword, new_387controlword, out_387controlword
- #define _Py_SET_53BIT_PRECISION_START \
- do { \
- __control87_2(0, 0, &old_387controlword, NULL); \
- new_387controlword = \
- (old_387controlword & ~(_MCW_PC | _MCW_RC)) | (_PC_53 | _RC_NEAR); \
- if (new_387controlword != old_387controlword) \
- __control87_2(new_387controlword, _MCW_PC | _MCW_RC, \
- &out_387controlword, NULL); \
- } while (0)
- #define _Py_SET_53BIT_PRECISION_END \
- do { \
- if (new_387controlword != old_387controlword) \
- __control87_2(old_387controlword, _MCW_PC | _MCW_RC, \
- &out_387controlword, NULL); \
- } while (0)
- #endif
- #ifndef HAVE_PY_SET_53BIT_PRECISION
- #define _Py_SET_53BIT_PRECISION_HEADER
- #define _Py_SET_53BIT_PRECISION_START
- #define _Py_SET_53BIT_PRECISION_END
- #endif
- #if !defined(DOUBLE_IS_LITTLE_ENDIAN_IEEE754) && \
- !defined(DOUBLE_IS_BIG_ENDIAN_IEEE754) && \
- !defined(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754)
- #define PY_NO_SHORT_FLOAT_REPR
- #endif
- #if defined(X87_DOUBLE_ROUNDING) && !defined(HAVE_PY_SET_53BIT_PRECISION)
- #define PY_NO_SHORT_FLOAT_REPR
- #endif
- #if defined(__GNUC__) && ((__GNUC__ >= 4) || \
- (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1))
- #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
- #else
- #define Py_DEPRECATED(VERSION_UNUSED)
- #endif
- #ifdef SOLARIS
- extern int gethostname(char *, int);
- #endif
- #ifdef __BEOS__
- int shutdown( int, int );
- #endif
- #ifdef HAVE__GETPTY
- #include <sys/types.h> /* we need to import mode_t */
- extern char * _getpty(int *, int, mode_t, int);
- #endif
- #if defined(HAVE_SYS_TERMIO_H) && !defined(__hpux)
- #include <sys/termio.h>
- #endif
- #if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY)
- #if !defined(HAVE_PTY_H) && !defined(HAVE_LIBUTIL_H) && !defined(HAVE_UTIL_H)
- #include <termios.h>
- extern int openpty(int *, int *, char *, struct termios *, struct winsize *);
- extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
- #endif
- #endif
- #if 0
- extern int getrusage();
- extern int getpagesize();
- extern int fclose(FILE *);
- extern int fdatasync(int);
- #endif
- #ifdef __FreeBSD__
- #include <osreldate.h>
- #if __FreeBSD_version > 500039
- # define _PY_PORT_CTYPE_UTF8_ISSUE
- #endif
- #endif
- #if defined(__APPLE__)
- # define _PY_PORT_CTYPE_UTF8_ISSUE
- #endif
- #ifdef _PY_PORT_CTYPE_UTF8_ISSUE
- #include <ctype.h>
- #include <wctype.h>
- #undef isalnum
- #define isalnum(c) iswalnum(btowc(c))
- #undef isalpha
- #define isalpha(c) iswalpha(btowc(c))
- #undef islower
- #define islower(c) iswlower(btowc(c))
- #undef isspace
- #define isspace(c) iswspace(btowc(c))
- #undef isupper
- #define isupper(c) iswupper(btowc(c))
- #undef tolower
- #define tolower(c) towlower(btowc(c))
- #undef toupper
- #define toupper(c) towupper(btowc(c))
- #endif
- #if defined(__CYGWIN__) || defined(__BEOS__)
- # define HAVE_DECLSPEC_DLL
- #endif
- #if defined(Py_ENABLE_SHARED) || defined(__CYGWIN__)
- # if defined(HAVE_DECLSPEC_DLL)
- # ifdef Py_BUILD_CORE
- # define PyAPI_FUNC(RTYPE) __declspec(dllexport) RTYPE
- # define PyAPI_DATA(RTYPE) extern __declspec(dllexport) RTYPE
-
-
- # if defined(__CYGWIN__)
- # define PyMODINIT_FUNC __declspec(dllexport) void
- # else
- # define PyMODINIT_FUNC void
- # endif
- # else
-
-
-
-
-
- # if !defined(__CYGWIN__)
- # define PyAPI_FUNC(RTYPE) __declspec(dllimport) RTYPE
- # endif
- # define PyAPI_DATA(RTYPE) extern __declspec(dllimport) RTYPE
-
- # if defined(__cplusplus)
- # define PyMODINIT_FUNC extern "C" __declspec(dllexport) void
- # else
- # define PyMODINIT_FUNC __declspec(dllexport) void
- # endif
- # endif
- # endif
- #endif
- #ifndef PyAPI_FUNC
- # define PyAPI_FUNC(RTYPE) RTYPE
- #endif
- #ifndef PyAPI_DATA
- # define PyAPI_DATA(RTYPE) extern RTYPE
- #endif
- #ifndef PyMODINIT_FUNC
- # if defined(__cplusplus)
- # define PyMODINIT_FUNC extern "C" void
- # else
- # define PyMODINIT_FUNC void
- # endif
- #endif
- #if defined(Py_ENABLE_SHARED) && defined (HAVE_DECLSPEC_DLL)
- # if defined(Py_BUILD_CORE)
- # define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
- # define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
- # else
- # define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
- # define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
- # endif
- #endif
- #ifndef DL_EXPORT
- # define DL_EXPORT(RTYPE) RTYPE
- #endif
- #ifndef DL_IMPORT
- # define DL_IMPORT(RTYPE) RTYPE
- #endif
- #if 0
- #ifndef FD_SETSIZE
- #define FD_SETSIZE 256
- #endif
- #ifndef FD_SET
- typedef long fd_mask;
- #define NFDBITS (sizeof(fd_mask) * NBBY)
- #ifndef howmany
- #define howmany(x, y) (((x)+((y)-1))/(y))
- #endif
- typedef struct fd_set {
- fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
- } fd_set;
- #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
- #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
- #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
- #define FD_ZERO(p) memset((char *)(p), '\0', sizeof(*(p)))
- #endif
- #endif
- #ifndef INT_MAX
- #define INT_MAX 2147483647
- #endif
- #ifndef LONG_MAX
- #if SIZEOF_LONG == 4
- #define LONG_MAX 0X7FFFFFFFL
- #elif SIZEOF_LONG == 8
- #define LONG_MAX 0X7FFFFFFFFFFFFFFFL
- #else
- #error "could not set LONG_MAX in pyport.h"
- #endif
- #endif
- #ifndef LONG_MIN
- #define LONG_MIN (-LONG_MAX-1)
- #endif
- #ifndef LONG_BIT
- #define LONG_BIT (8 * SIZEOF_LONG)
- #endif
- #if LONG_BIT != 8 * SIZEOF_LONG
- #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)."
- #endif
- #ifdef __cplusplus
- }
- #endif
- #if (!defined(__GNUC__) || __GNUC__ < 2 || \
- (__GNUC__ == 2 && __GNUC_MINOR__ < 7) ) && \
- !defined(RISCOS)
- #define Py_GCC_ATTRIBUTE(x)
- #else
- #define Py_GCC_ATTRIBUTE(x) __attribute__(x)
- #endif
- #ifdef HAVE_ATTRIBUTE_FORMAT_PARSETUPLE
- #define Py_FORMAT_PARSETUPLE(func,p1,p2) __attribute__((format(func,p1,p2)))
- #else
- #define Py_FORMAT_PARSETUPLE(func,p1,p2)
- #endif
- #if defined(__GNUC__) && __GNUC__ >= 3
- #define Py_ALIGNED(x) __attribute__((aligned(x)))
- #else
- #define Py_ALIGNED(x)
- #endif
- #ifdef __SUNPRO_C
- #pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED)
- #endif
- #ifndef Py_LL
- #define Py_LL(x) x##LL
- #endif
- #ifndef Py_ULL
- #define Py_ULL(x) Py_LL(x##U)
- #endif
- #endif
|