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
|
// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2005 Alistair Riddoch
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
// $Id: Py_RootEntity.cpp,v 1.12 2007-07-29 03:33:34 alriddoch Exp $
#include "Py_RootEntity.h"
#include "Py_Object.h"
#include "common/log.h"
#include "common/compose.hpp"
using Atlas::Message::Element;
using Atlas::Objects::Root;
using Atlas::Objects::Entity::RootEntity;
/*
* Beginning of RootEntity section.
*
* This is a python type that wraps up entity objects from
* Atlas::Objects::Entity namespace.
*
*/
static PyObject* RootEntity_get_name(PyRootEntity * self)
{
#ifndef NDEBUG
if (!self->entity.isValid()) {
PyErr_SetString(PyExc_AssertionError,"NULL RootEntity in RootEntity.get_name");
return NULL;
}
#endif // NDEBUG
return PyString_FromString("obj");
}
/*
* RootEntity methods structure.
*
* Generated from a macro in case we need one for each type of entity.
*
*/
PyMethodDef RootEntity_methods[] = {
{"get_name", (PyCFunction)RootEntity_get_name, METH_NOARGS},
{NULL, NULL}
};
PyMethodDef ConstRootEntity_methods[] = {
{"get_name", (PyCFunction)RootEntity_get_name, METH_NOARGS},
{NULL, NULL}
};
/*
* Beginning of RootEntity standard methods section.
*/
static void RootEntity_dealloc(PyRootEntity *self)
{
self->entity.~RootEntity();
PyObject_Free(self);
}
static inline PyObject * findMethod(PyRootEntity * self, char * name)
{
return Py_FindMethod(RootEntity_methods, (PyObject *)self, name);
}
static inline PyObject * findMethod(PyConstRootEntity * self, char * name)
{
return Py_FindMethod(ConstRootEntity_methods, (PyObject *)self, name);
}
template <typename T>
static PyObject * getattr(T * self, char * name)
{
#ifndef NDEBUG
if (!self->entity.isValid()) {
PyErr_SetString(PyExc_AssertionError, "NULL RootEntity in RootEntity.getattr");
return NULL;
}
#endif // NDEBUG
if (strcmp(name, "name") == 0) {
return PyString_FromString(self->entity->getName().c_str());
} else if (strcmp(name, "id") == 0) {
return PyString_FromString(self->entity->getId().c_str());
} else {
Element attr;
if (self->entity->copyAttr(name, attr) == 0) {
assert(!attr.isNone());
if (attr.isPtr()) {
PyObject * ret = (PyObject*)attr.Ptr();
Py_INCREF(ret);
return ret;
}
return MessageElement_asPyObject(attr);
}
}
PyObject * ret = findMethod(self, name);
return ret;
}
static PyObject * RootEntity_getattr(PyRootEntity * self, char * name)
{
return getattr(self, name);
}
static PyObject * ConstRootEntity_getattr(PyConstRootEntity * self, char * name)
{
return getattr(self, name);
}
static int RootEntity_setattr(PyRootEntity *self, char *name, PyObject *v)
{
#ifndef NDEBUG
if (!self->entity.isValid()) {
PyErr_SetString(PyExc_AssertionError, "NULL RootEntity in RootEntity.setattr");
return -1;
}
#endif // NDEBUG
if (strcmp(name, "name") == 0) {
if (!PyString_Check(v)) {
PyErr_SetString(PyExc_TypeError, "non string name");
return -1;
}
self->entity->setName(PyString_AsString(v));
return 0;
}
Element atlas_val = PyObject_asMessageElement(v);
if (!atlas_val.isNone()) {
if (atlas_val.isMap()) {
log(NOTICE, String::compose("Setting \"%1\" as map attribute "
"on RootEntity.", name));
}
if (atlas_val.isList()) {
log(NOTICE, String::compose("Setting \"%1\" as list attribute "
"on RootEntity.", name));
}
self->entity->setAttr(name, atlas_val);
return 0;
} else {
// FIXME We do nothing to ensure that this reference is decremented currently
// This causes a memory leak. In order to solve this, we are going
// to need to find and remove all python attributes in the
// underlying object when this wrapper is destructed.
Py_INCREF(v);
self->entity->setAttr(name, Element((void*)v));
return 0;
}
}
PyTypeObject PyRootEntity_Type = {
PyObject_HEAD_INIT(&PyType_Type)
0, // ob_size
"Entity", // tp_name
sizeof(PyRootEntity), // tp_basicsize
0, // tp_itemsize
// methods
(destructor)RootEntity_dealloc, // tp_dealloc
0, // tp_print
(getattrfunc)RootEntity_getattr, // tp_getattr
(setattrfunc)RootEntity_setattr, // tp_setattr
0, // tp_compare
0, // tp_repr
0, // tp_as_number
0, // tp_as_sequence
0, // tp_as_mapping
0, // tp_hash
};
PyTypeObject PyConstRootEntity_Type = {
PyObject_HEAD_INIT(&PyType_Type)
0, // ob_size
"Entity", // tp_name
sizeof(PyConstRootEntity), // tp_basicsize
0, // tp_itemsize
// methods
(destructor)RootEntity_dealloc, // tp_dealloc
0, // tp_print
(getattrfunc)ConstRootEntity_getattr, // tp_getattr
0, // tp_setattr
0, // tp_compare
0, // tp_repr
0, // tp_as_number
0, // tp_as_sequence
0, // tp_as_mapping
0, // tp_hash
};
/*
* Beginning of RootEntity creation functions section.
*/
PyRootEntity * newPyRootEntity()
{
PyRootEntity * self;
self = PyObject_NEW(PyRootEntity, &PyRootEntity_Type);
if (self == NULL) {
return NULL;
}
new (&(self->entity)) RootEntity(NULL);
return self;
}
PyConstRootEntity * newPyConstRootEntity()
{
PyConstRootEntity * self;
self = PyObject_NEW(PyConstRootEntity, &PyConstRootEntity_Type);
if (self == NULL) {
return NULL;
}
new (&(self->entity)) RootEntity(NULL);
return self;
}
|