| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 1 | #ifndef Py_CODECREGISTRY_H | 
 | 2 | #define Py_CODECREGISTRY_H | 
 | 3 | #ifdef __cplusplus | 
 | 4 | extern "C" { | 
 | 5 | #endif | 
 | 6 |  | 
 | 7 | /* ------------------------------------------------------------------------ | 
 | 8 |  | 
 | 9 |    Python Codec Registry and support functions | 
 | 10 |  | 
 | 11 |  | 
 | 12 | Written by Marc-Andre Lemburg (mal@lemburg.com). | 
 | 13 |  | 
| Guido van Rossum | 16b1ad9 | 2000-08-03 16:24:25 +0000 | [diff] [blame] | 14 | Copyright (c) Corporation for National Research Initiatives. | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 15 |  | 
 | 16 |    ------------------------------------------------------------------------ */ | 
 | 17 |  | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 18 | /* Register a new codec search function. | 
 | 19 |  | 
 | 20 |    As side effect, this tries to load the encodings package, if not | 
 | 21 |    yet done, to make sure that it is always first in the list of | 
 | 22 |    search functions. | 
 | 23 |  | 
 | 24 |    The search_function's refcount is incremented by this function. */ | 
 | 25 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 26 | PyAPI_FUNC(int) PyCodec_Register( | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 27 |        PyObject *search_function | 
 | 28 |        ); | 
 | 29 |  | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 30 | /* Codec register lookup API. | 
 | 31 |  | 
 | 32 |    Looks up the given encoding and returns a tuple (encoder, decoder, | 
 | 33 |    stream reader, stream writer) of functions which implement the | 
 | 34 |    different aspects of processing the encoding. | 
 | 35 |  | 
 | 36 |    The encoding string is looked up converted to all lower-case | 
 | 37 |    characters. This makes encodings looked up through this mechanism | 
 | 38 |    effectively case-insensitive. | 
 | 39 |  | 
 | 40 |    If no codec is found, a KeyError is set and NULL returned.  | 
 | 41 |  | 
 | 42 |    As side effect, this tries to load the encodings package, if not | 
 | 43 |    yet done. This is part of the lazy load strategy for the encodings | 
 | 44 |    package. | 
 | 45 |  | 
 | 46 |  */ | 
 | 47 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 48 | PyAPI_FUNC(PyObject *) _PyCodec_Lookup( | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 49 |        const char *encoding | 
 | 50 |        ); | 
 | 51 |  | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 52 | /* Generic codec based encoding API. | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 53 |  | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 54 |    object is passed through the encoder function found for the given | 
 | 55 |    encoding using the error handling method defined by errors. errors | 
 | 56 |    may be NULL to use the default method defined for the codec. | 
 | 57 |     | 
 | 58 |    Raises a LookupError in case no encoder can be found. | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 59 |  | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 60 |  */ | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 61 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 62 | PyAPI_FUNC(PyObject *) PyCodec_Encode( | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 63 |        PyObject *object, | 
 | 64 |        const char *encoding, | 
 | 65 |        const char *errors | 
 | 66 |        ); | 
 | 67 |  | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 68 | /* Generic codec based decoding API. | 
 | 69 |  | 
 | 70 |    object is passed through the decoder function found for the given | 
 | 71 |    encoding using the error handling method defined by errors. errors | 
 | 72 |    may be NULL to use the default method defined for the codec. | 
 | 73 |     | 
 | 74 |    Raises a LookupError in case no encoder can be found. | 
 | 75 |  | 
 | 76 |  */ | 
 | 77 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 78 | PyAPI_FUNC(PyObject *) PyCodec_Decode( | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 79 |        PyObject *object, | 
 | 80 |        const char *encoding, | 
 | 81 |        const char *errors | 
 | 82 |        ); | 
 | 83 |  | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 84 | /* --- Codec Lookup APIs --------------------------------------------------  | 
 | 85 |  | 
 | 86 |    All APIs return a codec object with incremented refcount and are | 
 | 87 |    based on _PyCodec_Lookup().  The same comments w/r to the encoding | 
 | 88 |    name also apply to these APIs. | 
 | 89 |  | 
 | 90 | */ | 
 | 91 |  | 
 | 92 | /* Get an encoder function for the given encoding. */ | 
 | 93 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 94 | PyAPI_FUNC(PyObject *) PyCodec_Encoder( | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 95 |        const char *encoding | 
 | 96 |        ); | 
 | 97 |  | 
 | 98 | /* Get a decoder function for the given encoding. */ | 
 | 99 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 100 | PyAPI_FUNC(PyObject *) PyCodec_Decoder( | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 101 |        const char *encoding | 
 | 102 |        ); | 
 | 103 |  | 
 | 104 | /* Get a StreamReader factory function for the given encoding. */ | 
 | 105 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 106 | PyAPI_FUNC(PyObject *) PyCodec_StreamReader( | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 107 |        const char *encoding, | 
 | 108 |        PyObject *stream, | 
 | 109 |        const char *errors | 
 | 110 |        ); | 
 | 111 |  | 
 | 112 | /* Get a StreamWriter factory function for the given encoding. */ | 
 | 113 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 114 | PyAPI_FUNC(PyObject *) PyCodec_StreamWriter( | 
| Fred Drake | 3ac3edc | 2000-05-09 19:51:10 +0000 | [diff] [blame] | 115 |        const char *encoding, | 
 | 116 |        PyObject *stream, | 
 | 117 |        const char *errors | 
 | 118 |        ); | 
 | 119 |  | 
| Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 120 | /* Unicode encoding error handling callback registry API */ | 
 | 121 |  | 
 | 122 | /* Register the error handling callback function error under the name | 
 | 123 |    name. This function will be called by the codec when it encounters | 
 | 124 |    unencodable characters/undecodable bytes and doesn't know the | 
 | 125 |    callback name, when name is specified as the error parameter | 
 | 126 |    in the call to the encode/decode function. | 
 | 127 |    Return 0 on success, -1 on error */ | 
 | 128 | PyAPI_FUNC(int) PyCodec_RegisterError(const char *name, PyObject *error); | 
 | 129 |  | 
 | 130 | /* Lookup the error handling callback function registered under the | 
 | 131 |    name error. As a special case NULL can be passed, in which case | 
 | 132 |    the error handling callback for "strict" will be returned. */ | 
 | 133 | PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name); | 
 | 134 |  | 
 | 135 | /* raise exc as an exception */ | 
 | 136 | PyAPI_FUNC(PyObject *) PyCodec_StrictErrors(PyObject *exc); | 
 | 137 |  | 
 | 138 | /* ignore the unicode error, skipping the faulty input */ | 
 | 139 | PyAPI_FUNC(PyObject *) PyCodec_IgnoreErrors(PyObject *exc); | 
 | 140 |  | 
 | 141 | /* replace the unicode error with ? or U+FFFD */ | 
 | 142 | PyAPI_FUNC(PyObject *) PyCodec_ReplaceErrors(PyObject *exc); | 
 | 143 |  | 
 | 144 | /* replace the unicode encode error with XML character references */ | 
 | 145 | PyAPI_FUNC(PyObject *) PyCodec_XMLCharRefReplaceErrors(PyObject *exc); | 
 | 146 |  | 
 | 147 | /* replace the unicode encode error with backslash escapes (\x, \u and \U) */ | 
 | 148 | PyAPI_FUNC(PyObject *) PyCodec_BackslashReplaceErrors(PyObject *exc); | 
 | 149 |  | 
| Guido van Rossum | 3094484 | 2000-03-10 22:32:23 +0000 | [diff] [blame] | 150 | #ifdef __cplusplus | 
 | 151 | } | 
 | 152 | #endif | 
 | 153 | #endif /* !Py_CODECREGISTRY_H */ |