2008-03-06 10:46:43 -06:00
|
|
|
// x-----------------------------------------------------------------x
|
|
|
|
// | |
|
|
|
|
// | C O R I O L I S |
|
|
|
|
// | I s o b a r - Hurricane / Python Interface |
|
|
|
|
// | |
|
|
|
|
// | Author : Damien Dupuis |
|
|
|
|
// | E-mail : Damien.Dupuis@asim.lip6.fr |
|
|
|
|
// | =============================================================== |
|
|
|
|
// | C++ Module : "./PyLayer.cpp" |
|
|
|
|
// | *************************************************************** |
|
|
|
|
// | U p d a t e s |
|
|
|
|
// | |
|
|
|
|
// x-----------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-21 17:46:29 -05:00
|
|
|
#include "hurricane/isobar/PyLayer.h"
|
|
|
|
#include "hurricane/isobar/PyTechnology.h"
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
namespace Isobar {
|
|
|
|
|
2008-03-28 04:48:47 -05:00
|
|
|
using namespace Hurricane;
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
|
|
#define METHOD_HEAD(function) GENERIC_METHOD_HEAD(Layer,layer,function)
|
|
|
|
|
|
|
|
|
|
|
|
// x=================================================================x
|
|
|
|
// | "PyLayer" Python Module Code Part |
|
|
|
|
// x=================================================================x
|
|
|
|
|
|
|
|
#if defined(__PYTHON_MODULE__)
|
|
|
|
|
|
|
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
// | "PyLayer" Attribute Methods |
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
|
|
|
// Standart Accessors (Attributes).
|
|
|
|
|
|
|
|
|
2008-03-17 08:54:33 -05:00
|
|
|
// Standart destroy (Attribute).
|
|
|
|
DBoDestroyAttribute(PyLayer_destroy, PyLayer)
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
2008-03-17 08:54:33 -05:00
|
|
|
// Attribute Method : "PyLayer_getTechnology ()"
|
2008-03-06 10:46:43 -06:00
|
|
|
|
2009-01-22 05:37:42 -06:00
|
|
|
static PyObject* PyLayer_getTechnology ( PyLayer *self ) {
|
2008-03-17 08:54:33 -05:00
|
|
|
trace << "PyLayer_getTechnology ()" << endl;
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
Technology* techno = NULL;
|
|
|
|
|
|
|
|
HTRY
|
2008-03-17 08:54:33 -05:00
|
|
|
METHOD_HEAD ( "Layer.getTechnology()" )
|
|
|
|
techno = layer->getTechnology ();
|
2008-03-06 10:46:43 -06:00
|
|
|
HCATCH
|
|
|
|
|
|
|
|
return PyTechnology_Link ( techno );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
2008-03-17 08:54:33 -05:00
|
|
|
// Attribute Method : "PyLayer_getName ()"
|
2008-03-06 10:46:43 -06:00
|
|
|
|
2008-12-11 06:25:02 -06:00
|
|
|
GetNameMethod(Layer, layer)
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// Attribute Method : "PyLayer_SetName ()"
|
|
|
|
|
2008-12-11 06:25:02 -06:00
|
|
|
SetNameMethod(Layer, layer)
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// PyLayer Attribute Method table.
|
|
|
|
|
|
|
|
PyMethodDef PyLayer_Methods[] =
|
2008-03-17 08:54:33 -05:00
|
|
|
{ { "getTechnology" , (PyCFunction)PyLayer_getTechnology , METH_NOARGS , "Returns the technology owning the layer." }
|
|
|
|
, { "getName" , (PyCFunction)PyLayer_getName , METH_NOARGS , "Returns the name of the layer." }
|
2008-12-11 06:25:02 -06:00
|
|
|
, { "setName" , (PyCFunction)PyLayer_setName , METH_VARARGS, "Allows to change the layer name." }
|
2008-03-17 08:54:33 -05:00
|
|
|
, { "destroy" , (PyCFunction)PyLayer_destroy , METH_NOARGS
|
|
|
|
, "Destroy associated hurricane object The python object remains." }
|
2008-03-06 10:46:43 -06:00
|
|
|
, {NULL, NULL, 0, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
// | "PyLayer" Object Methods |
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
|
|
|
DBoDeleteMethod(Layer)
|
|
|
|
PyTypeObjectLinkPyType(Layer)
|
|
|
|
|
|
|
|
|
|
|
|
#else // End of Python Module Code Part.
|
|
|
|
|
|
|
|
|
|
|
|
// x=================================================================x
|
|
|
|
// | "PyLayer" Shared Library Code Part |
|
|
|
|
// x=================================================================x
|
|
|
|
|
|
|
|
|
|
|
|
// Link/Creation Method.
|
2008-10-12 08:37:33 -05:00
|
|
|
DBoLinkCreateMethod(Layer)
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// PyLayer Object Definitions.
|
|
|
|
|
2008-10-12 08:37:33 -05:00
|
|
|
PyTypeObjectDefinitions(Layer)
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
#endif // End of Shared Library Code Part.
|
|
|
|
|
|
|
|
|
|
|
|
} // End of extern "C".
|
|
|
|
|
|
|
|
|
|
|
|
} // End of Isobar namespace.
|