pyerrors.h 12.8 KB
Newer Older
1 2 3 4 5 6
#ifndef Py_ERRORS_H
#define Py_ERRORS_H
#ifdef __cplusplus
extern "C" {
#endif

7 8
/* Error objects */

9
#ifndef Py_LIMITED_API
10
/* PyException_HEAD defines the initial segment of every exception class. */
11
#define PyException_HEAD PyObject_HEAD PyObject *dict;\
12 13
             PyObject *args; PyObject *traceback;\
             PyObject *context; PyObject *cause;
14

15
typedef struct {
16
    PyException_HEAD
17 18 19
} PyBaseExceptionObject;

typedef struct {
20
    PyException_HEAD
21 22 23 24 25 26 27 28 29
    PyObject *msg;
    PyObject *filename;
    PyObject *lineno;
    PyObject *offset;
    PyObject *text;
    PyObject *print_file_and_line;
} PySyntaxErrorObject;

typedef struct {
30
    PyException_HEAD
31 32
    PyObject *encoding;
    PyObject *object;
33 34
    Py_ssize_t start;
    Py_ssize_t end;
35 36 37 38
    PyObject *reason;
} PyUnicodeErrorObject;

typedef struct {
39
    PyException_HEAD
40 41 42 43
    PyObject *code;
} PySystemExitObject;

typedef struct {
44
    PyException_HEAD
45 46 47 48 49 50 51
    PyObject *myerrno;
    PyObject *strerror;
    PyObject *filename;
} PyEnvironmentErrorObject;

#ifdef MS_WINDOWS
typedef struct {
52
    PyException_HEAD
53 54 55 56 57 58
    PyObject *myerrno;
    PyObject *strerror;
    PyObject *filename;
    PyObject *winerror;
} PyWindowsErrorObject;
#endif
59
#endif
60

Guido van Rossum's avatar
Guido van Rossum committed
61 62
/* Error handling definitions */

63 64
PyAPI_FUNC(void) PyErr_SetNone(PyObject *);
PyAPI_FUNC(void) PyErr_SetObject(PyObject *, PyObject *);
65 66 67 68
PyAPI_FUNC(void) PyErr_SetString(
    PyObject *exception,
    const char *string   /* decoded from utf-8 */
    );
69 70 71 72
PyAPI_FUNC(PyObject *) PyErr_Occurred(void);
PyAPI_FUNC(void) PyErr_Clear(void);
PyAPI_FUNC(void) PyErr_Fetch(PyObject **, PyObject **, PyObject **);
PyAPI_FUNC(void) PyErr_Restore(PyObject *, PyObject *, PyObject *);
73 74 75 76 77 78 79 80 81 82 83

#if defined(__clang__) || \
    (defined(__GNUC__) && \
     ((__GNUC_MAJOR__ >= 3) || \
      (__GNUC_MAJOR__ == 2) && (__GNUC_MINOR__ >= 5)))
#define _Py_NO_RETURN __attribute__((__noreturn__))
#else
#define _Py_NO_RETURN
#endif

PyAPI_FUNC(void) Py_FatalError(const char *message) _Py_NO_RETURN;
Guido van Rossum's avatar
Guido van Rossum committed
84

85
#if defined(Py_DEBUG) || defined(Py_LIMITED_API)
86 87 88 89 90
#define _PyErr_OCCURRED() PyErr_Occurred()
#else
#define _PyErr_OCCURRED() (_PyThreadState_Current->curexc_type)
#endif

91
/* Error testing and normalization */
92 93 94
PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
PyAPI_FUNC(int) PyErr_ExceptionMatches(PyObject *);
PyAPI_FUNC(void) PyErr_NormalizeException(PyObject**, PyObject**, PyObject**);
95

96 97 98 99 100 101 102 103 104 105 106 107 108
/* Traceback manipulation (PEP 3134) */
PyAPI_FUNC(int) PyException_SetTraceback(PyObject *, PyObject *);
PyAPI_FUNC(PyObject *) PyException_GetTraceback(PyObject *);

/* Cause manipulation (PEP 3134) */
PyAPI_FUNC(PyObject *) PyException_GetCause(PyObject *);
PyAPI_FUNC(void) PyException_SetCause(PyObject *, PyObject *);

/* Context manipulation (PEP 3134) */
PyAPI_FUNC(PyObject *) PyException_GetContext(PyObject *);
PyAPI_FUNC(void) PyException_SetContext(PyObject *, PyObject *);


109
/* */
110

111 112 113
#define PyExceptionClass_Check(x)                                       \
    (PyType_Check((x)) &&                                               \
     PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
114

115 116
#define PyExceptionInstance_Check(x)                    \
    PyType_FastSubclass((x)->ob_type, Py_TPFLAGS_BASE_EXC_SUBCLASS)
117

118
#define PyExceptionClass_Name(x) \
119
     ((char *)(((PyTypeObject*)(x))->tp_name))
120

121
#define PyExceptionInstance_Class(x) ((PyObject*)((x)->ob_type))
122

123

Guido van Rossum's avatar
Guido van Rossum committed
124
/* Predefined exceptions */
125

126
PyAPI_DATA(PyObject *) PyExc_BaseException;
127 128
PyAPI_DATA(PyObject *) PyExc_Exception;
PyAPI_DATA(PyObject *) PyExc_StopIteration;
129
PyAPI_DATA(PyObject *) PyExc_GeneratorExit;
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
PyAPI_DATA(PyObject *) PyExc_ArithmeticError;
PyAPI_DATA(PyObject *) PyExc_LookupError;

PyAPI_DATA(PyObject *) PyExc_AssertionError;
PyAPI_DATA(PyObject *) PyExc_AttributeError;
PyAPI_DATA(PyObject *) PyExc_EOFError;
PyAPI_DATA(PyObject *) PyExc_FloatingPointError;
PyAPI_DATA(PyObject *) PyExc_EnvironmentError;
PyAPI_DATA(PyObject *) PyExc_IOError;
PyAPI_DATA(PyObject *) PyExc_OSError;
PyAPI_DATA(PyObject *) PyExc_ImportError;
PyAPI_DATA(PyObject *) PyExc_IndexError;
PyAPI_DATA(PyObject *) PyExc_KeyError;
PyAPI_DATA(PyObject *) PyExc_KeyboardInterrupt;
PyAPI_DATA(PyObject *) PyExc_MemoryError;
PyAPI_DATA(PyObject *) PyExc_NameError;
PyAPI_DATA(PyObject *) PyExc_OverflowError;
PyAPI_DATA(PyObject *) PyExc_RuntimeError;
PyAPI_DATA(PyObject *) PyExc_NotImplementedError;
PyAPI_DATA(PyObject *) PyExc_SyntaxError;
PyAPI_DATA(PyObject *) PyExc_IndentationError;
PyAPI_DATA(PyObject *) PyExc_TabError;
PyAPI_DATA(PyObject *) PyExc_ReferenceError;
PyAPI_DATA(PyObject *) PyExc_SystemError;
PyAPI_DATA(PyObject *) PyExc_SystemExit;
PyAPI_DATA(PyObject *) PyExc_TypeError;
PyAPI_DATA(PyObject *) PyExc_UnboundLocalError;
PyAPI_DATA(PyObject *) PyExc_UnicodeError;
158 159 160
PyAPI_DATA(PyObject *) PyExc_UnicodeEncodeError;
PyAPI_DATA(PyObject *) PyExc_UnicodeDecodeError;
PyAPI_DATA(PyObject *) PyExc_UnicodeTranslateError;
161 162
PyAPI_DATA(PyObject *) PyExc_ValueError;
PyAPI_DATA(PyObject *) PyExc_ZeroDivisionError;
163
#ifdef MS_WINDOWS
164
PyAPI_DATA(PyObject *) PyExc_WindowsError;
165
#endif
166
#ifdef __VMS
167
PyAPI_DATA(PyObject *) PyExc_VMSError;
168
#endif
169

Christian Heimes's avatar
Christian Heimes committed
170 171
PyAPI_DATA(PyObject *) PyExc_BufferError;

172
PyAPI_DATA(PyObject *) PyExc_RecursionErrorInst;
173

174
/* Predefined warning categories */
175 176 177 178 179 180
PyAPI_DATA(PyObject *) PyExc_Warning;
PyAPI_DATA(PyObject *) PyExc_UserWarning;
PyAPI_DATA(PyObject *) PyExc_DeprecationWarning;
PyAPI_DATA(PyObject *) PyExc_PendingDeprecationWarning;
PyAPI_DATA(PyObject *) PyExc_SyntaxWarning;
PyAPI_DATA(PyObject *) PyExc_RuntimeWarning;
181
PyAPI_DATA(PyObject *) PyExc_FutureWarning;
182
PyAPI_DATA(PyObject *) PyExc_ImportWarning;
183
PyAPI_DATA(PyObject *) PyExc_UnicodeWarning;
184
PyAPI_DATA(PyObject *) PyExc_BytesWarning;
185
PyAPI_DATA(PyObject *) PyExc_ResourceWarning;
186

187

188 189
/* Convenience functions */

190 191 192
PyAPI_FUNC(int) PyErr_BadArgument(void);
PyAPI_FUNC(PyObject *) PyErr_NoMemory(void);
PyAPI_FUNC(PyObject *) PyErr_SetFromErrno(PyObject *);
193
PyAPI_FUNC(PyObject *) PyErr_SetFromErrnoWithFilenameObject(
194
    PyObject *, PyObject *);
Benjamin Peterson's avatar
Benjamin Peterson committed
195
PyAPI_FUNC(PyObject *) PyErr_SetFromErrnoWithFilename(
196 197 198
    PyObject *exc,
    const char *filename   /* decoded from the filesystem encoding */
    );
199
#if defined(MS_WINDOWS) && !defined(Py_LIMITED_API)
200
PyAPI_FUNC(PyObject *) PyErr_SetFromErrnoWithUnicodeFilename(
201
    PyObject *, const Py_UNICODE *);
202
#endif /* MS_WINDOWS */
203

204 205 206 207 208
PyAPI_FUNC(PyObject *) PyErr_Format(
    PyObject *exception,
    const char *format,   /* ASCII-encoded string  */
    ...
    );
209

210
#ifdef MS_WINDOWS
211
PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename(
212
    int ierr,
213
    const char *filename        /* decoded from the filesystem encoding */
214
    );
215 216
#ifndef Py_LIMITED_API
/* XXX redeclare to use WSTRING */
217
PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithUnicodeFilename(
218
    int, const Py_UNICODE *);
219
#endif
220
PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErr(int);
221
PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErrWithFilenameObject(
222
    PyObject *,int, PyObject *);
223
PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErrWithFilename(
224 225
    PyObject *exc,
    int ierr,
226
    const char *filename        /* decoded from the filesystem encoding */
227
    );
228
#ifndef Py_LIMITED_API
229
PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErrWithUnicodeFilename(
230
    PyObject *,int, const Py_UNICODE *);
231
#endif
232
PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErr(PyObject *, int);
233
#endif /* MS_WINDOWS */
234

235
/* Export the old function so that the existing API remains available: */
236
PyAPI_FUNC(void) PyErr_BadInternalCall(void);
237
PyAPI_FUNC(void) _PyErr_BadInternalCall(const char *filename, int lineno);
238 239 240
/* Mask the old API with a call to the new API for code compiled under
   Python 2.0: */
#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
241

242
/* Function to create a new exception */
243
PyAPI_FUNC(PyObject *) PyErr_NewException(
244
    const char *name, PyObject *base, PyObject *dict);
245
PyAPI_FUNC(PyObject *) PyErr_NewExceptionWithDoc(
246
    const char *name, const char *doc, PyObject *base, PyObject *dict);
247
PyAPI_FUNC(void) PyErr_WriteUnraisable(PyObject *);
248

249
/* In sigcheck.c or signalmodule.c */
250 251
PyAPI_FUNC(int) PyErr_CheckSignals(void);
PyAPI_FUNC(void) PyErr_SetInterrupt(void);
252

253
/* In signalmodule.c */
254
#ifndef Py_LIMITED_API
255
int PySignal_SetWakeupFd(int fd);
256
#endif
257

258
/* Support for adding program text to SyntaxErrors */
259 260 261 262 263 264 265 266 267 268
PyAPI_FUNC(void) PyErr_SyntaxLocation(
    const char *filename,       /* decoded from the filesystem encoding */
    int lineno);
PyAPI_FUNC(void) PyErr_SyntaxLocationEx(
    const char *filename,       /* decoded from the filesystem encoding */
    int lineno,
    int col_offset);
PyAPI_FUNC(PyObject *) PyErr_ProgramText(
    const char *filename,       /* decoded from the filesystem encoding */
    int lineno);
269

270 271
/* The following functions are used to create and modify unicode
   exceptions from C */
272

273 274
/* create a UnicodeDecodeError object */
PyAPI_FUNC(PyObject *) PyUnicodeDecodeError_Create(
275 276 277 278 279 280 281
    const char *encoding,       /* UTF-8 encoded string */
    const char *object,
    Py_ssize_t length,
    Py_ssize_t start,
    Py_ssize_t end,
    const char *reason          /* UTF-8 encoded string */
    );
282 283

/* create a UnicodeEncodeError object */
284
#ifndef Py_LIMITED_API
285
PyAPI_FUNC(PyObject *) PyUnicodeEncodeError_Create(
286 287 288 289 290 291 292
    const char *encoding,       /* UTF-8 encoded string */
    const Py_UNICODE *object,
    Py_ssize_t length,
    Py_ssize_t start,
    Py_ssize_t end,
    const char *reason          /* UTF-8 encoded string */
    );
293
#endif
294 295

/* create a UnicodeTranslateError object */
296
#ifndef Py_LIMITED_API
297
PyAPI_FUNC(PyObject *) PyUnicodeTranslateError_Create(
298 299 300 301 302 303
    const Py_UNICODE *object,
    Py_ssize_t length,
    Py_ssize_t start,
    Py_ssize_t end,
    const char *reason          /* UTF-8 encoded string */
    );
304
#endif
305 306 307 308 309 310 311 312 313 314 315 316

/* get the encoding attribute */
PyAPI_FUNC(PyObject *) PyUnicodeEncodeError_GetEncoding(PyObject *);
PyAPI_FUNC(PyObject *) PyUnicodeDecodeError_GetEncoding(PyObject *);

/* get the object attribute */
PyAPI_FUNC(PyObject *) PyUnicodeEncodeError_GetObject(PyObject *);
PyAPI_FUNC(PyObject *) PyUnicodeDecodeError_GetObject(PyObject *);
PyAPI_FUNC(PyObject *) PyUnicodeTranslateError_GetObject(PyObject *);

/* get the value of the start attribute (the int * may not be NULL)
   return 0 on success, -1 on failure */
Martin v. Löwis's avatar
Martin v. Löwis committed
317 318 319
PyAPI_FUNC(int) PyUnicodeEncodeError_GetStart(PyObject *, Py_ssize_t *);
PyAPI_FUNC(int) PyUnicodeDecodeError_GetStart(PyObject *, Py_ssize_t *);
PyAPI_FUNC(int) PyUnicodeTranslateError_GetStart(PyObject *, Py_ssize_t *);
320 321 322

/* assign a new value to the start attribute
   return 0 on success, -1 on failure */
Martin v. Löwis's avatar
Martin v. Löwis committed
323 324 325
PyAPI_FUNC(int) PyUnicodeEncodeError_SetStart(PyObject *, Py_ssize_t);
PyAPI_FUNC(int) PyUnicodeDecodeError_SetStart(PyObject *, Py_ssize_t);
PyAPI_FUNC(int) PyUnicodeTranslateError_SetStart(PyObject *, Py_ssize_t);
326 327 328

/* get the value of the end attribute (the int *may not be NULL)
 return 0 on success, -1 on failure */
Martin v. Löwis's avatar
Martin v. Löwis committed
329 330 331
PyAPI_FUNC(int) PyUnicodeEncodeError_GetEnd(PyObject *, Py_ssize_t *);
PyAPI_FUNC(int) PyUnicodeDecodeError_GetEnd(PyObject *, Py_ssize_t *);
PyAPI_FUNC(int) PyUnicodeTranslateError_GetEnd(PyObject *, Py_ssize_t *);
332 333 334

/* assign a new value to the end attribute
   return 0 on success, -1 on failure */
Martin v. Löwis's avatar
Martin v. Löwis committed
335 336 337
PyAPI_FUNC(int) PyUnicodeEncodeError_SetEnd(PyObject *, Py_ssize_t);
PyAPI_FUNC(int) PyUnicodeDecodeError_SetEnd(PyObject *, Py_ssize_t);
PyAPI_FUNC(int) PyUnicodeTranslateError_SetEnd(PyObject *, Py_ssize_t);
338 339 340 341 342 343 344 345 346

/* get the value of the reason attribute */
PyAPI_FUNC(PyObject *) PyUnicodeEncodeError_GetReason(PyObject *);
PyAPI_FUNC(PyObject *) PyUnicodeDecodeError_GetReason(PyObject *);
PyAPI_FUNC(PyObject *) PyUnicodeTranslateError_GetReason(PyObject *);

/* assign a new value to the reason attribute
   return 0 on success, -1 on failure */
PyAPI_FUNC(int) PyUnicodeEncodeError_SetReason(
347 348 349
    PyObject *exc,
    const char *reason          /* UTF-8 encoded string */
    );
350
PyAPI_FUNC(int) PyUnicodeDecodeError_SetReason(
351 352 353
    PyObject *exc,
    const char *reason          /* UTF-8 encoded string */
    );
354
PyAPI_FUNC(int) PyUnicodeTranslateError_SetReason(
355 356 357
    PyObject *exc,
    const char *reason          /* UTF-8 encoded string */
    );
358 359


360 361 362
/* These APIs aren't really part of the error implementation, but
   often needed to format error messages; the native C lib APIs are
   not available on all platforms, which is why we provide emulations
363 364 365 366 367
   for those platforms in Python/mysnprintf.c,
   WARNING:  The return value of snprintf varies across platforms; do
   not rely on any particular behavior; eventually the C99 defn may
   be reliable.
*/
368 369 370 371 372
#if defined(MS_WIN32) && !defined(HAVE_SNPRINTF)
# define HAVE_SNPRINTF
# define snprintf _snprintf
# define vsnprintf _vsnprintf
#endif
373

374
#include <stdarg.h>
375
PyAPI_FUNC(int) PyOS_snprintf(char *str, size_t size, const char  *format, ...)
376
                        Py_GCC_ATTRIBUTE((format(printf, 3, 4)));
377
PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char  *format, va_list va)
378
                        Py_GCC_ATTRIBUTE((format(printf, 3, 0)));
379

380 381 382 383
#ifdef __cplusplus
}
#endif
#endif /* !Py_ERRORS_H */