]> Creatis software - gdcm.git/blob - Testing/TestReadWriteReadCompare.cxx
Typo
[gdcm.git] / Testing / TestReadWriteReadCompare.cxx
1 /*=========================================================================
2
3   Program:   gdcm
4   Module:    $RCSfile: TestReadWriteReadCompare.cxx,v $
5   Language:  C++
6   Date:      $Date: 2007/07/25 16:14:33 $
7   Version:   $Revision: 1.31 $
8
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16
17 =========================================================================*/
18 #include "gdcmFile.h"
19 #include "gdcmFileHelper.h"
20 #include "gdcmDebug.h"
21
22 //Generated file:
23 #include "gdcmDataImages.h"
24
25 int CompareInternal(std::string const &filename, std::string const &output)
26 {
27    std::cout << "   Testing: " << filename << std::endl;
28
29    //////////////// Step 1 (see above description):
30
31    GDCM_NAME_SPACE::File *file = GDCM_NAME_SPACE::File::New( );
32    file->SetFileName( filename );
33    file->Load ();
34    if( !file->IsReadable() )
35    {
36       std::cout << "Failed" << std::endl
37                 << "Test::TestReadWriteReadCompare: Image not gdcm compatible:"
38                 << filename << std::endl;
39       file->Delete();
40       return 1;
41    }
42    std::cout << "           step 1...";
43
44    //////////////// Step 2:
45    GDCM_NAME_SPACE::FileHelper *filehelper = GDCM_NAME_SPACE::FileHelper::New( file );
46    int dataSize    = filehelper->GetImageDataSize();
47    uint8_t *imageData = filehelper->GetImageData(); //EXTREMELY IMPORTANT
48           // Sure, it is : It's up to the user to decide if he wants to
49           // GetImageData or if he wants to GetImageDataRaw
50           // (even if we do it by setting a flag, he will have to decide)
51
52    //filehelper->SetImageData(imageData, dataSize);
53
54    filehelper->SetWriteModeToRGB();
55    filehelper->WriteDcmExplVR( output );
56    std::cout << "2...";
57
58    //////////////// Step 3:
59    GDCM_NAME_SPACE::File *fileout = GDCM_NAME_SPACE::File::New();
60    fileout->SetFileName( output );
61    fileout->Load();
62   // gdcm::FileHelper *reread = new gdcm::FileHelper( output ); // deprecated
63
64    if( !fileout->IsReadable() )
65    {
66       std::cout << "Failed" << std::endl
67                 << "Test::TestReadWriteReadCompare: Could not parse the newly "
68                 << "written image:" << filename << std::endl;
69       file->Delete();
70       filehelper->Delete();
71       fileout->Delete();
72       return 1;
73    }
74
75    GDCM_NAME_SPACE::FileHelper *reread = GDCM_NAME_SPACE::FileHelper::New( fileout );
76
77    std::cout << "3...";
78    // For the next step:
79    int    dataSizeWritten = reread->GetImageDataSize();
80    uint8_t *imageDataWritten = reread->GetImageData();
81
82    //////////////// Step 4:
83    // Test the image size
84    if (file->GetXSize() != reread->GetFile()->GetXSize() ||
85        file->GetYSize() != reread->GetFile()->GetYSize() ||
86        file->GetZSize() != reread->GetFile()->GetZSize())
87    {
88       std::cout << "Failed" << std::endl
89          << "        X Size differs: "
90          << "X: " << file->GetXSize() << " # "
91                   << reread->GetFile()->GetXSize() << " | "
92          << "Y: " << file->GetYSize() << " # "
93                   << reread->GetFile()->GetYSize() << " | "
94          << "Z: " << file->GetZSize() << " # "
95                   << reread->GetFile()->GetZSize() << std::endl;
96       file->Delete();
97       filehelper->Delete();
98       fileout->Delete();
99       reread->Delete();
100       return 1;
101    }
102
103    // Test the data size
104    // beware of odd length Pixel Element!
105    int dataSizeFixed = dataSize + dataSize%2;
106    int dataSizeWrittenFixed = dataSizeWritten + dataSizeWritten%2;
107
108    if (dataSizeFixed != dataSizeWrittenFixed)
109    {
110       std::cout << "Failed" << std::endl
111          << "        Pixel areas lengths differ: "
112          << dataSize << " # " << dataSizeWritten << std::endl;
113       file->Delete();
114       filehelper->Delete();
115       fileout->Delete();
116       reread->Delete();
117       return 1;
118    }
119
120    // Test the data's content
121    if (memcmp(imageData, imageDataWritten, dataSize) !=0)
122    {
123       std::cout << "Failed" << std::endl
124          << "        Pixel differ (as expanded in memory)." << std::endl;
125       file->Delete();
126       filehelper->Delete();
127       fileout->Delete();
128       reread->Delete();
129       return 1;
130    }
131    std::cout << "4...OK." << std::endl ;
132
133    //////////////// Clean up:
134    file->Delete();
135    filehelper->Delete();
136    fileout->Delete();
137    reread->Delete();
138
139    return 0;
140 }
141
142 int TestReadWriteReadCompare(int argc, char *argv[]) 
143 {
144    int result = 0;
145
146    if (argc == 4)
147       GDCM_NAME_SPACE::Debug::DebugOn();
148
149    if (argc >= 3)
150    {
151       const std::string input  = argv[1];
152       const std::string output = argv[2];
153       result += CompareInternal(input, output);
154    }
155    else if( argc > 4 || argc == 2 )
156    {
157       std::cout << "Please read the manual" << std::endl;
158    }
159    else
160    {
161       std::cout<< "Test::TestReadWriteReadCompare: description " << std::endl;
162       std::cout << "   For all images in gdcmData (and not blacklisted in "
163                    "Test/CMakeLists.txt)" << std::endl;
164       std::cout << "   apply the following multistep test: " << std::endl;
165       std::cout << "   step 1: parse the image (as gdcmFile) and call"
166                 << " IsReadable(). " << std::endl;
167       std::cout << "   step 2: write the corresponding image in DICOM V3 "
168                 << "with explicit" << std::endl
169                 << "           Value Representation in temporary file "
170                 << "TestReadWriteReadCompare.dcm." << std::endl;
171       std::cout << "   step 3: read the image written on step2 and call "
172                 << " IsReadable(). " << std::endl;
173       std::cout << "   step 4: compare (in memory with memcmp) that the two "
174                 << "images " << std::endl
175                 << "           match (as expanded by gdcm)." << std::endl;
176    
177       int i = 0;
178       while( gdcmDataImages[i] != 0 )
179       {
180          std::string filename = GDCM_DATA_ROOT;
181          filename += "/";
182          filename += gdcmDataImages[i++];
183          result += CompareInternal(filename, "TestReadWriteReadCompare.dcm"); 
184       }
185    }
186    return result;
187 }