X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=gdcmPython%2Fgdcm.i;h=1849a9a01462b9e0e6dee3652ec3bf0f1d06c20d;hb=53d0b05d5352bf967f0e43cd58b7b190b6479794;hp=e230f450fda6d2aa0d32649abf3b83b9eb968891;hpb=3c72973d1bf03101462d11b1ac337be8cf1e3f8c;p=gdcm.git diff --git a/gdcmPython/gdcm.i b/gdcmPython/gdcm.i index e230f450..1849a9a0 100644 --- a/gdcmPython/gdcm.i +++ b/gdcmPython/gdcm.i @@ -5,7 +5,10 @@ #include "gdcmCommon.h" #include "gdcmBase.h" +#include "gdcmTagKey.h" +#include "gdcmVRKey.h" #include "gdcmDict.h" +#include "gdcmDicomEntry.h" #include "gdcmDictEntry.h" #include "gdcmDictSet.h" #include "gdcmDicomDir.h" @@ -28,9 +31,7 @@ #include "gdcmSQItem.h" #include "gdcmUtil.h" #include "gdcmDocEntry.h" -#include "gdcmContentEntry.h" -#include "gdcmValEntry.h" -#include "gdcmBinEntry.h" +#include "gdcmDataEntry.h" #include "gdcmSeqEntry.h" #include "gdcmVR.h" #include "gdcmTS.h" @@ -103,10 +104,10 @@ typedef unsigned long long uint64_t; { if(dynamic_cast($1)) // SeqEntry * newEntry = SWIG_NewPointerObj($1,SWIGTYPE_p_gdcm__SeqEntry,0); - else if(dynamic_cast($1)) // BinEntry * - newEntry = SWIG_NewPointerObj($1,SWIGTYPE_p_gdcm__BinEntry,0); - else // ValEntry * - newEntry = SWIG_NewPointerObj($1,SWIGTYPE_p_gdcm__ValEntry,0); + else if(dynamic_cast($1)) // DataEntry * + newEntry = SWIG_NewPointerObj($1,SWIGTYPE_p_gdcm__DataEntry,0); + else + newEntry = NULL; } else { @@ -203,6 +204,16 @@ typedef unsigned long long uint64_t; %ignore gdcm::binary_write(std::ostream &,uint32_t const &); %ignore gdcm::binary_write(std::ostream &,uint16_t const &); +%ignore gdcm::VRKey::operator=(const VRKey &_val); +%ignore gdcm::VRKey::operator=(const std::string &_val); +%ignore gdcm::VRKey::operator=(const char *_val); +%ignore gdcm::VRKey::operator[](const unsigned int &_id) const; +%ignore gdcm::VRKey::operator[](const unsigned int &_id); + +%ignore gdcm::TagKey::operator=(const TagKey &_val); +%ignore gdcm::TagKey::operator[](const unsigned int &_id) const; +%ignore gdcm::TagKey::operator[](const unsigned int &_id); + %ignore gdcm::DicomDir::SetStartMethod(DicomDir::Method *method,void *arg = NULL); %ignore gdcm::DicomDir::SetProgressMethod(DicomDir::Method *method,void *arg = NULL); %ignore gdcm::DicomDir::SetEndMethod(DicomDir::Method *method,void *arg = NULL); @@ -213,24 +224,27 @@ typedef unsigned long long uint64_t; %ignore GDCM_BINLOADED; %ignore GDCM_NOTLOADED; %ignore GDCM_UNREAD; +%ignore GDCM_NOTASCII; +%ignore GDCM_PIXELDATA; +%ignore GDCM_LEGACY; +%ignore GDCM_VRUNKNOWN; -%constant const char *UNKNOWN = "gdcm::Unknown"; -%constant const char *UNFOUND = "gdcm::Unfound"; -%constant const char *BINLOADED = "gdcm::Binary data loaded"; -%constant const char *NOTLOADED = "gdcm::NotLoaded"; -%constant const char *UNREAD = "gdcm::UnRead"; - -/* -%constant unsigned int LD_ALL = 0x00000000; -%constant unsigned int LD_NOSEQ = 0x00000001; -%constant unsigned int LD_NOSHADOW = 0x00000002; -%constant unsigned int LD_NOSHADOWSEQ = 0x00000004; -*/ +%constant const char *UNKNOWN = "gdcm::Unknown"; +%constant const char *UNFOUND = "gdcm::Unfound"; +%constant const char *BINLOADED = "gdcm::Binary data loaded"; +%constant const char *NOTLOADED = "gdcm::NotLoaded"; +%constant const char *UNREAD = "gdcm::UnRead"; +%constant const char *GDCM_NOTASCII = "gdcm::NotAscii"; +%constant const char *GDCM_PIXELDATA = "gdcm::Pixel Data to be loaded"; +%constant const char *VRUNKNOWN = " "; //////////////////////////////////////////////////////////////////////////// // Warning: Order matters ! %include "gdcmCommon.h" %include "gdcmBase.h" +%include "gdcmTagKey.h" +%include "gdcmVRKey.h" +%include "gdcmDicomEntry.h" %include "gdcmDictEntry.h" %include "gdcmDict.h" %include "gdcmDictSet.h" @@ -252,55 +266,8 @@ typedef unsigned long long uint64_t; %include "gdcmGlobal.h" %include "gdcmDicomDir.h" %include "gdcmDocEntry.h" -%include "gdcmContentEntry.h" -%include "gdcmValEntry.h" -%include "gdcmBinEntry.h" +%include "gdcmDataEntry.h" %include "gdcmSeqEntry.h" %include "gdcmVR.h" %include "gdcmTS.h" %include "gdcmDictGroupName.h" - -//////////////////////////////////////////////////////////////////////////// -// Notes on swig and this file gdcm.i: -// -///////////////////////////////////// -// Note 1: swig collision of method overloading and %typemap -// Consider the following junk.i file: -// %module junk -// %{ -// #include -// #include -// void Junk(std::string const & bozo) { std::cout << bozo << std::endl; } -// void Junk() { std::cout << "Renamed Junk()" << std::endl; } -// %} -// -// %typemap(python, in) std::string const & -// { -// $1 = new std::string( PyString_AsString( $input ) ); -// } -// void Junk(); -// void Junk(std::string const & bozo); -// -// that we compile on linux with: -// swig -c++ -python junk.i -// g++ -g -I/usr/include/python2.3/ -o junk_wrap.o -c junk_wrap.cxx -// g++ junk_wrap.o -shared -g -o _junk.so -L/usr/lib/python2.3/config \ -// -lpython2.3 -// and invoque with: -// python -c 'from junk import *; Junk("aaa") ' -// then we get the following unexpected (for novice) python TypeError: -// TypeError: No matching function for overloaded 'Junk' -// -// This happens because the swig generated code (at least for python) does -// the following two stage process: -// 1/ first do a dynamic dispatch ON THE NUMBER OF ARGUMENTS of the overloaded -// Junk function (the same happens with method of course). [Note that the -// dispatch is NOT done on the type of the arguments]. -// 2/ second apply the typemap. -// When the first dynamic dispatch is executed, the swig generated code -// has no knowledge of the typemap, and thus expects a pointer to a std::string -// type i.e. an argument to Junk of the form _p_std__int
. But this -// is not what python handles to Junk ! An invocation of the form 'Junk("aaa")' -// will make Python pass a PyString to swig (and this is precisely why we -// wrote the typemap). And this will fail.... -/////////////////////////////////////