Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef PLPYTHON_H
00013 #define PLPYTHON_H
00014
00015
00016
00017
00018
00019 #ifndef POSTGRES_H
00020 #error postgres.h must be included before plpython.h
00021 #endif
00022
00023
00024
00025
00026
00027
00028 #undef _POSIX_C_SOURCE
00029 #undef _XOPEN_SOURCE
00030 #undef HAVE_STRERROR
00031 #undef HAVE_TZNAME
00032
00033
00034
00035
00036
00037
00038 #ifdef USE_REPL_SNPRINTF
00039 #undef snprintf
00040 #undef vsnprintf
00041 #endif
00042
00043 #if defined(_MSC_VER) && defined(_DEBUG)
00044
00045
00046 #undef _DEBUG
00047
00048 #define errcode __msvc_errcode
00049 #include <Python.h>
00050 #undef errcode
00051 #define _DEBUG
00052 #elif defined (_MSC_VER)
00053 #define errcode __msvc_errcode
00054 #include <Python.h>
00055 #undef errcode
00056 #else
00057 #include <Python.h>
00058 #endif
00059
00060
00061
00062
00063 #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
00064 typedef int Py_ssize_t;
00065
00066 #define PY_SSIZE_T_MAX INT_MAX
00067 #define PY_SSIZE_T_MIN INT_MIN
00068 #endif
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082 #if PY_VERSION_HEX < 0x02060000
00083
00084 #define PyBytes_AsString PyString_AsString
00085 #define PyBytes_FromStringAndSize PyString_FromStringAndSize
00086 #define PyBytes_Size PyString_Size
00087 #define PyObject_Bytes PyObject_Str
00088 #endif
00089
00090 #if PY_MAJOR_VERSION >= 3
00091 #define PyString_Check(x) 0
00092 #define PyString_AsString(x) PLyUnicode_AsString(x)
00093 #define PyString_FromString(x) PLyUnicode_FromString(x)
00094 #endif
00095
00096
00097
00098
00099 #if PY_MAJOR_VERSION >= 3
00100 #define PyInt_FromLong(x) PyLong_FromLong(x)
00101 #define PyInt_AsLong(x) PyLong_AsLong(x)
00102 #endif
00103
00104
00105
00106
00107
00108
00109 #ifndef PyVarObject_HEAD_INIT
00110 #define PyVarObject_HEAD_INIT(type, size) \
00111 PyObject_HEAD_INIT(type) size,
00112 #endif
00113
00114
00115 #if PY_MAJOR_VERSION >= 3
00116 #define Py_TPFLAGS_HAVE_ITER 0
00117 #endif
00118
00119
00120 #undef TEXTDOMAIN
00121 #define TEXTDOMAIN PG_TEXTDOMAIN("plpython")
00122
00123 #include <compile.h>
00124 #include <eval.h>
00125
00126
00127 #ifdef USE_REPL_SNPRINTF
00128 #ifdef snprintf
00129 #undef snprintf
00130 #endif
00131 #ifdef vsnprintf
00132 #undef vsnprintf
00133 #endif
00134 #ifdef __GNUC__
00135 #define vsnprintf(...) pg_vsnprintf(__VA_ARGS__)
00136 #define snprintf(...) pg_snprintf(__VA_ARGS__)
00137 #else
00138 #define vsnprintf pg_vsnprintf
00139 #define snprintf pg_snprintf
00140 #endif
00141 #endif
00142
00143
00144
00145
00146
00147 #include "plpy_util.h"
00148
00149 #endif