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