Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 1 | /** |
| 2 | * jinja2._speedups |
| 3 | * ~~~~~~~~~~~~~~~~ |
| 4 | * |
Armin Ronacher | 5411ce7 | 2008-05-25 11:36:22 +0200 | [diff] [blame] | 5 | * This module implements functions for automatic escaping in C for better |
| 6 | * performance. Additionally it defines a `tb_set_next` function to patch the |
| 7 | * debug traceback. If the speedups module is not compiled a ctypes |
| 8 | * implementation of `tb_set_next` and Python implementations of the other |
| 9 | * functions are used. |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 10 | * |
Armin Ronacher | 62ccd1b | 2009-01-04 14:26:19 +0100 | [diff] [blame] | 11 | * :copyright: (c) 2009 by the Jinja Team. |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 12 | * :license: BSD. |
| 13 | */ |
| 14 | |
| 15 | #include <Python.h> |
| 16 | |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 17 | #define ESCAPED_CHARS_TABLE_SIZE 63 |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 18 | #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 19 | |
Armin Ronacher | f4e1fb4 | 2008-06-09 18:54:56 +0200 | [diff] [blame] | 20 | #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) |
| 21 | typedef int Py_ssize_t; |
| 22 | #define PY_SSIZE_T_MAX INT_MAX |
| 23 | #define PY_SSIZE_T_MIN INT_MIN |
| 24 | #endif |
| 25 | |
| 26 | |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 27 | static PyObject* markup; |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 28 | static Py_ssize_t escaped_chars_delta_len[ESCAPED_CHARS_TABLE_SIZE]; |
| 29 | static Py_UNICODE *escaped_chars_repl[ESCAPED_CHARS_TABLE_SIZE]; |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 30 | |
| 31 | static int |
| 32 | init_constants(void) |
| 33 | { |
Armin Ronacher | 3111f43 | 2008-06-09 20:23:28 +0200 | [diff] [blame] | 34 | PyObject *module; |
Armin Ronacher | f35e281 | 2008-05-06 16:04:10 +0200 | [diff] [blame] | 35 | /* happing of characters to replace */ |
| 36 | escaped_chars_repl['"'] = UNICHR("""); |
| 37 | escaped_chars_repl['\''] = UNICHR("'"); |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 38 | escaped_chars_repl['&'] = UNICHR("&"); |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 39 | escaped_chars_repl['<'] = UNICHR("<"); |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 40 | escaped_chars_repl['>'] = UNICHR(">"); |
Armin Ronacher | f35e281 | 2008-05-06 16:04:10 +0200 | [diff] [blame] | 41 | |
| 42 | /* lengths of those characters when replaced - 1 */ |
| 43 | memset(escaped_chars_delta_len, 0, sizeof (escaped_chars_delta_len)); |
| 44 | escaped_chars_delta_len['"'] = escaped_chars_delta_len['\''] = \ |
| 45 | escaped_chars_delta_len['&'] = 4; |
| 46 | escaped_chars_delta_len['<'] = escaped_chars_delta_len['>'] = 3; |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 47 | |
Armin Ronacher | f35e281 | 2008-05-06 16:04:10 +0200 | [diff] [blame] | 48 | /* import markup type so that we can mark the return value */ |
Armin Ronacher | 3111f43 | 2008-06-09 20:23:28 +0200 | [diff] [blame] | 49 | module = PyImport_ImportModule("jinja2.utils"); |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 50 | if (!module) |
| 51 | return 0; |
| 52 | markup = PyObject_GetAttrString(module, "Markup"); |
| 53 | Py_DECREF(module); |
| 54 | |
| 55 | return 1; |
| 56 | } |
| 57 | |
| 58 | static PyObject* |
| 59 | escape_unicode(PyUnicodeObject *in) |
| 60 | { |
| 61 | PyUnicodeObject *out; |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 62 | Py_UNICODE *inp = in->str; |
| 63 | const Py_UNICODE *inp_end = in->str + in->length; |
| 64 | Py_UNICODE *next_escp; |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 65 | Py_UNICODE *outp; |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 66 | Py_ssize_t delta=0, erepl=0, delta_len=0; |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 67 | |
| 68 | /* First we need to figure out how long the escaped string will be */ |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 69 | while (*(inp) || inp < inp_end) { |
| 70 | if (*inp < ESCAPED_CHARS_TABLE_SIZE && escaped_chars_delta_len[*inp]) { |
| 71 | delta += escaped_chars_delta_len[*inp]; |
Armin Ronacher | f59bac2 | 2008-04-20 13:11:43 +0200 | [diff] [blame] | 72 | ++erepl; |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 73 | } |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 74 | ++inp; |
| 75 | } |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 76 | |
| 77 | /* Do we need to escape anything at all? */ |
| 78 | if (!erepl) { |
| 79 | Py_INCREF(in); |
| 80 | return (PyObject*)in; |
| 81 | } |
| 82 | |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 83 | out = (PyUnicodeObject*)PyUnicode_FromUnicode(NULL, in->length + delta); |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 84 | if (!out) |
| 85 | return NULL; |
| 86 | |
| 87 | outp = out->str; |
| 88 | inp = in->str; |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 89 | while (erepl-- > 0) { |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 90 | /* look for the next substitution */ |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 91 | next_escp = inp; |
| 92 | while (next_escp < inp_end) { |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 93 | if (*next_escp < ESCAPED_CHARS_TABLE_SIZE && |
| 94 | (delta_len = escaped_chars_delta_len[*next_escp])) { |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 95 | ++delta_len; |
| 96 | break; |
| 97 | } |
| 98 | ++next_escp; |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 99 | } |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 100 | |
| 101 | if (next_escp > inp) { |
| 102 | /* copy unescaped chars between inp and next_escp */ |
| 103 | Py_UNICODE_COPY(outp, inp, next_escp-inp); |
Armin Ronacher | e62b7ef | 2008-05-24 20:47:29 +0200 | [diff] [blame] | 104 | outp += next_escp - inp; |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | /* escape 'next_escp' */ |
| 108 | Py_UNICODE_COPY(outp, escaped_chars_repl[*next_escp], delta_len); |
| 109 | outp += delta_len; |
| 110 | |
| 111 | inp = next_escp + 1; |
| 112 | } |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 113 | if (inp < inp_end) |
Mickaël Guérin | c0d40d3 | 2008-05-05 17:08:51 +0200 | [diff] [blame] | 114 | Py_UNICODE_COPY(outp, inp, in->length - (inp - in->str)); |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 115 | |
| 116 | return (PyObject*)out; |
| 117 | } |
| 118 | |
| 119 | |
| 120 | static PyObject* |
Armin Ronacher | f59bac2 | 2008-04-20 13:11:43 +0200 | [diff] [blame] | 121 | escape(PyObject *self, PyObject *text) |
| 122 | { |
Armin Ronacher | 3111f43 | 2008-06-09 20:23:28 +0200 | [diff] [blame] | 123 | PyObject *s = NULL, *rv = NULL, *html; |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 124 | |
| 125 | /* we don't have to escape integers, bools or floats */ |
| 126 | if (PyInt_CheckExact(text) || PyLong_CheckExact(text) || |
| 127 | PyFloat_CheckExact(text) || PyBool_Check(text) || |
Armin Ronacher | 7ceced5 | 2008-05-03 10:15:31 +0200 | [diff] [blame] | 128 | text == Py_None) |
| 129 | return PyObject_CallFunctionObjArgs(markup, text, NULL); |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 130 | |
| 131 | /* if the object has an __html__ method that performs the escaping */ |
Armin Ronacher | 3111f43 | 2008-06-09 20:23:28 +0200 | [diff] [blame] | 132 | html = PyObject_GetAttrString(text, "__html__"); |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 133 | if (html) { |
| 134 | rv = PyObject_CallObject(html, NULL); |
| 135 | Py_DECREF(html); |
| 136 | return rv; |
| 137 | } |
| 138 | |
| 139 | /* otherwise make the object unicode if it isn't, then escape */ |
| 140 | PyErr_Clear(); |
| 141 | if (!PyUnicode_Check(text)) { |
| 142 | PyObject *unicode = PyObject_Unicode(text); |
| 143 | if (!unicode) |
| 144 | return NULL; |
| 145 | s = escape_unicode((PyUnicodeObject*)unicode); |
| 146 | Py_DECREF(unicode); |
| 147 | } |
| 148 | else |
| 149 | s = escape_unicode((PyUnicodeObject*)text); |
| 150 | |
| 151 | /* convert the unicode string into a markup object. */ |
Armin Ronacher | 7ceced5 | 2008-05-03 10:15:31 +0200 | [diff] [blame] | 152 | rv = PyObject_CallFunctionObjArgs(markup, (PyObject*)s, NULL); |
| 153 | Py_DECREF(s); |
| 154 | return rv; |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | |
Armin Ronacher | f35e281 | 2008-05-06 16:04:10 +0200 | [diff] [blame] | 158 | static PyObject* |
| 159 | soft_unicode(PyObject *self, PyObject *s) |
| 160 | { |
| 161 | if (!PyUnicode_Check(s)) |
| 162 | return PyObject_Unicode(s); |
| 163 | Py_INCREF(s); |
| 164 | return s; |
| 165 | } |
| 166 | |
| 167 | |
Armin Ronacher | d71fff0 | 2008-05-26 23:57:07 +0200 | [diff] [blame] | 168 | static PyObject* |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 169 | tb_set_next(PyObject *self, PyObject *args) |
| 170 | { |
| 171 | PyTracebackObject *tb, *old; |
| 172 | PyObject *next; |
| 173 | |
| 174 | if (!PyArg_ParseTuple(args, "O!O:tb_set_next", &PyTraceBack_Type, &tb, &next)) |
| 175 | return NULL; |
| 176 | if (next == Py_None) |
| 177 | next = NULL; |
| 178 | else if (!PyTraceBack_Check(next)) { |
| 179 | PyErr_SetString(PyExc_TypeError, |
| 180 | "tb_set_next arg 2 must be traceback or None"); |
| 181 | return NULL; |
| 182 | } |
| 183 | else |
| 184 | Py_INCREF(next); |
| 185 | |
| 186 | old = tb->tb_next; |
| 187 | tb->tb_next = (PyTracebackObject*)next; |
| 188 | Py_XDECREF(old); |
| 189 | |
| 190 | Py_INCREF(Py_None); |
| 191 | return Py_None; |
| 192 | } |
| 193 | |
| 194 | |
| 195 | static PyMethodDef module_methods[] = { |
Armin Ronacher | f59bac2 | 2008-04-20 13:11:43 +0200 | [diff] [blame] | 196 | {"escape", (PyCFunction)escape, METH_O, |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 197 | "escape(s) -> markup\n\n" |
Armin Ronacher | 9bb7e47 | 2008-05-28 11:26:59 +0200 | [diff] [blame] | 198 | "Convert the characters &, <, >, ', and \" in string s to HTML-safe\n" |
Armin Ronacher | f35e281 | 2008-05-06 16:04:10 +0200 | [diff] [blame] | 199 | "sequences. Use this if you need to display text that might contain\n" |
Armin Ronacher | 9a1e33c | 2008-05-05 22:00:46 +0200 | [diff] [blame] | 200 | "such characters in HTML. Marks return value as markup string."}, |
Armin Ronacher | f59bac2 | 2008-04-20 13:11:43 +0200 | [diff] [blame] | 201 | {"soft_unicode", (PyCFunction)soft_unicode, METH_O, |
| 202 | "soft_unicode(object) -> string\n\n" |
| 203 | "Make a string unicode if it isn't already. That way a markup\n" |
| 204 | "string is not converted back to unicode."}, |
Armin Ronacher | bd33f11 | 2008-04-18 09:17:32 +0200 | [diff] [blame] | 205 | {"tb_set_next", (PyCFunction)tb_set_next, METH_VARARGS, |
| 206 | "Set the tb_next member of a traceback object."}, |
| 207 | {NULL, NULL, 0, NULL} /* Sentinel */ |
| 208 | }; |
| 209 | |
| 210 | |
| 211 | #ifndef PyMODINIT_FUNC /* declarations for DLL import/export */ |
| 212 | #define PyMODINIT_FUNC void |
| 213 | #endif |
| 214 | PyMODINIT_FUNC |
| 215 | init_speedups(void) |
| 216 | { |
| 217 | if (!init_constants()) |
| 218 | return; |
| 219 | |
| 220 | Py_InitModule3("jinja2._speedups", module_methods, ""); |
| 221 | } |