1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
/*=========================================================================
Program: Visualization Toolkit
Module: PyVTKSpecialObject.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-----------------------------------------------------------------------
The PyVTKSpecialObject was created in Feb 2001 by David Gobbi.
It was substantially updated in April 2010 by David Gobbi.
A PyVTKSpecialObject is a python object that represents an object
that belongs to one of the special classes in VTK, that is, classes
that are not derived from vtkObjectBase. Unlike vtkObjects, these
special objects are not reference counted: a PyVTKSpecialObject
always contains its own copy of the C++ object.
The PyVTKSpecialType is a simple structure that contains information
about the PyVTKSpecialObject type that cannot be stored in python's
PyTypeObject struct. Each PyVTKSpecialObject contains a pointer to
its PyVTKSpecialType. The PyVTKSpecialTypes are also stored in a map
in vtkPythonUtil.cxx, so that they can be lookup up by name.
-----------------------------------------------------------------------*/
#include "PyVTKSpecialObject.h"
#include "vtkPythonUtil.h"
#include <vtksys/ios/sstream>
// Silence warning like
// "dereferencing type-punned pointer will break strict-aliasing rules"
// it happens because this kind of expression: (long *)&ptr
// pragma GCC diagnostic is available since gcc>=4.2
#if defined(__GNUC__) && (__GNUC__>4) || (__GNUC__==4 && __GNUC_MINOR__>=2)
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif
//--------------------------------------------------------------------
PyVTKSpecialType::PyVTKSpecialType(
PyTypeObject *typeobj, PyMethodDef *cmethods, PyMethodDef *ccons,
const char *cdocs[], PyVTKSpecialCopyFunc copyfunc)
{
this->py_type = typeobj;
this->methods = cmethods;
this->constructors = ccons;
this->docstring = vtkPythonUtil::BuildDocString(cdocs);
this->copy_func = copyfunc;
}
//--------------------------------------------------------------------
PyObject *PyVTKSpecialObject_Repr(PyObject *self)
{
PyVTKSpecialObject *obj = (PyVTKSpecialObject *)self;
PyTypeObject *type = self->ob_type;
const char *name = self->ob_type->tp_name;
PyObject *s = PyString_FromString((char *)"(");
PyString_ConcatAndDel(&s, PyString_FromString((char *)name));
PyString_ConcatAndDel(&s, PyString_FromString((char *)")"));
#if PY_VERSION_HEX >= 0x02020000
while (type->tp_base && !type->tp_str)
{
type = type->tp_base;
}
// use str() if available
if (type->tp_str && type->tp_str != (&PyBaseObject_Type)->tp_str)
{
PyObject *t = type->tp_str(self);
if (t == NULL)
{
Py_XDECREF(s);
s = NULL;
}
else
{
PyString_ConcatAndDel(&s, t);
}
}
// otherwise just print address of object
else
#endif
if (obj->vtk_ptr)
{
char buf[256];
sprintf(buf, "%p", obj->vtk_ptr);
PyString_ConcatAndDel(&s, PyString_FromString(buf));
}
return s;
}
//--------------------------------------------------------------------
PyObject *PyVTKSpecialObject_SequenceString(PyObject *self)
{
Py_ssize_t n, i;
PyObject *s = NULL;
PyObject *t, *o, *comma;
const char *bracket = "[...]";
if (self->ob_type->tp_as_sequence &&
self->ob_type->tp_as_sequence->sq_item != NULL &&
self->ob_type->tp_as_sequence->sq_ass_item == NULL)
{
bracket = "(...)";
}
i = Py_ReprEnter(self);
if (i < 0)
{
return NULL;
}
else if (i > 0)
{
return PyString_FromString((char *)bracket);
}
n = PySequence_Size(self);
if (n >= 0)
{
comma = PyString_FromString((char *)", ");
s = PyString_FromStringAndSize((char *)bracket, 1);
for (i = 0; i < n && s != NULL; i++)
{
if (i > 0)
{
PyString_Concat(&s, comma);
}
o = PySequence_GetItem(self, i);
t = NULL;
if (o)
{
t = PyObject_Repr(o);
Py_DECREF(o);
}
if (t)
{
PyString_ConcatAndDel(&s, t);
}
else
{
Py_DECREF(s);
s = NULL;
}
n = PySequence_Size(self);
}
if (s)
{
PyString_ConcatAndDel(&s,
PyString_FromStringAndSize((char *)&bracket[4], 1));
}
Py_DECREF(comma);
}
Py_ReprLeave(self);
return s;
}
//--------------------------------------------------------------------
#if PY_VERSION_HEX < 0x02020000
PyObject *PyVTKSpecialObject_GetAttr(PyObject *self, PyObject *attr)
{
PyVTKSpecialObject *obj = (PyVTKSpecialObject *)self;
char *name = PyString_AsString(attr);
PyMethodDef *meth;
if (name[0] == '_')
{
if (strcmp(name, "__name__") == 0)
{
return PyString_FromString(self->ob_type->tp_name);
}
if (strcmp(name, "__doc__") == 0)
{
Py_INCREF(obj->vtk_info->docstring);
return obj->vtk_info->docstring;
}
if (strcmp(name,"__methods__") == 0)
{
meth = obj->vtk_info->methods;
PyObject *lst;
int i, n;
for (n = 0; meth && meth[n].ml_name; n++)
{
;
}
if ((lst = PyList_New(n)) != NULL)
{
meth = obj->vtk_info->methods;
for (i = 0; i < n; i++)
{
PyList_SetItem(lst, i, PyString_FromString(meth[i].ml_name));
}
PyList_Sort(lst);
}
return lst;
}
if (strcmp(name, "__members__") == 0)
{
PyObject *lst;
if ((lst = PyList_New(4)) != NULL)
{
PyList_SetItem(lst, 0, PyString_FromString("__doc__"));
PyList_SetItem(lst, 1, PyString_FromString("__members__"));
PyList_SetItem(lst, 2, PyString_FromString("__methods__"));
PyList_SetItem(lst, 3, PyString_FromString("__name__"));
}
return lst;
}
}
for (meth = obj->vtk_info->methods; meth && meth->ml_name; meth++)
{
if (strcmp(name, meth->ml_name) == 0)
{
return PyCFunction_New(meth, self);
}
}
PyErr_SetString(PyExc_AttributeError, name);
return NULL;
}
#endif
//--------------------------------------------------------------------
PyObject *PyVTKSpecialObject_New(const char *classname, void *ptr)
{
// would be nice if "info" could be passed instead if "classname",
// but this way of doing things is more dynamic if less efficient
PyVTKSpecialType *info = vtkPythonUtil::FindSpecialType(classname);
#if PY_MAJOR_VERSION >= 2
PyVTKSpecialObject *self = PyObject_New(PyVTKSpecialObject, info->py_type);
#else
PyVTKSpecialObject *self = PyObject_NEW(PyVTKSpecialObject, info->py_type);
#endif
self->vtk_info = info;
self->vtk_ptr = ptr;
self->vtk_hash = -1;
return (PyObject *)self;
}
//--------------------------------------------------------------------
PyObject *PyVTKSpecialObject_CopyNew(const char *classname, const void *ptr)
{
PyVTKSpecialType *info = vtkPythonUtil::FindSpecialType(classname);
if (info == 0)
{
char buf[256];
sprintf(buf,"cannot create object of unknown type \"%s\"",classname);
PyErr_SetString(PyExc_ValueError,buf);
return NULL;
}
#if PY_MAJOR_VERSION >= 2
PyVTKSpecialObject *self = PyObject_New(PyVTKSpecialObject, info->py_type);
#else
PyVTKSpecialObject *self = PyObject_NEW(PyVTKSpecialObject, info->py_type);
#endif
self->vtk_info = info;
self->vtk_ptr = info->copy_func(ptr);
self->vtk_hash = -1;
return (PyObject *)self;
}
//--------------------------------------------------------------------
PyObject *PyVTKSpecialType_New(PyTypeObject *pytype,
PyMethodDef *methods, PyMethodDef *constructors, PyMethodDef *newmethod,
const char *docstring[], PyVTKSpecialCopyFunc copyfunc)
{
// Add this type to the special type map
PyVTKSpecialType *info =
vtkPythonUtil::AddSpecialTypeToMap(
pytype, methods, constructors, docstring, copyfunc);
if (info)
{
// Add the built docstring to the type
pytype->tp_doc = PyString_AsString(info->docstring);
newmethod->ml_doc = PyString_AsString(info->docstring);
}
// Return a generator function for python < 2.2,
// return the type object itself for python >= 2.2
#if PY_VERSION_HEX < 0x2020000
return PyCFunction_New(newmethod, Py_None);
#else
PyType_Ready(pytype);
return (PyObject *)pytype;
#endif
}
|