188 lines
6.3 KiB
C++
188 lines
6.3 KiB
C++
// -*- C++ -*-
|
|
//
|
|
// This file is part of the Coriolis Software.
|
|
// Copyright (c) UPMC 2010-2018, 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 |
|
|
// | =============================================================== |
|
|
// | C++ Module : "./PyEntity.cpp" |
|
|
// +-----------------------------------------------------------------+
|
|
|
|
|
|
#include "hurricane/isobar/PyNet.h"
|
|
#include "hurricane/isobar/PyLayer.h"
|
|
#include "hurricane/isobar/PyPoint.h"
|
|
#include "hurricane/isobar/PyBox.h"
|
|
#include "hurricane/isobar/PyCell.h"
|
|
#include "hurricane/isobar/PyInstance.h"
|
|
#include "hurricane/isobar/PyReference.h"
|
|
#include "hurricane/isobar/PyComponent.h"
|
|
#include "hurricane/isobar/PyPlug.h"
|
|
#include "hurricane/isobar/PyHorizontal.h"
|
|
#include "hurricane/isobar/PyVertical.h"
|
|
#include "hurricane/isobar/PyContact.h"
|
|
#include "hurricane/isobar/PyPad.h"
|
|
#include "hurricane/isobar/PyPin.h"
|
|
#include "hurricane/isobar/PyRoutingPad.h"
|
|
#include "hurricane/Cell.h"
|
|
|
|
namespace Isobar {
|
|
|
|
using namespace Hurricane;
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
// +=================================================================+
|
|
// | "PyEntity" Python Module Code Part |
|
|
// +=================================================================+
|
|
|
|
#if defined(__PYTHON_MODULE__)
|
|
|
|
#define METHOD_HEAD(function) GENERIC_METHOD_HEAD(Entity,entity,function)
|
|
|
|
|
|
// +-------------------------------------------------------------+
|
|
// | "PyEntity" Attribute Methods |
|
|
// +-------------------------------------------------------------+
|
|
|
|
// Standart destroy (Attribute).
|
|
DBoDestroyAttribute(PyEntity_destroy ,PyEntity)
|
|
|
|
// ---------------------------------------------------------------
|
|
// Attribute Method : "PyEntity_getCell ()"
|
|
|
|
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." }
|
|
, { "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 |
|
|
// +=================================================================+
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
// Allocator Method : "PyEntity_NEW ()"
|
|
//
|
|
// 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)" ); \
|
|
return NULL;
|
|
}
|
|
|
|
Cell* cell = dynamic_cast<Cell*>(entity);
|
|
if ( cell ) return PyCell_Link ( cell );
|
|
|
|
Instance* instance = dynamic_cast<Instance*>(entity);
|
|
if ( instance ) return PyInstance_Link ( instance );
|
|
|
|
Reference* reference = dynamic_cast<Reference*>(entity);
|
|
if ( reference ) return PyReference_Link ( reference );
|
|
|
|
RoutingPad* rp = dynamic_cast<RoutingPad*>(entity);
|
|
if ( rp ) return PyRoutingPad_Link ( rp );
|
|
|
|
Horizontal* horizontal = dynamic_cast<Horizontal*>(entity);
|
|
if ( horizontal ) return PyHorizontal_Link ( horizontal );
|
|
|
|
Vertical* vertical = dynamic_cast<Vertical*>(entity);
|
|
if ( vertical ) return PyVertical_Link ( vertical );
|
|
|
|
Pad* pad = dynamic_cast<Pad*>(entity);
|
|
if ( pad ) return PyPad_Link ( pad );
|
|
|
|
Contact* contact = dynamic_cast<Contact*>(entity);
|
|
if ( contact ) return PyContact_Link ( contact );
|
|
|
|
Plug* plug = dynamic_cast<Plug*>(entity);
|
|
if ( plug ) return PyPlug_Link ( plug );
|
|
|
|
Pin* pin = dynamic_cast<Pin*>(entity);
|
|
if ( pin ) return PyPin_Link ( pin );
|
|
|
|
Net* net = dynamic_cast<Net*>(entity);
|
|
if ( net ) return PyNet_Link ( net );
|
|
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
|
|
PyTypeRootObjectDefinitions(Entity)
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
// PyEntity Object Definitions.
|
|
|
|
|
|
#endif // Shared Library Code Part.
|
|
|
|
} // extern "C".
|
|
|
|
|
|
// +=================================================================+
|
|
// | "PyEntity" Shared Library Code Part |
|
|
// +=================================================================+
|
|
|
|
|
|
# if !defined(__PYTHON_MODULE__)
|
|
|
|
Hurricane::Entity* EntityCast ( PyObject* derivedObject ) {
|
|
if ( IsPyCell (derivedObject) ) return PYCELL_O(derivedObject);
|
|
if ( IsPyInstance (derivedObject) ) return PYINSTANCE_O(derivedObject);
|
|
if ( IsPyReference (derivedObject) ) return PYREFERENCE_O(derivedObject);
|
|
if ( IsPyPlug (derivedObject) ) return PYPLUG_O(derivedObject);
|
|
if ( IsPyHorizontal(derivedObject) ) return PYHORIZONTAL_O(derivedObject);
|
|
if ( IsPyVertical (derivedObject) ) return PYVERTICAL_O(derivedObject);
|
|
if ( IsPyRoutingPad(derivedObject) ) return PYROUTINGPAD_O(derivedObject);
|
|
if ( IsPyContact (derivedObject) ) return PYCONTACT_O(derivedObject);
|
|
if ( IsPyPin (derivedObject) ) return PYPIN_O(derivedObject);
|
|
if ( IsPyNet (derivedObject) ) return PYNET_O(derivedObject);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
#endif
|
|
|
|
} // Isobar namespace.
|