summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-03 15:45:56 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-02-03 15:45:56 (GMT)
commite0a3907904bd5c662b40a9be3ab4ced87bdf30bb (patch)
tree5ef71166659c5e6a2ab7925498b2d4adcfc582ed /Modules/cPickle.c
parent4b37364fc8b6d776d63094ccf0ad004e8e43e6de (diff)
downloadcpython-e0a3907904bd5c662b40a9be3ab4ced87bdf30bb.zip
cpython-e0a3907904bd5c662b40a9be3ab4ced87bdf30bb.tar.gz
cpython-e0a3907904bd5c662b40a9be3ab4ced87bdf30bb.tar.bz2
PDATA_PUSH and PDATA_APPEND. documented, and reformatted for better
readability. load_bool(): Now that I know the intended difference between _PUSH and _APPEND, used the right one. Pdata_grow(): Squashed out a redundant overflow test.
Diffstat (limited to 'Modules/cPickle.c')
-rw-r--r--Modules/cPickle.c68
1 files changed, 38 insertions, 30 deletions
diff --git a/Modules/cPickle.c b/Modules/cPickle.c
index f2fe5b0..49e7271 100644
--- a/Modules/cPickle.c
+++ b/Modules/cPickle.c
@@ -188,10 +188,8 @@ Pdata_grow(Pdata *self)
int bigger;
size_t nbytes;
- if (! self->size)
- goto nomemory;
bigger = self->size << 1;
- if (bigger <= 0)
+ if (bigger <= 0) /* was 0, or new value overflows */
goto nomemory;
if ((int)(size_t)bigger != bigger)
goto nomemory;
@@ -210,19 +208,47 @@ Pdata_grow(Pdata *self)
return -1;
}
-/* D is a Pdata *. Pop the topmost element and store it into V, which
- * must be an lvalue holding PyObject *. On stack underflow, UnpicklingError
+/* D is a Pdata*. Pop the topmost element and store it into V, which
+ * must be an lvalue holding PyObject*. On stack underflow, UnpicklingError
* is raised and V is set to NULL. D and V may be evaluated several times.
*/
#define PDATA_POP(D, V) { \
- if ((D)->length) \
- (V) = (D)->data[--((D)->length)]; \
- else { \
- PyErr_SetString(UnpicklingError, "bad pickle data"); \
- (V) = NULL; \
- } \
+ if ((D)->length) \
+ (V) = (D)->data[--((D)->length)]; \
+ else { \
+ PyErr_SetString(UnpicklingError, "bad pickle data"); \
+ (V) = NULL; \
+ } \
+}
+
+/* PDATA_PUSH and PDATA_APPEND both push rvalue PyObject* O on to Pdata*
+ * D. If the Pdata stack can't be grown to hold the new value, both
+ * raise MemoryError and execute "return ER". The difference is in ownership
+ * of O after: _PUSH transfers ownership of O from the caller to the stack
+ * (no incref of O is done, and in case of error O is decrefed), while
+ * _APPEND pushes a new reference.
+ */
+
+/* Push O on stack D, giving ownership of O to the stack. */
+#define PDATA_PUSH(D, O, ER) { \
+ if (((Pdata*)(D))->length == ((Pdata*)(D))->size && \
+ Pdata_grow((Pdata*)(D)) < 0) { \
+ Py_DECREF(O); \
+ return ER; \
+ } \
+ ((Pdata*)(D))->data[((Pdata*)(D))->length++] = (O); \
+}
+
+/* Push O on stack D, pushing a new reference. */
+#define PDATA_APPEND(D, O, ER) { \
+ if (((Pdata*)(D))->length == ((Pdata*)(D))->size && \
+ Pdata_grow((Pdata*)(D)) < 0) \
+ return ER; \
+ Py_INCREF(O); \
+ ((Pdata*)(D))->data[((Pdata*)(D))->length++] = (O); \
}
+
static PyObject *
Pdata_popTuple(Pdata *self, int start)
{
@@ -255,23 +281,6 @@ Pdata_popList(Pdata *self, int start)
return r;
}
-#define PDATA_APPEND(D,O,ER) { \
- if (((Pdata*)(D))->length == ((Pdata*)(D))->size && \
- Pdata_grow((Pdata*)(D)) < 0) \
- return ER; \
- Py_INCREF(O); \
- ((Pdata*)(D))->data[((Pdata*)(D))->length++]=O; \
-}
-
-#define PDATA_PUSH(D,O,ER) { \
- if (((Pdata*)(D))->length == ((Pdata*)(D))->size && \
- Pdata_grow((Pdata*)(D)) < 0) { \
- Py_DECREF(O); \
- return ER; \
- } \
- ((Pdata*)(D))->data[((Pdata*)(D))->length++]=O; \
-}
-
/*************************************************************************/
#define ARG_TUP(self, o) { \
@@ -2886,8 +2895,7 @@ static int
load_bool(Unpicklerobject *self, PyObject *boolean)
{
assert(boolean == Py_True || boolean == Py_False);
- Py_INCREF(boolean);
- PDATA_PUSH(self->stack, boolean, -1);
+ PDATA_APPEND(self->stack, boolean, -1);
return 0;
}