1 /*=========================================================================
4 Module: $RCSfile: gdcmSQItem.cxx,v $
6 Date: $Date: 2004/10/12 04:35:47 $
7 Version: $Revision: 1.29 $
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"
25 #include "gdcmDebug.h"
30 //-----------------------------------------------------------------------------
31 // Constructor / Destructor
34 * \brief Constructor from a given SQItem
36 SQItem::SQItem(int depthLevel )
39 SQDepthLevel = depthLevel;
43 * \brief Canonical destructor.
47 for(ListDocEntry::iterator cc = docEntries.begin();
48 cc != docEntries.end();
56 //-----------------------------------------------------------------------------
59 * \brief canonical Printer
61 void SQItem::Print(std::ostream& os)
67 for (int i = 0; i < SQDepthLevel; ++i)
72 std::cout << s.str() << " --- SQItem number " << SQItemNumber << std::endl;
73 for (ListDocEntry::iterator i = docEntries.begin();
74 i != docEntries.end();
78 bool PrintEndLine = true;
81 Entry->SetPrintLevel(2);
83 if ( SeqEntry* seqEntry = dynamic_cast<SeqEntry*>(Entry) )
85 (void)seqEntry; //not used
97 * \brief canonical Writer
99 void SQItem::Write(FILE* fp,FileType filetype)
101 uint16_t item[4] = { 0xfffe, 0xe000, 0xffff, 0xffff };
102 uint16_t itemt[4]= { 0xfffe, 0xe00d, 0xffff, 0xffff };
104 //we force the writting of an 'Item' Start Element
105 // because we want to write the Item as a 'no Length' item
106 fwrite(&item[0],8,1,fp); // fffe e000 ffff ffff
108 for (ListDocEntry::iterator i = docEntries.begin();
109 i != docEntries.end();
112 // we skip delimitors (start and end one) because
113 // we force them as 'no length'
114 if ( (*i)->GetGroup() == 0xfffe )
119 // Fix in order to make some MR PHILIPS images e-film readable
120 // see gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm:
121 // we just *always* ignore spurious fffe|0000 tag !
122 if ( (*i)->GetGroup() == 0xfffe && (*i)->GetElement() == 0x0000 )
124 break; // FIXME : continue; ?!?
127 (*i)->Write(fp, filetype);
130 //we force the writting of an 'Item Delimitation' item
131 // because we wrote the Item as a 'no Length' item
132 fwrite(&itemt[0],8,1,fp); // fffe e000 ffff ffff
136 //-----------------------------------------------------------------------------
139 * \brief adds any Entry (Dicom Element) to the Sequence Item
141 bool SQItem::AddEntry(DocEntry* entry)
143 docEntries.push_back(entry);
144 //TODO : check if it worked
149 * \brief Sets Entry (Dicom Element) value of an element,
150 * specified by it's tag (Group, Number)
151 * and the length, too ... inside a SQ Item
152 * If the Element is not found, it's just created !
153 * \warning we suppose, right now, the element belongs to a Public Group
155 * @param val string value to set
156 * @param group Group number of the searched tag.
157 * @param element Element number of the searched tag.
158 * @return true if element was found or created successfully
161 bool SQItem::SetEntryByNumber(std::string val, uint16_t group,
164 for(ListDocEntry::iterator i = docEntries.begin(); i != docEntries.end(); ++i)
166 if ( (*i)->GetGroup() == 0xfffe && (*i)->GetElement() == 0xe000 )
171 if ( ( group < (*i)->GetGroup() )
172 ||( group == (*i)->GetGroup() && element < (*i)->GetElement()) )
174 // instead of ReplaceOrCreateByNumber
175 // that is a method of Document :-(
177 TagKey key = DictEntry::TranslateToKey(group, element);
179 if ( ! PtagHT->count(key))
181 // we assume a Public Dictionnary *is* loaded
182 Dict *pubDict = Global::GetDicts()->GetDefaultPubDict();
183 // if the invoked (group,elem) doesn't exist inside the Dictionary
184 // we create a VirtualDictEntry
185 DictEntry *dictEntry = pubDict->GetDictEntryByNumber(group,
187 if (dictEntry == NULL)
190 Global::GetDicts()->NewVirtualDictEntry(group, element,
193 // we assume the constructor didn't fail
194 entry = new ValEntry(dictEntry);
197 /// better we don't assume too much !
198 /// SQItem is now used to describe any DICOMDIR related object
202 DocEntry* foundEntry = PtagHT->find(key)->second;
203 entry = dynamic_cast<ValEntry*>(foundEntry);
206 dbg.Verbose(0, "SQItem::SetEntryByNumber: docEntries"
207 " contains non ValEntry occurences");
212 entry->SetValue(val);
214 entry->SetLength(val.length());
215 docEntries.insert(i,entry);
219 if (group == (*i)->GetGroup() && element == (*i)->GetElement() )
221 if ( ValEntry* entry = dynamic_cast<ValEntry*>(*i) )
223 entry->SetValue(val);
225 (*i)->SetLength(val.length());
231 //-----------------------------------------------------------------------------
236 * \brief Gets a Dicom Element inside a SQ Item Entry, by number
239 DocEntry* SQItem::GetDocEntryByNumber(uint16_t group, uint16_t element)
241 for(ListDocEntry::iterator i = docEntries.begin();
242 i != docEntries.end(); ++i)
244 if ( (*i)->GetGroup() == group && (*i)->GetElement() == element )
253 * \brief Get the value of a Dicom Element inside a SQ Item Entry, by number
257 std::string SQItem::GetEntryByNumber(uint16_t group, uint16_t element)
259 for(ListDocEntry::iterator i = docEntries.begin();
260 i != docEntries.end(); ++i)
262 if ( (*i)->GetGroup() == group && (*i)->GetElement() == element)
264 return ((ValEntry *)(*i))->GetValue(); //FIXME
269 //-----------------------------------------------------------------------------
273 //-----------------------------------------------------------------------------
275 } // end namespace gdcm