summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2000-08-03 18:46:08 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2000-08-03 18:46:08 (GMT)
commitbff879cabba567f1c57ae41c3c69bb1ac275860a (patch)
treef77dca0c907d47543bfe2d4acf40685d5e3c24ef /Objects/unicodeobject.c
parent2b83b4601f9f588b46667b541b100b5924019a14 (diff)
downloadcpython-bff879cabba567f1c57ae41c3c69bb1ac275860a.zip
cpython-bff879cabba567f1c57ae41c3c69bb1ac275860a.tar.gz
cpython-bff879cabba567f1c57ae41c3c69bb1ac275860a.tar.bz2
This patch finalizes the move from UTF-8 to a default encoding in
the Python Unicode implementation. The internal buffer used for implementing the buffer protocol is renamed to defenc to make this change visible. It now holds the default encoded version of the Unicode object and is calculated on demand (NULL otherwise). Since the default encoding defaults to ASCII, this will mean that Unicode objects which hold non-ASCII characters will no longer work on C APIs using the "s" or "t" parser markers. C APIs must now explicitly provide Unicode support via the "u", "U" or "es"/"es#" parser markers in order to work with non-ASCII Unicode strings. (Note: this patch will also have to be applied to the 1.6 branch of the CVS tree.)
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c80
1 files changed, 40 insertions, 40 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 1adc743..83efa81 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -165,9 +165,9 @@ int _PyUnicode_Resize(register PyUnicodeObject *unicode,
reset:
/* Reset the object caches */
- if (unicode->utf8str) {
- Py_DECREF(unicode->utf8str);
- unicode->utf8str = NULL;
+ if (unicode->defenc) {
+ Py_DECREF(unicode->defenc);
+ unicode->defenc = NULL;
}
unicode->hash = -1;
@@ -243,7 +243,7 @@ PyUnicodeObject *_PyUnicode_New(int length)
unicode->str[length] = 0;
unicode->length = length;
unicode->hash = -1;
- unicode->utf8str = NULL;
+ unicode->defenc = NULL;
return unicode;
onError:
@@ -262,9 +262,9 @@ void _PyUnicode_Free(register PyUnicodeObject *unicode)
unicode->str = NULL;
unicode->length = 0;
}
- if (unicode->utf8str) {
- Py_DECREF(unicode->utf8str);
- unicode->utf8str = NULL;
+ if (unicode->defenc) {
+ Py_DECREF(unicode->defenc);
+ unicode->defenc = NULL;
}
/* Add to free list */
*(PyUnicodeObject **)unicode = unicode_freelist;
@@ -273,7 +273,7 @@ void _PyUnicode_Free(register PyUnicodeObject *unicode)
}
else {
PyMem_DEL(unicode->str);
- Py_XDECREF(unicode->utf8str);
+ Py_XDECREF(unicode->defenc);
PyObject_DEL(unicode);
}
}
@@ -529,6 +529,33 @@ PyObject *PyUnicode_AsEncodedString(PyObject *unicode,
return NULL;
}
+/* Return a Python string holding the default encoded value of the
+ Unicode object.
+
+ The resulting string is cached in the Unicode object for subsequent
+ usage by this function. The cached version is needed to implement
+ the character buffer interface and will live (at least) as long as
+ the Unicode object itself.
+
+ The refcount of the string is *not* incremented.
+
+ *** Exported for internal use by the interpreter only !!! ***
+
+*/
+
+PyObject *_PyUnicode_AsDefaultEncodedString(PyObject *unicode,
+ const char *errors)
+{
+ PyObject *v = ((PyUnicodeObject *)unicode)->defenc;
+
+ if (v)
+ return v;
+ v = PyUnicode_AsEncodedString(unicode, NULL, errors);
+ if (v && errors == NULL)
+ ((PyUnicodeObject *)unicode)->defenc = v;
+ return v;
+}
+
Py_UNICODE *PyUnicode_AsUnicode(PyObject *unicode)
{
if (!PyUnicode_Check(unicode)) {
@@ -874,35 +901,6 @@ PyObject *PyUnicode_EncodeUTF8(const Py_UNICODE *s,
return NULL;
}
-/* Return a Python string holding the UTF-8 encoded value of the
- Unicode object.
-
- The resulting string is cached in the Unicode object for subsequent
- usage by this function. The cached version is needed to implement
- the character buffer interface and will live (at least) as long as
- the Unicode object itself.
-
- The refcount of the string is *not* incremented.
-
- *** Exported for internal use by the interpreter only !!! ***
-
-*/
-
-PyObject *_PyUnicode_AsUTF8String(PyObject *unicode,
- const char *errors)
-{
- PyObject *v = ((PyUnicodeObject *)unicode)->utf8str;
-
- if (v)
- return v;
- v = PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode),
- PyUnicode_GET_SIZE(unicode),
- errors);
- if (v && errors == NULL)
- ((PyUnicodeObject *)unicode)->utf8str = v;
- return v;
-}
-
PyObject *PyUnicode_AsUTF8String(PyObject *unicode)
{
PyObject *str;
@@ -911,7 +909,9 @@ PyObject *PyUnicode_AsUTF8String(PyObject *unicode)
PyErr_BadArgument();
return NULL;
}
- str = _PyUnicode_AsUTF8String(unicode, NULL);
+ str = PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode),
+ PyUnicode_GET_SIZE(unicode),
+ NULL);
if (str == NULL)
return NULL;
Py_INCREF(str);
@@ -4519,7 +4519,7 @@ unicode_buffer_getcharbuf(PyUnicodeObject *self,
"accessing non-existent unicode segment");
return -1;
}
- str = _PyUnicode_AsUTF8String((PyObject *)self, NULL);
+ str = _PyUnicode_AsDefaultEncodedString((PyObject *)self, NULL);
if (str == NULL)
return -1;
*ptr = (void *) PyString_AS_STRING(str);
@@ -5130,7 +5130,7 @@ _PyUnicode_Fini(void)
u = *(PyUnicodeObject **)u;
if (v->str)
PyMem_DEL(v->str);
- Py_XDECREF(v->utf8str);
+ Py_XDECREF(v->defenc);
PyObject_DEL(v);
}
unicode_freelist = NULL;