2000-03-10 19:10:21 -04:00
|
|
|
/* ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
unicodedata -- Provides access to the Unicode 3.0 data base.
|
|
|
|
|
|
|
|
Data was extracted from the Unicode 3.0 UnicodeData.txt file.
|
|
|
|
|
2000-09-25 05:07:06 -03:00
|
|
|
Written by Marc-Andre Lemburg (mal@lemburg.com).
|
|
|
|
Modified for Python 2.0 by Fredrik Lundh (fredrik@pythonware.com)
|
2000-03-10 19:10:21 -04:00
|
|
|
|
2000-09-25 05:07:06 -03:00
|
|
|
Copyright (c) Corporation for National Research Initiatives.
|
2000-03-10 19:10:21 -04:00
|
|
|
|
|
|
|
------------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
|
2001-01-21 18:41:08 -04:00
|
|
|
typedef struct {
|
|
|
|
const unsigned char category; /* index into
|
|
|
|
_PyUnicode_CategoryNames */
|
|
|
|
const unsigned char combining; /* combining class value 0 - 255 */
|
|
|
|
const unsigned char bidirectional; /* index into
|
|
|
|
_PyUnicode_BidirectionalNames */
|
|
|
|
const unsigned char mirrored; /* true if mirrored in bidir mode */
|
|
|
|
} _PyUnicode_DatabaseRecord;
|
|
|
|
|
|
|
|
/* data file generated by Tools/unicode/makeunicodedata.py */
|
|
|
|
#include "unicodedata_db.h"
|
|
|
|
|
|
|
|
static const _PyUnicode_DatabaseRecord*
|
|
|
|
getrecord(PyUnicodeObject* v)
|
|
|
|
{
|
|
|
|
int code;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
code = (int) *PyUnicode_AS_UNICODE(v);
|
|
|
|
|
|
|
|
if (code < 0 || code >= 65536)
|
|
|
|
index = 0;
|
|
|
|
else {
|
|
|
|
index = index1[(code>>SHIFT)];
|
|
|
|
index = index2[(index<<SHIFT)+(code&((1<<SHIFT)-1))];
|
|
|
|
}
|
|
|
|
|
|
|
|
return &_PyUnicode_Database_Records[index];
|
|
|
|
}
|
|
|
|
|
2000-03-10 19:10:21 -04:00
|
|
|
/* --- Module API --------------------------------------------------------- */
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-21 18:41:08 -04:00
|
|
|
unicodedata_decimal(PyObject *self, PyObject *args)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
PyUnicodeObject *v;
|
|
|
|
PyObject *defobj = NULL;
|
|
|
|
long rc;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O!|O:decimal",
|
|
|
|
&PyUnicode_Type, &v, &defobj))
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
if (PyUnicode_GET_SIZE(v) != 1) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"need a single Unicode character as parameter");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
rc = Py_UNICODE_TODECIMAL(*PyUnicode_AS_UNICODE(v));
|
|
|
|
if (rc < 0) {
|
|
|
|
if (defobj == NULL) {
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"not a decimal");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
Py_INCREF(defobj);
|
|
|
|
return defobj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PyInt_FromLong(rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-21 18:41:08 -04:00
|
|
|
unicodedata_digit(PyObject *self, PyObject *args)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
PyUnicodeObject *v;
|
|
|
|
PyObject *defobj = NULL;
|
|
|
|
long rc;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O!|O:digit",
|
|
|
|
&PyUnicode_Type, &v, &defobj))
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
if (PyUnicode_GET_SIZE(v) != 1) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"need a single Unicode character as parameter");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
rc = Py_UNICODE_TODIGIT(*PyUnicode_AS_UNICODE(v));
|
|
|
|
if (rc < 0) {
|
|
|
|
if (defobj == NULL) {
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"not a digit");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
Py_INCREF(defobj);
|
|
|
|
return defobj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PyInt_FromLong(rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-21 18:41:08 -04:00
|
|
|
unicodedata_numeric(PyObject *self, PyObject *args)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
PyUnicodeObject *v;
|
|
|
|
PyObject *defobj = NULL;
|
|
|
|
double rc;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O!|O:numeric",
|
|
|
|
&PyUnicode_Type, &v, &defobj))
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
if (PyUnicode_GET_SIZE(v) != 1) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"need a single Unicode character as parameter");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
rc = Py_UNICODE_TONUMERIC(*PyUnicode_AS_UNICODE(v));
|
|
|
|
if (rc < 0) {
|
|
|
|
if (defobj == NULL) {
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"not a numeric character");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
Py_INCREF(defobj);
|
|
|
|
return defobj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PyFloat_FromDouble(rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-21 18:41:08 -04:00
|
|
|
unicodedata_category(PyObject *self, PyObject *args)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
PyUnicodeObject *v;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O!:category",
|
|
|
|
&PyUnicode_Type, &v))
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
if (PyUnicode_GET_SIZE(v) != 1) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"need a single Unicode character as parameter");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
2001-01-21 18:41:08 -04:00
|
|
|
index = (int) getrecord(v)->category;
|
2000-03-10 19:10:21 -04:00
|
|
|
return PyString_FromString(_PyUnicode_CategoryNames[index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-21 18:41:08 -04:00
|
|
|
unicodedata_bidirectional(PyObject *self, PyObject *args)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
PyUnicodeObject *v;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O!:bidirectional",
|
|
|
|
&PyUnicode_Type, &v))
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
if (PyUnicode_GET_SIZE(v) != 1) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"need a single Unicode character as parameter");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
2001-01-21 18:41:08 -04:00
|
|
|
index = (int) getrecord(v)->bidirectional;
|
2000-03-10 19:10:21 -04:00
|
|
|
return PyString_FromString(_PyUnicode_BidirectionalNames[index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-21 18:41:08 -04:00
|
|
|
unicodedata_combining(PyObject *self, PyObject *args)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
PyUnicodeObject *v;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O!:combining",
|
|
|
|
&PyUnicode_Type, &v))
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
if (PyUnicode_GET_SIZE(v) != 1) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"need a single Unicode character as parameter");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
2001-01-21 18:41:08 -04:00
|
|
|
return PyInt_FromLong((int) getrecord(v)->combining);
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-21 18:41:08 -04:00
|
|
|
unicodedata_mirrored(PyObject *self, PyObject *args)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
PyUnicodeObject *v;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O!:mirrored",
|
|
|
|
&PyUnicode_Type, &v))
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
if (PyUnicode_GET_SIZE(v) != 1) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"need a single Unicode character as parameter");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
2001-01-21 18:41:08 -04:00
|
|
|
return PyInt_FromLong((int) getrecord(v)->mirrored);
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-21 18:41:08 -04:00
|
|
|
unicodedata_decomposition(PyObject *self, PyObject *args)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
PyUnicodeObject *v;
|
2001-01-21 18:41:08 -04:00
|
|
|
char decomp[256];
|
|
|
|
int code, index, count, i;
|
2000-03-10 19:10:21 -04:00
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O!:decomposition",
|
|
|
|
&PyUnicode_Type, &v))
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
2000-03-10 19:10:21 -04:00
|
|
|
if (PyUnicode_GET_SIZE(v) != 1) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"need a single Unicode character as parameter");
|
2001-01-21 18:41:08 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
code = (int) *PyUnicode_AS_UNICODE(v);
|
|
|
|
|
|
|
|
if (code < 0 || code >= 65536)
|
|
|
|
index = 0;
|
|
|
|
else {
|
|
|
|
index = decomp_index1[(code>>DECOMP_SHIFT)];
|
|
|
|
index = decomp_index2[(index<<DECOMP_SHIFT)+
|
|
|
|
(code&((1<<DECOMP_SHIFT)-1))];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* high byte is of hex bytes (usually one or two), low byte
|
|
|
|
is prefix code (from*/
|
|
|
|
count = decomp_data[index] >> 8;
|
|
|
|
|
|
|
|
/* XXX: could allocate the PyString up front instead
|
|
|
|
(strlen(prefix) + 5 * count + 1 bytes) */
|
|
|
|
|
|
|
|
/* copy prefix */
|
|
|
|
i = strlen(decomp_prefix[decomp_data[index] & 255]);
|
|
|
|
memcpy(decomp, decomp_prefix[decomp_data[index] & 255], i);
|
|
|
|
|
|
|
|
while (count-- > 0) {
|
|
|
|
if (i)
|
|
|
|
decomp[i++] = ' ';
|
|
|
|
sprintf(decomp + i, "%04X", decomp_data[++index]);
|
|
|
|
i += strlen(decomp + i);
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
|
2001-01-21 18:41:08 -04:00
|
|
|
decomp[i] = '\0';
|
|
|
|
|
|
|
|
return PyString_FromString(decomp);
|
2000-03-10 19:10:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX Add doc strings. */
|
|
|
|
|
|
|
|
static PyMethodDef unicodedata_functions[] = {
|
|
|
|
{"decimal", unicodedata_decimal, 1},
|
|
|
|
{"digit", unicodedata_digit, 1},
|
|
|
|
{"numeric", unicodedata_numeric, 1},
|
|
|
|
{"category", unicodedata_category, 1},
|
|
|
|
{"bidirectional", unicodedata_bidirectional, 1},
|
|
|
|
{"combining", unicodedata_combining, 1},
|
|
|
|
{"mirrored", unicodedata_mirrored, 1},
|
|
|
|
{"decomposition", unicodedata_decomposition, 1},
|
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
DL_EXPORT(void)
|
2000-07-21 03:00:07 -03:00
|
|
|
initunicodedata(void)
|
2000-03-10 19:10:21 -04:00
|
|
|
{
|
|
|
|
Py_InitModule("unicodedata", unicodedata_functions);
|
|
|
|
}
|