]> Creatis software - gdcm.git/blob - Example/AnonymizeDicomDir.cxx
Typo
[gdcm.git] / Example / AnonymizeDicomDir.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: AnonymizeDicomDir.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/07/12 14:56:48 $
7   Version:   $Revision: 1.6 $
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 "gdcmGlobal.h"
19 #include "gdcmCommon.h"
20 #include "gdcmDebug.h"
21 #include "gdcmUtil.h"
22
23 #include "gdcmSQItem.h"
24 #include "gdcmSeqEntry.h"
25 #include "gdcmValEntry.h"
26
27 #include "gdcmDocument.h"
28 #include "gdcmFile.h"
29
30 #include "gdcmArgMgr.h"
31
32 #include <iostream>
33
34 /**
35  * \brief AnonymizeDicomDir
36  */
37
38 void AnoNoLoad(gdcm::SQItem *s, std::fstream *fp, 
39                uint16_t group, uint16_t elem, 
40                std::string val);
41
42 void AnoNoLoad(gdcm::SQItem *s, std::fstream *fp, 
43                uint16_t group, uint16_t elem, 
44                std::string val)
45 {
46    gdcm::DocEntry *d;
47    uint32_t offset;
48    uint32_t lgth;
49    uint32_t valLgth = 0;
50    std::string *spaces;
51    std::string v;
52
53    d = s->GetDocEntry( group, elem);
54
55    if ( d == NULL)
56       return;
57
58    if ( ! dynamic_cast<gdcm::ValEntry *>(d) )
59       return;
60
61    offset = d->GetOffset();
62    lgth =   d->GetLength();
63    if (valLgth < lgth)
64    {
65       spaces = new std::string( lgth-valLgth, ' ');
66       v = val + *spaces;
67       delete spaces;
68    }
69    fp->seekp( offset, std::ios::beg );
70    fp->write( v.c_str(), lgth );
71 }
72
73
74 int main(int argc, char *argv[])
75
76
77    START_USAGE(usage)
78    " \n AnonymizeDicomDir :\n",
79    " Anonymize a gdcm-readable DICOMDIR ",
80    "           even when some 'Objects' are not yet taken into account",
81    "           Warning : the DICOMDIR is overwritten",
82    " usage: AnonymizeDicomDir filein=dicomDirName [debug] ",
83    "        debug    : user wants to run the program in 'debug mode' ",
84    FINISH_USAGE
85
86    // ----- Initialize Arguments Manager ------   
87    gdcm::ArgMgr *am = new gdcm::ArgMgr(argc, argv);
88   
89    if (am->ArgMgrDefined("usage")) 
90    {
91       am->ArgMgrUsage(usage); // Display 'usage'
92       delete am;
93       return 0;
94    }
95  
96    char *fileName  = am->ArgMgrWantString("filein",usage); 
97
98    delete am;  // --- we don't need Argument Manager any longer ---
99
100
101    //   Read the input DICOMDIR
102    gdcm::File *f;
103    f = new gdcm::File( );
104    f->SetLoadMode(0);
105    f->SetFileName( fileName );
106    bool res = f->Load();  
107    if ( !res )
108    {
109        std::cerr << "Sorry, " << fileName <<"  not a gdcm-readable "
110                  << "file" <<std::endl;
111    }
112    std::cout << " ... is readable " << std::endl;
113
114    // Look for Directory record sequence
115    gdcm::DocEntry *e = f->GetDocEntry(0x0004, 0x1220);
116    if ( !e )
117    {
118       std::cout << "No Directory Record Sequence (0004,1220) found" <<std::endl;;
119       delete f;
120       return 0;
121    }
122    
123    gdcm::SeqEntry *s = dynamic_cast<gdcm::SeqEntry *>(e);
124    if ( !s )
125    {
126       std::cout << "Element (0004,1220) is not a Sequence ?!?" <<std::endl;
127       delete f;
128       return 0;
129    }
130
131    // Open the file LTTG (aka ALAP)
132    std::fstream *fp = new std::fstream(fileName, 
133                               std::ios::in | std::ios::out | std::ios::binary);
134    gdcm::DocEntry *d;
135    std::string v;
136
137    int patientNumber = 0;
138    std::ostringstream oss;
139
140    gdcm::SQItem *tmpSI=s->GetFirstSQItem();  // For all the SQItems
141    while(tmpSI)
142    {
143       d = tmpSI->GetDocEntry(0x0004, 0x1430); // Directory Record Type
144       if ( gdcm::ValEntry* valEntry = dynamic_cast<gdcm::ValEntry *>(d) )
145       {
146          v = valEntry->GetValue();
147       }
148       else
149       {
150          std::cout << "(0004,1430) not a ValEntry ?!?" << std::endl;
151          continue;
152       }
153
154       if( v != "PATIENT " )  // Work only on PATIENT
155       {
156          tmpSI=s->GetNextSQItem();
157          continue;
158       }
159
160       oss << patientNumber;      
161
162       //   Overwrite the sensitive Entries
163
164       // Patient's Name
165       AnoNoLoad(tmpSI, fp, 0x0010, 0x0010, oss.str());
166       // Patient's ID
167       AnoNoLoad(tmpSI, fp, 0x0010, 0x0020, oss.str());
168       // Patient's Birth Date
169       AnoNoLoad(tmpSI, fp, 0x0010, 0x0030, oss.str());
170      // Telephone
171       AnoNoLoad(tmpSI, fp, 0x0010, 0x2154, oss.str()); 
172
173       // Aware use will add here more Entries if he wants to rubb them out
174
175       oss << "";
176       patientNumber++;
177       tmpSI=s->GetNextSQItem();
178    }
179
180    // Close the file ASAP
181
182    fp->close();
183
184    delete f;
185    return 0;
186 }
187