]> Creatis software - gdcm.git/blob - src/gdcmSQItem.cxx
Cosmetics
[gdcm.git] / src / gdcmSQItem.cxx
1 /*=========================================================================
2   
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSQItem.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/31 12:19:34 $
7   Version:   $Revision: 1.63 $
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
19 #include "gdcmSQItem.h"
20 #include "gdcmSeqEntry.h"
21 #include "gdcmValEntry.h"
22 #include "gdcmBinEntry.h"
23 #include "gdcmGlobal.h"
24 #include "gdcmDictSet.h"
25 #include "gdcmUtil.h"
26 #include "gdcmDebug.h"
27
28 #include <fstream>
29
30 namespace gdcm 
31 {
32 //-----------------------------------------------------------------------------
33 // Constructor / Destructor
34 /**
35  * \brief   Constructor from a given SQItem
36  */
37 SQItem::SQItem(int depthLevel ) 
38           : DocEntrySet( )
39 {
40    SQDepthLevel = depthLevel;
41    SQItemNumber = 0;
42 }
43
44 /**
45  * \brief   Canonical destructor.
46  */
47 SQItem::~SQItem() 
48 {
49    ClearEntry();
50 }
51
52 //-----------------------------------------------------------------------------
53 // Print
54 /*
55  * \brief   canonical Printer
56  * @param os     Stream to print to. 
57  * @param indent Indentation string to be prepended during printing.
58  */
59 void SQItem::Print(std::ostream &os, std::string const &)
60 {
61    std::ostringstream s;
62
63    if (SQDepthLevel > 0)
64    {
65       for (int i = 0; i < SQDepthLevel; ++i)
66       {
67          s << "   | " ;
68       }
69    }
70    os << s.str() << " --- SQItem number " << SQItemNumber  << std::endl;
71    for (ListDocEntry::iterator i  = DocEntries.begin();
72                                i != DocEntries.end();
73                              ++i)
74    {
75       DocEntry *Entry = *i;
76       bool PrintEndLine = true;
77
78       os << s.str();
79       Entry->SetPrintLevel(PrintLevel);
80       Entry->Print(os); 
81       if ( dynamic_cast<SeqEntry*>(Entry) )
82       {
83          PrintEndLine = false;
84       }
85       if (PrintEndLine)
86       {
87          os << std::endl;
88       }
89    } 
90 }
91
92 /*
93  * \brief   canonical Writer
94  * @param fp     file pointer to an already open file. 
95  * @param filetype type of the file (ACR, ImplicitVR, ExplicitVR, ...)
96  */
97 void SQItem::WriteContent(std::ofstream *fp, FileType filetype)
98 {
99    int j;
100    uint16_t item[4] = { 0xfffe, 0xe000, 0xffff, 0xffff };
101    uint16_t itemt[4]= { 0xfffe, 0xe00d, 0xffff, 0xffff };
102
103     //we force the writting of an 'Item' Start Element
104     // because we want to write the Item as a 'no Length' item
105    for(j=0;j<4;++j)
106    {
107       binary_write( *fp, item[j]);  // fffe e000 ffff ffff 
108    }
109      
110    for (ListDocEntry::iterator it = DocEntries.begin();  
111                               it != DocEntries.end();
112                              ++it)
113    {   
114       // we skip delimitors (start and end one) because 
115       // we force them as 'no length'
116       if ( (*it)->GetGroup() == 0xfffe )
117       {
118          continue;
119       }
120
121       // Fix in order to make some MR PHILIPS images e-film readable
122       // see gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm:
123       // we just *always* ignore spurious fffe|0000 tag ! 
124       if ( (*it)->GetGroup() == 0xfffe && (*it)->GetElement() == 0x0000 )
125       {
126          break; // FIXME : continue; ?!?
127       }
128
129       (*it)->WriteContent(fp, filetype);
130    }
131       
132     //we force the writting of an 'Item Delimitation' item
133     // because we wrote the Item as a 'no Length' item
134    for(j=0;j<4;++j)
135    {
136       binary_write( *fp, itemt[j]);  // fffe e000 ffff ffff 
137    }
138  
139 }
140
141 //-----------------------------------------------------------------------------
142 // Public
143 /**
144  * \brief  Remove all entry in the Sequence Item 
145  */
146 void SQItem::ClearEntry()
147 {
148    for(ListDocEntry::iterator cc = DocEntries.begin();
149                              cc != DocEntries.end();
150                              ++cc)
151    {
152       delete *cc;
153    }
154    DocEntries.clear();
155 }
156
157 /**
158  * \brief   Adds any Entry (Dicom Element) to the Sequence Item
159  * @param entry Entry to add
160  */
161 bool SQItem::AddEntry(DocEntry *entry)
162 {
163    DocEntries.push_back(entry);
164    return true;
165 }   
166
167 /**
168  * \brief   Clear the std::list from given entry AND delete the entry.
169  * @param   entryToRemove Entry to remove AND delete.
170  * @return true if the entry was found and removed; false otherwise
171  */
172 bool SQItem::RemoveEntry( DocEntry *entryToRemove)
173 {
174    for(ListDocEntry::iterator it = DocEntries.begin();
175        it != DocEntries.end();
176        ++it)
177    {
178       if( *it == entryToRemove)
179       {
180          DocEntries.erase(it);
181          gdcmVerboseMacro( "One element erased: " << entryToRemove->GetKey() );
182          delete entryToRemove;
183          return true;
184       }
185    }
186    gdcmVerboseMacro( "Entry not found: " << entryToRemove->GetKey() );
187    return false ;
188 }
189
190 /**
191  * \brief   Clear the std::list from given entry BUT keep the entry.
192  * @param   entryToRemove Entry to remove.
193  * @return true if the entry was found and removed; false otherwise
194  */
195 bool SQItem::RemoveEntryNoDestroy(DocEntry *entryToRemove)
196 {
197    for(ListDocEntry::iterator it = DocEntries.begin();
198        it != DocEntries.end();
199        ++it)
200    {
201       if( *it == entryToRemove)
202       {
203          DocEntries.erase(it);
204          gdcmVerboseMacro( "One element erased, no destroyed: "
205                             << entryToRemove->GetKey() );
206          return true;
207       }
208    }
209                                                                                 
210    gdcmVerboseMacro( "Entry not found:" << entryToRemove->GetKey() );
211    return false ;
212 }
213                                                                                 
214 /**
215  * \brief   Get the first Dicom entry while visiting the SQItem
216  * \return  The first DocEntry if found, otherwhise 0
217  */
218 DocEntry *SQItem::GetFirstEntry()
219 {
220    ItDocEntries = DocEntries.begin();
221    if (ItDocEntries != DocEntries.end())
222       return *ItDocEntries;
223    return 0;   
224 }
225                                                                                 
226 /**
227  * \brief   Get the next Dicom entry while visiting the chained list
228  * \return  The next DocEntry if found, otherwhise NULL
229  */
230 DocEntry *SQItem::GetNextEntry()
231 {
232    ++ItDocEntries;
233    if (ItDocEntries != DocEntries.end())
234       return  *ItDocEntries;
235    return NULL;
236 }
237
238 /**
239  * \brief   Gets a Dicom Element inside a SQ Item Entry
240  * @param   group   Group number of the Entry
241  * @param   elem  Element number of the Entry
242  * @return Entry whose (group,elem) was passed. 0 if not found
243  */
244 DocEntry *SQItem::GetDocEntry(uint16_t group, uint16_t elem)
245 {
246    for(ListDocEntry::iterator i = DocEntries.begin();
247                               i != DocEntries.end(); ++i)
248    {
249       if ( (*i)->GetGroup() == group && (*i)->GetElement() == elem )
250          return *i;
251    }
252    return NULL;
253 }
254
255 //-----------------------------------------------------------------------------
256 // Protected
257
258 //-----------------------------------------------------------------------------
259 // Private
260
261
262 //-----------------------------------------------------------------------------
263
264 } // end namespace gdcm