123 lines
3.5 KiB
C++
123 lines
3.5 KiB
C++
// -*- C++ -*-
|
|
//
|
|
// This file is part of the Coriolis Software.
|
|
// Copyright (c) UPMC 2017-2018, All Rights Reserved
|
|
//
|
|
// +-----------------------------------------------------------------+
|
|
// | C O R I O L I S |
|
|
// | Alliance / Hurricane Interface |
|
|
// | |
|
|
// | Author : Jean-Paul CHAPUT |
|
|
// | E-mail : Jean-Paul.Chaput@lip6.fr |
|
|
// | =============================================================== |
|
|
// | C++ Module : "./PyLefImport.cpp" |
|
|
// +-----------------------------------------------------------------+
|
|
|
|
|
|
#include "crlcore/PyLefImport.h"
|
|
#include "hurricane/isobar/PyLibrary.h"
|
|
#include <string>
|
|
#include <sstream>
|
|
|
|
|
|
namespace CRL {
|
|
|
|
using std::cerr;
|
|
using std::endl;
|
|
using std::hex;
|
|
using std::string;
|
|
using std::ostringstream;
|
|
using Hurricane::tab;
|
|
using Hurricane::Exception;
|
|
using Hurricane::Bug;
|
|
using Hurricane::Error;
|
|
using Hurricane::Warning;
|
|
using Hurricane::Library;
|
|
using Isobar::ProxyProperty;
|
|
using Isobar::ProxyError;
|
|
using Isobar::ConstructorError;
|
|
using Isobar::HurricaneError;
|
|
using Isobar::HurricaneWarning;
|
|
using Isobar::getPyHash;
|
|
using Isobar::ParseOneArg;
|
|
using Isobar::ParseTwoArg;
|
|
using Isobar::__cs;
|
|
using Isobar::PyLibrary_Link;
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
#if defined(__PYTHON_MODULE__)
|
|
|
|
// +=================================================================+
|
|
// | "PyLefImport" Python Module Code Part |
|
|
// +=================================================================+
|
|
|
|
|
|
static PyObject* PyLefImport_load ( PyObject*, PyObject* args )
|
|
{
|
|
cdebug_log(30,0) << "PyLefImport_load()" << endl;
|
|
|
|
Library* library = NULL;
|
|
|
|
HTRY
|
|
char* lefFile = NULL;
|
|
|
|
if (PyArg_ParseTuple( args, "s:LefImport.load", &lefFile )) {
|
|
library = LefImport::load( lefFile );
|
|
} else {
|
|
PyErr_SetString ( ConstructorError, "LefImport.load(): Bad type or bad number of parameters." );
|
|
return NULL;
|
|
}
|
|
HCATCH
|
|
|
|
return (PyObject*)PyLibrary_Link(library);
|
|
}
|
|
|
|
|
|
static PyObject* PyLefImport_reset ( PyObject*, PyObject* )
|
|
{
|
|
cdebug_log(30,0) << "PyLefImport_reset()" << endl;
|
|
HTRY
|
|
LefImport::reset();
|
|
HCATCH
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
|
|
// Standart Destroy (Attribute).
|
|
|
|
|
|
PyMethodDef PyLefImport_Methods[] =
|
|
{ { "load" , (PyCFunction)PyLefImport_load , METH_VARARGS|METH_STATIC
|
|
, "Load a complete Cadence LEF library." }
|
|
, { "reset" , (PyCFunction)PyLefImport_reset , METH_NOARGS|METH_STATIC
|
|
, "Reset the Cadence LEF parser (clear technology)." }
|
|
//, { "destroy" , (PyCFunction)PyLefImport_destroy , METH_VARARGS
|
|
// , "Destroy the associated hurricane object. The python object remains." }
|
|
, {NULL, NULL, 0, NULL} /* sentinel */
|
|
};
|
|
|
|
|
|
NoObjectDeleteMethod(LefImport)
|
|
PyTypeObjectLinkPyTypeWithoutObject(LefImport,LefImport)
|
|
|
|
|
|
#else // End of Python Module Code Part.
|
|
|
|
|
|
// +=================================================================+
|
|
// | "PyLefImport" Shared Library Code Part |
|
|
// +=================================================================+
|
|
|
|
// Type Definition.
|
|
PyTypeObjectDefinitionsOfModule(CRL,LefImport)
|
|
|
|
|
|
#endif // End of Shared Library Code Part.
|
|
|
|
} // extern "C".
|
|
|
|
} // CRL namespace.
|