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++ -*-
//
// 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 |
// | I s o b a r - Hurricane / Python Interface |
// | |
// | Author : Jean-Paul Chaput |
// | E-mail : Jean-Paul.Chaput@asim.lip6.fr |
// | E-mail : Jean-Paul.Chaput@lip6.fr |
// | =============================================================== |
// | C++ Module : "./PyEntity.cpp" |
// +-----------------------------------------------------------------+
@ -47,55 +47,38 @@ extern "C" {
#define METHOD_HEAD(function) GENERIC_METHOD_HEAD(Entity,entity,function)
// +-------------------------------------------------------------+
// | "PyEntity" Attribute Methods |
// +-------------------------------------------------------------+
GetBoundStateAttribute(PyEntity_isPyBound, PyEntity,Entity)
DirectGetUIntAttribute(PyEntity_getId ,getId,PyEntity,Entity)
DBoDestroyAttribute(PyEntity_destroy ,PyEntity)
// ---------------------------------------------------------------
// Attribute Method : "PyEntity_getCell ()"
static PyObject* PyEntity_getCell ( PyEntity *self ) {
static PyObject* PyEntity_getCell ( PyEntity *self )
{
cdebug_log(20,0) << "PyEntity_getCell()" << endl;
Cell* cell = NULL;
HTRY
METHOD_HEAD( "Entity.getCell()" )
cell = entity->getCell();
HCATCH
return PyCell_Link( cell );
}
// ---------------------------------------------------------------
// PyEntity Attribute Method table.
PyMethodDef PyEntity_Methods[] =
{ { "getCell" , (PyCFunction)PyEntity_getCell , METH_NOARGS , "Returns the entity cell." }
, { "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 associated hurricane object, the python object remains." }
, {NULL, NULL, 0, NULL} /* sentinel */
};
// +-------------------------------------------------------------+
// | "PyEntity" Object Methods |
// +-------------------------------------------------------------+
DBoDeleteMethod(Entity)
PyTypeObjectLinkPyType(Entity)
#else // End of Python Module 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
// of the class hierarchy. Instead create the real underlying PyObject.
PyObject* PyEntity_NEW ( Entity* entity ) {
if ( !entity ) {
PyErr_SetString ( HurricaneError, "Invalid Entity (bad occurrence)" ); \
PyObject* PyEntity_NEW ( Entity* entity )
{
if (not entity) {
PyErr_SetString( HurricaneError, "Invalid Entity (bad occurrence)" );
return NULL;
}