X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=gdcmPython%2Fgdcm.i;h=2678d19f159ae31e03271fa10282f512dfb5fef9;hb=c349cdf81245ecaf99f753f0d7511e03264d9194;hp=a2bba76066783487331cca7c59e39b1e4690791f;hpb=2b3445eb897dead75de24df82eaea22364fa4c6c;p=gdcm.git diff --git a/gdcmPython/gdcm.i b/gdcmPython/gdcm.i index a2bba760..2678d19f 100644 --- a/gdcmPython/gdcm.i +++ b/gdcmPython/gdcm.i @@ -1,6 +1,7 @@ %module gdcm %{ #include "gdcmCommon.h" +#include "gdcmBase.h" #include "gdcmDict.h" #include "gdcmDictEntry.h" #include "gdcmDictSet.h" @@ -32,36 +33,36 @@ /// for detail on gdcmPythonVoidFunc() and gdcmPythonVoidFuncArgDelete(). void gdcmPythonVoidFunc(void *arg) { - PyObject *arglist, *result; - PyObject *func = (PyObject *)arg; + PyObject *arglist, *result; + PyObject *func = (PyObject *)arg; - arglist = Py_BuildValue("()"); + arglist = Py_BuildValue("()"); - result = PyEval_CallObject(func, arglist); - Py_DECREF(arglist); + result = PyEval_CallObject(func, arglist); + Py_DECREF(arglist); - if (result) - { - Py_XDECREF(result); - } - else - { - if (PyErr_ExceptionMatches(PyExc_KeyboardInterrupt)) + if (result) + { + Py_XDECREF(result); + } + else + { + if (PyErr_ExceptionMatches(PyExc_KeyboardInterrupt)) { - std::cerr << "Caught a Ctrl-C within python, exiting program.\n"; - Py_Exit(1); + std::cerr << "Caught a Ctrl-C within python, exiting program.\n"; + Py_Exit(1); } - PyErr_Print(); - } + PyErr_Print(); + } } void gdcmPythonVoidFuncArgDelete(void *arg) { - PyObject *func = (PyObject *)arg; - if (func) - { - Py_DECREF(func); - } + PyObject *func = (PyObject *)arg; + if (func) + { + Py_DECREF(func); + } } /// This is required in order to avoid %including all the gdcm include files. @@ -73,7 +74,8 @@ using namespace gdcm; //////////////////////////////////////////////// // Convert an STL list<> to a python native list -%typemap(out) std::list * { +%typemap(out) std::list * +{ PyObject* NewItem = (PyObject*)0; PyObject* NewList = PyList_New(0); // The result of this typemap @@ -89,7 +91,8 @@ using namespace gdcm; ////////////////////////////////////////////////////////////////// // Convert an STL map<> (hash table) to a python native dictionary -%typemap(out) std::map > * { +%typemap(out) std::map > * +{ PyObject* NewDict = PyDict_New(); // The result of this typemap PyObject* NewKey = (PyObject*)0; PyObject* NewVal = (PyObject*)0; @@ -118,7 +121,8 @@ using namespace gdcm; ///////////////////////////////////////////////////////// // Convert a c++ hash table in a python native dictionary -%typemap(out) gdcm::TagDocEntryHT & { +%typemap(out) gdcm::TagDocEntryHT & +{ PyObject* NewDict = PyDict_New(); // The result of this typemap std::string RawName; // Element name as gotten from gdcm PyObject* NewKey = (PyObject*)0; // Associated name as python object @@ -137,8 +141,8 @@ using namespace gdcm; NewKey = PyString_FromString(RawName.c_str()); // Element values are striped from leading/trailing spaces - if (gdcm::ValEntry* ValEntryPtr = - dynamic_cast< gdcm::ValEntry* >(tag->second) ) + gdcm::ValEntry* ValEntryPtr = dynamic_cast< gdcm::ValEntry* >(tag->second); + if ( ValEntryPtr ) { RawValue = ValEntryPtr->GetValue(); } @@ -151,45 +155,53 @@ using namespace gdcm; } ///////////////////////////////////// -%typemap(out) ListDicomDirPatient & { +%typemap(out) ListDicomDirPatient & +{ PyObject* NewItem = (PyObject*)0; $result = PyList_New(0); // The result of this typemap for (std::list::iterator New = ($1)->begin(); - New != ($1)->end(); ++New) { + New != ($1)->end(); ++New) + { NewItem = SWIG_NewPointerObj(*New,SWIGTYPE_p_DicomDirPatient,1); PyList_Append($result, NewItem); } } -%typemap(out) ListDicomDirStudy & { +%typemap(out) ListDicomDirStudy & +{ PyObject* NewItem = (PyObject*)0; $result = PyList_New(0); // The result of this typemap for (std::list::iterator New = ($1)->begin(); - New != ($1)->end(); ++New) { + New != ($1)->end(); ++New) + { NewItem = SWIG_NewPointerObj(*New,SWIGTYPE_p_DicomDirStudy,1); PyList_Append($result, NewItem); } } -%typemap(out) ListDicomDirSerie & { +%typemap(out) ListDicomDirSerie & +{ PyObject* NewItem = (PyObject*)0; $result = PyList_New(0); // The result of this typemap for (std::list::iterator New = ($1)->begin(); - New != ($1)->end(); ++New) { + New != ($1)->end(); ++New) + { NewItem = SWIG_NewPointerObj(*New,SWIGTYPE_p_DicomDirSerie,1); PyList_Append($result, NewItem); } } -%typemap(out) ListDicomDirImage & { +%typemap(out) ListDicomDirImage & +{ PyObject* NewItem = (PyObject*)0; $result = PyList_New(0); // The result of this typemap for (std::list::iterator New = ($1)->begin(); - New != ($1)->end(); ++New) { + New != ($1)->end(); ++New) + { NewItem = SWIG_NewPointerObj(*New,SWIGTYPE_p_DicomDirImage,1); PyList_Append($result, NewItem); } @@ -229,7 +241,8 @@ using namespace gdcm; //////////////////// STL string versus Python str //////////////////////// // Convertion returning a C++ string. -%typemap(out) string, std::string { +%typemap(out) string, std::string +{ $result = PyString_FromString(($1).c_str()); } @@ -252,23 +265,22 @@ using namespace gdcm; // The gdcm::Header class doesn't have any SetFilename method anyhow, and // this constructor is only used internaly (not from the API) so this is // not a big loss. +%ignore gdcm::binary_write(std::ostream &,uint32_t const &); +%ignore gdcm::binary_write(std::ostream &,uint16_t const &); + %ignore gdcm::Header::Header(); %ignore gdcm::DicomDir::DicomDir(); //////////////////////////////////////////////////////////////////////////// // Warning: Order matters ! %include "gdcmCommon.h" -//CLEANME %include "gdcmRLEFramesInfo.h" -//CLEANME %include "gdcmJPEGFragmentsInfo.h" -//CLEANME %include "gdcmDictEntry.h" -//CLEANME %include "gdcmDict.h" -//CLEANME %include "gdcmDocEntry.h" +%include "gdcmBase.h" +%include "gdcmDictEntry.h" +%include "gdcmDict.h" %include "gdcmDocEntrySet.h" -//CLEANME %include "gdcmElementSet.h" -//CLEANME %include "gdcmDictSet.h" -//CLEANME %include "gdcmTS.h" -//CLEANME %include "gdcmVR.h" -//CLEANME %include "gdcmSQItem.h" +%include "gdcmElementSet.h" +%include "gdcmDictSet.h" +%include "gdcmSQItem.h" %include "gdcmDicomDirElement.h" %include "gdcmDicomDirObject.h" %include "gdcmDicomDirImage.h"