1 /*=========================================================================
4 Module: $RCSfile: gdcmSQItem.cxx,v $
6 Date: $Date: 2005/09/06 17:15:25 $
7 Version: $Revision: 1.75 $
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.
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.
17 =========================================================================*/
19 #include "gdcmSQItem.h"
20 #include "gdcmSeqEntry.h"
21 #include "gdcmValEntry.h"
22 #include "gdcmBinEntry.h"
23 #include "gdcmGlobal.h"
24 #include "gdcmDictSet.h"
26 #include "gdcmDebug.h"
32 //-----------------------------------------------------------------------------
33 // Constructor / Destructor
35 * \brief Constructor from a given SQItem
37 SQItem::SQItem(int depthLevel )
40 SQDepthLevel = depthLevel;
45 * \brief Canonical destructor.
52 //-----------------------------------------------------------------------------
55 * \brief canonical Writer
56 * @param fp file pointer to an already open file.
57 * @param filetype type of the file (ACR, ImplicitVR, ExplicitVR, ...)
59 void SQItem::WriteContent(std::ofstream *fp, FileType filetype)
62 uint16_t item[4] = { 0xfffe, 0xe000, 0xffff, 0xffff };
63 uint16_t itemt[4]= { 0xfffe, 0xe00d, 0xffff, 0xffff };
65 //we force the writting of an 'Item' Start Element
66 // because we want to write the Item as a 'no Length' item
69 binary_write( *fp, item[j]); // fffe e000 ffff ffff
72 for (ListDocEntry::iterator it = DocEntries.begin();
73 it != DocEntries.end();
76 // we skip delimitors (start and end one) because
77 // we force them as 'no length'
78 if ( (*it)->GetGroup() == 0xfffe )
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 )
88 break; // FIXME : break or continue; ?!?
89 // --> makes no difference since the only bugged file we have
90 // contains 'impossible tag' fffe|0000 in last position !
93 (*it)->WriteContent(fp, filetype);
96 //we force the writting of an 'Item Delimitation' item
97 // because we wrote the Item as a 'no Length' item
100 binary_write( *fp, itemt[j]); // fffe e000 ffff ffff
105 * \brief Inserts *in the right place* any Entry (Dicom Element)
106 * into the Sequence Item
107 * @param entry Entry to add
108 * @return always true
110 bool SQItem::AddEntry(DocEntry *entry)
112 if (DocEntries.empty() )
114 DocEntries.push_back(entry);
118 ListDocEntry::iterator insertSpot;
119 ListDocEntry::iterator it = DocEntries.end();
124 if ( (*it)->IsItemDelimitor() )
128 if ( (*it)->GetGroup() < entry->GetGroup() )
131 if ( (*it)->GetGroup() == entry->GetGroup() &&
132 (*it)->GetElement() < entry->GetElement() )
134 } while (it != DocEntries.begin() );
138 DocEntries.insert(insertSpot, entry);
143 * \brief Clear the std::list from given entry AND delete the entry.
144 * @param entryToRemove Entry to remove AND delete.
145 * @return true if the entry was found and removed; false otherwise
147 bool SQItem::RemoveEntry( DocEntry *entryToRemove )
149 for(ListDocEntry::iterator it = DocEntries.begin();
150 it != DocEntries.end();
153 if ( *it == entryToRemove )
155 DocEntries.erase(it);
156 gdcmWarningMacro( "One element erased: " << entryToRemove->GetKey() );
157 delete entryToRemove;
161 gdcmWarningMacro( "Entry not found: " << entryToRemove->GetKey() );
166 * \brief Clear the std::list from given entry BUT keep the entry.
167 * @param entryToRemove Entry to remove.
168 * @return true if the entry was found and removed; false otherwise
170 bool SQItem::RemoveEntryNoDestroy(DocEntry *entryToRemove)
172 for(ListDocEntry::iterator it = DocEntries.begin();
173 it != DocEntries.end();
176 if ( *it == entryToRemove )
178 DocEntries.erase(it);
179 gdcmWarningMacro( "One element removed, no destroyed: "
180 << entryToRemove->GetKey() );
185 gdcmWarningMacro( "Entry not found:" << entryToRemove->GetKey() );
190 * \brief Remove all entry in the Sequence Item
192 void SQItem::ClearEntry()
194 for(ListDocEntry::iterator cc = DocEntries.begin();
195 cc != DocEntries.end();
204 * \brief Clear the std::list from given Sequence Item BUT keep the entries
206 void SQItem::ClearEntryNoDestroy()
213 * \brief Move all the entries from a given Sequence Item
215 void SQItem::MoveObject(SQItem *source)
217 DocEntries = source->DocEntries;
218 source->ClearEntryNoDestroy();
222 * \brief Get the first Dicom entry while visiting the SQItem
223 * \return The first DocEntry if found, otherwhise 0
225 DocEntry *SQItem::GetFirstEntry()
227 ItDocEntries = DocEntries.begin();
228 if ( ItDocEntries != DocEntries.end() )
229 return *ItDocEntries;
234 * \brief Get the next Dicom entry while visiting the SQItem
235 * \return The next DocEntry if found, otherwhise NULL
237 DocEntry *SQItem::GetNextEntry()
240 if ( ItDocEntries != DocEntries.end() )
241 return *ItDocEntries;
246 * \brief Gets a Dicom Element inside a SQ Item Entry
247 * @param group Group number of the Entry
248 * @param elem Element number of the Entry
249 * @return Entry whose (group,elem) was passed. 0 if not found
251 DocEntry *SQItem::GetDocEntry(uint16_t group, uint16_t elem)
253 for(ListDocEntry::iterator i = DocEntries.begin();
254 i != DocEntries.end();
257 if ( (*i)->GetGroup() == group && (*i)->GetElement() == elem )
263 //-----------------------------------------------------------------------------
266 //-----------------------------------------------------------------------------
269 //-----------------------------------------------------------------------------
272 * \brief canonical Printer
273 * @param os Stream to print to.
274 * @param indent Indentation string to be prepended during printing.
276 void SQItem::Print(std::ostream &os, std::string const &)
278 std::ostringstream s;
280 if (SQDepthLevel > 0)
282 for (int i = 0; i < SQDepthLevel; ++i)
287 os << s.str() << " --- SQItem number " << SQItemNumber << std::endl;
288 for (ListDocEntry::iterator i = DocEntries.begin();
289 i != DocEntries.end();
292 DocEntry *Entry = *i;
293 bool PrintEndLine = true;
296 Entry->SetPrintLevel(PrintLevel);
298 if ( dynamic_cast<SeqEntry*>(Entry) )
300 PrintEndLine = false;
309 //-----------------------------------------------------------------------------
310 } // end namespace gdcm