In Entity, add Python bindings for "isBound()" and "getId()".

This commit is contained in:
Jean-Paul Chaput 2020-09-30 11:50:09 +02:00
parent 0c1a6def56
commit ea94175eb4
2 changed files with 38 additions and 54 deletions

View File

@ -1,14 +1,14 @@
// -*- C++ -*- // -*- C++ -*-
// //
// This file is part of the Coriolis Software. // This file is part of the Coriolis Software.
// Copyright (c) UPMC 2010-2018, All Rights Reserved // Copyright (c) SU 2010-2020, All Rights Reserved
// //
// +-----------------------------------------------------------------+ // +-----------------------------------------------------------------+
// | C O R I O L I S | // | C O R I O L I S |
// | I s o b a r - Hurricane / Python Interface | // | I s o b a r - Hurricane / Python Interface |
// | | // | |
// | Author : Jean-Paul Chaput | // | Author : Jean-Paul Chaput |
// | E-mail : Jean-Paul.Chaput@asim.lip6.fr | // | E-mail : Jean-Paul.Chaput@lip6.fr |
// | =============================================================== | // | =============================================================== |
// | C++ Module : "./PyEntity.cpp" | // | C++ Module : "./PyEntity.cpp" |
// +-----------------------------------------------------------------+ // +-----------------------------------------------------------------+
@ -47,55 +47,38 @@ extern "C" {
#define METHOD_HEAD(function) GENERIC_METHOD_HEAD(Entity,entity,function) #define METHOD_HEAD(function) GENERIC_METHOD_HEAD(Entity,entity,function)
GetBoundStateAttribute(PyEntity_isPyBound, PyEntity,Entity)
// +-------------------------------------------------------------+
// | "PyEntity" Attribute Methods |
// +-------------------------------------------------------------+
DirectGetUIntAttribute(PyEntity_getId ,getId,PyEntity,Entity) DirectGetUIntAttribute(PyEntity_getId ,getId,PyEntity,Entity)
DBoDestroyAttribute(PyEntity_destroy ,PyEntity) DBoDestroyAttribute(PyEntity_destroy ,PyEntity)
// --------------------------------------------------------------- static PyObject* PyEntity_getCell ( PyEntity *self )
// Attribute Method : "PyEntity_getCell ()" {
static PyObject* PyEntity_getCell ( PyEntity *self ) {
cdebug_log(20,0) << "PyEntity_getCell()" << endl; cdebug_log(20,0) << "PyEntity_getCell()" << endl;
Cell* cell = NULL; Cell* cell = NULL;
HTRY HTRY
METHOD_HEAD( "Entity.getCell()" ) METHOD_HEAD( "Entity.getCell()" )
cell = entity->getCell(); cell = entity->getCell();
HCATCH HCATCH
return PyCell_Link( cell ); return PyCell_Link( cell );
} }
// ---------------------------------------------------------------
// PyEntity Attribute Method table.
PyMethodDef PyEntity_Methods[] = PyMethodDef PyEntity_Methods[] =
{ { "getCell" , (PyCFunction)PyEntity_getCell , METH_NOARGS , "Returns the entity cell." } { { "getCell" , (PyCFunction)PyEntity_getCell , METH_NOARGS , "Returns the entity cell." }
, { "getId" , (PyCFunction)PyEntity_getId , METH_NOARGS , "Returns unique object (DBo) identifier." } , { "getId" , (PyCFunction)PyEntity_getId , METH_NOARGS , "Returns unique object (DBo) identifier." }
, { "isBound" , (PyCFunction)PyEntity_isPyBound , METH_NOARGS , "Returns true if the Entity is bounded to it's Hurricane counterpart." }
, { "destroy" , (PyCFunction)PyEntity_destroy , METH_NOARGS , { "destroy" , (PyCFunction)PyEntity_destroy , METH_NOARGS
, "Destroy associated hurricane object, the python object remains." } , "Destroy associated hurricane object, the python object remains." }
, {NULL, NULL, 0, NULL} /* sentinel */ , {NULL, NULL, 0, NULL} /* sentinel */
}; };
// +-------------------------------------------------------------+
// | "PyEntity" Object Methods |
// +-------------------------------------------------------------+
DBoDeleteMethod(Entity) DBoDeleteMethod(Entity)
PyTypeObjectLinkPyType(Entity) PyTypeObjectLinkPyType(Entity)
#else // End of Python Module Code Part. #else // End of Python Module Code Part.
// +=================================================================+ // +=================================================================+
// | "PyEntity" Shared Library Code Part | // | "PyEntity" Shared Library Code Part |
// +=================================================================+ // +=================================================================+
@ -107,9 +90,10 @@ extern "C" {
// No PyEntity should ever be created, it's not a terminal object // No PyEntity should ever be created, it's not a terminal object
// of the class hierarchy. Instead create the real underlying PyObject. // of the class hierarchy. Instead create the real underlying PyObject.
PyObject* PyEntity_NEW ( Entity* entity ) { PyObject* PyEntity_NEW ( Entity* entity )
if ( !entity ) { {
PyErr_SetString ( HurricaneError, "Invalid Entity (bad occurrence)" ); \ if (not entity) {
PyErr_SetString( HurricaneError, "Invalid Entity (bad occurrence)" );
return NULL; return NULL;
} }