This commit was manufactured by cvs2svn to create tag
[python/dscho.git] / Objects / cellobject.c
blob3b870934dc10c56aeebd2dcb4f2830aff2626fd1
1 /* Cell object implementation */
3 #include "Python.h"
5 PyObject *
6 PyCell_New(PyObject *obj)
8 PyCellObject *op;
10 op = (PyCellObject *)PyObject_GC_New(PyCellObject, &PyCell_Type);
11 op->ob_ref = obj;
12 Py_XINCREF(obj);
14 _PyObject_GC_TRACK(op);
15 return (PyObject *)op;
18 PyObject *
19 PyCell_Get(PyObject *op)
21 if (!PyCell_Check(op)) {
22 PyErr_BadInternalCall();
23 return NULL;
25 Py_XINCREF(((PyCellObject*)op)->ob_ref);
26 return PyCell_GET(op);
29 int
30 PyCell_Set(PyObject *op, PyObject *obj)
32 if (!PyCell_Check(op)) {
33 PyErr_BadInternalCall();
34 return -1;
36 Py_XDECREF(((PyCellObject*)op)->ob_ref);
37 Py_XINCREF(obj);
38 PyCell_SET(op, obj);
39 return 0;
42 static void
43 cell_dealloc(PyCellObject *op)
45 _PyObject_GC_UNTRACK(op);
46 Py_XDECREF(op->ob_ref);
47 PyObject_GC_Del(op);
50 static int
51 cell_compare(PyCellObject *a, PyCellObject *b)
53 if (a->ob_ref == NULL) {
54 if (b->ob_ref == NULL)
55 return 0;
56 return -1;
57 } else if (b->ob_ref == NULL)
58 return 1;
59 return PyObject_Compare(a->ob_ref, b->ob_ref);
62 static PyObject *
63 cell_repr(PyCellObject *op)
65 if (op->ob_ref == NULL)
66 return PyString_FromFormat("<cell at %p: empty>", op);
68 return PyString_FromFormat("<cell at %p: %.80s object at %p>",
69 op, op->ob_ref->ob_type->tp_name,
70 op->ob_ref);
73 static int
74 cell_traverse(PyCellObject *op, visitproc visit, void *arg)
76 if (op->ob_ref)
77 return visit(op->ob_ref, arg);
78 return 0;
81 static int
82 cell_clear(PyCellObject *op)
84 Py_XDECREF(op->ob_ref);
85 op->ob_ref = NULL;
86 return 0;
89 PyTypeObject PyCell_Type = {
90 PyObject_HEAD_INIT(&PyType_Type)
92 "cell",
93 sizeof(PyCellObject),
95 (destructor)cell_dealloc, /* tp_dealloc */
96 0, /* tp_print */
97 0, /* tp_getattr */
98 0, /* tp_setattr */
99 (cmpfunc)cell_compare, /* tp_compare */
100 (reprfunc)cell_repr, /* tp_repr */
101 0, /* tp_as_number */
102 0, /* tp_as_sequence */
103 0, /* tp_as_mapping */
104 0, /* tp_hash */
105 0, /* tp_call */
106 0, /* tp_str */
107 PyObject_GenericGetAttr, /* tp_getattro */
108 0, /* tp_setattro */
109 0, /* tp_as_buffer */
110 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
111 0, /* tp_doc */
112 (traverseproc)cell_traverse, /* tp_traverse */
113 (inquiry)cell_clear, /* tp_clear */