X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=gdcmPython%2Fgdcm.i;h=5c4dc258de8d097235a40e710543fe78d6e03566;hb=8d10ccb6794a0f22234983990e2181a24625fbd8;hp=72038f5fcc02478173795a18388e5bef8bfea489;hpb=24a0635a8871074306d25000a2989d4959841e8a;p=gdcm.git diff --git a/gdcmPython/gdcm.i b/gdcmPython/gdcm.i index 72038f5f..5c4dc258 100644 --- a/gdcmPython/gdcm.i +++ b/gdcmPython/gdcm.i @@ -18,7 +18,7 @@ #include "gdcmFile.h" #include "gdcmGlobal.h" #include "gdcmHeader.h" -#include "gdcmHeaderHelper.h" +#include "gdcmSerieHeader.h" #include "gdcmRLEFramesInfo.h" #include "gdcmJPEGFragmentsInfo.h" #include "gdcmSQItem.h" @@ -32,36 +32,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 +73,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 +90,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 +120,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 +140,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 +154,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 +240,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 +264,21 @@ 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 "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" @@ -278,7 +288,7 @@ using namespace gdcm; %include "gdcmDicomDirMeta.h" %include "gdcmDocument.h" %include "gdcmHeader.h" -%include "gdcmHeaderHelper.h" +%include "gdcmSerieHeader.h" %include "gdcmFile.h" %include "gdcmUtil.h" %include "gdcmGlobal.h"