]> Creatis software - gdcm.git/blob - Testing/TestCopyDicom.cxx
* Test/TestCopyDicom.cxx : the new dicom created is created empty, without
[gdcm.git] / Testing / TestCopyDicom.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: TestCopyDicom.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/12/02 15:14:16 $
7   Version:   $Revision: 1.24 $
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 "gdcmHeader.h"
19 #include "gdcmFile.h"
20 #include "gdcmDocument.h"
21 #include "gdcmValEntry.h"
22 #include "gdcmBinEntry.h"
23
24 //Generated file:
25 #include "gdcmDataImages.h"
26
27 #ifndef _WIN32
28 #include <unistd.h> //for access, unlink
29 #else
30 #include <io.h> //for _access on Win32
31 #endif
32
33 // return true if the file exists
34 bool FileExists(const char* filename)
35 {
36 #ifdef _MSC_VER
37 # define access _access
38 #endif
39 #ifndef R_OK
40 # define R_OK 04
41 #endif
42   if ( access(filename, R_OK) != 0 )
43     {
44     return false;
45     }
46   else
47     {
48     return true;
49     }
50 }
51
52 bool RemoveFile(const char* source)
53 {
54 #ifdef _MSC_VER
55 #define _unlink unlink
56 #endif
57   return unlink(source) != 0 ? false : true;
58 }
59
60 int CopyDicom(std::string const & filename, 
61               std::string const & output )
62 {
63       std::cout << "   Testing: " << filename << std::endl;
64       if( FileExists( output.c_str() ) )
65       {
66         // std::cerr << "Don't try to cheat, I am removing the file anyway" << std::endl;
67          if( !RemoveFile( output.c_str() ) )
68          {
69             std::cout << "Ouch, the file exist, but I cannot remove it" << std::endl;
70             return 1;
71          }
72       }
73
74       //////////////// Step 1:
75       std::cout << "      1...";
76       gdcm::Header *originalH = new gdcm::Header( filename );
77       gdcm::Header *copyH     = new gdcm::Header( );
78
79       //First of all copy the header field by field
80   
81       // Warning :Accessor gdcmElementSet::GetEntry() should not exist 
82       // It was commented out by Mathieu, that was a *good* idea
83       // (the user does NOT have to know the way we implemented the Header !)
84       // Waiting for a 'clean' solution, I keep the method ...JPRx
85
86
87       //////////////// Step 2:
88       std::cout << "2...";
89       originalH->Initialize();
90       gdcm::DocEntry* d=originalH->GetNextEntry();
91
92       while(d)
93       {
94          if ( gdcm::BinEntry* b = dynamic_cast<gdcm::BinEntry*>(d) )
95          {
96             copyH->ReplaceOrCreateByNumber( 
97                                  b->GetBinArea(),
98                                  b->GetLength(),
99                                  b->GetGroup(), 
100                                  b->GetElement(),
101                                  b->GetVR() );
102          }
103          else if ( gdcm::ValEntry* v = dynamic_cast<gdcm::ValEntry*>(d) )
104          {   
105              copyH->ReplaceOrCreateByNumber( 
106                                  v->GetValue(),
107                                  v->GetGroup(), 
108                                  v->GetElement(),
109                                  v->GetVR() ); 
110          }
111          else
112          {
113           // We skip pb of SQ recursive exploration
114           //std::cout << "Skipped Sequence " 
115           //          << "------------- " << d->GetVR() << " "<< std::hex
116           //          << d->GetGroup() << " " << d->GetElement()
117           //  << std::endl;    
118          }
119
120          d=originalH->GetNextEntry();
121       }
122
123       gdcm::File *original = new gdcm::File( originalH );
124       gdcm::File *copy     = new gdcm::File( copyH );
125
126       size_t dataSize = original->GetImageDataSize();
127       uint8_t* imageData = original->GetImageData();
128
129       // Useless to set the image datas, because it's already made when
130       // copying the corresponding BinEntry that contains the pixel datas
131       copy->SetImageData(imageData, dataSize);
132
133       //////////////// Step 3:
134       std::cout << "3...";
135       copy->SetWriteModeToRGB();
136       if( !copy->WriteDcmExplVR(output) )
137       {
138          std::cout << " Failed" << std::endl
139                    << "        " << output << " not written" << std::endl;
140
141          delete original;
142          delete copy;
143          delete originalH;
144          delete copyH;
145
146          return 1;
147       }
148
149       delete copy;
150       delete copyH;
151
152       //////////////// Step 4:
153       std::cout << "4...";
154       copy = new gdcm::File( output );
155
156       //Is the file written still gdcm parsable ?
157       if ( !copy->GetHeader()->IsReadable() )
158       { 
159          std::cout << " Failed" << std::endl
160                    << "        " << output << " not readable" << std::endl;
161
162          delete original;
163          delete originalH;
164
165          return 1;
166       }
167
168       //////////////// Step 5:
169       std::cout << "5...";
170       size_t    dataSizeWritten = copy->GetImageDataSize();
171       uint8_t* imageDataWritten = copy->GetImageData();
172
173       if (dataSize != dataSizeWritten)
174       {
175          std::cout << " Failed" << std::endl
176                    << "        Pixel areas lengths differ: "
177                    << dataSize << " # " << dataSizeWritten << std::endl;
178
179          delete original;
180          delete copy;
181          delete originalH;
182
183          return 1;
184       }
185
186       if (int res = memcmp(imageData, imageDataWritten, dataSize) !=0)
187       {
188          (void)res;
189          std::cout << " Failed" << std::endl
190                    << "        Pixel differ (as expanded in memory)." << std::endl;
191
192          delete original;
193          delete copy;
194          delete originalH;
195
196          return 1;
197       }
198       std::cout << "OK." << std::endl ;
199
200       delete original;
201       delete copy;
202       delete originalH;
203
204       return 0;
205 }
206
207 // Here we load a gdcmFile and then try to create from scratch a copy of it,
208 // copying field by field the dicom image
209
210 int TestCopyDicom(int argc, char* argv[])
211 {
212    if ( argc == 3 )
213    {
214       // The test is specified a specific filename, use it instead of looping
215       // over all images
216       const std::string input = argv[1];
217       const std::string reference = argv[2];
218       return CopyDicom( input, reference );
219    }
220    else if ( argc > 3 || argc == 2 )
221    {
222       std::cout << "   Usage: " << argv[0]
223                 << " (no arguments needed)." << std::endl;
224       std::cout << "or   Usage: " << argv[0]
225                 << " filename.dcm reference.dcm" << std::endl;
226       return 1;
227    }
228    // else other cases:
229
230    std::cout << "   Description (Test::TestCopyDicom): "
231              << std::endl;
232    std::cout << "   For all images in gdcmData (and not blacklisted in "
233                 "Test/CMakeLists.txt)"
234              << std::endl;
235    std::cout << "   apply the following to each filename.xxx: "
236              << std::endl;
237    std::cout << "   step 1: parse the image (as gdcmHeader) and call"
238              << " IsReadable(). After that, call GetImageData() and "
239              << "GetImageDataSize() "
240              << std::endl;
241    std::cout << "   step 2: create a copy of the readed file and the new"
242              << " pixel datas are set to the copy"
243              << std::endl;
244    std::cout << "   step 3: write the copy of the image"
245              << std::endl;
246    std::cout << "   step 4: read the copy and call IsReadable()"
247              << std::endl;
248    std::cout << "   step 5: compare (in memory with memcmp) that the two "
249              << "images " << std::endl
250              << "           match (as expanded by gdcm)." << std::endl;
251    std::cout << std::endl;
252
253    int i =0;
254    int retVal = 0;  //by default this is an error
255    while( gdcmDataImages[i] != 0 )
256    {
257       std::string filename = GDCM_DATA_ROOT;
258       filename += "/";  //doh!
259       filename += gdcmDataImages[i];
260
261       std::string output = "output.dcm";
262
263       if( CopyDicom( filename, output ) != 0 )
264       {
265          retVal++;
266       }
267
268       i++;
269    }
270    return retVal;
271 }
272