X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FMakeDicomDir.cxx;h=2fc7051e17dea5693e1f34db09c39649bce0e4df;hb=81b83abc1f19db44870ea35907c5f6a102ba5c64;hp=86f7ec752127633f5b62972a5bdf55edd36e1b00;hpb=1d44a799e7860861ce969254d6403a0066ffd753;p=gdcm.git diff --git a/Example/MakeDicomDir.cxx b/Example/MakeDicomDir.cxx index 86f7ec75..2fc7051e 100644 --- a/Example/MakeDicomDir.cxx +++ b/Example/MakeDicomDir.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: MakeDicomDir.cxx,v $ Language: C++ - Date: $Date: 2005/11/28 17:09:22 $ - Version: $Revision: 1.17 $ + Date: $Date: 2006/01/26 15:52:42 $ + Version: $Revision: 1.20 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -29,7 +29,7 @@ * orders the gdcm-readable found Files * according their Patient/Study/Serie/Image characteristics * makes the gdcmDicomDir - * and writes a file named NewDICOMDIR.. + * and writes a file named DICOMDIR. (user may choose an other name) */ int main(int argc, char *argv[]) @@ -40,12 +40,15 @@ int main(int argc, char *argv[]) " and writes it as 'NewDICOMDIR' ", " ", " usage: MakeDicomDir dirname=rootDirectoryName ", - " [noshadowseq][noshadow][noseq] [debug] ", + " name=DICOMDIR file name ", + " [noshadowseq][noshadow][noseq] [debug] [check] ", " ", + " name : the default name for the generated dicomdir is 'DICOMDIR' ", " noshadowseq: user doesn't want to load Private Sequences ", " noshadow : user doesn't want to load Private groups (odd number) ", " noseq : user doesn't want to load Sequences ", " debug : user wants to run the program in 'debug mode' ", + " check : the dicomdir is checked as 'gdcm readable' ", FINISH_USAGE // ----- Initialize Arguments Manager ------ @@ -58,12 +61,15 @@ int main(int argc, char *argv[]) return 0; } - char *dirName; - dirName = am->ArgMgrGetString("dirName",(char *)"."); + const char *dirName; + dirName = am->ArgMgrGetString("dirName","."); + const char *name; + name = am->ArgMgrGetString("name","DICOMDIR"); + int loadMode = gdcm::LD_ALL; if ( am->ArgMgrDefined("noshadowseq") ) - loadMode |= gdcm::LD_NOSHADOWSEQ; + loadMode |= gdcm::LD_NOSHADOWSEQ; else { if ( am->ArgMgrDefined("noshadow") ) @@ -74,7 +80,9 @@ int main(int argc, char *argv[]) if (am->ArgMgrDefined("debug")) gdcm::Debug::DebugOn(); - + + int check = am->ArgMgrDefined("check"); + // if unused Param we give up if ( am->ArgMgrPrintUnusedLabels() ) { @@ -82,7 +90,7 @@ int main(int argc, char *argv[]) delete am; return 0; } - + delete am; // we don't need Argument Manager any longer // ----- Begin Processing ----- @@ -98,6 +106,9 @@ int main(int argc, char *argv[]) //dcmdir->SetParseDir(true); dcmdir->Load(); + if ( gdcm::Debug::GetDebugFlag() ) + std::cout << "======================= End Parsing Directory" << std::endl; + // ----- Check the result if ( !dcmdir->GetFirstPatient() ) @@ -110,35 +121,44 @@ int main(int argc, char *argv[]) // ----- Create the corresponding DicomDir - dcmdir->Write("NewDICOMDIR"); + dcmdir->Write(name); dcmdir->Delete(); - - // Read from disc the just written DicomDir - gdcm::DicomDir *newDicomDir = gdcm::DicomDir::New(); - newDicomDir->SetFileName( "NewDICOMDIR" ); - newDicomDir->Load(); - if( !newDicomDir->IsReadable() ) - { - std::cout<<" Written DicomDir 'NewDICOMDIR'" - <<" is not readable"<Delete(); - return 1; - } - - if( !newDicomDir->GetFirstPatient() ) + + if (check) { - std::cout<<" Written DicomDir 'NewDICOMDIR'" - <<" has no patient"<Delete(); - return(1); + // Read from disc the just written DicomDir + + gdcm::DicomDir *newDicomDir = gdcm::DicomDir::New(); + newDicomDir->SetFileName( name ); + newDicomDir->Load(); + if ( gdcm::Debug::GetDebugFlag() ) + std::cout << "======================= End Parsing DICOMDIR" + << std::endl; + if( !newDicomDir->IsReadable() ) + { + std::cout<<" Written DicomDir [" << name << "] " + <<" is not readable"<Delete(); + return 1; + } + + if( !newDicomDir->GetFirstPatient() ) + { + std::cout <<" Written DicomDir [" << name << "] " + <<" has no patient"<Delete(); + return(1); + } + std::cout<Delete(); } - - std::cout<Delete(); return 0; }