/[thuban]/branches/WIP-pyshapelib-bramz/libraries/pyshapelib/dbflibmodule.c
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/libraries/pyshapelib/dbflibmodule.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2749 by bramz, Thu Mar 22 19:03:27 2007 UTC revision 2754 by bramz, Wed Apr 11 19:04:12 2007 UTC
# Line 1  Line 1 
1    /* Copyright (c) 2001, 2002, 2007 by Intevation GmbH
2     * Authors:
3     * Bram de Greve <[email protected]>
4     * Bernhard Herzog <[email protected]>
5     *
6     * This program is free software under the GPL (>=v2)
7     * Read the file COPYING coming with Thuban for details.
8     */
9    
10  #include "pyshapelib_common.h"  #include "pyshapelib_common.h"
11    
12    /* UNICODE & LANGUAGE DRIVER SUPPORT FOR DBFLIB
13     *
14     * When writing Unicode objects to a dbflib database, the unicode has to be
15     * encoded in 8-bit characters using a code page.  This code page is indentified
16     * by the Language Driver ID (LDID) field in the database header.
17     *
18     * At this moment, this need unofficial modifications of the maptools shapelib
19     * library because they do not read the LDID.  No patch has been submitted yet,
20     * but the version contained in the Thuban source tree incorporates the required
21     * modifications.
22     *
23     * pyshapelib is designed to compile with either the patched or unpatched shapelib
24     * by defining HAVE_LANGUAGE_DRIVER as true or false respectively.  In the latter
25     * case, a Windows ANSI code page (cp1252) is assumed
26     */
27     #if HAVE_LANGUAGE_DRIVER
28    
29    #define PYSHAPELIB_NUM_LANGUAGE_DRIVERS 256
30    
31    #define PYSHAPELIB_ADD_LANGUAGE_DRIVER(ldid, codec, name)\
32            codecs[ldid] = codec;\
33            drivers[ldid] = "LDID_" name;\
34            PyModule_AddIntConstant(module, "LDID_" name, ldid)
35    
36    static char* codecs[PYSHAPELIB_NUM_LANGUAGE_DRIVERS];
37    static char* drivers[PYSHAPELIB_NUM_LANGUAGE_DRIVERS];
38    
39    #endif
40    
41    
42    
43    /** Determine name of Python's built-in codec
44     */
45    static char* get_codec(DBFHandle handle)
46    {
47    #if HAVE_LANGUAGE_DRIVER
48            if (!codecs[handle->nLanguageDriver])
49            {
50                    PyErr_Format(PyExc_ValueError, "Language Driver ID %d not recognized", handle->nLanguageDriver);
51            }
52            return codecs[handle->nLanguageDriver];
53    #else
54            return "cp1252";
55    #endif
56    }
57    
58    
59    
60    /** decode to unicode object
61     */
62    static PyObject* decode_string(DBFHandle handle, const char* string)
63    {
64            char* codec = get_codec(handle);
65            if (!codec) return NULL;
66            return PyUnicode_Decode(string, strlen(string), codec, NULL);
67    }
68    
69    /** encode unicode object to normal Python string object
70     */
71    static PyObject* encode_string(DBFHandle handle, PyObject* string)
72    {
73            char* codec = get_codec(handle);
74            if (!codec) return NULL;
75    
76            if (PyString_Check(string))
77            {
78                    return PyString_AsEncodedObject(string, codec, NULL);
79            }
80            if (PyUnicode_Check(string))
81            {
82                    return PyUnicode_AsEncodedString(string, codec, NULL);
83            }
84    
85            PyErr_SetString(PyExc_TypeError, "value is neither a string or unicode object");
86            return NULL;
87    }
88    
89    
90    
91  /* --- DBFFile ------------------------------------------------------------------------------------------------------- */  /* --- DBFFile ------------------------------------------------------------------------------------------------------- */
92    
93  typedef struct {  typedef struct {
# Line 36  static void dbffile_dealloc(DBFFileObjec Line 124  static void dbffile_dealloc(DBFFileObjec
124  */  */
125  static int dbffile_init(DBFFileObject* self, PyObject* args, PyObject* kwds)  static int dbffile_init(DBFFileObject* self, PyObject* args, PyObject* kwds)
126  {  {
127          char* file;          char* file = NULL;
128          char* mode = "rb";          char* mode = "rb";
129          static char *kwlist[] = {"name", "mode", NULL};          static char *kwlist[] = {"name", "mode", NULL};
130          if (!PyArg_ParseTupleAndKeywords(args, kwds, "et|s:__init__", kwlist,  
131                  Py_FileSystemDefaultEncoding, &file, &mode)) return -1;          DBFClose(self->handle);
132                    self->handle = NULL;
133          self->handle = DBFOpen(file, mode);      
134    #if defined(SHPAPI_HAS_WIDE) && defined(Py_WIN_WIDE_FILENAMES)
135            if (GetVersion() < 0x80000000) {    /* On NT, so wide API available */
136                    PyObject *wfile;
137                    if (PyArg_ParseTupleAndKeywords(args, kwds, "U|s:DBFFile", kwlist, &wfile, &mode))
138                    {
139                            PyObject *wmode = PyUnicode_DecodeASCII(mode, strlen(mode), NULL);
140                            if (!wmode) return -1;
141                            self->handle = DBFOpenW(PyUnicode_AS_UNICODE(wfile), PyUnicode_AS_UNICODE(wmode));
142                            Py_DECREF(wmode);
143                            if (!self->handle)
144                            {
145                                    PyErr_SetFromErrnoWithFilenameObject(PyExc_IOError, wfile);
146                                    return -1;
147                            }
148                    }
149                    else
150                    {
151                            /* Drop the argument parsing error as narrow
152                               strings are also valid. */
153                            PyErr_Clear();
154                    }
155            }
156    #endif
157    
158          if (!self->handle)          if (!self->handle)
159          {          {
160                  PyErr_SetFromErrnoWithFilename(PyExc_IOError, file);                  if (!PyArg_ParseTupleAndKeywords(args, kwds, "et|s:DBFFile", kwlist,
161                            Py_FileSystemDefaultEncoding, &file, &mode)) return -1;
162                    self->handle = DBFOpen(file, mode);
163    
164                    if (!self->handle)
165                    {
166                            PyErr_SetFromErrnoWithFilename(PyExc_IOError, file);
167                            PyMem_Free(file);
168                            return -1;
169                    }
170    
171                    PyMem_Free(file);
172          }          }
173    
174          PyMem_Free(file);          return 0;
         return self->handle ? 0 : -1;  
175  }  }
176    
177    
# Line 81  static PyObject* dbffile_field_info(DBFF Line 203  static PyObject* dbffile_field_info(DBFF
203  {  {
204          char field_name[12];          char field_name[12];
205          int field, width = 0, decimals = 0, field_type;          int field, width = 0, decimals = 0, field_type;
206            PyObject* name_object = NULL;
207                    
208          if (!PyArg_ParseTuple(args, "i:field_info", &field)) return NULL;          if (!PyArg_ParseTuple(args, "i:field_info", &field)) return NULL;
209                    
210          field_name[0] = '\0';          field_name[0] = '\0';
211          field_type = DBFGetFieldInfo(self->handle, field, field_name, &width, &decimals);          field_type = DBFGetFieldInfo(self->handle, field, field_name, &width, &decimals);
212            name_object = decode_string(self->handle, field_name);
213                    
214          return Py_BuildValue("isii", field_type, field_name, width, decimals);          return Py_BuildValue("iOii", field_type, name_object, width, decimals);
215  }  }
216    
217    
218    
219  static PyObject* dbffile_add_field(DBFFileObject* self, PyObject* args)  static PyObject* dbffile_add_field(DBFFileObject* self, PyObject* args)
220  {  {
221          char* name;          PyObject *oname = NULL, *name = NULL;
222          int type, width, decimals;          int type, width, decimals;
223          int field;          int field;
224                    
225          if (!PyArg_ParseTuple(args, "siii:add_field", &name, &type, &width, &decimals)) return NULL;          if (!PyArg_ParseTuple(args, "Uiii:add_field", &oname, &type, &width, &decimals))
226            {
227                    PyErr_Clear();
228                    if (!PyArg_ParseTuple(args, "Siii:add_field", &oname, &type, &width, &decimals)) return NULL;
229            }
230                    
231          field = DBFAddField(self->handle, name, (DBFFieldType)type, width, decimals);          name = encode_string(self->handle, oname);
232            if (!name) return NULL;
233    
234            field = DBFAddField(self->handle, PyString_AsString(name), (DBFFieldType)type, width, decimals);
235            Py_DECREF(name);
236                    
237          if (field < 0)          if (field < 0)
238          {          {
# Line 124  static PyObject* dbffile_add_field(DBFFi Line 256  static PyObject* dbffile_add_field(DBFFi
256  static PyObject* do_read_attribute(DBFHandle handle, int record, int field, char * name)  static PyObject* do_read_attribute(DBFHandle handle, int record, int field, char * name)
257  {  {
258          int type, width;          int type, width;
259          const char* temp;          const char* string;
260          type = DBFGetFieldInfo(handle, field, name, &width, NULL);          type = DBFGetFieldInfo(handle, field, name, &width, NULL);
261                    
262          /* For strings NULL and the empty string are indistinguishable          /* For strings NULL and the empty string are indistinguishable
# Line 141  static PyObject* do_read_attribute(DBFHa Line 273  static PyObject* do_read_attribute(DBFHa
273                  switch (type)                  switch (type)
274                  {                  {
275                  case FTString:                  case FTString:
276                          temp = DBFReadStringAttribute(handle, record, field);                          string = DBFReadStringAttribute(handle, record, field);
277                          if (temp) return PyString_FromString(temp);                          if (string) return decode_string(handle, string);
278    
279                  case FTInteger:                  case FTInteger:
280                          return PyInt_FromLong((long)DBFReadIntegerAttribute(handle, record, field));                          return PyInt_FromLong((long)DBFReadIntegerAttribute(handle, record, field));
# Line 151  static PyObject* do_read_attribute(DBFHa Line 283  static PyObject* do_read_attribute(DBFHa
283                          return PyFloat_FromDouble(DBFReadDoubleAttribute(handle, record, field));                          return PyFloat_FromDouble(DBFReadDoubleAttribute(handle, record, field));
284                                                    
285                  case FTLogical:                  case FTLogical:
286                          temp = DBFReadLogicalAttribute(handle, record, field);                          string = DBFReadLogicalAttribute(handle, record, field);
287                          if (temp)                          if (string)
288                          {                          {
289                                  switch (temp[0])                                  switch (string[0])
290                                  {                                  {
291                                  case 'F':                                  case 'F':
292                                  case 'N':                                  case 'N':
# Line 254  fail: Line 386  fail:
386    
387    
388  /* write a single field of a record. */  /* write a single field of a record. */
389  static int do_write_field(DBFHandle handle, int record, int field, int type, PyObject* value)  static int do_write_attribute(DBFHandle handle, int record, int field, int type, PyObject* value)
390  {  {
391          char * string_value;          PyObject* string_value = NULL;
392          int int_value;          int int_value;
393          double double_value;          double double_value;
394          int logical_value;          int logical_value;
# Line 270  static int do_write_field(DBFHandle hand Line 402  static int do_write_field(DBFHandle hand
402                  switch (type)                  switch (type)
403                  {                  {
404                  case FTString:                  case FTString:
405                          string_value = PyString_AsString(value);                          string_value = encode_string(handle, value);
406                          if (!string_value) return 0;                          if (!string_value) return 0;
407                          if (DBFWriteStringAttribute(handle, record, field, string_value)) return 1;                          if (DBFWriteStringAttribute(handle, record, field, PyString_AsString(string_value)))
408                            {
409                                    Py_DECREF(string_value);
410                                    return 1;
411                            }
412                            Py_DECREF(string_value);
413                          break;                          break;
414    
415                  case FTInteger:                  case FTInteger:
# Line 305  static int do_write_field(DBFHandle hand Line 442  static int do_write_field(DBFHandle hand
442    
443    
444    
445  static PyObject* dbffile_write_field(DBFFileObject* self, PyObject* args)  static PyObject* dbffile_write_attribute(DBFFileObject* self, PyObject* args)
446  {  {
447          int record, field;          int record, field;
448          PyObject* value;          PyObject* value;
449          int type;          int type;
450    
451          if (!PyArg_ParseTuple(args, "iiO:write_field", &record, &field, &value)) return NULL;          if (!PyArg_ParseTuple(args, "iiO:write_attribute", &record, &field, &value)) return NULL;
452                    
453          if (field < 0 || field >= DBFGetFieldCount(self->handle))          if (field < 0 || field >= DBFGetFieldCount(self->handle))
454          {          {
# Line 322  static PyObject* dbffile_write_field(DBF Line 459  static PyObject* dbffile_write_field(DBF
459          }          }
460    
461          type = DBFGetFieldInfo(self->handle, field, NULL, NULL, NULL);          type = DBFGetFieldInfo(self->handle, field, NULL, NULL, NULL);
462          if (!do_write_field(self->handle, record, field, type, value)) return NULL;          if (!do_write_attribute(self->handle, record, field, type, value)) return NULL;
463          Py_RETURN_NONE;          Py_RETURN_NONE;
464  }  }
465    
# Line 363  static PyObject* dbffile_write_record(DB Line 500  static PyObject* dbffile_write_record(DB
500                          type = DBFGetFieldInfo(self->handle, i, NULL, NULL, NULL);                          type = DBFGetFieldInfo(self->handle, i, NULL, NULL, NULL);
501                          value = PySequence_GetItem(record_object, i);                          value = PySequence_GetItem(record_object, i);
502                          if (!value) return NULL;                          if (!value) return NULL;
503                          if (!do_write_field(self->handle, record, i, type, value))                          if (!do_write_attribute(self->handle, record, i, type, value))
504                          {                          {
505                                  Py_DECREF(value);                                  Py_DECREF(value);
506                                  return NULL;                                  return NULL;
# Line 381  static PyObject* dbffile_write_record(DB Line 518  static PyObject* dbffile_write_record(DB
518                          name[0] = '\0';                          name[0] = '\0';
519                          type = DBFGetFieldInfo(self->handle, i, name, NULL, NULL);                          type = DBFGetFieldInfo(self->handle, i, name, NULL, NULL);
520                          value = PyDict_GetItemString(record_object, name);                          value = PyDict_GetItemString(record_object, name);
521                          if (value && !do_write_field(self->handle, record, i, type, value)) return NULL;                          if (value && !do_write_attribute(self->handle, record, i, type, value)) return NULL;
522                  }                  }
523          }          }
524                    
# Line 414  static PyObject* dbffile_commit(DBFFileO Line 551  static PyObject* dbffile_commit(DBFFileO
551  #endif  #endif
552    
553    
554    #if HAVE_LANGUAGE_DRIVER
555    
556    static PyObject* dbffile_language_driver(DBFFileObject* self, void* closure)
557    {
558            return PyInt_FromLong((long)self->handle->nLanguageDriver);
559    }
560    
561    #endif
562    
563    
564  static struct PyMethodDef dbffile_methods[] =  static struct PyMethodDef dbffile_methods[] =
565  {  {
# Line 448  static struct PyMethodDef dbffile_method Line 594  static struct PyMethodDef dbffile_method
594          {"read_record", (PyCFunction)dbffile_read_record, METH_VARARGS,          {"read_record", (PyCFunction)dbffile_read_record, METH_VARARGS,
595                  "read_record(record_index) -> dict\n\n"                  "read_record(record_index) -> dict\n\n"
596                  "returns an entire record as a dictionary of field names and values"},                  "returns an entire record as a dictionary of field names and values"},
597          {"write_field", (PyCFunction)dbffile_write_field, METH_VARARGS,          {"write_attribute", (PyCFunction)dbffile_write_attribute, METH_VARARGS,
598                  "write_field(record_index, field_index, new_value)\n"                  "write_attribute(record_index, field_index, new_value)\n"
599                  "writes a single field of a record"},                  "writes a single field of a record"},
600          {"write_record", (PyCFunction)dbffile_write_record, METH_VARARGS,          {"write_record", (PyCFunction)dbffile_write_record, METH_VARARGS,
601                  "write_record(record_index, record) -> record_index\n\n"                  "write_record(record_index, record) -> record_index\n\n"
# Line 457  static struct PyMethodDef dbffile_method Line 603  static struct PyMethodDef dbffile_method
603                  "Record can either be a dictionary in which case the keys are used as field names, "                  "Record can either be a dictionary in which case the keys are used as field names, "
604                  "or a sequence that must have an item for every field (length = field_count())"},                  "or a sequence that must have an item for every field (length = field_count())"},
605  #if HAVE_UPDATE_HEADER  #if HAVE_UPDATE_HEADER
606          {"commit", (PyCFunction)dbffile_read_record, METH_NOARGS,          {"commit", (PyCFunction)dbffile_commit, METH_NOARGS,
607                  "commit() -> None"},                  "commit() -> None"},
608  #endif  #endif
609          {NULL}          {NULL}
# Line 467  static struct PyMethodDef dbffile_method Line 613  static struct PyMethodDef dbffile_method
613    
614  static struct PyGetSetDef dbffile_getsetters[] =  static struct PyGetSetDef dbffile_getsetters[] =
615  {  {
616    #if HAVE_LANGUAGE_DRIVER
617            {"language_driver", (getter)dbffile_language_driver, NULL, "Language Driver ID (read-only)" },
618    #endif
619          {NULL}          {NULL}
620  };  };
621    
# Line 489  static PyObject* dbflib_create(PyObject* Line 638  static PyObject* dbflib_create(PyObject*
638  {  {
639          char* file;          char* file;
640          DBFFileObject* result;          DBFFileObject* result;
641            DBFHandle handle = NULL;
642            int wideargument = 0;
643    
644    #if defined(SHPAPI_HAS_WIDE) && defined(Py_WIN_WIDE_FILENAMES)
645            if (GetVersion() < 0x80000000) {    /* On NT, so wide API available */
646                    PyObject *wfile;
647                    if (PyArg_ParseTuple(args, "U:create", &wfile))
648                    {
649                            wideargument = 1;
650                            handle = DBFCreateW(PyUnicode_AS_UNICODE(wfile));
651                            if (!handle)
652                            {
653                                    PyErr_SetFromErrnoWithFilenameObject(PyExc_IOError, wfile);
654                                    return NULL;
655                            }
656                    }
657                    else
658                    {
659                            /* Drop the argument parsing error as narrow
660                               strings are also valid. */
661                            PyErr_Clear();
662                    }
663            }
664    #endif
665                    
666          if (!PyArg_ParseTuple(args, "et:create", Py_FileSystemDefaultEncoding, &file)) return NULL;          if (!handle)
667                    {
668                    if (!PyArg_ParseTuple(args, "et:create", Py_FileSystemDefaultEncoding, &file)) return NULL;
669                    handle = DBFCreate(file);
670                    if (!handle)
671                    {
672                                    PyErr_SetFromErrnoWithFilename(PyExc_IOError, file);
673                                    PyMem_Free(file);
674                                    return NULL;
675                    }
676                    PyMem_Free(file);
677            }
678    
679          result = PyObject_New(DBFFileObject, &DBFFileType);          result = PyObject_New(DBFFileObject, &DBFFileType);
680          if (!result)          if (!result)
681          {          {
682                    DBFClose(handle);
683                  return PyErr_NoMemory();                  return PyErr_NoMemory();
684          }          }
685                    
686          result->handle = DBFCreate(file);          result->handle = handle;
687          if (!result->handle)          return (PyObject*) result;
688    }
689    
690    
691    
692    #if HAVE_LANGUAGE_DRIVER
693    
694    /** translate a numeric Language Driver ID to the name of Python's codec.
695     */
696    static PyObject* dbflib_language_driver_codec(PyObject* module, PyObject* args)
697    {
698            int ldid;
699            if (!PyArg_ParseTuple(args, "i:language_driver_name", &ldid)) return NULL;
700            if (ldid < 0 || ldid >= PYSHAPELIB_NUM_LANGUAGE_DRIVERS || !codecs[ldid])
701          {          {
702                  PyObject_Del((PyObject*)result);                  PyErr_SetString(PyExc_ValueError, "invalid driver id");
                 PyErr_SetString(PyExc_RuntimeError, "Failed to create DBFFile");  
703                  return NULL;                  return NULL;
704          }          }
705                    return PyString_FromString(codecs[ldid]);
706          return (PyObject*) result;  }
707    
708    /** translate a numeric Language Driver ID to a string represting its constant.
709     */
710    static PyObject* dbflib_language_driver_name(PyObject* module, PyObject* args)
711    {
712            int ldid;
713            if (!PyArg_ParseTuple(args, "i:language_driver_name", &ldid)) return NULL;
714            if (ldid < 0 || ldid >= PYSHAPELIB_NUM_LANGUAGE_DRIVERS || !drivers[ldid])
715            {
716                    PyErr_SetString(PyExc_ValueError, "invalid driver id");
717                    return NULL;
718            }
719            return PyString_FromString(drivers[ldid]);
720  }  }
721    
722    #endif
723    
724    
725    
726  static struct PyMethodDef dbflib_methods[] =  static struct PyMethodDef dbflib_methods[] =
# Line 517  static struct PyMethodDef dbflib_methods Line 729  static struct PyMethodDef dbflib_methods
729                  "open(name [, mode]) -> DBFFile\n\n"                  "open(name [, mode]) -> DBFFile\n\n"
730                  "opens a DBFFile" },                  "opens a DBFFile" },
731          {"create", (PyCFunction)dbflib_create, METH_VARARGS,          {"create", (PyCFunction)dbflib_create, METH_VARARGS,
732                  "create(name) -> DBFFile\n\n"                  "create(name [, language_driver]) -> DBFFile\n\n"
733                  "create a DBFFile" },                  "create a DBFFile " },
734    #if HAVE_LANGUAGE_DRIVER
735            {"language_driver_codec", (PyCFunction)dbflib_language_driver_codec, METH_VARARGS,
736                    "language_driver_codec(driver_id) -> string\n\n"
737                    "translate language driver id into the name of the Python's codec used as code page." },
738            {"language_driver_name", (PyCFunction)dbflib_language_driver_name, METH_VARARGS,
739                    "language_driver_name(driver_id) -> string\n\n"
740                    "translate language driver id into a string." },
741    #endif
742          {NULL}          {NULL}
743  };  };
744    
745    
   
746  PyMODINIT_FUNC initdbflib(void)  PyMODINIT_FUNC initdbflib(void)
747  {  {
748            int i;
749    
750          PyObject* module = Py_InitModule("dbflib", dbflib_methods);          PyObject* module = Py_InitModule("dbflib", dbflib_methods);
751          if (!module) return;          if (!module) return;
752                    
# Line 537  PyMODINIT_FUNC initdbflib(void) Line 758  PyMODINIT_FUNC initdbflib(void)
758          PYSHAPELIB_ADD_CONSTANT(FTLogical);          PYSHAPELIB_ADD_CONSTANT(FTLogical);
759          PYSHAPELIB_ADD_CONSTANT(FTInvalid);          PYSHAPELIB_ADD_CONSTANT(FTInvalid);
760          PyModule_AddIntConstant(module, "_have_commit", HAVE_UPDATE_HEADER);          PyModule_AddIntConstant(module, "_have_commit", HAVE_UPDATE_HEADER);
761    
762    #if HAVE_LANGUAGE_DRIVER
763            /* table compiled from these resources:
764             * http://www.clicketyclick.dk/databases/xbase/format/dbf.html
765             * http://www.esrinl.com/content/file.asp?id=307
766             * http://msdn2.microsoft.com/en-us/library/aa975345(VS.71).aspx
767             */
768            for (i = 0; i < PYSHAPELIB_NUM_LANGUAGE_DRIVERS; ++i)
769            {
770                    codecs[i] = NULL;
771                    drivers[i] = NULL;
772            }
773            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x00, "cp1252", "NOT_SET");
774            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x01, "cp437", "DOS_USA");
775            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x02, "cp850", "DOS_INTERNATIONAL");
776            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x03, "cp1252", "WINDOWS_ANSI");
777            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x04, "mac_roman", "STANDARD_MACINTOSH");
778            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x08, "cp865", "DANISH_OEM");
779            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x09, "cp437", "DUTCH_OEM");
780            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x0a, "cp850", "DUTCH_OEM_2");
781            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x0b, "cp437", "FINNISH_OEM");
782            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x0d, "cp437", "FRENCH_OEM");
783            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x0e, "cp850", "FRENCH_OEM_2");
784            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x0f, "cp437", "GERMAN_OEM");
785            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x10, "cp850", "GERMAN_OEM_2");
786            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x11, "cp437", "ITALIAN_OEM");
787            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x12, "cp850", "ITALIAN_OEM_2");
788            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x13, "cp932", "JAPANESE_SHIFT_JIS");
789            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x14, "cp850", "SPANISH_OEM_2");
790            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x15, "cp437", "SWEDISH_OEM");
791            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x16, "cp850", "SWEDISH_OEM_2");
792            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x17, "cp865", "NORWEGIAN_OEM");
793            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x18, "cp437", "SPANISH_OEM");
794            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x19, "cp437", "ENGLISH_BRITAIN_OEM");
795            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x1a, "cp850", "ENGLISH_BRITAIN_OEM_2");
796            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x0b, "cp437", "ENGLISH_US_OEM");
797            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x1c, "cp863", "FRENCH_CANADA_OEM");
798            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x1d, "cp850", "FRENCH_OEM_2");
799            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x1f, "cp852", "CZECH_OEM");
800            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x22, "cp852", "HUNGARIAN_OEM");
801            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x23, "cp852", "POLISH_OEM");
802            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x24, "cp860", "PORTUGUESE_OEM");
803            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x25, "cp850", "PORTUGUESE_OEM_2");
804            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x26, "cp866", "RUSSIAN_OEM");
805            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x37, "cp850", "ENGLISH_US_OEM_2");
806            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x40, "cp852", "ROMANIAN_OEM");
807            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x4d, "cp936", "CHINESE_GBK_PRC");
808            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x4e, "cp949", "KOREAN_ANSI_OEM);");
809            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x4f, "cp950", "CHINESE_BIG5_TAIWAN");
810            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x50, "cp874", "THAI_ANSI_OEM");
811            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x57, "cp1252", "ESRI_ANSI");
812            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x58, "cp1252", "WESTERN_EUROPEAN_ANSI");
813            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x59, "cp1252", "SPANISH_ANSI");
814            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x64, "cp852", "EASTERN_EUROPEAN_MSDOS");
815            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x65, "cp866", "RUSSIAN_MSDOS");
816            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x66, "cp865", "NORDIC_MSDOS");
817            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x67, "cp861", "ICELANDIC_MSDOS");
818            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x68, "cp895", "CZECH_MSDOS");
819            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x69, "cp620", "POLISH_MSDOS");
820            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x6a, "cp737", "GREEK_MSDOS");
821            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x6b, "cp857", "TURKISH_MSDOS");
822            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x6c, "cp863", "FRENCH_CANADA_MSDOS");
823            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x78, "cp950", "TAIWAN_BIG5");
824            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x79, "cp949", "HANGUL_WANSUG");
825            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x7a, "cp936", "PRC_GBK");
826            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x7b, "cp932", "JAPANESE_SHIFT_JIS");
827            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x7c, "cp874", "THAI_WINDOWS_MSDOS");
828            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x7d, "cp1255", "HEBREW_WINDOWS");
829            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x7e, "cp1256", "ARABIC_WINDOWS");
830            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x86, "cp737", "GREEK_OEM");
831            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x87, "cp852", "SLOVENIAN_OEM");
832            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x88, "cp857", "TURKISH_OEM");
833            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x96, "mac_cyrillic", "RUSSIAN_MACINTOSH");
834            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x97, "mac_latin2", "EASTERN_EUROPEAN_MACINTOSH");
835            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0x98, "mac_greek", "GREEK_MACINTOSH");
836            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0xc8, "cp1250", "EASTERN_EUROPEAN_WINDOWS");
837            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0xc9, "cp1251", "RUSSIAN_WINDOWS");
838            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0xca, "cp1254", "TURKISH_WINDOWS");
839            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0xcb, "cp1253", "GREEK_WINDOWS");
840            PYSHAPELIB_ADD_LANGUAGE_DRIVER(0xcc, "cp1257", "BALTIC_WINDOWS");
841    #endif
842    
843  }  }

Legend:
Removed from v.2749  
changed lines
  Added in v.2754

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26