home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / py2s152.zip / Modules / cPickle.c < prev    next >
C/C++ Source or Header  |  1999-06-27  |  108KB  |  4,337 lines

  1. /*
  2.  * cPickle.c,v 1.63 1999/02/05 01:40:06 jim Exp
  3.  * 
  4.  * Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.  
  5.  * All rights reserved.
  6.  * 
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions are
  9.  * met:
  10.  * 
  11.  *   o Redistributions of source code must retain the above copyright
  12.  *     notice, this list of conditions, and the disclaimer that follows.
  13.  * 
  14.  *   o Redistributions in binary form must reproduce the above copyright
  15.  *     notice, this list of conditions, and the following disclaimer in
  16.  *     the documentation and/or other materials provided with the
  17.  *     distribution.
  18.  * 
  19.  *   o Neither the name of Digital Creations nor the names of its
  20.  *     contributors may be used to endorse or promote products derived
  21.  *     from this software without specific prior written permission.
  22.  * 
  23.  * 
  24.  * THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
  25.  * IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  26.  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  27.  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL DIGITAL
  28.  * CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  29.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  30.  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  31.  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  32.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  33.  * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  34.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  35.  * DAMAGE.
  36.  * 
  37.  # 
  38.  # If you have questions regarding this software, contact:
  39.  #
  40.  #   Digital Creations, L.C.
  41.  #   910 Princess Ann Street
  42.  #   Fredericksburge, Virginia  22401
  43.  #
  44.  #   info@digicool.com
  45.  #
  46.  #   (540) 371-6909
  47.  */
  48.  
  49. static char cPickle_module_documentation[] = 
  50. "C implementation and optimization of the Python pickle module\n"
  51. "\n"
  52. "cPickle.c,v 1.63 1999/02/05 01:40:06 jim Exp\n"
  53. ;
  54.  
  55. #include "Python.h"
  56. #include "cStringIO.h"
  57. #include "mymath.h"
  58.  
  59. #ifndef Py_eval_input
  60. #include <graminit.h>
  61. #define Py_eval_input eval_input
  62. #endif /* Py_eval_input */
  63.  
  64. #include <errno.h>
  65.  
  66. #define UNLESS(E) if (!(E))
  67.  
  68. #define DEL_LIST_SLICE(list, from, to) (PyList_SetSlice(list, from, to, NULL))
  69.  
  70. #define WRITE_BUF_SIZE 256
  71.  
  72.  
  73. #define MARK        '('
  74. #define STOP        '.'
  75. #define POP         '0'
  76. #define POP_MARK    '1'
  77. #define DUP         '2'
  78. #define FLOAT       'F'
  79. #define BINFLOAT    'G'
  80. #define INT         'I'
  81. #define BININT      'J'
  82. #define BININT1     'K'
  83. #define LONG        'L'
  84. #define BININT2     'M'
  85. #define NONE        'N'
  86. #define PERSID      'P'
  87. #define BINPERSID   'Q'
  88. #define REDUCE      'R'
  89. #define STRING      'S'
  90. #define BINSTRING   'T'
  91. #define SHORT_BINSTRING 'U'
  92. #define APPEND      'a'
  93. #define BUILD       'b'
  94. #define GLOBAL      'c'
  95. #define DICT        'd'
  96. #define EMPTY_DICT  '}'
  97. #define APPENDS     'e'
  98. #define GET         'g'
  99. #define BINGET      'h'
  100. #define INST        'i'
  101. #define LONG_BINGET 'j'
  102. #define LIST        'l'
  103. #define EMPTY_LIST  ']'
  104. #define OBJ         'o'
  105. #define PUT         'p'
  106. #define BINPUT      'q'
  107. #define LONG_BINPUT 'r'
  108. #define SETITEM     's'
  109. #define TUPLE       't'
  110. #define EMPTY_TUPLE ')'
  111. #define SETITEMS    'u'
  112.  
  113. static char MARKv = MARK;
  114.  
  115. /* atol function from string module */
  116. static PyObject *atol_func;
  117.  
  118. static PyObject *PicklingError;
  119. static PyObject *UnpicklingError;
  120. static PyObject *BadPickleGet;
  121.  
  122.  
  123. static PyObject *dispatch_table;
  124. static PyObject *safe_constructors;
  125. static PyObject *empty_tuple;
  126.  
  127. static PyObject *__class___str, *__getinitargs___str, *__dict___str,
  128.   *__getstate___str, *__setstate___str, *__name___str, *__reduce___str,
  129.   *write_str, *__safe_for_unpickling___str, *append_str,
  130.   *read_str, *readline_str, *__main___str, *__basicnew___str,
  131.   *copy_reg_str, *dispatch_table_str, *safe_constructors_str, *empty_str;
  132.  
  133. static int save();
  134. static int put2();
  135.  
  136. #ifndef PyList_SET_ITEM
  137. #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
  138. #endif
  139. #ifndef PyList_GET_SIZE
  140. #define PyList_GET_SIZE(op)    (((PyListObject *)(op))->ob_size)
  141. #endif
  142. #ifndef PyTuple_SET_ITEM
  143. #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = (v))
  144. #endif
  145. #ifndef PyTuple_GET_SIZE
  146. #define PyTuple_GET_SIZE(op)    (((PyTupleObject *)(op))->ob_size)
  147. #endif
  148. #ifndef PyString_GET_SIZE
  149. #define PyString_GET_SIZE(op)    (((PyStringObject *)(op))->ob_size)
  150. #endif
  151.  
  152. /*************************************************************************
  153.  Internal Data type for pickle data.                                     */
  154.  
  155. typedef struct {
  156.      PyObject_HEAD
  157.      int length, size;
  158.      PyObject **data;
  159. } Pdata;
  160.  
  161. static void 
  162. Pdata_dealloc(Pdata *self) {
  163.     int i;
  164.     PyObject **p;
  165.  
  166.     for (i=self->length, p=self->data; --i >= 0; p++) Py_DECREF(*p);
  167.  
  168.     if (self->data) free(self->data);
  169.  
  170.     PyMem_DEL(self);
  171. }
  172.  
  173. static PyTypeObject PdataType = {
  174.     PyObject_HEAD_INIT(NULL) 0, "Pdata", sizeof(Pdata), 0,
  175.     (destructor)Pdata_dealloc,
  176.     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0L,0L,0L,0L, ""
  177. };
  178.  
  179. #define Pdata_Check(O) ((O)->ob_type == &PdataType)
  180.  
  181. static PyObject *
  182. Pdata_New() {
  183.     Pdata *self;
  184.  
  185.     UNLESS (self = PyObject_NEW(Pdata, &PdataType)) return NULL;
  186.     self->size=8;
  187.     self->length=0;
  188.     self->data=malloc(self->size * sizeof(PyObject*));
  189.     if (self->data) return (PyObject*)self;
  190.     Py_DECREF(self);
  191.     return PyErr_NoMemory();
  192. }
  193.  
  194. static int 
  195. stackUnderflow() {
  196.     PyErr_SetString(UnpicklingError, "unpickling stack underflow");
  197.     return -1;
  198. }
  199.  
  200. static int
  201. Pdata_clear(Pdata *self, int clearto) {
  202.     int i;
  203.     PyObject **p;
  204.  
  205.     if (clearto < 0) return stackUnderflow();
  206.     if (clearto >= self->length) return 0;
  207.  
  208.     for (i=self->length, p=self->data+clearto; --i >= clearto; p++)
  209.       Py_DECREF(*p);
  210.     self->length=clearto;
  211.  
  212.     return 0;
  213. }
  214.  
  215.  
  216. static int 
  217. Pdata_grow(Pdata *self) {
  218.   if (! self->size) {
  219.       PyErr_NoMemory();
  220.       return -1;
  221.   }
  222.   self->size *= 2;                          
  223.   self->data = realloc(self->data, self->size*sizeof(PyObject*));
  224.   if (! self->data) {
  225.     self->size = 0;                       
  226.     PyErr_NoMemory();                              
  227.     return -1;                                     
  228.   }
  229.   return 0;
  230. }                                                      
  231.  
  232. #define PDATA_POP(D,V) {                                      \
  233.     if ((D)->length) V=D->data[--((D)->length)];              \
  234.     else {                                                    \
  235.         PyErr_SetString(UnpicklingError, "bad pickle data");  \
  236.         V=NULL;                                               \
  237.     }                                                         \
  238. }
  239.  
  240.  
  241. static PyObject *
  242. Pdata_popTuple(Pdata *self, int start) {
  243.     PyObject *r;
  244.     int i, j, l;
  245.  
  246.     l=self->length-start;
  247.     UNLESS (r=PyTuple_New(l)) return NULL;
  248.     for (i=start, j=0 ; j < l; )
  249.         PyTuple_SET_ITEM(r,j++,self->data[i++]);
  250.  
  251.     self->length=start;
  252.     return r;
  253. }
  254.  
  255. static PyObject *
  256. Pdata_popList(Pdata *self, int start) {
  257.     PyObject *r;
  258.     int i, j, l;
  259.  
  260.     l=self->length-start;
  261.     UNLESS (r=PyList_New(l)) return NULL;
  262.     for (i=start, j=0 ; j < l; )
  263.         PyList_SET_ITEM(r,j++,self->data[i++]);
  264.  
  265.     self->length=start;
  266.     return r;
  267. }
  268.  
  269. #define PDATA_APPEND_(D,O,ER) { \
  270.   if (Pdata_Append(((Pdata*)(D)), O) < 0) return ER; \
  271. }
  272.  
  273. #define PDATA_APPEND(D,O,ER) {                                 \
  274.     if (((Pdata*)(D))->length == ((Pdata*)(D))->size &&        \
  275.         Pdata_grow((Pdata*)(D)) < 0)                           \
  276.         return ER;                                             \
  277.     Py_INCREF(O);                                              \
  278.     ((Pdata*)(D))->data[((Pdata*)(D))->length++]=O;            \
  279. }
  280.  
  281. #define PDATA_PUSH(D,O,ER) {                                   \
  282.     if (((Pdata*)(D))->length == ((Pdata*)(D))->size &&        \
  283.         Pdata_grow((Pdata*)(D)) < 0) {                         \
  284.         Py_DECREF(O);                                          \
  285.         return ER;                                             \
  286.     }                                                          \
  287.     ((Pdata*)(D))->data[((Pdata*)(D))->length++]=O;            \
  288. }
  289.  
  290. /*************************************************************************/
  291.  
  292. #define ARG_TUP(self, o) {                          \
  293.   if (self->arg || (self->arg=PyTuple_New(1))) {    \
  294.       Py_XDECREF(PyTuple_GET_ITEM(self->arg,0));    \
  295.       PyTuple_SET_ITEM(self->arg,0,o);              \
  296.   }                                                 \
  297.   else {                                            \
  298.       Py_DECREF(o);                                 \
  299.   }                                                 \
  300. }
  301.  
  302. #define FREE_ARG_TUP(self) {                        \
  303.     if (self->arg->ob_refcnt > 1) {                 \
  304.       Py_DECREF(self->arg);                         \
  305.       self->arg=NULL;                               \
  306.     }                                               \
  307.   }
  308.  
  309. typedef struct {
  310.      PyObject_HEAD
  311.      FILE *fp;
  312.      PyObject *write;
  313.      PyObject *file;
  314.      PyObject *memo;
  315.      PyObject *arg;
  316.      PyObject *pers_func;
  317.      PyObject *inst_pers_func;
  318.      int bin;
  319.      int fast; /* Fast mode doesn't save in memo, don't use if circ ref */
  320.      int (*write_func)();
  321.      char *write_buf;
  322.      int buf_size;
  323.      PyObject *dispatch_table;
  324. } Picklerobject;
  325.  
  326. staticforward PyTypeObject Picklertype;
  327.  
  328. typedef struct {
  329.      PyObject_HEAD
  330.      FILE *fp;
  331.      PyObject *file;
  332.      PyObject *readline;
  333.      PyObject *read;
  334.      PyObject *memo;
  335.      PyObject *arg;
  336.      Pdata *stack;
  337.      PyObject *mark;
  338.      PyObject *pers_func;
  339.      PyObject *last_string;
  340.      int *marks;
  341.      int num_marks;
  342.      int marks_size;
  343.      int (*read_func)();
  344.      int (*readline_func)();
  345.      int buf_size;
  346.      char *buf;
  347.      PyObject *safe_constructors;
  348. } Unpicklerobject;
  349.  
  350. staticforward PyTypeObject Unpicklertype;
  351.  
  352. int 
  353. cPickle_PyMapping_HasKey(PyObject *o, PyObject *key) {
  354.     PyObject *v;
  355.  
  356.     if ((v = PyObject_GetItem(o,key))) {
  357.         Py_DECREF(v);
  358.         return 1;
  359.     }
  360.  
  361.     PyErr_Clear();
  362.     return 0;
  363. }
  364.  
  365. static
  366. PyObject *
  367. #ifdef HAVE_STDARG_PROTOTYPES
  368. /* VARARGS 2 */
  369. cPickle_ErrFormat(PyObject *ErrType, char *stringformat, char *format, ...) {
  370. #else
  371. /* VARARGS */
  372. cPickle_ErrFormat(va_alist) va_dcl {
  373. #endif
  374.   va_list va;
  375.   PyObject *args=0, *retval=0;
  376. #ifdef HAVE_STDARG_PROTOTYPES
  377.   va_start(va, format);
  378. #else
  379.   PyObject *ErrType;
  380.   char *stringformat, *format;
  381.   va_start(va);
  382.   ErrType = va_arg(va, PyObject *);
  383.   stringformat   = va_arg(va, char *);
  384.   format   = va_arg(va, char *);
  385. #endif
  386.   
  387.   if (format) args = Py_VaBuildValue(format, va);
  388.   va_end(va);
  389.   if (format && ! args) return NULL;
  390.   if (stringformat && !(retval=PyString_FromString(stringformat))) return NULL;
  391.  
  392.   if (retval) {
  393.       if (args) {
  394.           PyObject *v;
  395.           v=PyString_Format(retval, args);
  396.           Py_DECREF(retval);
  397.           Py_DECREF(args);
  398.           if (! v) return NULL;
  399.           retval=v;
  400.         }
  401.     }
  402.   else
  403.     if (args) retval=args;
  404.     else {
  405.         PyErr_SetObject(ErrType,Py_None);
  406.         return NULL;
  407.       }
  408.   PyErr_SetObject(ErrType,retval);
  409.   Py_DECREF(retval);
  410.   return NULL;
  411. }
  412.  
  413. static int 
  414. write_file(Picklerobject *self, char *s, int  n) {
  415.     if (s == NULL) {
  416.         return 0;
  417.     }
  418.  
  419.     if ((int)fwrite(s, sizeof(char), n, self->fp) != n) {
  420.         PyErr_SetFromErrno(PyExc_IOError);
  421.         return -1;
  422.     }
  423.  
  424.     return n;
  425. }
  426.  
  427. static int 
  428. write_cStringIO(Picklerobject *self, char *s, int  n) {
  429.     if (s == NULL) {
  430.         return 0;
  431.     }
  432.  
  433.     if (PycStringIO->cwrite((PyObject *)self->file, s, n) != n) {
  434.         return -1;
  435.     }
  436.  
  437.     return n;
  438. }
  439.  
  440. static int 
  441. write_none(Picklerobject *self, char *s, int  n) {
  442.     if (s == NULL) return 0;
  443.     return n;
  444. }
  445.  
  446. static int 
  447. write_other(Picklerobject *self, char *s, int  n) {
  448.     PyObject *py_str = 0, *junk = 0;
  449.  
  450.     if (s == NULL) {
  451.         UNLESS (self->buf_size) return 0;
  452.         UNLESS (py_str = 
  453.             PyString_FromStringAndSize(self->write_buf, self->buf_size))
  454.             return -1;
  455.     }
  456.     else {
  457.         if (self->buf_size && (n + self->buf_size) > WRITE_BUF_SIZE) {
  458.             if (write_other(self, NULL, 0) < 0)
  459.                 return -1;
  460.         }
  461.  
  462.         if (n > WRITE_BUF_SIZE) {    
  463.             UNLESS (py_str = 
  464.                 PyString_FromStringAndSize(s, n))
  465.                 return -1;
  466.         }
  467.         else {
  468.             memcpy(self->write_buf + self->buf_size, s, n);
  469.             self->buf_size += n;
  470.             return n;
  471.         }
  472.     }
  473.  
  474.     if (self->write) {
  475.         /* object with write method */
  476.         ARG_TUP(self, py_str);
  477.         if (self->arg) {
  478.             junk = PyObject_CallObject(self->write, self->arg);
  479.             FREE_ARG_TUP(self);
  480.         }
  481.         if (junk) Py_DECREF(junk);
  482.         else return -1;
  483.       }
  484.     else 
  485.       PDATA_PUSH(self->file, py_str, -1);
  486.     
  487.     self->buf_size = 0; 
  488.     return n;
  489. }
  490.  
  491.  
  492. static int 
  493. read_file(Unpicklerobject *self, char **s, int  n) {
  494.  
  495.     if (self->buf_size == 0) {
  496.         int size;
  497.  
  498.         size = ((n < 32) ? 32 : n); 
  499.         UNLESS (self->buf = (char *)malloc(size * sizeof(char))) {
  500.             PyErr_NoMemory();
  501.             return -1;
  502.         }
  503.  
  504.         self->buf_size = size;
  505.     }
  506.     else if (n > self->buf_size) {
  507.         UNLESS (self->buf = (char *)realloc(self->buf, n * sizeof(char))) {
  508.             PyErr_NoMemory();
  509.             return -1;
  510.         }
  511.  
  512.         self->buf_size = n;
  513.     }
  514.             
  515.     if ((int)fread(self->buf, sizeof(char), n, self->fp) != n) {  
  516.         if (feof(self->fp)) {
  517.             PyErr_SetNone(PyExc_EOFError);
  518.             return -1;
  519.         }
  520.  
  521.         PyErr_SetFromErrno(PyExc_IOError);
  522.         return -1;
  523.     }
  524.  
  525.     *s = self->buf;
  526.  
  527.     return n;
  528. }
  529.  
  530.  
  531. static int 
  532. readline_file(Unpicklerobject *self, char **s) {
  533.     int i;
  534.  
  535.     if (self->buf_size == 0) {
  536.         UNLESS (self->buf = (char *)malloc(40 * sizeof(char))) {
  537.             PyErr_NoMemory();
  538.             return -1;
  539.         }
  540.    
  541.         self->buf_size = 40;
  542.     }
  543.  
  544.     i = 0;
  545.     while (1) {
  546.         for (; i < (self->buf_size - 1); i++) {
  547.             if (feof(self->fp) || (self->buf[i] = getc(self->fp)) == '\n') {
  548.                 self->buf[i + 1] = '\0';
  549.                 *s = self->buf;
  550.                 return i + 1;
  551.             }
  552.         }
  553.  
  554.         UNLESS (self->buf = (char *)realloc(self->buf, 
  555.             (self->buf_size * 2) * sizeof(char))) {
  556.             PyErr_NoMemory();
  557.             return -1;
  558.         }
  559.  
  560.         self->buf_size *= 2;
  561.     }
  562.  
  563. }    
  564.  
  565.  
  566. static int 
  567. read_cStringIO(Unpicklerobject *self, char **s, int  n) {
  568.     char *ptr;
  569.  
  570.     if (PycStringIO->cread((PyObject *)self->file, &ptr, n) != n) {
  571.         PyErr_SetNone(PyExc_EOFError);
  572.         return -1;
  573.     }
  574.  
  575.     *s = ptr;
  576.  
  577.     return n;
  578. }
  579.  
  580.  
  581. static int 
  582. readline_cStringIO(Unpicklerobject *self, char **s) {
  583.     int n;
  584.     char *ptr;
  585.  
  586.     if ((n = PycStringIO->creadline((PyObject *)self->file, &ptr)) < 0) {
  587.         return -1;
  588.     }
  589.  
  590.     *s = ptr;
  591.  
  592.     return n;
  593. }
  594.  
  595.  
  596. static int 
  597. read_other(Unpicklerobject *self, char **s, int  n) {
  598.     PyObject *bytes, *str=0;
  599.     int res = -1;
  600.  
  601.     UNLESS (bytes = PyInt_FromLong(n)) return -1;
  602.  
  603.     ARG_TUP(self, bytes);
  604.     if (self->arg) {
  605.         str = PyObject_CallObject(self->read, self->arg);
  606.         FREE_ARG_TUP(self);
  607.     }
  608.     if (! str) return -1;
  609.  
  610.     Py_XDECREF(self->last_string);
  611.     self->last_string = str;
  612.  
  613.     if (! (*s = PyString_AsString(str))) return -1;
  614.     return n;
  615. }
  616.  
  617.  
  618. static int 
  619. readline_other(Unpicklerobject *self, char **s) {
  620.     PyObject *str;
  621.     int str_size;
  622.  
  623.     UNLESS (str = PyObject_CallObject(self->readline, empty_tuple)) {
  624.         return -1;
  625.     }
  626.  
  627.     if ((str_size = PyString_Size(str)) < 0)
  628.       return -1;
  629.  
  630.     Py_XDECREF(self->last_string);
  631.     self->last_string = str;
  632.  
  633.     if (! (*s = PyString_AsString(str)))
  634.       return -1;
  635.  
  636.     return str_size;
  637. }
  638.  
  639.  
  640. static char *
  641. pystrndup(char *s, int l) {
  642.   char *r;
  643.   UNLESS (r=malloc((l+1)*sizeof(char))) return (char*)PyErr_NoMemory();
  644.   memcpy(r,s,l);
  645.   r[l]=0;
  646.   return r;
  647. }
  648.  
  649.  
  650. static int
  651. get(Picklerobject *self, PyObject *id) {
  652.     PyObject *value, *mv;
  653.     long c_value;
  654.     char s[30];
  655.     int len;
  656.  
  657.     UNLESS (mv = PyDict_GetItem(self->memo, id)) {
  658.         PyErr_SetObject(PyExc_KeyError, id);
  659.         return -1;
  660.       }
  661.  
  662.     UNLESS (value = PyTuple_GetItem(mv, 0))
  663.         return -1;
  664.         
  665.     UNLESS (PyInt_Check(value)) {
  666.       PyErr_SetString(PicklingError, "no int where int expected in memo");
  667.       return -1;
  668.     }
  669.     c_value = PyInt_AS_LONG((PyIntObject*)value);
  670.  
  671.     if (!self->bin) {
  672.         s[0] = GET;
  673.         sprintf(s + 1, "%ld\n", c_value);
  674.         len = strlen(s);
  675.     }
  676.     else if (Pdata_Check(self->file)) {
  677.         if (write_other(self, NULL, 0) < 0) return -1;
  678.         PDATA_APPEND(self->file, mv, -1);
  679.         return 0;
  680.       }
  681.     else {
  682.         if (c_value < 256) {
  683.             s[0] = BINGET;
  684.             s[1] = (int)(c_value & 0xff);
  685.             len = 2;
  686.         }
  687.         else {
  688.             s[0] = LONG_BINGET;
  689.             s[1] = (int)(c_value & 0xff);
  690.             s[2] = (int)((c_value >> 8)  & 0xff);
  691.             s[3] = (int)((c_value >> 16) & 0xff);
  692.             s[4] = (int)((c_value >> 24) & 0xff);
  693.             len = 5;
  694.         }
  695.     }
  696.  
  697.     if ((*self->write_func)(self, s, len) < 0)
  698.         return -1;
  699.  
  700.     return 0;
  701. }
  702.     
  703.  
  704. static int
  705. put(Picklerobject *self, PyObject *ob) {
  706.     if (ob->ob_refcnt < 2 || self->fast)
  707.         return 0;
  708.  
  709.     return put2(self, ob);
  710. }
  711.  
  712.   
  713. static int
  714. put2(Picklerobject *self, PyObject *ob) {
  715.     char c_str[30];
  716.     int p, len, res = -1;
  717.     PyObject *py_ob_id = 0, *memo_len = 0, *t = 0;
  718.  
  719.     if (self->fast) return 0;
  720.  
  721.     if ((p = PyDict_Size(self->memo)) < 0)
  722.         goto finally;
  723.  
  724.     p++;  /* Make sure memo keys are positive! */
  725.  
  726.     UNLESS (py_ob_id = PyInt_FromLong((long)ob))
  727.         goto finally;
  728.  
  729.     UNLESS (memo_len = PyInt_FromLong(p))
  730.         goto finally;
  731.  
  732.     UNLESS (t = PyTuple_New(2))
  733.         goto finally;
  734.  
  735.     PyTuple_SET_ITEM(t, 0, memo_len);
  736.     Py_INCREF(memo_len);
  737.     PyTuple_SET_ITEM(t, 1, ob);
  738.     Py_INCREF(ob);
  739.  
  740.     if (PyDict_SetItem(self->memo, py_ob_id, t) < 0)
  741.         goto finally;
  742.  
  743.     if (!self->bin) {
  744.         c_str[0] = PUT;
  745.         sprintf(c_str + 1, "%d\n", p);
  746.         len = strlen(c_str);
  747.     }
  748.     else if (Pdata_Check(self->file)) {
  749.         if (write_other(self, NULL, 0) < 0) return -1;
  750.         PDATA_APPEND(self->file, memo_len, -1);
  751.         res=0;          /* Job well done ;) */
  752.         goto finally;
  753.     }
  754.     else {
  755.         if (p >= 256) {
  756.             c_str[0] = LONG_BINPUT;
  757.             c_str[1] = (int)(p & 0xff);
  758.             c_str[2] = (int)((p >> 8)  & 0xff);
  759.             c_str[3] = (int)((p >> 16) & 0xff);
  760.             c_str[4] = (int)((p >> 24) & 0xff);
  761.             len = 5;
  762.         }
  763.         else {
  764.             c_str[0] = BINPUT;
  765.             c_str[1] = p;
  766.             len = 2; 
  767.         }
  768.     }
  769.  
  770.     if ((*self->write_func)(self, c_str, len) < 0)
  771.         goto finally;
  772.  
  773.     res = 0;
  774.  
  775. finally:
  776.     Py_XDECREF(py_ob_id);
  777.     Py_XDECREF(memo_len);
  778.     Py_XDECREF(t);
  779.  
  780.     return res;
  781. }
  782.  
  783. #define PyImport_Import cPickle_Import
  784.  
  785. static PyObject *
  786. PyImport_Import(PyObject *module_name) {
  787.   static PyObject *silly_list=0, *__builtins___str=0, *__import___str;
  788.   static PyObject *standard_builtins=0;
  789.   PyObject *globals=0, *__import__=0, *__builtins__=0, *r=0;
  790.  
  791.   UNLESS (silly_list) {
  792.       UNLESS (__import___str=PyString_FromString("__import__"))
  793.         return NULL;
  794.       UNLESS (__builtins___str=PyString_FromString("__builtins__"))
  795.         return NULL;
  796.       UNLESS (silly_list=Py_BuildValue("[s]","__doc__"))
  797.         return NULL;
  798.     }
  799.  
  800.   if ((globals=PyEval_GetGlobals())) {
  801.       Py_INCREF(globals);
  802.       UNLESS (__builtins__=PyObject_GetItem(globals,__builtins___str))
  803.         goto err;
  804.     }
  805.   else {
  806.       PyErr_Clear();
  807.  
  808.       UNLESS (standard_builtins ||
  809.              (standard_builtins=PyImport_ImportModule("__builtin__")))
  810.         return NULL;
  811.       
  812.       __builtins__=standard_builtins;
  813.       Py_INCREF(__builtins__);
  814.       UNLESS (globals = Py_BuildValue("{sO}", "__builtins__", __builtins__))
  815.         goto err;
  816.     }
  817.  
  818.   if (PyDict_Check(__builtins__)) {
  819.     UNLESS (__import__=PyObject_GetItem(__builtins__,__import___str)) goto err;
  820.   }
  821.   else {
  822.     UNLESS (__import__=PyObject_GetAttr(__builtins__,__import___str)) goto err;
  823.   }
  824.  
  825.   UNLESS (r=PyObject_CallFunction(__import__,"OOOO",
  826.                                  module_name, globals, globals, silly_list))
  827.     goto err;
  828.  
  829.   Py_DECREF(globals);
  830.   Py_DECREF(__builtins__);
  831.   Py_DECREF(__import__);
  832.   
  833.   return r;
  834. err:
  835.   Py_XDECREF(globals);
  836.   Py_XDECREF(__builtins__);
  837.   Py_XDECREF(__import__);
  838.   return NULL;
  839. }
  840.  
  841. static PyObject *
  842. whichmodule(PyObject *global, PyObject *global_name) {
  843.     int i, j;
  844.     PyObject *module = 0, *modules_dict = 0,
  845.         *global_name_attr = 0, *name = 0;
  846.  
  847.     module = PyObject_GetAttrString(global, "__module__");
  848.     if (module) return module;
  849.     PyErr_Clear();
  850.  
  851.     UNLESS (modules_dict = PySys_GetObject("modules"))
  852.         return NULL;
  853.  
  854.     i = 0;
  855.     while ((j = PyDict_Next(modules_dict, &i, &name, &module))) {
  856.  
  857.         if (PyObject_Compare(name, __main___str)==0) continue;
  858.       
  859.         UNLESS (global_name_attr = PyObject_GetAttr(module, global_name)) {
  860.             PyErr_Clear();
  861.             continue;
  862.         }
  863.  
  864.         if (global_name_attr != global) {
  865.             Py_DECREF(global_name_attr);
  866.             continue;
  867.         }
  868.  
  869.         Py_DECREF(global_name_attr);
  870.  
  871.         break;
  872.     }
  873.  
  874.     /* The following implements the rule in pickle.py added in 1.5
  875.        that used __main__ if no module is found.  I don't actually
  876.        like this rule. jlf
  877.      */
  878.     if (!j) {
  879.         j=1;
  880.         name=__main___str;
  881.     }
  882.  
  883.     Py_INCREF(name);
  884.     return name;
  885. }
  886.  
  887.  
  888. static int
  889. save_none(Picklerobject *self, PyObject *args) {
  890.     static char none = NONE;
  891.     if ((*self->write_func)(self, &none, 1) < 0)  
  892.         return -1;
  893.  
  894.     return 0;
  895. }
  896.  
  897.       
  898. static int
  899. save_int(Picklerobject *self, PyObject *args) {
  900.     char c_str[32];
  901.     long l = PyInt_AS_LONG((PyIntObject *)args);
  902.     int len = 0;
  903.  
  904.     if (!self->bin
  905. #if SIZEOF_LONG > 4
  906.         || (l >> 32)
  907. #endif
  908.             ) {
  909.                 /* Save extra-long ints in non-binary mode, so that
  910.                    we can use python long parsing code to restore,
  911.                    if necessary. */
  912.         c_str[0] = INT;
  913.         sprintf(c_str + 1, "%ld\n", l);
  914.         if ((*self->write_func)(self, c_str, strlen(c_str)) < 0)
  915.             return -1;
  916.     }
  917.     else {
  918.         c_str[1] = (int)( l        & 0xff);
  919.         c_str[2] = (int)((l >> 8)  & 0xff);
  920.         c_str[3] = (int)((l >> 16) & 0xff);
  921.         c_str[4] = (int)((l >> 24) & 0xff);
  922.  
  923.         if ((c_str[4] == 0) && (c_str[3] == 0)) {
  924.             if (c_str[2] == 0) {
  925.                 c_str[0] = BININT1;
  926.                 len = 2;
  927.             }
  928.             else {
  929.                 c_str[0] = BININT2;
  930.                 len = 3;
  931.             }
  932.         }
  933.         else {
  934.             c_str[0] = BININT;
  935.             len = 5;
  936.         }
  937.  
  938.         if ((*self->write_func)(self, c_str, len) < 0)
  939.             return -1;
  940.     }
  941.  
  942.     return 0;
  943. }
  944.  
  945.  
  946. static int
  947. save_long(Picklerobject *self, PyObject *args) {
  948.     int size, res = -1;
  949.     PyObject *repr = 0;
  950.  
  951.     static char l = LONG;
  952.  
  953.     UNLESS (repr = PyObject_Repr(args))
  954.         goto finally;
  955.  
  956.     if ((size = PyString_Size(repr)) < 0)
  957.         goto finally;
  958.  
  959.     if ((*self->write_func)(self, &l, 1) < 0)
  960.         goto finally;
  961.  
  962.     if ((*self->write_func)(self, 
  963.         PyString_AS_STRING((PyStringObject *)repr), size) < 0)
  964.         goto finally;
  965.  
  966.     if ((*self->write_func)(self, "\n", 1) < 0)
  967.         goto finally;
  968.  
  969.     res = 0;
  970.  
  971. finally:
  972.     Py_XDECREF(repr);
  973.  
  974.     return res;
  975. }
  976.  
  977.  
  978. static int
  979. save_float(Picklerobject *self, PyObject *args) {
  980.     double x = PyFloat_AS_DOUBLE((PyFloatObject *)args);
  981.  
  982.     if (self->bin) {
  983.         int s, e;
  984.         double f;
  985.         long fhi, flo;
  986.         char str[9], *p = str;
  987.  
  988.         *p = BINFLOAT;
  989.         p++;
  990.  
  991.         if (x < 0) {
  992.             s = 1;
  993.             x = -x;
  994.         }
  995.         else
  996.             s = 0;
  997.  
  998.         f = frexp(x, &e);
  999.  
  1000.         /* Normalize f to be in the range [1.0, 2.0) */
  1001.         if (0.5 <= f && f < 1.0) {
  1002.             f *= 2.0;
  1003.             e--;
  1004.         }
  1005.         else if (f == 0.0) {
  1006.             e = 0;
  1007.         }
  1008.         else {
  1009.             PyErr_SetString(PyExc_SystemError,
  1010.                             "frexp() result out of range");
  1011.             return -1;
  1012.         }
  1013.  
  1014.         if (e >= 1024) {
  1015.             /* XXX 1024 itself is reserved for Inf/NaN */
  1016.             PyErr_SetString(PyExc_OverflowError,
  1017.                             "float too large to pack with d format");
  1018.             return -1;
  1019.         }
  1020.         else if (e < -1022) {
  1021.             /* Gradual underflow */
  1022.             f = ldexp(f, 1022 + e);
  1023.             e = 0;
  1024.         }
  1025.         else if (!(e == 0 && f == 0.0)) {
  1026.             e += 1023;
  1027.             f -= 1.0; /* Get rid of leading 1 */
  1028.         }
  1029.  
  1030.         /* fhi receives the high 28 bits; flo the low 24 bits (== 52 bits) */
  1031.         f *= 268435456.0; /* 2**28 */
  1032.         fhi = (long) floor(f); /* Truncate */
  1033.         f -= (double)fhi;
  1034.         f *= 16777216.0; /* 2**24 */
  1035.         flo = (long) floor(f + 0.5); /* Round */
  1036.  
  1037.         /* First byte */
  1038.         *p = (s<<7) | (e>>4);
  1039.         p++;
  1040.  
  1041.         /* Second byte */
  1042.         *p = (char) (((e&0xF)<<4) | (fhi>>24));
  1043.         p++;
  1044.  
  1045.         /* Third byte */
  1046.         *p = (fhi>>16) & 0xFF;
  1047.         p++;
  1048.  
  1049.         /* Fourth byte */
  1050.         *p = (fhi>>8) & 0xFF;
  1051.         p++;
  1052.  
  1053.         /* Fifth byte */
  1054.         *p = fhi & 0xFF;
  1055.         p++;
  1056.  
  1057.         /* Sixth byte */
  1058.         *p = (flo>>16) & 0xFF;
  1059.         p++;
  1060.  
  1061.         /* Seventh byte */
  1062.         *p = (flo>>8) & 0xFF;
  1063.         p++;
  1064.  
  1065.         /* Eighth byte */
  1066.         *p = flo & 0xFF;
  1067.  
  1068.         if ((*self->write_func)(self, str, 9) < 0)
  1069.             return -1;
  1070.     }
  1071.     else {
  1072.         char c_str[250];
  1073.         c_str[0] = FLOAT;
  1074.         sprintf(c_str + 1, "%.17g\n", x);
  1075.  
  1076.         if ((*self->write_func)(self, c_str, strlen(c_str)) < 0)
  1077.             return -1;
  1078.     }
  1079.  
  1080.     return 0;
  1081. }
  1082.  
  1083.  
  1084. static int
  1085. save_string(Picklerobject *self, PyObject *args, int doput) {
  1086.     int size, len;
  1087.     PyObject *repr=0;
  1088.  
  1089.     if ((size = PyString_Size(args)) < 0)
  1090.       return -1;
  1091.  
  1092.     if (!self->bin) {
  1093.         char *repr_str;
  1094.  
  1095.         static char string = STRING;
  1096.  
  1097.         UNLESS (repr = PyObject_Repr(args))
  1098.             return -1;
  1099.  
  1100.         if ((len = PyString_Size(repr)) < 0)
  1101.           goto err;
  1102.         repr_str = PyString_AS_STRING((PyStringObject *)repr);
  1103.  
  1104.         if ((*self->write_func)(self, &string, 1) < 0)
  1105.             goto err;
  1106.  
  1107.         if ((*self->write_func)(self, repr_str, len) < 0)
  1108.             goto err;
  1109.  
  1110.         if ((*self->write_func)(self, "\n", 1) < 0)
  1111.             goto err;
  1112.  
  1113.         Py_XDECREF(repr);
  1114.     }
  1115.     else {
  1116.         int i;
  1117.         char c_str[5];
  1118.  
  1119.         if ((size = PyString_Size(args)) < 0)
  1120.           return -1;
  1121.  
  1122.         if (size < 256) {
  1123.             c_str[0] = SHORT_BINSTRING;
  1124.             c_str[1] = size;
  1125.             len = 2;
  1126.         }
  1127.         else {
  1128.             c_str[0] = BINSTRING;
  1129.             for (i = 1; i < 5; i++)
  1130.                 c_str[i] = (int)(size >> ((i - 1) * 8));
  1131.             len = 5;
  1132.         }
  1133.  
  1134.         if ((*self->write_func)(self, c_str, len) < 0)
  1135.             return -1;
  1136.  
  1137.         if (size > 128 && Pdata_Check(self->file)) {
  1138.             if (write_other(self, NULL, 0) < 0) return -1;
  1139.             PDATA_APPEND(self->file, args, -1);
  1140.           }
  1141.         else {
  1142.           if ((*self->write_func)(self, 
  1143.               PyString_AS_STRING((PyStringObject *)args), size) < 0)
  1144.             return -1;
  1145.         }
  1146.     }
  1147.  
  1148.     if (doput)
  1149.       if (put(self, args) < 0)
  1150.         return -1;
  1151.  
  1152.     return 0;
  1153.  
  1154. err:
  1155.     Py_XDECREF(repr);
  1156.     return -1;
  1157. }
  1158.  
  1159.  
  1160. static int
  1161. save_tuple(Picklerobject *self, PyObject *args) {
  1162.     PyObject *element = 0, *py_tuple_id = 0;
  1163.     int len, i, has_key, res = -1;
  1164.  
  1165.     static char tuple = TUPLE;
  1166.  
  1167.     if ((*self->write_func)(self, &MARKv, 1) < 0)
  1168.         goto finally;
  1169.  
  1170.     if ((len = PyTuple_Size(args)) < 0)  
  1171.         goto finally;
  1172.  
  1173.     for (i = 0; i < len; i++) {
  1174.         UNLESS (element = PyTuple_GET_ITEM((PyTupleObject *)args, i))  
  1175.             goto finally;
  1176.     
  1177.         if (save(self, element, 0) < 0)
  1178.             goto finally;
  1179.     }
  1180.  
  1181.     UNLESS (py_tuple_id = PyInt_FromLong((long)args))
  1182.         goto finally;
  1183.  
  1184.     if (len) {
  1185.         if ((has_key = cPickle_PyMapping_HasKey(self->memo, py_tuple_id)) < 0)
  1186.             goto finally;
  1187.  
  1188.         if (has_key) {
  1189.             if (self->bin) {
  1190.                 static char pop_mark = POP_MARK;
  1191.   
  1192.                 if ((*self->write_func)(self, &pop_mark, 1) < 0)
  1193.                     goto finally;
  1194.             }
  1195.             else {
  1196.                 static char pop = POP;
  1197.        
  1198.                 for (i = 0; i <= len; i++) {
  1199.                     if ((*self->write_func)(self, &pop, 1) < 0)
  1200.                         goto finally;
  1201.                 } 
  1202.             }
  1203.         
  1204.             if (get(self, py_tuple_id) < 0)
  1205.                 goto finally;
  1206.  
  1207.             res = 0;
  1208.             goto finally;
  1209.         }
  1210.     }
  1211.  
  1212.     if ((*self->write_func)(self, &tuple, 1) < 0) {
  1213.         goto finally;
  1214.     }
  1215.  
  1216.     if (put(self, args) < 0)
  1217.         goto finally;
  1218.  
  1219.     res = 0;
  1220.  
  1221. finally:
  1222.     Py_XDECREF(py_tuple_id);
  1223.  
  1224.     return res;
  1225. }
  1226.  
  1227. static int
  1228. save_empty_tuple(Picklerobject *self, PyObject *args) {
  1229.     static char tuple = EMPTY_TUPLE;
  1230.  
  1231.     return (*self->write_func)(self, &tuple, 1);
  1232. }
  1233.  
  1234.  
  1235. static int
  1236. save_list(Picklerobject *self, PyObject *args) {
  1237.     PyObject *element = 0;
  1238.     int s_len, len, i, using_appends, res = -1;
  1239.     char s[3];
  1240.  
  1241.     static char append = APPEND, appends = APPENDS;
  1242.  
  1243.     if (self->bin) {
  1244.         s[0] = EMPTY_LIST;
  1245.         s_len = 1;
  1246.     } 
  1247.     else {
  1248.         s[0] = MARK;
  1249.         s[1] = LIST;
  1250.         s_len = 2;
  1251.     }
  1252.  
  1253.     if ((len = PyList_Size(args)) < 0)
  1254.         goto finally;
  1255.  
  1256.     if ((*self->write_func)(self, s, s_len) < 0)
  1257.         goto finally;
  1258.  
  1259.     if (len == 0) {
  1260.         if (put(self, args) < 0)
  1261.             goto finally;
  1262.     }
  1263.     else {
  1264.         if (put2(self, args) < 0)
  1265.             goto finally;
  1266.     }
  1267.  
  1268.     if ((using_appends = (self->bin && (len > 1))))
  1269.         if ((*self->write_func)(self, &MARKv, 1) < 0)
  1270.             goto finally;
  1271.  
  1272.     for (i = 0; i < len; i++) {
  1273.         UNLESS (element = PyList_GET_ITEM((PyListObject *)args, i))  
  1274.             goto finally;
  1275.  
  1276.         if (save(self, element, 0) < 0)  
  1277.             goto finally;       
  1278.  
  1279.         if (!using_appends) {
  1280.             if ((*self->write_func)(self, &append, 1) < 0)
  1281.                 goto finally;
  1282.         }
  1283.     }
  1284.  
  1285.     if (using_appends) {
  1286.         if ((*self->write_func)(self, &appends, 1) < 0)
  1287.             goto finally;
  1288.     }
  1289.  
  1290.     res = 0;
  1291.  
  1292. finally:
  1293.  
  1294.     return res;
  1295. }
  1296.  
  1297.  
  1298. static int
  1299. save_dict(Picklerobject *self, PyObject *args) {
  1300.     PyObject *key = 0, *value = 0;
  1301.     int i, len, res = -1, using_setitems;
  1302.     char s[3];
  1303.  
  1304.     static char setitem = SETITEM, setitems = SETITEMS;
  1305.  
  1306.     if (self->bin) {
  1307.         s[0] = EMPTY_DICT;
  1308.         len = 1;
  1309.     }
  1310.     else {
  1311.         s[0] = MARK;
  1312.         s[1] = DICT;
  1313.         len = 2;
  1314.     }
  1315.  
  1316.     if ((*self->write_func)(self, s, len) < 0)
  1317.         goto finally;
  1318.  
  1319.     if ((len = PyDict_Size(args)) < 0)
  1320.         goto finally;
  1321.  
  1322.     if (len == 0) {
  1323.         if (put(self, args) < 0)
  1324.             goto finally;
  1325.     }
  1326.     else {
  1327.         if (put2(self, args) < 0)
  1328.             goto finally;
  1329.     }
  1330.  
  1331.     if ((using_setitems = (self->bin && (PyDict_Size(args) > 1))))
  1332.         if ((*self->write_func)(self, &MARKv, 1) < 0)
  1333.             goto finally;
  1334.  
  1335.     i = 0;
  1336.     while (PyDict_Next(args, &i, &key, &value)) {
  1337.         if (save(self, key, 0) < 0)
  1338.             goto finally;
  1339.  
  1340.         if (save(self, value, 0) < 0)
  1341.             goto finally;
  1342.  
  1343.         if (!using_setitems) {
  1344.             if ((*self->write_func)(self, &setitem, 1) < 0)
  1345.                 goto finally;
  1346.         }
  1347.     }
  1348.  
  1349.     if (using_setitems) {
  1350.         if ((*self->write_func)(self, &setitems, 1) < 0)
  1351.             goto finally;
  1352.     }
  1353.  
  1354.     res = 0;
  1355.  
  1356. finally:
  1357.  
  1358.     return res;
  1359. }
  1360.  
  1361.  
  1362. static int  
  1363. save_inst(Picklerobject *self, PyObject *args) {
  1364.     PyObject *class = 0, *module = 0, *name = 0, *state = 0, 
  1365.              *getinitargs_func = 0, *getstate_func = 0, *class_args = 0;
  1366.     char *module_str, *name_str;
  1367.     int module_size, name_size, res = -1;
  1368.  
  1369.     static char inst = INST, obj = OBJ, build = BUILD;
  1370.  
  1371.     if ((*self->write_func)(self, &MARKv, 1) < 0)
  1372.         goto finally;
  1373.  
  1374.     UNLESS (class = PyObject_GetAttr(args, __class___str))
  1375.         goto finally;
  1376.  
  1377.     if (self->bin) {
  1378.         if (save(self, class, 0) < 0)
  1379.             goto finally;
  1380.     }
  1381.  
  1382.     if ((getinitargs_func = PyObject_GetAttr(args, __getinitargs___str))) {
  1383.         PyObject *element = 0;
  1384.         int i, len;
  1385.  
  1386.         UNLESS (class_args = 
  1387.             PyObject_CallObject(getinitargs_func, empty_tuple))
  1388.             goto finally;
  1389.  
  1390.         if ((len = PyObject_Length(class_args)) < 0)  
  1391.             goto finally;
  1392.  
  1393.         for (i = 0; i < len; i++) {
  1394.             UNLESS (element = PySequence_GetItem(class_args, i)) 
  1395.                 goto finally;
  1396.  
  1397.             if (save(self, element, 0) < 0) {
  1398.                 Py_DECREF(element);
  1399.                 goto finally;
  1400.             }
  1401.  
  1402.             Py_DECREF(element);
  1403.         }
  1404.     }
  1405.     else {
  1406.         PyErr_Clear();
  1407.     }
  1408.  
  1409.     if (!self->bin) {
  1410.         UNLESS (name = ((PyClassObject *)class)->cl_name) {
  1411.             PyErr_SetString(PicklingError, "class has no name");
  1412.             goto finally;
  1413.         }
  1414.  
  1415.         UNLESS (module = whichmodule(class, name))
  1416.             goto finally;
  1417.  
  1418.         
  1419.         if ((module_size = PyString_Size(module)) < 0 ||
  1420.            (name_size = PyString_Size(name)) < 0)
  1421.           goto finally;
  1422.  
  1423.         module_str = PyString_AS_STRING((PyStringObject *)module);
  1424.         name_str   = PyString_AS_STRING((PyStringObject *)name);
  1425.  
  1426.         if ((*self->write_func)(self, &inst, 1) < 0)
  1427.             goto finally;
  1428.  
  1429.         if ((*self->write_func)(self, module_str, module_size) < 0)
  1430.             goto finally;
  1431.  
  1432.         if ((*self->write_func)(self, "\n", 1) < 0)
  1433.             goto finally;
  1434.  
  1435.         if ((*self->write_func)(self, name_str, name_size) < 0)
  1436.             goto finally;
  1437.  
  1438.         if ((*self->write_func)(self, "\n", 1) < 0)
  1439.             goto finally;
  1440.     }
  1441.     else if ((*self->write_func)(self, &obj, 1) < 0) {
  1442.         goto finally;
  1443.     }
  1444.  
  1445.     if ((getstate_func = PyObject_GetAttr(args, __getstate___str))) {
  1446.         UNLESS (state = PyObject_CallObject(getstate_func, empty_tuple))
  1447.             goto finally;
  1448.     }
  1449.     else {
  1450.         PyErr_Clear();
  1451.  
  1452.         UNLESS (state = PyObject_GetAttr(args, __dict___str)) {
  1453.             PyErr_Clear();
  1454.             res = 0;
  1455.             goto finally;
  1456.         }
  1457.     }
  1458.  
  1459.     if (!PyDict_Check(state)) {
  1460.         if (put2(self, args) < 0)
  1461.             goto finally;
  1462.     }
  1463.     else {
  1464.         if (put(self, args) < 0)
  1465.             goto finally;
  1466.     }
  1467.   
  1468.     if (save(self, state, 0) < 0)
  1469.         goto finally;
  1470.  
  1471.     if ((*self->write_func)(self, &build, 1) < 0)
  1472.         goto finally;
  1473.  
  1474.     res = 0;
  1475.  
  1476. finally:
  1477.     Py_XDECREF(module);
  1478.     Py_XDECREF(class);
  1479.     Py_XDECREF(state);
  1480.     Py_XDECREF(getinitargs_func);
  1481.     Py_XDECREF(getstate_func);
  1482.     Py_XDECREF(class_args);
  1483.  
  1484.     return res;
  1485. }
  1486.  
  1487.  
  1488. static int
  1489. save_global(Picklerobject *self, PyObject *args, PyObject *name) {
  1490.     PyObject *global_name = 0, *module = 0;
  1491.     char *name_str, *module_str; 
  1492.     int module_size, name_size, res = -1;
  1493.  
  1494.     static char global = GLOBAL;
  1495.  
  1496.     if (name) {
  1497.         global_name = name;
  1498.         Py_INCREF(global_name);
  1499.     }
  1500.     else {
  1501.         UNLESS (global_name = PyObject_GetAttr(args, __name___str))
  1502.             goto finally;
  1503.     }
  1504.  
  1505.     UNLESS (module = whichmodule(args, global_name))
  1506.         goto finally;
  1507.  
  1508.     if ((module_size = PyString_Size(module)) < 0 ||
  1509.         (name_size = PyString_Size(global_name)) < 0)
  1510.       goto finally;
  1511.  
  1512.     module_str = PyString_AS_STRING((PyStringObject *)module);
  1513.     name_str   = PyString_AS_STRING((PyStringObject *)global_name);
  1514.  
  1515.     if ((*self->write_func)(self, &global, 1) < 0)
  1516.         goto finally;
  1517.  
  1518.     if ((*self->write_func)(self, module_str, module_size) < 0)
  1519.         goto finally;
  1520.  
  1521.     if ((*self->write_func)(self, "\n", 1) < 0)
  1522.         goto finally;
  1523.  
  1524.     if ((*self->write_func)(self, name_str, name_size) < 0)
  1525.         goto finally;
  1526.  
  1527.     if ((*self->write_func)(self, "\n", 1) < 0)
  1528.         goto finally;
  1529.  
  1530.     if (put(self, args) < 0)
  1531.         goto finally;
  1532.  
  1533.     res = 0;
  1534.  
  1535. finally:
  1536.     Py_XDECREF(module);
  1537.     Py_XDECREF(global_name);
  1538.  
  1539.     return res;
  1540. }
  1541.  
  1542. static int
  1543. save_pers(Picklerobject *self, PyObject *args, PyObject *f) {
  1544.     PyObject *pid = 0;
  1545.     int size, res = -1;
  1546.  
  1547.     static char persid = PERSID, binpersid = BINPERSID;
  1548.  
  1549.     Py_INCREF(args);
  1550.     ARG_TUP(self, args);
  1551.     if (self->arg) {
  1552.         pid = PyObject_CallObject(f, self->arg);
  1553.         FREE_ARG_TUP(self);
  1554.     }
  1555.     if (! pid) return -1;
  1556.  
  1557.     if (pid != Py_None) {
  1558.         if (!self->bin) {
  1559.             if (!PyString_Check(pid)) {
  1560.                 PyErr_SetString(PicklingError, 
  1561.                     "persistent id must be string");
  1562.                 goto finally;
  1563.             }
  1564.  
  1565.             if ((*self->write_func)(self, &persid, 1) < 0)
  1566.                 goto finally;
  1567.  
  1568.             if ((size = PyString_Size(pid)) < 0)
  1569.                 goto finally;
  1570.  
  1571.             if ((*self->write_func)(self, 
  1572.                 PyString_AS_STRING((PyStringObject *)pid), size) < 0)
  1573.                 goto finally;
  1574.  
  1575.             if ((*self->write_func)(self, "\n", 1) < 0)
  1576.                 goto finally;
  1577.      
  1578.             res = 1;
  1579.             goto finally;
  1580.         }
  1581.         else if (save(self, pid, 1) >= 0) {
  1582.             if ((*self->write_func)(self, &binpersid, 1) < 0)
  1583.                 res = -1;
  1584.             else
  1585.                 res = 1;
  1586.         }
  1587.  
  1588.         goto finally;              
  1589.     }
  1590.  
  1591.     res = 0;
  1592.  
  1593. finally:
  1594.     Py_XDECREF(pid);
  1595.  
  1596.     return res;
  1597. }
  1598.  
  1599.  
  1600. static int 
  1601. save_reduce(Picklerobject *self, PyObject *callable,
  1602.             PyObject *tup, PyObject *state, PyObject *ob) {
  1603.     static char reduce = REDUCE, build = BUILD;
  1604.  
  1605.     if (save(self, callable, 0) < 0)
  1606.         return -1;
  1607.  
  1608.     if (save(self, tup, 0) < 0)
  1609.         return -1;
  1610.  
  1611.     if ((*self->write_func)(self, &reduce, 1) < 0)
  1612.         return -1;
  1613.  
  1614.     if (ob != NULL) {
  1615.         if (state && !PyDict_Check(state)) {
  1616.             if (put2(self, ob) < 0)
  1617.                 return -1;
  1618.         }
  1619.         else {
  1620.             if (put(self, ob) < 0)
  1621.                 return -1;
  1622.         }
  1623.     }
  1624.     
  1625.     if (state) {
  1626.         if (save(self, state, 0) < 0)
  1627.             return -1;
  1628.  
  1629.         if ((*self->write_func)(self, &build, 1) < 0)
  1630.             return -1;
  1631.     }
  1632.  
  1633.     return 0;
  1634. }
  1635.  
  1636. static int
  1637. save(Picklerobject *self, PyObject *args, int  pers_save) {
  1638.     PyTypeObject *type;
  1639.     PyObject *py_ob_id = 0, *__reduce__ = 0, *t = 0, *arg_tup = 0,
  1640.              *callable = 0, *state = 0;
  1641.     int res = -1, tmp, size;
  1642.  
  1643.     if (!pers_save && self->pers_func) {
  1644.         if ((tmp = save_pers(self, args, self->pers_func)) != 0) {
  1645.             res = tmp;
  1646.             goto finally;
  1647.         }
  1648.     }
  1649.  
  1650.     if (args == Py_None) {
  1651.         res = save_none(self, args);
  1652.         goto finally;
  1653.     }
  1654.  
  1655.     type = args->ob_type;
  1656.  
  1657.     switch (type->tp_name[0]) {
  1658.         case 'i':
  1659.             if (type == &PyInt_Type) {
  1660.                 res = save_int(self, args);
  1661.                 goto finally;
  1662.             }
  1663.             break;
  1664.  
  1665.         case 'l':
  1666.             if (type == &PyLong_Type) {
  1667.                 res = save_long(self, args);
  1668.                 goto finally;
  1669.             }
  1670.             break;
  1671.  
  1672.         case 'f':
  1673.             if (type == &PyFloat_Type) {
  1674.                 res = save_float(self, args);
  1675.                 goto finally;
  1676.             }
  1677.             break;
  1678.  
  1679.         case 't':
  1680.             if (type == &PyTuple_Type && PyTuple_Size(args)==0) {
  1681.                 if (self->bin) res = save_empty_tuple(self, args);
  1682.                 else          res = save_tuple(self, args);
  1683.                 goto finally;
  1684.             }
  1685.             break;
  1686.  
  1687.         case 's':
  1688.             if ((type == &PyString_Type) && (PyString_GET_SIZE(args) < 2)) {
  1689.                 res = save_string(self, args, 0);
  1690.                 goto finally;
  1691.             }
  1692.     }
  1693.  
  1694.     if (args->ob_refcnt > 1) {
  1695.         long ob_id;
  1696.         int  has_key;
  1697.  
  1698.         ob_id = (long)args;
  1699.  
  1700.         UNLESS (py_ob_id = PyInt_FromLong(ob_id))
  1701.             goto finally;
  1702.  
  1703.         if ((has_key = cPickle_PyMapping_HasKey(self->memo, py_ob_id)) < 0)
  1704.             goto finally;
  1705.  
  1706.         if (has_key) {
  1707.             if (get(self, py_ob_id) < 0)
  1708.                 goto finally;
  1709.  
  1710.             res = 0;
  1711.             goto finally;
  1712.         }
  1713.     }
  1714.  
  1715.     switch (type->tp_name[0]) {
  1716.         case 's':
  1717.             if (type == &PyString_Type) {
  1718.                 res = save_string(self, args, 1);
  1719.                 goto finally;
  1720.             }
  1721.             break;
  1722.  
  1723.         case 't':
  1724.             if (type == &PyTuple_Type) {
  1725.                 res = save_tuple(self, args);
  1726.                 goto finally;
  1727.             }
  1728.             break;
  1729.  
  1730.         case 'l':
  1731.             if (type == &PyList_Type) {
  1732.                 res = save_list(self, args);
  1733.                 goto finally;
  1734.             }
  1735.             break;
  1736.  
  1737.         case 'd':
  1738.             if (type == &PyDict_Type) {
  1739.                 res = save_dict(self, args);
  1740.                 goto finally; 
  1741.             }
  1742.             break;
  1743.  
  1744.         case 'i':
  1745.             if (type == &PyInstance_Type) {
  1746.                 res = save_inst(self, args);
  1747.                 goto finally;
  1748.             }
  1749.             break;
  1750.  
  1751.         case 'c':
  1752.             if (type == &PyClass_Type) {
  1753.                 res = save_global(self, args, NULL);
  1754.                 goto finally;
  1755.             }
  1756.             break;
  1757.  
  1758.         case 'f':
  1759.             if (type == &PyFunction_Type) {
  1760.                 res = save_global(self, args, NULL);
  1761.                 goto finally;
  1762.             }
  1763.             break;
  1764.  
  1765.         case 'b':
  1766.             if (type == &PyCFunction_Type) {
  1767.                 res = save_global(self, args, NULL);
  1768.                 goto finally;
  1769.             }
  1770.     }
  1771.  
  1772.     if (!pers_save && self->inst_pers_func) {
  1773.         if ((tmp = save_pers(self, args, self->inst_pers_func)) != 0) {
  1774.             res = tmp;
  1775.             goto finally;
  1776.         }
  1777.     }
  1778.  
  1779.     if ((__reduce__ = PyDict_GetItem(dispatch_table, (PyObject *)type))) {
  1780.         Py_INCREF(__reduce__);
  1781.  
  1782.         Py_INCREF(args);
  1783.         ARG_TUP(self, args);
  1784.         if (self->arg) {
  1785.             t = PyObject_CallObject(__reduce__, self->arg);
  1786.             FREE_ARG_TUP(self);
  1787.         }
  1788.         if (! t) goto finally;
  1789.     }        
  1790.     else {
  1791.         PyErr_Clear();
  1792.  
  1793.         if ((__reduce__ = PyObject_GetAttr(args, __reduce___str))) {
  1794.             UNLESS (t = PyObject_CallObject(__reduce__, empty_tuple))
  1795.                 goto finally;
  1796.         }
  1797.         else {
  1798.             PyErr_Clear();
  1799.         }
  1800.     }
  1801.  
  1802.     if (t) {
  1803.         if (PyString_Check(t)) {
  1804.             res = save_global(self, args, t);
  1805.             goto finally;
  1806.         }
  1807.  
  1808.         if (!PyTuple_Check(t)) {
  1809.             cPickle_ErrFormat(PicklingError, "Value returned by %s must "
  1810.                 "be a tuple", "O", __reduce__);
  1811.             goto finally;
  1812.         }
  1813.  
  1814.         size = PyTuple_Size(t);
  1815.         
  1816.         if ((size != 3) && (size != 2)) {
  1817.             cPickle_ErrFormat(PicklingError, "tuple returned by %s must "     
  1818.                 "contain only two or three elements", "O", __reduce__);
  1819.                 goto finally;
  1820.         }
  1821.         
  1822.         callable = PyTuple_GET_ITEM(t, 0);
  1823.  
  1824.         arg_tup = PyTuple_GET_ITEM(t, 1);
  1825.  
  1826.         if (size > 2) {
  1827.             state = PyTuple_GET_ITEM(t, 2);
  1828.         }
  1829.  
  1830.         UNLESS (PyTuple_Check(arg_tup) || arg_tup==Py_None) {
  1831.             cPickle_ErrFormat(PicklingError, "Second element of tuple "
  1832.                 "returned by %s must be a tuple", "O", __reduce__);
  1833.             goto finally;
  1834.         }
  1835.  
  1836.         res = save_reduce(self, callable, arg_tup, state, args);
  1837.         goto finally;
  1838.     }
  1839.  
  1840.     cPickle_ErrFormat(PicklingError, "Cannot pickle %s objects.", 
  1841.         "O", (PyObject *)type);
  1842.  
  1843. finally:
  1844.     Py_XDECREF(py_ob_id);
  1845.     Py_XDECREF(__reduce__);
  1846.     Py_XDECREF(t);
  1847.    
  1848.     return res;
  1849. }
  1850.  
  1851.  
  1852. static int
  1853. dump(Picklerobject *self, PyObject *args) {
  1854.     static char stop = STOP;
  1855.  
  1856.     if (save(self, args, 0) < 0)
  1857.         return -1;
  1858.  
  1859.     if ((*self->write_func)(self, &stop, 1) < 0)
  1860.         return -1;
  1861.  
  1862.     if ((*self->write_func)(self, NULL, 0) < 0)
  1863.         return -1;
  1864.  
  1865.     return 0;
  1866. }
  1867.  
  1868. static PyObject *
  1869. Pickle_clear_memo(Picklerobject *self, PyObject *args) {
  1870.   if (args && ! PyArg_ParseTuple(args,"")) return NULL;
  1871.   if (self->memo) PyDict_Clear(self->memo);
  1872.   Py_INCREF(Py_None);
  1873.   return Py_None;
  1874. }
  1875.  
  1876. static PyObject *
  1877. Pickle_getvalue(Picklerobject *self, PyObject *args) {
  1878.   int l, i, rsize, ssize, clear=1, lm;
  1879.   long ik;
  1880.   PyObject *k, *r;
  1881.   char *s, *p, *have_get;
  1882.   Pdata *data;
  1883.  
  1884.   if (args && ! PyArg_ParseTuple(args,"|i",&clear)) return NULL;
  1885.  
  1886.   /* Check to make sure we are based on a list */
  1887.   if (! Pdata_Check(self->file)) {
  1888.       PyErr_SetString(PicklingError,
  1889.                       "Attempt to getvalue a non-list-based pickler");
  1890.       return NULL;
  1891.     }
  1892.  
  1893.   /* flush write buffer */
  1894.   if (write_other(self, NULL, 0) < 0) return NULL;
  1895.  
  1896.   data=(Pdata*)self->file;
  1897.   l=data->length;
  1898.  
  1899.   /* set up an array to hold get/put status */
  1900.   if ((lm=PyDict_Size(self->memo)) < 0) return NULL;
  1901.   lm++;
  1902.   if (! (have_get=malloc((lm)*sizeof(char)))) return PyErr_NoMemory();  
  1903.   memset(have_get,0,lm);
  1904.  
  1905.   /* Scan for gets. */
  1906.   for (rsize=0, i=l; --i >= 0; ) {
  1907.       k=data->data[i];
  1908.       
  1909.       if (PyString_Check(k)) {
  1910.         rsize += PyString_GET_SIZE(k);
  1911.       }
  1912.  
  1913.       else if (PyInt_Check(k)) { /* put */
  1914.         ik=PyInt_AS_LONG((PyIntObject*)k);
  1915.         if (ik >= lm || ik==0) {
  1916.           PyErr_SetString(PicklingError,
  1917.                           "Invalid get data");
  1918.           return NULL;
  1919.         }      
  1920.         if (have_get[ik]) { /* with matching get */
  1921.           if (ik < 256) rsize += 2;
  1922.           else rsize+=5;
  1923.         }
  1924.       }
  1925.  
  1926.       else if (! (PyTuple_Check(k) &&
  1927.                   PyTuple_GET_SIZE(k) == 2 &&
  1928.                   PyInt_Check((k=PyTuple_GET_ITEM(k,0))))
  1929.                ) {
  1930.         PyErr_SetString(PicklingError,
  1931.                         "Unexpected data in internal list");
  1932.         return NULL;
  1933.       }
  1934.  
  1935.       else { /* put */
  1936.         ik=PyInt_AS_LONG((PyIntObject*)k);
  1937.         if (ik >= lm || ik==0) {
  1938.           PyErr_SetString(PicklingError,
  1939.                           "Invalid get data");
  1940.           return NULL;
  1941.         }      
  1942.         have_get[ik]=1;
  1943.         if (ik < 256) rsize += 2;
  1944.         else rsize+=5;
  1945.       }
  1946.  
  1947.     }
  1948.  
  1949.   /* Now generate the result */
  1950.   UNLESS (r=PyString_FromStringAndSize(NULL,rsize)) goto err;
  1951.   s=PyString_AS_STRING((PyStringObject*)r);
  1952.  
  1953.   for (i=0; i<l; i++) {
  1954.       k=data->data[i];
  1955.  
  1956.       if (PyString_Check(k)) {
  1957.         ssize=PyString_GET_SIZE(k);
  1958.         if (ssize) {
  1959.             p=PyString_AS_STRING((PyStringObject*)k);
  1960.             while (--ssize >= 0) *s++=*p++;
  1961.           }
  1962.       }
  1963.  
  1964.       else if (PyTuple_Check(k)) { /* get */
  1965.         ik=PyInt_AS_LONG((PyIntObject*)PyTuple_GET_ITEM(k,0));
  1966.         if (ik < 256) {
  1967.           *s++ = BINGET;
  1968.           *s++ = (int)(ik & 0xff);
  1969.         }
  1970.         else {
  1971.           *s++ = LONG_BINGET;
  1972.           *s++ = (int)(ik & 0xff);
  1973.           *s++ = (int)((ik >> 8)  & 0xff);
  1974.           *s++ = (int)((ik >> 16) & 0xff);
  1975.           *s++ = (int)((ik >> 24) & 0xff);
  1976.         }
  1977.       }
  1978.  
  1979.       else { /* put */
  1980.         ik=PyInt_AS_LONG((PyIntObject*)k);
  1981.  
  1982.         if (have_get[ik]) { /* with matching get */
  1983.           if (ik < 256) {
  1984.             *s++ = BINPUT;
  1985.             *s++ = (int)(ik & 0xff);
  1986.           }
  1987.           else {
  1988.             *s++ = LONG_BINPUT;
  1989.             *s++ = (int)(ik & 0xff);
  1990.             *s++ = (int)((ik >> 8)  & 0xff);
  1991.             *s++ = (int)((ik >> 16) & 0xff);
  1992.             *s++ = (int)((ik >> 24) & 0xff);
  1993.           }
  1994.         }
  1995.       }
  1996.  
  1997.     }
  1998.  
  1999.   if (clear) {
  2000.     PyDict_Clear(self->memo);
  2001.     Pdata_clear(data,0);
  2002.   }
  2003.     
  2004.   free(have_get);
  2005.   return r;
  2006. err:
  2007.   free(have_get);
  2008.   return NULL;
  2009. }
  2010.  
  2011. static PyObject *
  2012. Pickler_dump(Picklerobject *self, PyObject *args) {
  2013.     PyObject *ob;
  2014.     int get=0;
  2015.  
  2016.     UNLESS (PyArg_ParseTuple(args, "O|i", &ob, &get))
  2017.         return NULL;
  2018.  
  2019.     if (dump(self, ob) < 0)
  2020.         return NULL;
  2021.  
  2022.     if (get) return Pickle_getvalue(self, NULL);
  2023.  
  2024.     Py_INCREF(self);
  2025.     return (PyObject*)self;
  2026. }
  2027.  
  2028.  
  2029. static struct PyMethodDef Pickler_methods[] = {
  2030.   {"dump",          (PyCFunction)Pickler_dump,  1,
  2031.    "dump(object) --"
  2032.    "Write an object in pickle format to the object's pickle stream\n"
  2033.   },
  2034.   {"clear_memo",  (PyCFunction)Pickle_clear_memo,  1,
  2035.    "clear_memo() -- Clear the picklers memo"},
  2036.   {"getvalue",  (PyCFunction)Pickle_getvalue,  1,
  2037.    "getvalue() -- Finish picking a list-based pickle"},
  2038.   {NULL,                NULL}           /* sentinel */
  2039. };
  2040.  
  2041.  
  2042. static Picklerobject *
  2043. newPicklerobject(PyObject *file, int bin) {
  2044.     Picklerobject *self;
  2045.  
  2046.     UNLESS (self = PyObject_NEW(Picklerobject, &Picklertype))
  2047.         return NULL;
  2048.  
  2049.     self->fp = NULL;
  2050.     self->write = NULL;
  2051.     self->memo = NULL;
  2052.     self->arg = NULL;
  2053.     self->pers_func = NULL;
  2054.     self->inst_pers_func = NULL;
  2055.     self->write_buf = NULL;
  2056.     self->bin = bin;
  2057.     self->fast = 0;
  2058.     self->buf_size = 0;
  2059.     self->dispatch_table = NULL;
  2060.  
  2061.     if (file)
  2062.       Py_INCREF(file);
  2063.     else
  2064.       file=Pdata_New();
  2065.  
  2066.     self->file = file;
  2067.  
  2068.     UNLESS (self->memo = PyDict_New()) {
  2069.        Py_XDECREF((PyObject *)self);
  2070.        return NULL;
  2071.     }
  2072.  
  2073.     if (PyFile_Check(file)) {
  2074.         self->fp = PyFile_AsFile(file);
  2075.     if (self->fp == NULL) {
  2076.         PyErr_SetString(PyExc_IOError, "output file closed");
  2077.         return NULL;
  2078.     }
  2079.         self->write_func = write_file;
  2080.     }
  2081.     else if (PycStringIO_OutputCheck(file)) {
  2082.         self->write_func = write_cStringIO;
  2083.     }
  2084.     else if (file == Py_None) {
  2085.         self->write_func = write_none;
  2086.     }
  2087.     else {
  2088.         self->write_func = write_other;
  2089.  
  2090.         if (! Pdata_Check(file)) {
  2091.           UNLESS (self->write = PyObject_GetAttr(file, write_str)) {
  2092.             PyErr_Clear();
  2093.             PyErr_SetString(PyExc_TypeError, "argument must have 'write' "
  2094.                             "attribute");
  2095.             goto err;
  2096.           }
  2097.         }
  2098.  
  2099.         UNLESS (self->write_buf = 
  2100.             (char *)malloc(WRITE_BUF_SIZE * sizeof(char))) { 
  2101.             PyErr_NoMemory();
  2102.             goto err;
  2103.         }
  2104.     }
  2105.  
  2106.     if (PyEval_GetRestricted()) {
  2107.         /* Restricted execution, get private tables */
  2108.         PyObject *m;
  2109.  
  2110.         UNLESS (m=PyImport_Import(copy_reg_str)) goto err;
  2111.         self->dispatch_table=PyObject_GetAttr(m, dispatch_table_str);
  2112.         Py_DECREF(m);
  2113.         UNLESS (self->dispatch_table) goto err;
  2114.     }
  2115.     else {
  2116.         self->dispatch_table=dispatch_table;
  2117.         Py_INCREF(dispatch_table);
  2118.     }
  2119.  
  2120.     return self;
  2121.  
  2122. err:
  2123.     Py_DECREF((PyObject *)self);
  2124.     return NULL;
  2125. }
  2126.  
  2127.  
  2128. static PyObject *
  2129. get_Pickler(PyObject *self, PyObject *args) {
  2130.     PyObject *file=NULL;
  2131.     int bin;
  2132.  
  2133.     bin=1;
  2134.     if (! PyArg_ParseTuple(args, "|i", &bin)) {
  2135.         PyErr_Clear();
  2136.         bin=0;
  2137.         if (! PyArg_ParseTuple(args, "O|i", &file, &bin))
  2138.           return NULL;
  2139.       }
  2140.     return (PyObject *)newPicklerobject(file, bin);
  2141. }
  2142.  
  2143.  
  2144. static void
  2145. Pickler_dealloc(Picklerobject *self) {
  2146.     Py_XDECREF(self->write);
  2147.     Py_XDECREF(self->memo);
  2148.     Py_XDECREF(self->arg);
  2149.     Py_XDECREF(self->file);
  2150.     Py_XDECREF(self->pers_func);
  2151.     Py_XDECREF(self->inst_pers_func);
  2152.     Py_XDECREF(self->dispatch_table);
  2153.  
  2154.     if (self->write_buf) {    
  2155.         free(self->write_buf);
  2156.     }
  2157.  
  2158.     PyMem_DEL(self);
  2159. }
  2160.  
  2161.  
  2162. static PyObject *
  2163. Pickler_getattr(Picklerobject *self, char *name) {
  2164.  
  2165.   switch (*name) {
  2166.   case 'p':
  2167.     if (strcmp(name, "persistent_id") == 0) {
  2168.         if (!self->pers_func) {
  2169.             PyErr_SetString(PyExc_AttributeError, name);
  2170.             return NULL;
  2171.         }
  2172.  
  2173.         Py_INCREF(self->pers_func);
  2174.         return self->pers_func;
  2175.     }
  2176.     break;
  2177.   case 'm':
  2178.     if (strcmp(name, "memo") == 0) {
  2179.         if (!self->memo) {
  2180.             PyErr_SetString(PyExc_AttributeError, name);
  2181.             return NULL;
  2182.         }
  2183.  
  2184.         Py_INCREF(self->memo);
  2185.         return self->memo;
  2186.     }
  2187.     break;
  2188.   case 'P':
  2189.     if (strcmp(name, "PicklingError") == 0) {
  2190.         Py_INCREF(PicklingError);
  2191.         return PicklingError;
  2192.     }
  2193.     break;
  2194.   case 'b':
  2195.     if (strcmp(name, "binary")==0)
  2196.       return PyInt_FromLong(self->bin);
  2197.     break;
  2198.   case 'f':
  2199.     if (strcmp(name, "fast")==0)
  2200.       return PyInt_FromLong(self->fast);
  2201.     break;
  2202.   case 'g':
  2203.     if (strcmp(name, "getvalue")==0 && ! Pdata_Check(self->file)) {
  2204.       PyErr_SetString(PyExc_AttributeError, name);
  2205.       return NULL;
  2206.     }
  2207.     break;
  2208.   }
  2209.   return Py_FindMethod(Pickler_methods, (PyObject *)self, name);
  2210. }
  2211.  
  2212.  
  2213. int 
  2214. Pickler_setattr(Picklerobject *self, char *name, PyObject *value) {
  2215.  
  2216.     if (! value) {
  2217.         PyErr_SetString(PyExc_TypeError,
  2218.                         "attribute deletion is not supported");
  2219.         return -1;
  2220.     }
  2221.   
  2222.     if (strcmp(name, "persistent_id") == 0) {
  2223.         Py_XDECREF(self->pers_func);
  2224.         self->pers_func = value;
  2225.         Py_INCREF(value);
  2226.         return 0;
  2227.     }
  2228.  
  2229.     if (strcmp(name, "inst_persistent_id") == 0) {
  2230.         Py_XDECREF(self->inst_pers_func);
  2231.         self->inst_pers_func = value;
  2232.         Py_INCREF(value);
  2233.         return 0;
  2234.     }
  2235.  
  2236.     if (strcmp(name, "memo") == 0) {
  2237.         if (! PyDict_Check(value)) {
  2238.           PyErr_SetString(PyExc_TypeError, "memo must be a dictionary");
  2239.           return -1;
  2240.         }
  2241.         Py_XDECREF(self->memo);
  2242.         self->memo = value;
  2243.         Py_INCREF(value);
  2244.         return 0;
  2245.     }
  2246.  
  2247.     if (strcmp(name, "binary")==0) {
  2248.         self->bin=PyObject_IsTrue(value);
  2249.         return 0;
  2250.     }
  2251.  
  2252.     if (strcmp(name, "fast")==0) {
  2253.         self->fast=PyObject_IsTrue(value);
  2254.         return 0;
  2255.     }
  2256.  
  2257.     PyErr_SetString(PyExc_AttributeError, name);
  2258.     return -1;
  2259. }
  2260.  
  2261.  
  2262. static char Picklertype__doc__[] =
  2263. "Objects that know how to pickle objects\n"
  2264. ;
  2265.  
  2266. static PyTypeObject Picklertype = {
  2267.     PyObject_HEAD_INIT(NULL)
  2268.     0,                            /*ob_size*/
  2269.     "Pickler",                    /*tp_name*/
  2270.     sizeof(Picklerobject),                /*tp_basicsize*/
  2271.     0,                            /*tp_itemsize*/
  2272.     /* methods */
  2273.     (destructor)Pickler_dealloc,  /*tp_dealloc*/
  2274.     (printfunc)0,         /*tp_print*/
  2275.     (getattrfunc)Pickler_getattr, /*tp_getattr*/
  2276.     (setattrfunc)Pickler_setattr, /*tp_setattr*/
  2277.     (cmpfunc)0,           /*tp_compare*/
  2278.     (reprfunc)0,          /*tp_repr*/
  2279.     0,                    /*tp_as_number*/
  2280.     0,            /*tp_as_sequence*/
  2281.     0,            /*tp_as_mapping*/
  2282.     (hashfunc)0,          /*tp_hash*/
  2283.     (ternaryfunc)0,               /*tp_call*/
  2284.     (reprfunc)0,          /*tp_str*/
  2285.  
  2286.     /* Space for future expansion */
  2287.     0L,0L,0L,0L,
  2288.     Picklertype__doc__ /* Documentation string */
  2289. };
  2290.  
  2291. static PyObject *
  2292. find_class(PyObject *py_module_name, PyObject *py_global_name) {
  2293.     PyObject *global = 0, *module;
  2294.  
  2295.     module = PySys_GetObject("modules");
  2296.     if (module == NULL)
  2297.       return NULL;
  2298.  
  2299.     module = PyDict_GetItem(module, py_module_name);
  2300.     if (module == NULL) {
  2301.       module = PyImport_Import(py_module_name);
  2302.       if (!module)
  2303.           return NULL;
  2304.       global = PyObject_GetAttr(module, py_global_name);
  2305.       Py_DECREF(module);
  2306.     }
  2307.     else
  2308.       global = PyObject_GetAttr(module, py_global_name);
  2309.     if (global == NULL) {
  2310.       char buf[256 + 37];
  2311.       sprintf(buf, "Failed to import class %.128s from module %.128s",
  2312.               PyString_AS_STRING((PyStringObject*)py_global_name),
  2313.               PyString_AS_STRING((PyStringObject*)py_module_name));  
  2314.       PyErr_SetString(PyExc_SystemError, buf);
  2315.       return NULL;
  2316.     }
  2317.     return global;
  2318. }
  2319.  
  2320. static int
  2321. marker(Unpicklerobject *self) {
  2322.     if (self->num_marks < 1) {
  2323.         PyErr_SetString(UnpicklingError, "could not find MARK");
  2324.         return -1;
  2325.     }
  2326.  
  2327.     return self->marks[--self->num_marks];
  2328. }
  2329.  
  2330.     
  2331. static int
  2332. load_none(Unpicklerobject *self) {
  2333.     PDATA_APPEND(self->stack, Py_None, -1);
  2334.     return 0;
  2335. }
  2336.  
  2337. static int
  2338. bad_readline() {
  2339.     PyErr_SetString(UnpicklingError, "pickle data was truncated");
  2340.     return -1;
  2341. }
  2342.  
  2343. static int
  2344. load_int(Unpicklerobject *self) {
  2345.     PyObject *py_int = 0;
  2346.     char *endptr, *s;
  2347.     int len, res = -1;
  2348.     long l;
  2349.  
  2350.     if ((len = (*self->readline_func)(self, &s)) < 0) return -1;
  2351.     if (len < 2) return bad_readline();
  2352.     UNLESS (s=pystrndup(s,len)) return -1;
  2353.  
  2354.     errno = 0;
  2355.     l = strtol(s, &endptr, 0);
  2356.  
  2357.     if (errno || (*endptr != '\n') || (endptr[1] != '\0')) {
  2358.         /* Hm, maybe we've got something long.  Let's try reading
  2359.            it as a Python long object. */
  2360.         errno=0;
  2361.         UNLESS (py_int=PyLong_FromString(s,&endptr,0)) goto finally;
  2362.  
  2363.         if ((*endptr != '\n') || (endptr[1] != '\0')) {
  2364.             PyErr_SetString(PyExc_ValueError,
  2365.                             "could not convert string to int");
  2366.             goto finally;
  2367.         }
  2368.     }
  2369.     else {
  2370.         UNLESS (py_int = PyInt_FromLong(l)) goto finally;
  2371.     }
  2372.  
  2373.     free(s);
  2374.     PDATA_PUSH(self->stack, py_int, -1);
  2375.     return 0;
  2376.  
  2377. finally:
  2378.     free(s);
  2379.  
  2380.     return res;
  2381. }
  2382.  
  2383.  
  2384. static long 
  2385. calc_binint(char *s, int  x) {
  2386.     unsigned char c;
  2387.     int i;
  2388.     long l;
  2389.  
  2390.     for (i = 0, l = 0L; i < x; i++) {
  2391.         c = (unsigned char)s[i];
  2392.         l |= (long)c << (i * 8);
  2393.     }
  2394.  
  2395.     return l;
  2396. }
  2397.  
  2398.  
  2399. static int
  2400. load_binintx(Unpicklerobject *self, char *s, int  x) {
  2401.     PyObject *py_int = 0;
  2402.     long l;
  2403.  
  2404.     l = calc_binint(s, x);
  2405.  
  2406.     UNLESS (py_int = PyInt_FromLong(l))
  2407.         return -1;
  2408.  
  2409.     PDATA_PUSH(self->stack, py_int, -1);
  2410.     return 0;
  2411. }
  2412.  
  2413.  
  2414. static int
  2415. load_binint(Unpicklerobject *self) {
  2416.     char *s;
  2417.  
  2418.     if ((*self->read_func)(self, &s, 4) < 0)
  2419.         return -1;
  2420.  
  2421.     return load_binintx(self, s, 4);
  2422. }
  2423.  
  2424.  
  2425. static int
  2426. load_binint1(Unpicklerobject *self) {
  2427.     char *s;
  2428.  
  2429.     if ((*self->read_func)(self, &s, 1) < 0)
  2430.         return -1;
  2431.  
  2432.     return load_binintx(self, s, 1);
  2433. }
  2434.  
  2435.  
  2436. static int
  2437. load_binint2(Unpicklerobject *self) {
  2438.     char *s;
  2439.  
  2440.     if ((*self->read_func)(self, &s, 2) < 0)
  2441.         return -1;
  2442.  
  2443.     return load_binintx(self, s, 2);
  2444. }
  2445.     
  2446. static int
  2447. load_long(Unpicklerobject *self) {
  2448.     PyObject *l = 0;
  2449.     char *end, *s;
  2450.     int len, res = -1;
  2451.  
  2452.     if ((len = (*self->readline_func)(self, &s)) < 0) return -1;
  2453.     if (len < 2) return bad_readline();
  2454.     UNLESS (s=pystrndup(s,len)) return -1;
  2455.  
  2456.     UNLESS (l = PyLong_FromString(s, &end, 0))
  2457.         goto finally;
  2458.  
  2459.     free(s);
  2460.     PDATA_PUSH(self->stack, l, -1);
  2461.     return 0;
  2462.  
  2463. finally:
  2464.     free(s);
  2465.  
  2466.     return res;
  2467. }
  2468.  
  2469.  
  2470. static int
  2471. load_float(Unpicklerobject *self) {
  2472.     PyObject *py_float = 0;
  2473.     char *endptr, *s;
  2474.     int len, res = -1;
  2475.     double d;
  2476.  
  2477.     if ((len = (*self->readline_func)(self, &s)) < 0) return -1;
  2478.     if (len < 2) return bad_readline();
  2479.     UNLESS (s=pystrndup(s,len)) return -1;
  2480.  
  2481.     errno = 0;
  2482.     d = strtod(s, &endptr);
  2483.  
  2484.     if (errno || (endptr[0] != '\n') || (endptr[1] != '\0')) {
  2485.         PyErr_SetString(PyExc_ValueError, 
  2486.         "could not convert string to float");
  2487.         goto finally;
  2488.     }
  2489.  
  2490.     UNLESS (py_float = PyFloat_FromDouble(d))
  2491.         goto finally;
  2492.  
  2493.     free(s);
  2494.     PDATA_PUSH(self->stack, py_float, -1);
  2495.     return 0;
  2496.  
  2497. finally:
  2498.     free(s);
  2499.  
  2500.     return res;
  2501. }
  2502.  
  2503. static int
  2504. load_binfloat(Unpicklerobject *self) {
  2505.     PyObject *py_float = 0;
  2506.     int s, e, res = -1;
  2507.     long fhi, flo;
  2508.     double x;
  2509.     char *p;
  2510.  
  2511.     if ((*self->read_func)(self, &p, 8) < 0)
  2512.         return -1;
  2513.  
  2514.     /* First byte */
  2515.     s = (*p>>7) & 1;
  2516.     e = (*p & 0x7F) << 4;
  2517.     p++;
  2518.  
  2519.     /* Second byte */
  2520.     e |= (*p>>4) & 0xF;
  2521.     fhi = (*p & 0xF) << 24;
  2522.     p++;
  2523.  
  2524.     /* Third byte */
  2525.     fhi |= (*p & 0xFF) << 16;
  2526.     p++;
  2527.  
  2528.     /* Fourth byte */
  2529.     fhi |= (*p & 0xFF) << 8;
  2530.     p++;
  2531.  
  2532.     /* Fifth byte */
  2533.     fhi |= *p & 0xFF;
  2534.     p++;
  2535.  
  2536.     /* Sixth byte */
  2537.     flo = (*p & 0xFF) << 16;
  2538.     p++;
  2539.  
  2540.     /* Seventh byte */
  2541.     flo |= (*p & 0xFF) << 8;
  2542.     p++;
  2543.  
  2544.     /* Eighth byte */
  2545.     flo |= *p & 0xFF;
  2546.  
  2547.     x = (double)fhi + (double)flo / 16777216.0; /* 2**24 */
  2548.     x /= 268435456.0; /* 2**28 */
  2549.  
  2550.     /* XXX This sadly ignores Inf/NaN */
  2551.     if (e == 0)
  2552.         e = -1022;
  2553.     else {
  2554.         x += 1.0;
  2555.         e -= 1023;
  2556.     }
  2557.     x = ldexp(x, e);
  2558.  
  2559.     if (s)
  2560.         x = -x;
  2561.  
  2562.     UNLESS (py_float = PyFloat_FromDouble(x)) return -1;
  2563.  
  2564.     PDATA_PUSH(self->stack, py_float, -1);
  2565.     return 0;
  2566. }
  2567.  
  2568. static int
  2569. load_string(Unpicklerobject *self) {
  2570.     PyObject *str = 0;
  2571.     int len, res = -1, nslash;
  2572.     char *s, q, *p;
  2573.  
  2574.     static PyObject *eval_dict = 0;
  2575.  
  2576.     if ((len = (*self->readline_func)(self, &s)) < 0) return -1;
  2577.     if (len < 2) return bad_readline();
  2578.     UNLESS (s=pystrndup(s,len)) return -1;
  2579.  
  2580.     /* Check for unquoted quotes (evil strings) */
  2581.     q=*s;
  2582.     if (q != '"' && q != '\'') goto insecure;
  2583.     for (p=s+1, nslash=0; *p; p++) {
  2584.         if (*p==q && nslash%2==0) break;
  2585.         if (*p=='\\') nslash++;
  2586.         else nslash=0;
  2587.       }
  2588.     if (*p==q)
  2589.       {
  2590.         for (p++; *p; p++) if (*p > ' ') goto insecure;
  2591.       }
  2592.     else goto insecure;
  2593.     /********************************************/
  2594.  
  2595.     UNLESS (eval_dict)
  2596.         UNLESS (eval_dict = Py_BuildValue("{s{}}", "__builtins__"))
  2597.             goto finally;
  2598.  
  2599.     UNLESS (str = PyRun_String(s, Py_eval_input, eval_dict, eval_dict))
  2600.         goto finally;
  2601.  
  2602.     free(s);
  2603.     PDATA_PUSH(self->stack, str, -1);
  2604.     return 0;
  2605.  
  2606. finally:
  2607.     free(s);
  2608.  
  2609.     return res;
  2610.     
  2611. insecure:
  2612.     free(s);
  2613.     PyErr_SetString(PyExc_ValueError,"insecure string pickle");
  2614.     return -1;
  2615.  
  2616.  
  2617. static int
  2618. load_binstring(Unpicklerobject *self) {
  2619.     PyObject *py_string = 0;
  2620.     long l;
  2621.     int res = -1;
  2622.     char *s;
  2623.  
  2624.     if ((*self->read_func)(self, &s, 4) < 0) return -1;
  2625.  
  2626.     l = calc_binint(s, 4);
  2627.  
  2628.     if ((*self->read_func)(self, &s, l) < 0)
  2629.         return -1;
  2630.  
  2631.     UNLESS (py_string = PyString_FromStringAndSize(s, l))
  2632.         return -1;
  2633.  
  2634.     PDATA_PUSH(self->stack, py_string, -1);
  2635.     return 0;
  2636. }
  2637.  
  2638.  
  2639. static int
  2640. load_short_binstring(Unpicklerobject *self) {
  2641.     PyObject *py_string = 0;
  2642.     unsigned char l;  
  2643.     int res = -1;
  2644.     char *s;
  2645.  
  2646.     if ((*self->read_func)(self, &s, 1) < 0)
  2647.         return -1;
  2648.  
  2649.     l = (unsigned char)s[0];
  2650.  
  2651.     if ((*self->read_func)(self, &s, l) < 0) return -1;
  2652.  
  2653.     UNLESS (py_string = PyString_FromStringAndSize(s, l)) return -1;
  2654.  
  2655.     PDATA_PUSH(self->stack, py_string, -1);
  2656.     return 0;
  2657.  
  2658.  
  2659. static int
  2660. load_tuple(Unpicklerobject *self) {
  2661.     PyObject *tup;
  2662.     int i;
  2663.  
  2664.     if ((i = marker(self)) < 0) return -1;
  2665.     UNLESS (tup=Pdata_popTuple(self->stack, i)) return -1;
  2666.     PDATA_PUSH(self->stack, tup, -1);
  2667.     return 0;
  2668. }
  2669.  
  2670. static int
  2671. load_empty_tuple(Unpicklerobject *self) {
  2672.     PyObject *tup;
  2673.  
  2674.     UNLESS (tup=PyTuple_New(0)) return -1;
  2675.     PDATA_PUSH(self->stack, tup, -1);
  2676.     return 0;
  2677. }
  2678.  
  2679. static int
  2680. load_empty_list(Unpicklerobject *self) {
  2681.     PyObject *list;
  2682.  
  2683.     UNLESS (list=PyList_New(0)) return -1;
  2684.     PDATA_PUSH(self->stack, list, -1);
  2685.     return 0;
  2686. }
  2687.  
  2688. static int
  2689. load_empty_dict(Unpicklerobject *self) {
  2690.     PyObject *dict;
  2691.  
  2692.     UNLESS (dict=PyDict_New()) return -1;
  2693.     PDATA_PUSH(self->stack, dict, -1);
  2694.     return 0;
  2695. }
  2696.  
  2697.  
  2698. static int
  2699. load_list(Unpicklerobject *self) {
  2700.     PyObject *list = 0;
  2701.     int i;
  2702.  
  2703.     if ((i = marker(self)) < 0) return -1;
  2704.     UNLESS (list=Pdata_popList(self->stack, i)) return -1;
  2705.     PDATA_PUSH(self->stack, list, -1);
  2706.     return 0;
  2707. }
  2708.  
  2709. static int
  2710. load_dict(Unpicklerobject *self) {
  2711.     PyObject *dict, *key, *value;
  2712.     int i, j, k;
  2713.  
  2714.     if ((i = marker(self)) < 0) return -1;
  2715.     j=self->stack->length;
  2716.  
  2717.     UNLESS (dict = PyDict_New()) return -1;
  2718.  
  2719.     for (k = i+1; k < j; k += 2) {
  2720.         key  =self->stack->data[k-1];
  2721.         value=self->stack->data[k  ];
  2722.         if (PyDict_SetItem(dict, key, value) < 0) {
  2723.             Py_DECREF(dict);
  2724.             return -1;
  2725.         }
  2726.     }
  2727.     Pdata_clear(self->stack, i);
  2728.     PDATA_PUSH(self->stack, dict, -1);
  2729.     return 0;
  2730. }
  2731.  
  2732. static PyObject *
  2733. Instance_New(PyObject *cls, PyObject *args) {
  2734.   int has_key;
  2735.   PyObject *safe=0, *r=0;
  2736.  
  2737.   if (PyClass_Check(cls)) {
  2738.       int l;
  2739.       
  2740.       if ((l=PyObject_Length(args)) < 0) goto err;
  2741.       UNLESS (l) {
  2742.           PyObject *__getinitargs__;
  2743.  
  2744.           UNLESS (__getinitargs__=PyObject_GetAttr(cls, __getinitargs___str)) {
  2745.               /* We have a class with no __getinitargs__, so bypass usual
  2746.                  construction  */
  2747.               PyInstanceObject *inst;
  2748.  
  2749.               PyErr_Clear();
  2750.               UNLESS (inst=PyObject_NEW(PyInstanceObject, &PyInstance_Type))
  2751.                 goto err;
  2752.               inst->in_class=(PyClassObject*)cls;
  2753.               Py_INCREF(cls);
  2754.               UNLESS (inst->in_dict=PyDict_New()) {
  2755.                 Py_DECREF(inst);
  2756.                 goto err;
  2757.               }
  2758.  
  2759.               return (PyObject *)inst;
  2760.             }
  2761.           Py_DECREF(__getinitargs__);
  2762.         }
  2763.       
  2764.       if ((r=PyInstance_New(cls, args, NULL))) return r;
  2765.       else goto err;
  2766.     }
  2767.        
  2768.   
  2769.   if ((has_key = cPickle_PyMapping_HasKey(safe_constructors, cls)) < 0)
  2770.     goto err;
  2771.     
  2772.   if (!has_key)
  2773.     if (!(safe = PyObject_GetAttr(cls, __safe_for_unpickling___str)) ||
  2774.        !PyObject_IsTrue(safe)) {
  2775.       cPickle_ErrFormat(UnpicklingError,
  2776.                         "%s is not safe for unpickling", "O", cls);
  2777.       Py_XDECREF(safe);
  2778.       return NULL;
  2779.   }
  2780.  
  2781.   if (args==Py_None) {
  2782.       /* Special case, call cls.__basicnew__() */
  2783.       PyObject *basicnew;
  2784.       
  2785.       UNLESS (basicnew=PyObject_GetAttr(cls, __basicnew___str)) return NULL;
  2786.       r=PyObject_CallObject(basicnew, NULL);
  2787.       Py_DECREF(basicnew);
  2788.       if (r) return r;
  2789.     }
  2790.  
  2791.   if ((r=PyObject_CallObject(cls, args))) return r;
  2792.  
  2793. err:
  2794.   {
  2795.     PyObject *tp, *v, *tb;
  2796.  
  2797.     PyErr_Fetch(&tp, &v, &tb);
  2798.     if ((r=Py_BuildValue("OOO",v,cls,args))) {
  2799.         Py_XDECREF(v);
  2800.         v=r;
  2801.       }
  2802.     PyErr_Restore(tp,v,tb);
  2803.   }
  2804.   return NULL;
  2805. }
  2806.   
  2807.  
  2808. static int
  2809. load_obj(Unpicklerobject *self) {
  2810.     PyObject *class, *tup, *obj=0;
  2811.     int i;
  2812.  
  2813.     if ((i = marker(self)) < 0) return -1;
  2814.     UNLESS (tup=Pdata_popTuple(self->stack, i+1)) return -1;
  2815.     PDATA_POP(self->stack, class);
  2816.     if (class) {
  2817.         obj = Instance_New(class, tup);
  2818.         Py_DECREF(class);
  2819.     }
  2820.     Py_DECREF(tup);
  2821.  
  2822.     if (! obj) return -1;
  2823.     PDATA_PUSH(self->stack, obj, -1);
  2824.     return 0;
  2825. }
  2826.  
  2827.  
  2828. static int
  2829. load_inst(Unpicklerobject *self) {
  2830.     PyObject *tup, *class, *obj, *module_name, *class_name;
  2831.     int i, len;
  2832.     char *s;
  2833.  
  2834.     if ((i = marker(self)) < 0) return -1;
  2835.  
  2836.     if ((len = (*self->readline_func)(self, &s)) < 0) return -1;
  2837.     if (len < 2) return bad_readline();
  2838.     UNLESS (module_name = PyString_FromStringAndSize(s, len - 1)) return -1;
  2839.  
  2840.     if ((len = (*self->readline_func)(self, &s)) >= 0) {
  2841.         if (len < 2) return bad_readline();
  2842.         if (class_name = PyString_FromStringAndSize(s, len - 1)) {
  2843.             class = find_class(module_name, class_name);
  2844.             Py_DECREF(class_name);
  2845.         }
  2846.     }
  2847.     Py_DECREF(module_name);
  2848.  
  2849.     if (! class) return -1;
  2850.       
  2851.     if (tup=Pdata_popTuple(self->stack, i)) {
  2852.         obj = Instance_New(class, tup);
  2853.         Py_DECREF(tup);
  2854.     }
  2855.     Py_DECREF(class);
  2856.  
  2857.     if (! obj) return -1;
  2858.  
  2859.     PDATA_PUSH(self->stack, obj, -1);
  2860.     return 0;
  2861. }
  2862.  
  2863.  
  2864. static int
  2865. load_global(Unpicklerobject *self) {
  2866.     PyObject *class = 0, *module_name = 0, *class_name = 0;
  2867.     int len;
  2868.     char *s;
  2869.  
  2870.     if ((len = (*self->readline_func)(self, &s)) < 0) return -1;
  2871.     if (len < 2) return bad_readline();
  2872.     UNLESS (module_name = PyString_FromStringAndSize(s, len - 1)) return -1;
  2873.  
  2874.     if ((len = (*self->readline_func)(self, &s)) >= 0) {
  2875.         if (len < 2) return bad_readline();
  2876.         if (class_name = PyString_FromStringAndSize(s, len - 1)) {
  2877.             class = find_class(module_name, class_name);
  2878.             Py_DECREF(class_name);
  2879.         }
  2880.     }
  2881.     Py_DECREF(module_name);
  2882.  
  2883.     if (! class) return -1;
  2884.     PDATA_PUSH(self->stack, class, -1);
  2885.     return 0;
  2886. }
  2887.  
  2888.  
  2889. static int
  2890. load_persid(Unpicklerobject *self) {
  2891.     PyObject *pid = 0;
  2892.     int len, res = -1;
  2893.     char *s;
  2894.  
  2895.     if (self->pers_func) {
  2896.         if ((len = (*self->readline_func)(self, &s)) < 0) return -1;
  2897.     if (len < 2) return bad_readline();
  2898.   
  2899.         UNLESS (pid = PyString_FromStringAndSize(s, len - 1)) return -1;
  2900.  
  2901.         if (PyList_Check(self->pers_func)) {
  2902.             if (PyList_Append(self->pers_func, pid) < 0) {
  2903.                 Py_DECREF(pid);
  2904.                 return -1;
  2905.             }
  2906.         }
  2907.         else {
  2908.             ARG_TUP(self, pid);
  2909.             if (self->arg) {
  2910.                 pid = PyObject_CallObject(self->pers_func, self->arg);
  2911.                 FREE_ARG_TUP(self);
  2912.             }
  2913.         }
  2914.  
  2915.         if (! pid) return -1;
  2916.  
  2917.         PDATA_PUSH(self->stack, pid, -1);
  2918.         return 0;
  2919.     }
  2920.     else {
  2921.       PyErr_SetString(UnpicklingError,
  2922.                       "A load persistent id instruction was encountered,\n"
  2923.                       "but no persistent_load function was specified.");
  2924.       return -1;
  2925.     }
  2926. }
  2927.  
  2928. static int
  2929. load_binpersid(Unpicklerobject *self) {
  2930.     PyObject *pid = 0;
  2931.     int res = -1;
  2932.  
  2933.     if (self->pers_func) {
  2934.         PDATA_POP(self->stack, pid);
  2935.         if (! pid) return -1;
  2936.  
  2937.         if (PyList_Check(self->pers_func)) {
  2938.             if (PyList_Append(self->pers_func, pid) < 0) {
  2939.                 Py_DECREF(pid);
  2940.                 return -1;
  2941.             }
  2942.           }
  2943.         else {
  2944.             ARG_TUP(self, pid);
  2945.             if (self->arg) {
  2946.                 pid = PyObject_CallObject(self->pers_func, self->arg);
  2947.                 FREE_ARG_TUP(self);
  2948.             }
  2949.             if (! pid) return -1;
  2950.         }
  2951.  
  2952.         PDATA_PUSH(self->stack, pid, -1);
  2953.         return 0;
  2954.     }
  2955.     else {
  2956.       PyErr_SetString(UnpicklingError,
  2957.                       "A load persistent id instruction was encountered,\n"
  2958.                       "but no persistent_load function was specified.");
  2959.       return -1;
  2960.     }
  2961. }
  2962.  
  2963.  
  2964. static int
  2965. load_pop(Unpicklerobject *self) {
  2966.     int len;
  2967.  
  2968.     UNLESS ((len=self->stack->length) > 0) return stackUnderflow();
  2969.  
  2970.     if ((self->num_marks > 0) && 
  2971.         (self->marks[self->num_marks - 1] == len))
  2972.         self->num_marks--;
  2973.     else 
  2974.         Py_DECREF(self->stack->data[--(self->stack->length)]);
  2975.  
  2976.     return 0;
  2977. }
  2978.  
  2979.  
  2980. static int
  2981. load_pop_mark(Unpicklerobject *self) {
  2982.     int i;
  2983.  
  2984.     if ((i = marker(self)) < 0)
  2985.         return -1;
  2986.  
  2987.     Pdata_clear(self->stack, i);
  2988.  
  2989.     return 0;
  2990. }
  2991.  
  2992.  
  2993. static int
  2994. load_dup(Unpicklerobject *self) {
  2995.     PyObject *last;
  2996.     int len;
  2997.  
  2998.     if ((len = self->stack->length) <= 0) return stackUnderflow();
  2999.     last=self->stack->data[len-1];
  3000.     Py_INCREF(last);
  3001.     PDATA_PUSH(self->stack, last, -1);
  3002.     return 0;
  3003. }
  3004.  
  3005.  
  3006. static int
  3007. load_get(Unpicklerobject *self) {
  3008.     PyObject *py_str = 0, *value = 0;
  3009.     int len, res = -1;
  3010.     char *s;
  3011.  
  3012.     if ((len = (*self->readline_func)(self, &s)) < 0) return -1;
  3013.     if (len < 2) return bad_readline();
  3014.  
  3015.     UNLESS (py_str = PyString_FromStringAndSize(s, len - 1)) return -1;
  3016.  
  3017.     value = PyDict_GetItem(self->memo, py_str);
  3018.     Py_DECREF(py_str);
  3019.     if (! value) {
  3020.         PyErr_SetObject(BadPickleGet, py_str);
  3021.         return -1;
  3022.       }
  3023.  
  3024.     PDATA_APPEND(self->stack, value, -1);
  3025.     return 0;
  3026. }
  3027.  
  3028.  
  3029. static int
  3030. load_binget(Unpicklerobject *self) {
  3031.     PyObject *py_key = 0, *value = 0;
  3032.     unsigned char key;
  3033.     int res = -1;
  3034.     char *s;
  3035.  
  3036.     if ((*self->read_func)(self, &s, 1) < 0) return -1;
  3037.  
  3038.     key = (unsigned char)s[0];
  3039.     UNLESS (py_key = PyInt_FromLong((long)key)) return -1;
  3040.     
  3041.     value = PyDict_GetItem(self->memo, py_key);
  3042.     Py_DECREF(py_key);
  3043.     if (! value) {
  3044.         PyErr_SetObject(BadPickleGet, py_key);
  3045.         return -1;
  3046.       }
  3047.  
  3048.     PDATA_APPEND(self->stack, value, -1);
  3049.     return 0;
  3050. }
  3051.  
  3052.  
  3053. static int
  3054. load_long_binget(Unpicklerobject *self) {
  3055.     PyObject *py_key = 0, *value = 0;
  3056.     unsigned char c, *s;
  3057.     long key;
  3058.     int res = -1;
  3059.  
  3060.     if ((*self->read_func)(self, &s, 4) < 0) return -1;
  3061.  
  3062.     c = (unsigned char)s[0];
  3063.     key = (long)c;
  3064.     c = (unsigned char)s[1];
  3065.     key |= (long)c << 8;
  3066.     c = (unsigned char)s[2];
  3067.     key |= (long)c << 16;
  3068.     c = (unsigned char)s[3];
  3069.     key |= (long)c << 24;
  3070.  
  3071.     UNLESS (py_key = PyInt_FromLong((long)key)) return -1;
  3072.     
  3073.     value = PyDict_GetItem(self->memo, py_key);
  3074.     Py_DECREF(py_key);
  3075.     if (! value) {
  3076.         PyErr_SetObject(BadPickleGet, py_key);
  3077.         return -1;
  3078.       }
  3079.  
  3080.     PDATA_APPEND(self->stack, value, -1);
  3081.     return 0;
  3082. }
  3083.  
  3084.  
  3085. static int
  3086. load_put(Unpicklerobject *self) {
  3087.     PyObject *py_str = 0, *value = 0;
  3088.     int len, l;
  3089.     char *s;
  3090.  
  3091.     if ((l = (*self->readline_func)(self, &s)) < 0) return -1;
  3092.     if (l < 2) return bad_readline();
  3093.     UNLESS (len=self->stack->length) return stackUnderflow();
  3094.     UNLESS (py_str = PyString_FromStringAndSize(s, l - 1)) return -1;
  3095.     value=self->stack->data[len-1];
  3096.     l=PyDict_SetItem(self->memo, py_str, value);
  3097.     Py_DECREF(py_str);
  3098.     return l;
  3099. }
  3100.  
  3101.  
  3102. static int
  3103. load_binput(Unpicklerobject *self) {
  3104.     PyObject *py_key = 0, *value = 0;
  3105.     unsigned char key, *s;
  3106.     int len;
  3107.  
  3108.     if ((*self->read_func)(self, &s, 1) < 0) return -1;
  3109.     UNLESS ((len=self->stack->length) > 0) return stackUnderflow();
  3110.  
  3111.     key = (unsigned char)s[0];
  3112.  
  3113.     UNLESS (py_key = PyInt_FromLong((long)key)) return -1;
  3114.     value=self->stack->data[len-1];
  3115.     len=PyDict_SetItem(self->memo, py_key, value);
  3116.     Py_DECREF(py_key);
  3117.     return len;
  3118. }
  3119.  
  3120.  
  3121. static int
  3122. load_long_binput(Unpicklerobject *self) {
  3123.     PyObject *py_key = 0, *value = 0;
  3124.     long key;
  3125.     unsigned char c, *s;
  3126.     int len, res = -1;
  3127.  
  3128.     if ((*self->read_func)(self, &s, 4) < 0) return -1;
  3129.     UNLESS (len=self->stack->length) return stackUnderflow();
  3130.  
  3131.     c = (unsigned char)s[0];
  3132.     key = (long)c;
  3133.     c = (unsigned char)s[1];
  3134.     key |= (long)c << 8;
  3135.     c = (unsigned char)s[2];
  3136.     key |= (long)c << 16;
  3137.     c = (unsigned char)s[3];
  3138.     key |= (long)c << 24;
  3139.  
  3140.     UNLESS (py_key = PyInt_FromLong(key)) return -1;
  3141.     value=self->stack->data[len-1];
  3142.     len=PyDict_SetItem(self->memo, py_key, value);
  3143.     Py_DECREF(py_key);
  3144.     return len;
  3145. }
  3146.  
  3147.  
  3148. static int 
  3149. do_append(Unpicklerobject *self, int  x) {
  3150.     PyObject *value = 0, *list = 0, *append_method = 0;
  3151.     int len, i;
  3152.  
  3153.     UNLESS ((len=self->stack->length) >= x && x > 0) return stackUnderflow();
  3154.     if (len==x) return 0;       /* nothing to do */
  3155.  
  3156.     list=self->stack->data[x-1];
  3157.  
  3158.     if (PyList_Check(list)) {
  3159.         PyObject *slice;
  3160.         int list_len;
  3161.        
  3162.         slice=Pdata_popList(self->stack, x);
  3163.         list_len = PyList_GET_SIZE(list);
  3164.         i=PyList_SetSlice(list, list_len, list_len, slice);
  3165.         Py_DECREF(slice);
  3166.         return i;
  3167.     }
  3168.     else {
  3169.  
  3170.         UNLESS (append_method = PyObject_GetAttr(list, append_str))
  3171.             return -1;
  3172.          
  3173.         for (i = x; i < len; i++) {
  3174.             PyObject *junk;
  3175.  
  3176.             value=self->stack->data[i];
  3177.             junk=0;
  3178.             ARG_TUP(self, value);
  3179.             if (self->arg) {
  3180.               junk = PyObject_CallObject(append_method, self->arg);
  3181.               FREE_ARG_TUP(self);
  3182.             }
  3183.             if (! junk) {
  3184.                 Pdata_clear(self->stack, i+1);
  3185.                 self->stack->length=x;
  3186.                 Py_DECREF(append_method);
  3187.                 return -1;
  3188.             }
  3189.             Py_DECREF(junk);
  3190.         }
  3191.         self->stack->length=x;
  3192.         Py_DECREF(append_method);
  3193.     }
  3194.  
  3195.     return 0;
  3196. }
  3197.  
  3198.     
  3199. static int
  3200. load_append(Unpicklerobject *self) {
  3201.     return do_append(self, self->stack->length - 1);
  3202. }
  3203.  
  3204.  
  3205. static int
  3206. load_appends(Unpicklerobject *self) {
  3207.     return do_append(self, marker(self));
  3208. }
  3209.  
  3210.  
  3211. static int
  3212. do_setitems(Unpicklerobject *self, int  x) {
  3213.     PyObject *value = 0, *key = 0, *dict = 0;
  3214.     int len, i, r=0;
  3215.  
  3216.     UNLESS ((len=self->stack->length) >= x
  3217.             && x > 0) return stackUnderflow();
  3218.  
  3219.     dict=self->stack->data[x-1];
  3220.  
  3221.     for (i = x+1; i < len; i += 2) {
  3222.         key  =self->stack->data[i-1];
  3223.         value=self->stack->data[i  ];
  3224.         if (PyObject_SetItem(dict, key, value) < 0) {
  3225.             r=-1;
  3226.             break;
  3227.         }
  3228.     }
  3229.  
  3230.     Pdata_clear(self->stack, x);
  3231.  
  3232.     return r;
  3233. }
  3234.  
  3235.  
  3236. static int
  3237. load_setitem(Unpicklerobject *self) {
  3238.     return do_setitems(self, self->stack->length - 2);
  3239. }
  3240.  
  3241. static int
  3242. load_setitems(Unpicklerobject *self) {
  3243.     return do_setitems(self, marker(self));
  3244. }
  3245.  
  3246.  
  3247. static int
  3248. load_build(Unpicklerobject *self) {
  3249.     PyObject *value = 0, *inst = 0, *instdict = 0, *d_key = 0, *d_value = 0, 
  3250.              *junk = 0, *__setstate__ = 0;
  3251.     int i, r = 0;
  3252.  
  3253.     if (self->stack->length < 2) return stackUnderflow();
  3254.     PDATA_POP(self->stack, value);
  3255.     if (! value) return -1;
  3256.     inst=self->stack->data[self->stack->length-1];
  3257.  
  3258.     if ((__setstate__ = PyObject_GetAttr(inst, __setstate___str))) {
  3259.         ARG_TUP(self, value);
  3260.         if (self->arg) {
  3261.             junk = PyObject_CallObject(__setstate__, self->arg);
  3262.             FREE_ARG_TUP(self);
  3263.         }
  3264.         Py_DECREF(__setstate__);
  3265.         if (! junk) return -1;
  3266.         Py_DECREF(junk);
  3267.         return 0;
  3268.     }
  3269.  
  3270.     PyErr_Clear();
  3271.     if ((instdict = PyObject_GetAttr(inst, __dict___str))) {
  3272.         i = 0;
  3273.         while (PyDict_Next(value, &i, &d_key, &d_value)) {
  3274.             if (PyObject_SetItem(instdict, d_key, d_value) < 0) {
  3275.                 r=-1;
  3276.                 break;
  3277.             }
  3278.         }
  3279.         Py_DECREF(instdict);
  3280.     }
  3281.     else r=-1;
  3282.  
  3283.     Py_XDECREF(value);
  3284.   
  3285.     return r;
  3286. }
  3287.  
  3288.  
  3289. static int
  3290. load_mark(Unpicklerobject *self) {
  3291.     int s;
  3292.  
  3293.     if ((self->num_marks + 1) >= self->marks_size) {
  3294.         s=self->marks_size+20;
  3295.         if (s <= self->num_marks) s=self->num_marks + 1;
  3296.         if (self->marks == NULL)
  3297.             self->marks=(int *)malloc(s * sizeof(int));
  3298.         else
  3299.             self->marks=(int *)realloc(self->marks, s * sizeof(int));
  3300.         if (! self->marks) {
  3301.             PyErr_NoMemory();
  3302.             return -1;
  3303.         }
  3304.         self->marks_size = s;
  3305.     }
  3306.  
  3307.     self->marks[self->num_marks++] = self->stack->length;
  3308.  
  3309.     return 0;
  3310. }
  3311.  
  3312. static int
  3313. load_reduce(Unpicklerobject *self) {
  3314.     PyObject *callable = 0, *arg_tup = 0, *ob = 0;
  3315.  
  3316.     PDATA_POP(self->stack, arg_tup);
  3317.     if (! arg_tup) return -1;
  3318.     PDATA_POP(self->stack, callable);
  3319.     if (callable) {
  3320.         ob = Instance_New(callable, arg_tup);
  3321.         Py_DECREF(callable);
  3322.     }
  3323.     Py_DECREF(arg_tup);
  3324.  
  3325.     if (! ob) return -1;
  3326.    
  3327.     PDATA_PUSH(self->stack, ob, -1);
  3328.     return 0;
  3329. }
  3330.     
  3331. static PyObject *
  3332. load(Unpicklerobject *self) {
  3333.     PyObject *stack = 0, *err = 0, *val = 0;
  3334.     char *s;
  3335.  
  3336.     self->num_marks = 0;
  3337.     if (self->stack->length) Pdata_clear(self->stack, 0);
  3338.  
  3339.     while (1) {
  3340.         if ((*self->read_func)(self, &s, 1) < 0)
  3341.             break;
  3342.  
  3343.         switch (s[0]) {
  3344.             case NONE:
  3345.                 if (load_none(self) < 0)
  3346.                     break;
  3347.                 continue;
  3348.  
  3349.             case BININT:
  3350.                  if (load_binint(self) < 0)
  3351.                      break;
  3352.                  continue;
  3353.  
  3354.             case BININT1:
  3355.                 if (load_binint1(self) < 0)
  3356.                     break;
  3357.                 continue;
  3358.  
  3359.             case BININT2:
  3360.                 if (load_binint2(self) < 0)
  3361.                     break;
  3362.                 continue;
  3363.  
  3364.             case INT:
  3365.                 if (load_int(self) < 0)
  3366.                     break;
  3367.                 continue;
  3368.  
  3369.             case LONG:
  3370.                 if (load_long(self) < 0)
  3371.                     break;
  3372.                 continue;
  3373.  
  3374.             case FLOAT:
  3375.                 if (load_float(self) < 0)
  3376.                     break;
  3377.                 continue;
  3378.  
  3379.             case BINFLOAT:
  3380.                 if (load_binfloat(self) < 0)
  3381.                     break;
  3382.                 continue;
  3383.  
  3384.             case BINSTRING:
  3385.                 if (load_binstring(self) < 0)
  3386.                     break;
  3387.                 continue;
  3388.  
  3389.             case SHORT_BINSTRING:
  3390.                 if (load_short_binstring(self) < 0)
  3391.                     break;
  3392.                 continue;
  3393.  
  3394.             case STRING:
  3395.                 if (load_string(self) < 0)
  3396.                     break;
  3397.                 continue;
  3398.  
  3399.             case EMPTY_TUPLE:
  3400.                 if (load_empty_tuple(self) < 0)
  3401.                     break;
  3402.                 continue;
  3403.  
  3404.             case TUPLE:
  3405.                 if (load_tuple(self) < 0)
  3406.                     break;
  3407.                 continue;
  3408.  
  3409.             case EMPTY_LIST:
  3410.                 if (load_empty_list(self) < 0)
  3411.                     break;
  3412.                 continue;
  3413.  
  3414.             case LIST:
  3415.                 if (load_list(self) < 0)
  3416.                     break;
  3417.                 continue;
  3418.  
  3419.             case EMPTY_DICT:
  3420.                 if (load_empty_dict(self) < 0)
  3421.                     break;
  3422.                 continue;
  3423.  
  3424.             case DICT:
  3425.                 if (load_dict(self) < 0)
  3426.                     break;
  3427.                 continue;
  3428.  
  3429.             case OBJ:
  3430.                 if (load_obj(self) < 0)
  3431.                     break;
  3432.                 continue;
  3433.  
  3434.             case INST:
  3435.                 if (load_inst(self) < 0)
  3436.                     break;
  3437.                 continue;
  3438.  
  3439.             case GLOBAL:
  3440.                 if (load_global(self) < 0)
  3441.                     break;
  3442.                 continue;
  3443.  
  3444.             case APPEND:
  3445.                 if (load_append(self) < 0)
  3446.                     break;
  3447.                 continue;
  3448.  
  3449.             case APPENDS:
  3450.                 if (load_appends(self) < 0)
  3451.                     break;
  3452.                 continue;
  3453.    
  3454.             case BUILD:
  3455.                 if (load_build(self) < 0)
  3456.                     break;
  3457.                 continue;
  3458.   
  3459.             case DUP:
  3460.                 if (load_dup(self) < 0)
  3461.                     break;
  3462.                 continue;
  3463.  
  3464.             case BINGET:
  3465.                 if (load_binget(self) < 0)
  3466.                     break;
  3467.                 continue;
  3468.  
  3469.             case LONG_BINGET:
  3470.                 if (load_long_binget(self) < 0)
  3471.                     break;
  3472.                 continue;
  3473.          
  3474.             case GET:
  3475.                 if (load_get(self) < 0)
  3476.                     break;
  3477.                 continue;
  3478.  
  3479.             case MARK:
  3480.                 if (load_mark(self) < 0)
  3481.                     break;
  3482.                 continue;
  3483.  
  3484.             case BINPUT:
  3485.                 if (load_binput(self) < 0)
  3486.                     break;
  3487.                 continue;
  3488.  
  3489.             case LONG_BINPUT:
  3490.                 if (load_long_binput(self) < 0)
  3491.                     break;
  3492.                 continue;
  3493.          
  3494.             case PUT:
  3495.                 if (load_put(self) < 0)
  3496.                     break;
  3497.                 continue;
  3498.  
  3499.             case POP:
  3500.                 if (load_pop(self) < 0)
  3501.                     break;
  3502.                 continue;
  3503.  
  3504.             case POP_MARK:
  3505.                 if (load_pop_mark(self) < 0)
  3506.                     break;
  3507.                 continue;
  3508.  
  3509.             case SETITEM:
  3510.                 if (load_setitem(self) < 0)
  3511.                     break;
  3512.                 continue;
  3513.  
  3514.             case SETITEMS:
  3515.                 if (load_setitems(self) < 0)
  3516.                     break;
  3517.                 continue;
  3518.  
  3519.             case STOP:
  3520.                 break;
  3521.  
  3522.             case PERSID:
  3523.                 if (load_persid(self) < 0)
  3524.                     break;
  3525.                 continue;
  3526.  
  3527.             case BINPERSID:
  3528.                 if (load_binpersid(self) < 0)
  3529.                     break;
  3530.                 continue;
  3531.  
  3532.             case REDUCE:
  3533.                 if (load_reduce(self) < 0)
  3534.                     break;
  3535.                 continue;
  3536.  
  3537.             default: 
  3538.                 cPickle_ErrFormat(UnpicklingError, "invalid load key, '%s'.", 
  3539.                     "c", s[0]);
  3540.                 return NULL;
  3541.         }
  3542.  
  3543.         break;
  3544.     }
  3545.  
  3546.     if ((err = PyErr_Occurred())) {
  3547.         if (err == PyExc_EOFError) {
  3548.             PyErr_SetNone(PyExc_EOFError);
  3549.         }    
  3550.         return NULL;
  3551.     }
  3552.  
  3553.     PDATA_POP(self->stack, val);    
  3554.     return val;
  3555. }
  3556.     
  3557.  
  3558. /* No-load functions to support noload, which is used to
  3559.    find persistent references. */
  3560.  
  3561. static int
  3562. noload_obj(Unpicklerobject *self) {
  3563.     int i;
  3564.  
  3565.     if ((i = marker(self)) < 0) return -1;
  3566.     return Pdata_clear(self->stack, i+1);
  3567. }
  3568.  
  3569.  
  3570. static int
  3571. noload_inst(Unpicklerobject *self) {
  3572.     int i;
  3573.     char *s;
  3574.  
  3575.     if ((i = marker(self)) < 0) return -1;
  3576.     Pdata_clear(self->stack, i);
  3577.     if ((*self->readline_func)(self, &s) < 0) return -1;
  3578.     if ((*self->readline_func)(self, &s) < 0) return -1;
  3579.     PDATA_APPEND(self->stack, Py_None,-1);
  3580.     return 0;
  3581. }
  3582.  
  3583. static int
  3584. noload_global(Unpicklerobject *self) {
  3585.     char *s;
  3586.  
  3587.     if ((*self->readline_func)(self, &s) < 0) return -1;
  3588.     if ((*self->readline_func)(self, &s) < 0) return -1;
  3589.     PDATA_APPEND(self->stack, Py_None,-1);
  3590.     return 0;
  3591. }
  3592.  
  3593. static int
  3594. noload_reduce(Unpicklerobject *self) {
  3595.  
  3596.     if (self->stack->length < 2) return stackUnderflow();
  3597.     Pdata_clear(self->stack, self->stack->length-2);
  3598.     PDATA_APPEND(self->stack, Py_None,-1);
  3599.     return 0;
  3600. }
  3601.  
  3602. static int
  3603. noload_build(Unpicklerobject *self) {
  3604.  
  3605.   if (self->stack->length < 1) return stackUnderflow();
  3606.   Pdata_clear(self->stack, self->stack->length-1);
  3607.   return 0;
  3608. }
  3609.  
  3610.  
  3611. static PyObject *
  3612. noload(Unpicklerobject *self) {
  3613.     PyObject *stack = 0, *err = 0, *val = 0;
  3614.     char *s;
  3615.  
  3616.     self->num_marks = 0;
  3617.     Pdata_clear(self->stack, 0);
  3618.  
  3619.     while (1) {
  3620.         if ((*self->read_func)(self, &s, 1) < 0)
  3621.             break;
  3622.  
  3623.         switch (s[0]) {
  3624.             case NONE:
  3625.                 if (load_none(self) < 0)
  3626.                     break;
  3627.                 continue;
  3628.  
  3629.             case BININT:
  3630.                  if (load_binint(self) < 0)
  3631.                      break;
  3632.                  continue;
  3633.  
  3634.             case BININT1:
  3635.                 if (load_binint1(self) < 0)
  3636.                     break;
  3637.                 continue;
  3638.  
  3639.             case BININT2:
  3640.                 if (load_binint2(self) < 0)
  3641.                     break;
  3642.                 continue;
  3643.  
  3644.             case INT:
  3645.                 if (load_int(self) < 0)
  3646.                     break;
  3647.                 continue;
  3648.  
  3649.             case LONG:
  3650.                 if (load_long(self) < 0)
  3651.                     break;
  3652.                 continue;
  3653.  
  3654.             case FLOAT:
  3655.                 if (load_float(self) < 0)
  3656.                     break;
  3657.                 continue;
  3658.  
  3659.             case BINFLOAT:
  3660.                 if (load_binfloat(self) < 0)
  3661.                     break;
  3662.                 continue;
  3663.  
  3664.             case BINSTRING:
  3665.                 if (load_binstring(self) < 0)
  3666.                     break;
  3667.                 continue;
  3668.  
  3669.             case SHORT_BINSTRING:
  3670.                 if (load_short_binstring(self) < 0)
  3671.                     break;
  3672.                 continue;
  3673.  
  3674.             case STRING:
  3675.                 if (load_string(self) < 0)
  3676.                     break;
  3677.                 continue;
  3678.  
  3679.             case EMPTY_TUPLE:
  3680.                 if (load_empty_tuple(self) < 0)
  3681.                     break;
  3682.                 continue;
  3683.  
  3684.             case TUPLE:
  3685.                 if (load_tuple(self) < 0)
  3686.                     break;
  3687.                 continue;
  3688.  
  3689.             case EMPTY_LIST:
  3690.                 if (load_empty_list(self) < 0)
  3691.                     break;
  3692.                 continue;
  3693.  
  3694.             case LIST:
  3695.                 if (load_list(self) < 0)
  3696.                     break;
  3697.                 continue;
  3698.  
  3699.             case EMPTY_DICT:
  3700.                 if (load_empty_dict(self) < 0)
  3701.                     break;
  3702.                 continue;
  3703.  
  3704.             case DICT:
  3705.                 if (load_dict(self) < 0)
  3706.                     break;
  3707.                 continue;
  3708.  
  3709.             case OBJ:
  3710.                 if (noload_obj(self) < 0)
  3711.                     break;
  3712.                 continue;
  3713.  
  3714.             case INST:
  3715.                 if (noload_inst(self) < 0)
  3716.                     break;
  3717.                 continue;
  3718.  
  3719.             case GLOBAL:
  3720.                 if (noload_global(self) < 0)
  3721.                     break;
  3722.                 continue;
  3723.  
  3724.             case APPEND:
  3725.                 if (load_append(self) < 0)
  3726.                     break;
  3727.                 continue;
  3728.  
  3729.             case APPENDS:
  3730.                 if (load_appends(self) < 0)
  3731.                     break;
  3732.                 continue;
  3733.    
  3734.             case BUILD:
  3735.                 if (noload_build(self) < 0)
  3736.                     break;
  3737.                 continue;
  3738.   
  3739.             case DUP:
  3740.                 if (load_dup(self) < 0)
  3741.                     break;
  3742.                 continue;
  3743.  
  3744.             case BINGET:
  3745.                 if (load_binget(self) < 0)
  3746.                     break;
  3747.                 continue;
  3748.  
  3749.             case LONG_BINGET:
  3750.                 if (load_long_binget(self) < 0)
  3751.                     break;
  3752.                 continue;
  3753.          
  3754.             case GET:
  3755.                 if (load_get(self) < 0)
  3756.                     break;
  3757.                 continue;
  3758.  
  3759.             case MARK:
  3760.                 if (load_mark(self) < 0)
  3761.                     break;
  3762.                 continue;
  3763.  
  3764.             case BINPUT:
  3765.                 if (load_binput(self) < 0)
  3766.                     break;
  3767.                 continue;
  3768.  
  3769.             case LONG_BINPUT:
  3770.                 if (load_long_binput(self) < 0)
  3771.                     break;
  3772.                 continue;
  3773.          
  3774.             case PUT:
  3775.                 if (load_put(self) < 0)
  3776.                     break;
  3777.                 continue;
  3778.  
  3779.             case POP:
  3780.                 if (load_pop(self) < 0)
  3781.                     break;
  3782.                 continue;
  3783.  
  3784.             case POP_MARK:
  3785.                 if (load_pop_mark(self) < 0)
  3786.                     break;
  3787.                 continue;
  3788.  
  3789.             case SETITEM:
  3790.                 if (load_setitem(self) < 0)
  3791.                     break;
  3792.                 continue;
  3793.  
  3794.             case SETITEMS:
  3795.                 if (load_setitems(self) < 0)
  3796.                     break;
  3797.                 continue;
  3798.  
  3799.             case STOP:
  3800.                 break;
  3801.  
  3802.             case PERSID:
  3803.                 if (load_persid(self) < 0)
  3804.                     break;
  3805.                 continue;
  3806.  
  3807.             case BINPERSID:
  3808.                 if (load_binpersid(self) < 0)
  3809.                     break;
  3810.                 continue;
  3811.  
  3812.             case REDUCE:
  3813.                 if (noload_reduce(self) < 0)
  3814.                     break;
  3815.                 continue;
  3816.  
  3817.             default: 
  3818.                 cPickle_ErrFormat(UnpicklingError, "invalid load key, '%s'.", 
  3819.                     "c", s[0]);
  3820.                 return NULL;
  3821.         }
  3822.  
  3823.         break;
  3824.     }
  3825.  
  3826.     if ((err = PyErr_Occurred())) {
  3827.         if (err == PyExc_EOFError) {
  3828.             PyErr_SetNone(PyExc_EOFError);
  3829.         }    
  3830.         return NULL;
  3831.     }
  3832.  
  3833.     PDATA_POP(self->stack, val);    
  3834.     return val;
  3835. }
  3836.     
  3837.  
  3838. static PyObject *
  3839. Unpickler_load(Unpicklerobject *self, PyObject *args) {
  3840.     UNLESS (PyArg_ParseTuple(args, "")) 
  3841.         return NULL;
  3842.  
  3843.     return load(self);
  3844. }
  3845.  
  3846. static PyObject *
  3847. Unpickler_noload(Unpicklerobject *self, PyObject *args) {
  3848.     UNLESS (PyArg_ParseTuple(args, "")) 
  3849.         return NULL;
  3850.  
  3851.     return noload(self);
  3852. }
  3853.  
  3854.  
  3855. static struct PyMethodDef Unpickler_methods[] = {
  3856.   {"load",         (PyCFunction)Unpickler_load,   1,
  3857.    "load() -- Load a pickle"
  3858.   },
  3859.   {"noload",         (PyCFunction)Unpickler_noload,   1,
  3860.    "noload() -- not load a pickle, but go through most of the motions\n"
  3861.    "\n"
  3862.    "This function can be used to read past a pickle without instantiating\n"
  3863.    "any objects or importing any modules.  It can also be used to find all\n"
  3864.    "persistent references without instantiating any objects or importing\n"
  3865.    "any modules.\n"
  3866.   },
  3867.   {NULL,              NULL}           /* sentinel */
  3868. };
  3869.  
  3870.  
  3871. static Unpicklerobject *
  3872. newUnpicklerobject(PyObject *f) {
  3873.     Unpicklerobject *self;
  3874.  
  3875.     UNLESS (self = PyObject_NEW(Unpicklerobject, &Unpicklertype))
  3876.         return NULL;
  3877.  
  3878.     self->file = NULL;
  3879.     self->arg = NULL;
  3880.     self->stack = (Pdata*)Pdata_New();
  3881.     self->pers_func = NULL;
  3882.     self->last_string = NULL;
  3883.     self->marks = NULL;
  3884.     self->num_marks = 0;
  3885.     self->marks_size = 0;
  3886.     self->buf_size = 0;
  3887.     self->read = NULL;
  3888.     self->readline = NULL;
  3889.     self->safe_constructors = NULL;
  3890.  
  3891.     UNLESS (self->memo = PyDict_New()) {
  3892.        Py_XDECREF((PyObject *)self);
  3893.        return NULL;
  3894.     }
  3895.  
  3896.     Py_INCREF(f);
  3897.     self->file = f;
  3898.  
  3899.     /* Set read, readline based on type of f */
  3900.     if (PyFile_Check(f)) {
  3901.         self->fp = PyFile_AsFile(f);
  3902.     if (self->fp == NULL) {
  3903.         PyErr_SetString(PyExc_IOError, "input file closed");
  3904.         return NULL;
  3905.     }
  3906.         self->read_func = read_file;
  3907.         self->readline_func = readline_file;
  3908.     }
  3909.     else if (PycStringIO_InputCheck(f)) {
  3910.         self->fp = NULL;
  3911.         self->read_func = read_cStringIO;
  3912.         self->readline_func = readline_cStringIO;
  3913.     }
  3914.     else {
  3915.  
  3916.         self->fp = NULL;
  3917.         self->read_func = read_other;
  3918.         self->readline_func = readline_other;
  3919.  
  3920.         UNLESS ((self->readline = PyObject_GetAttr(f, readline_str)) &&
  3921.             (self->read = PyObject_GetAttr(f, read_str))) {
  3922.             PyErr_Clear();
  3923.             PyErr_SetString( PyExc_TypeError, "argument must have 'read' and "
  3924.                 "'readline' attributes" );
  3925.             goto err;
  3926.         }
  3927.     }
  3928.  
  3929.     if (PyEval_GetRestricted()) {
  3930.         /* Restricted execution, get private tables */
  3931.         PyObject *m;
  3932.  
  3933.         UNLESS (m=PyImport_Import(copy_reg_str)) goto err;
  3934.         self->safe_constructors=PyObject_GetAttr(m, safe_constructors_str);
  3935.         Py_DECREF(m);
  3936.         UNLESS (self->safe_constructors) goto err;
  3937.     }
  3938.     else {
  3939.         self->safe_constructors=safe_constructors;
  3940.         Py_INCREF(safe_constructors);
  3941.     }
  3942.  
  3943.     return self;
  3944.  
  3945. err:
  3946.     Py_DECREF((PyObject *)self);
  3947.     return NULL;
  3948. }
  3949.  
  3950.  
  3951. static PyObject *
  3952. get_Unpickler(PyObject *self, PyObject *args) {
  3953.     PyObject *file;
  3954.   
  3955.     UNLESS (PyArg_ParseTuple(args, "O", &file))
  3956.         return NULL;
  3957.     return (PyObject *)newUnpicklerobject(file);
  3958. }
  3959.  
  3960.  
  3961. static void
  3962. Unpickler_dealloc(Unpicklerobject *self) {
  3963.     Py_XDECREF(self->readline);
  3964.     Py_XDECREF(self->read);
  3965.     Py_XDECREF(self->file);
  3966.     Py_XDECREF(self->memo);
  3967.     Py_XDECREF(self->stack);
  3968.     Py_XDECREF(self->pers_func);
  3969.     Py_XDECREF(self->arg);
  3970.     Py_XDECREF(self->last_string);
  3971.     Py_XDECREF(self->safe_constructors);
  3972.  
  3973.     if (self->marks) {
  3974.         free(self->marks);
  3975.     }
  3976.  
  3977.     if (self->buf_size) {
  3978.         free(self->buf);
  3979.     }
  3980.     
  3981.     PyMem_DEL(self);
  3982. }
  3983.  
  3984.  
  3985. static PyObject *
  3986. Unpickler_getattr(Unpicklerobject *self, char *name) {
  3987.     if (!strcmp(name, "persistent_load")) {
  3988.         if (!self->pers_func) {
  3989.             PyErr_SetString(PyExc_AttributeError, name);
  3990.             return NULL;
  3991.         }
  3992.  
  3993.         Py_INCREF(self->pers_func);
  3994.         return self->pers_func;
  3995.     }
  3996.  
  3997.     if (!strcmp(name, "memo")) {
  3998.         if (!self->memo) {
  3999.             PyErr_SetString(PyExc_AttributeError, name);
  4000.             return NULL;
  4001.         }
  4002.  
  4003.         Py_INCREF(self->memo);
  4004.         return self->memo;
  4005.     }
  4006.  
  4007.     if (!strcmp(name, "UnpicklingError")) {
  4008.         Py_INCREF(UnpicklingError);
  4009.         return UnpicklingError;
  4010.     }
  4011.  
  4012.     return Py_FindMethod(Unpickler_methods, (PyObject *)self, name);
  4013. }
  4014.  
  4015.  
  4016. static int
  4017. Unpickler_setattr(Unpicklerobject *self, char *name, PyObject *value) {
  4018.  
  4019.     if (! value) {
  4020.         PyErr_SetString(PyExc_TypeError,
  4021.                         "attribute deletion is not supported");
  4022.         return -1;
  4023.     }
  4024.  
  4025.     if (!strcmp(name, "persistent_load")) {
  4026.         Py_XDECREF(self->pers_func);
  4027.         self->pers_func = value;
  4028.         Py_INCREF(value);
  4029.         return 0;
  4030.     }
  4031.  
  4032.     if (strcmp(name, "memo") == 0) {
  4033.         if (! PyDict_Check(value)) {
  4034.           PyErr_SetString(PyExc_TypeError, "memo must be a dictionary");
  4035.           return -1;
  4036.         }
  4037.         Py_XDECREF(self->memo);
  4038.         self->memo = value;
  4039.         Py_INCREF(value);
  4040.         return 0;
  4041.     }
  4042.  
  4043.     PyErr_SetString(PyExc_AttributeError, name);
  4044.     return -1;
  4045. }
  4046.  
  4047.  
  4048. static PyObject *
  4049. cpm_dump(PyObject *self, PyObject *args) {
  4050.     PyObject *ob, *file, *res = NULL;
  4051.     Picklerobject *pickler = 0;
  4052.     int bin = 0;
  4053.  
  4054.     UNLESS (PyArg_ParseTuple(args, "OO|i", &ob, &file, &bin))
  4055.         goto finally;
  4056.  
  4057.     UNLESS (pickler = newPicklerobject(file, bin))
  4058.         goto finally;
  4059.  
  4060.     if (dump(pickler, ob) < 0)
  4061.         goto finally;
  4062.  
  4063.     Py_INCREF(Py_None);
  4064.     res = Py_None;
  4065.  
  4066. finally:
  4067.     Py_XDECREF(pickler);
  4068.  
  4069.     return res;
  4070. }
  4071.  
  4072.  
  4073. static PyObject *
  4074. cpm_dumps(PyObject *self, PyObject *args) {
  4075.     PyObject *ob, *file = 0, *res = NULL;
  4076.     Picklerobject *pickler = 0;
  4077.     int bin = 0;
  4078.  
  4079.     UNLESS (PyArg_ParseTuple(args, "O|i", &ob, &bin))
  4080.         goto finally;
  4081.  
  4082.     UNLESS (file = PycStringIO->NewOutput(128))
  4083.         goto finally;
  4084.  
  4085.     UNLESS (pickler = newPicklerobject(file, bin))
  4086.         goto finally;
  4087.  
  4088.     if (dump(pickler, ob) < 0)
  4089.         goto finally;
  4090.  
  4091.     res = PycStringIO->cgetvalue(file);
  4092.  
  4093. finally:
  4094.     Py_XDECREF(pickler);
  4095.     Py_XDECREF(file);
  4096.  
  4097.     return res;
  4098. }  
  4099.   
  4100.  
  4101. static PyObject *
  4102. cpm_load(PyObject *self, PyObject *args) {
  4103.     Unpicklerobject *unpickler = 0;
  4104.     PyObject *ob, *res = NULL;
  4105.  
  4106.     UNLESS (PyArg_ParseTuple(args, "O", &ob))
  4107.         goto finally;
  4108.  
  4109.     UNLESS (unpickler = newUnpicklerobject(ob))
  4110.         goto finally;
  4111.  
  4112.     res = load(unpickler);
  4113.  
  4114. finally:
  4115.     Py_XDECREF(unpickler);
  4116.  
  4117.     return res;
  4118. }
  4119.  
  4120.  
  4121. static PyObject *
  4122. cpm_loads(PyObject *self, PyObject *args) {
  4123.     PyObject *ob, *file = 0, *res = NULL;
  4124.     Unpicklerobject *unpickler = 0;
  4125.  
  4126.     UNLESS (PyArg_ParseTuple(args, "S", &ob))
  4127.         goto finally;
  4128.  
  4129.     UNLESS (file = PycStringIO->NewInput(ob))
  4130.         goto finally;
  4131.   
  4132.     UNLESS (unpickler = newUnpicklerobject(file))
  4133.         goto finally;
  4134.  
  4135.     res = load(unpickler);
  4136.  
  4137. finally:
  4138.     Py_XDECREF(file);
  4139.     Py_XDECREF(unpickler);
  4140.  
  4141.     return res;
  4142. }
  4143.  
  4144.  
  4145. static char Unpicklertype__doc__[] = 
  4146. "Objects that know how to unpickle";
  4147.  
  4148. static PyTypeObject Unpicklertype = {
  4149.     PyObject_HEAD_INIT(NULL)
  4150.     0,                            /*ob_size*/
  4151.     "Unpickler",                  /*tp_name*/
  4152.     sizeof(Unpicklerobject),              /*tp_basicsize*/
  4153.     0,                            /*tp_itemsize*/
  4154.     /* methods */
  4155.     (destructor)Unpickler_dealloc,        /*tp_dealloc*/
  4156.     (printfunc)0,         /*tp_print*/
  4157.     (getattrfunc)Unpickler_getattr,       /*tp_getattr*/
  4158.     (setattrfunc)Unpickler_setattr,       /*tp_setattr*/
  4159.     (cmpfunc)0,           /*tp_compare*/
  4160.     (reprfunc)0,          /*tp_repr*/
  4161.     0,                    /*tp_as_number*/
  4162.     0,            /*tp_as_sequence*/
  4163.     0,            /*tp_as_mapping*/
  4164.     (hashfunc)0,          /*tp_hash*/
  4165.     (ternaryfunc)0,               /*tp_call*/
  4166.     (reprfunc)0,          /*tp_str*/
  4167.  
  4168.     /* Space for future expansion */
  4169.     0L,0L,0L,0L,
  4170.     Unpicklertype__doc__ /* Documentation string */
  4171. };
  4172.  
  4173. static struct PyMethodDef cPickle_methods[] = {
  4174.   {"dump",         (PyCFunction)cpm_dump,         1,
  4175.    "dump(object, file, [binary]) --"
  4176.    "Write an object in pickle format to the given file\n"
  4177.    "\n"
  4178.    "If the optional argument, binary, is provided and is true, then the\n"
  4179.    "pickle will be written in binary format, which is more space and\n"
  4180.    "computationally efficient. \n"
  4181.   },
  4182.   {"dumps",        (PyCFunction)cpm_dumps,        1,
  4183.    "dumps(object, [binary]) --"
  4184.    "Return a string containing an object in pickle format\n"
  4185.    "\n"
  4186.    "If the optional argument, binary, is provided and is true, then the\n"
  4187.    "pickle will be written in binary format, which is more space and\n"
  4188.    "computationally efficient. \n"
  4189.   },
  4190.   {"load",         (PyCFunction)cpm_load,         1,
  4191.    "load(file) -- Load a pickle from the given file"},
  4192.   {"loads",        (PyCFunction)cpm_loads,        1,
  4193.    "loads(string) -- Load a pickle from the given string"},
  4194.   {"Pickler",      (PyCFunction)get_Pickler,      1,
  4195.    "Pickler(file, [binary]) -- Create a pickler\n"
  4196.    "\n"
  4197.    "If the optional argument, binary, is provided and is true, then\n"
  4198.    "pickles will be written in binary format, which is more space and\n"
  4199.    "computationally efficient. \n"
  4200.   },
  4201.   {"Unpickler",    (PyCFunction)get_Unpickler,    1,
  4202.    "Unpickler(file) -- Create an unpickler"},
  4203.   { NULL, NULL }
  4204. };
  4205.  
  4206.  
  4207. #define CHECK_FOR_ERRORS(MESS) \
  4208. if (PyErr_Occurred()) { \
  4209.     PyObject *__sys_exc_type, *__sys_exc_value, *__sys_exc_traceback; \
  4210.     PyErr_Fetch( &__sys_exc_type, &__sys_exc_value, &__sys_exc_traceback); \
  4211.     fprintf(stderr, # MESS ":\n\t"); \
  4212.     PyObject_Print(__sys_exc_type, stderr,0); \
  4213.     fprintf(stderr,", "); \
  4214.     PyObject_Print(__sys_exc_value, stderr,0); \
  4215.     fprintf(stderr,"\n"); \
  4216.     fflush(stderr); \
  4217.     Py_FatalError(# MESS); \
  4218. }
  4219.  
  4220.  
  4221. static int
  4222. init_stuff(PyObject *module, PyObject *module_dict) {
  4223.     PyObject *string, *copy_reg;
  4224.  
  4225. #define INIT_STR(S) UNLESS(S ## _str=PyString_FromString(#S)) return -1;
  4226.  
  4227.     INIT_STR(__class__);
  4228.     INIT_STR(__getinitargs__);
  4229.     INIT_STR(__dict__);
  4230.     INIT_STR(__getstate__);
  4231.     INIT_STR(__setstate__);
  4232.     INIT_STR(__name__);
  4233.     INIT_STR(__main__);
  4234.     INIT_STR(__reduce__);
  4235.     INIT_STR(write);
  4236.     INIT_STR(__safe_for_unpickling__);
  4237.     INIT_STR(append);
  4238.     INIT_STR(read);
  4239.     INIT_STR(readline);
  4240.     INIT_STR(copy_reg);
  4241.     INIT_STR(dispatch_table);
  4242.     INIT_STR(safe_constructors);
  4243.     INIT_STR(__basicnew__);
  4244.     UNLESS (empty_str=PyString_FromString("")) return -1;
  4245.  
  4246.     UNLESS (copy_reg = PyImport_ImportModule("copy_reg"))
  4247.         return -1;
  4248.  
  4249.     /* These next few are special because we want to use different
  4250.        ones in restricted mode. */
  4251.  
  4252.     UNLESS (dispatch_table = PyObject_GetAttr(copy_reg, dispatch_table_str))
  4253.         return -1;
  4254.  
  4255.     UNLESS (safe_constructors = PyObject_GetAttr(copy_reg,
  4256.                                                 safe_constructors_str))
  4257.         return -1;
  4258.  
  4259.     Py_DECREF(copy_reg);
  4260.  
  4261.     /* Down to here ********************************** */
  4262.  
  4263.     UNLESS (string = PyImport_ImportModule("string"))
  4264.         return -1;
  4265.  
  4266.     UNLESS (atol_func = PyObject_GetAttrString(string, "atol"))
  4267.         return -1;
  4268.  
  4269.     Py_DECREF(string);
  4270.  
  4271.     UNLESS (empty_tuple = PyTuple_New(0))
  4272.         return -1;
  4273.  
  4274.     UNLESS (PicklingError = PyString_FromString("cPickle.PicklingError"))
  4275.         return -1;
  4276.  
  4277.     if (PyDict_SetItemString(module_dict, "PicklingError", 
  4278.         PicklingError) < 0)
  4279.         return -1;
  4280.  
  4281.     UNLESS (UnpicklingError = PyString_FromString("cPickle.UnpicklingError"))
  4282.         return -1;
  4283.  
  4284.     if (PyDict_SetItemString(module_dict, "UnpicklingError",
  4285.         UnpicklingError) < 0)
  4286.         return -1;
  4287.  
  4288.     UNLESS (BadPickleGet = PyString_FromString("cPickle.BadPickleGet"))
  4289.         return -1;
  4290.  
  4291.     if (PyDict_SetItemString(module_dict, "BadPickleGet",
  4292.         BadPickleGet) < 0)
  4293.         return -1;
  4294.  
  4295.     PycString_IMPORT;
  4296.  
  4297.     return 0;
  4298. }
  4299.  
  4300. #ifndef DL_EXPORT    /* declarations for DLL import/export */
  4301. #define DL_EXPORT(RTYPE) RTYPE
  4302. #endif
  4303. DL_EXPORT(void)
  4304. initcPickle() {
  4305.     PyObject *m, *d, *v;
  4306.     char *rev="1.63";
  4307.     PyObject *format_version;
  4308.     PyObject *compatible_formats;
  4309.  
  4310.     Picklertype.ob_type = &PyType_Type;
  4311.     Unpicklertype.ob_type = &PyType_Type;
  4312.     PdataType.ob_type = &PyType_Type;
  4313.  
  4314.     /* Create the module and add the functions */
  4315.     m = Py_InitModule4("cPickle", cPickle_methods,
  4316.                      cPickle_module_documentation,
  4317.                      (PyObject*)NULL,PYTHON_API_VERSION);
  4318.  
  4319.     /* Add some symbolic constants to the module */
  4320.     d = PyModule_GetDict(m);
  4321.     PyDict_SetItemString(d,"__version__", v = PyString_FromString(rev));
  4322.     Py_XDECREF(v);
  4323.  
  4324.     format_version = PyString_FromString("1.3");
  4325.     compatible_formats = Py_BuildValue("[sss]", "1.0", "1.1", "1.2");
  4326.  
  4327.     PyDict_SetItemString(d, "format_version", format_version);
  4328.     PyDict_SetItemString(d, "compatible_formats", compatible_formats);
  4329.     Py_XDECREF(format_version);
  4330.     Py_XDECREF(compatible_formats);
  4331.  
  4332.     init_stuff(m, d);
  4333.     CHECK_FOR_ERRORS("can't initialize module cPickle");
  4334. }
  4335.