]> Creatis software - gdcm.git/blob - src/gdcmSQItem.cxx
* Add the Copy method in all datas
[gdcm.git] / src / gdcmSQItem.cxx
1 /*=========================================================================
2   
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSQItem.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/11/29 12:48:47 $
7   Version:   $Revision: 1.81 $
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 "gdcmGlobal.h"
22 #include "gdcmDictSet.h"
23 #include "gdcmUtil.h"
24 #include "gdcmDebug.h"
25
26 #include <fstream>
27
28 namespace gdcm 
29 {
30 //-----------------------------------------------------------------------------
31 // Constructor / Destructor
32 /**
33  * \brief   Constructor from a given SQItem
34  */
35 SQItem::SQItem(int depthLevel ) 
36           : DocEntrySet( )
37 {
38    SQDepthLevel = depthLevel;
39    SQItemNumber = 0;
40 }
41
42 /**
43  * \brief   Canonical destructor.
44  */
45 SQItem::~SQItem() 
46 {
47    ClearEntry();
48 }
49
50 //-----------------------------------------------------------------------------
51 // Public
52 /*
53  * \brief   canonical Writer
54  * @param fp     file pointer to an already open file. 
55  * @param filetype type of the file (ACR, ImplicitVR, ExplicitVR, ...)
56  */
57 void SQItem::WriteContent(std::ofstream *fp, FileType filetype)
58 {
59    int j;
60    uint16_t item[4] = { 0xfffe, 0xe000, 0xffff, 0xffff };
61    uint16_t itemt[4]= { 0xfffe, 0xe00d, 0xffff, 0xffff };
62
63     //we force the writting of an 'Item' Start Element
64     // because we want to write the Item as a 'No Length' item
65    for(j=0;j<4;++j)
66    {
67       binary_write( *fp, item[j]);  // fffe e000 ffff ffff 
68    }
69      
70    for (ListDocEntry::iterator it = DocEntries.begin();  
71                                it != DocEntries.end();
72                              ++it)
73    {   
74       // we skip delimitors (start and end one) because 
75       // we force them as 'no length'
76       if ( (*it)->GetGroup() == 0xfffe )
77       {
78          continue;
79       }
80
81       // Fix in order to make some MR PHILIPS images e-film readable
82       // see gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm:
83       // we just *always* ignore spurious fffe|0000 tag ! 
84       if ( (*it)->GetGroup() == 0xfffe && (*it)->GetElement() == 0x0000 )
85       {
86           break; // FIXME : break or continue; ?!?  
87                  // --> makes no difference since the only bugged file we have
88                  // contains 'impossible tag' fffe|0000 in last position !                            
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   Compute the full length of the SQItem (not only value length)
104  *           depending on the VR.
105  */
106 uint32_t SQItem::ComputeFullLength()
107 {
108    uint32_t l = 8;  // Item Starter length
109    for (ListDocEntry::iterator it = DocEntries.begin();  
110                                it != DocEntries.end();
111                              ++it)
112    {   
113       // we skip delimitors (start and end one) because 
114       // we force them as 'no length'
115       if ( (*it)->GetGroup() == 0xfffe )
116       {
117          continue;
118       }
119       l += (*it)->ComputeFullLength();
120    }
121    l += 8; // 'Item Delimitation' item 
122    return l;  
123 }
124
125 /**
126  * \brief   Inserts *in the right place* any Entry (Dicom Element)
127  *          into the Sequence Item
128  * @param entry Entry to add
129  * @return always true 
130  */
131 bool SQItem::AddEntry(DocEntry *entry)
132 {   
133    if (DocEntries.empty() )
134    {
135       DocEntries.push_back(entry);
136       entry->Register();
137       return true;
138    }
139  
140    ListDocEntry::iterator insertSpot;
141    ListDocEntry::iterator it = DocEntries.end();
142    do
143    {
144       it--;
145
146       if ( (*it)->IsItemDelimitor() )
147       {
148          continue;
149       }
150       if ( (*it)->GetGroup() < entry->GetGroup() )
151          break;
152       else
153          if ( (*it)->GetGroup() == entry->GetGroup() &&
154               (*it)->GetElement() < entry->GetElement() )
155             break;
156    } while (it != DocEntries.begin() );
157   
158    ++it;
159    insertSpot = it;
160    //++insertSpot; // ?!?
161    DocEntries.insert(insertSpot, entry); 
162    entry->Register();
163    return true;
164 }   
165
166 /**
167  * \brief   Clear the std::list from given entry AND delete the entry.
168  * @param   entryToRemove Entry to remove AND delete.
169  * @return true if the entry was found and removed; false otherwise
170  */
171 bool SQItem::RemoveEntry( DocEntry *entryToRemove )
172 {
173    for(ListDocEntry::iterator it = DocEntries.begin();
174                               it != DocEntries.end();
175                             ++it)
176    {
177       if ( *it == entryToRemove )
178       {
179          DocEntries.erase(it);
180          gdcmDebugMacro( "One element erased: " << entryToRemove->GetKey() );
181          entryToRemove->Unregister();
182          return true;
183       }
184    }
185    gdcmWarningMacro( "Entry not found: " << entryToRemove->GetKey() );
186    return false ;
187 }
188
189 /**
190  * \brief  Remove all entry in the Sequence Item 
191  */
192 void SQItem::ClearEntry()
193 {
194    for(ListDocEntry::iterator cc = DocEntries.begin();
195                               cc != DocEntries.end();
196                             ++cc)
197    {
198       (*cc)->Unregister();
199    }
200    DocEntries.clear();
201 }
202
203 /**
204  * \brief   Get the first Dicom entry while visiting the SQItem
205  * \return  The first DocEntry if found, otherwhise 0
206  */
207 DocEntry *SQItem::GetFirstEntry()
208 {
209    ItDocEntries = DocEntries.begin();
210    if ( ItDocEntries != DocEntries.end() )
211       return *ItDocEntries;
212    return 0;   
213 }
214                                                                                 
215 /**
216  * \brief   Get the next Dicom entry while visiting the SQItem
217  * \return  The next DocEntry if found, otherwhise NULL
218  */
219 DocEntry *SQItem::GetNextEntry()
220 {
221    ++ItDocEntries;
222    if ( ItDocEntries != DocEntries.end() )
223       return  *ItDocEntries;
224    return NULL;
225 }
226
227 /**
228  * \brief   Gets a Dicom Element inside a SQ Item Entry
229  * @param   group   Group number of the Entry
230  * @param   elem  Element number of the Entry
231  * @return Entry whose (group,elem) was passed. 0 if not found
232  */
233 DocEntry *SQItem::GetDocEntry(uint16_t group, uint16_t elem)
234 {
235    for(ListDocEntry::iterator i =  DocEntries.begin();
236                               i != DocEntries.end(); 
237                             ++i)
238    {
239       if ( (*i)->GetGroup() == group && (*i)->GetElement() == elem )
240          return *i;
241    }
242    return NULL;
243 }
244
245 /**
246  * \brief Copies all the attributes from an other DocEntrySet 
247  * @param set entry to copy from
248  * @remarks The contained DocEntries a not copied, only referenced
249  */
250 void SQItem::Copy(DocEntrySet *set)
251 {
252    // Remove all previous entries
253    ClearEntry();
254
255    DocEntrySet::Copy(set);
256
257    SQItem *sq = dynamic_cast<SQItem *>(set);
258    if( sq )
259    {
260       SQDepthLevel = sq->SQDepthLevel;
261       SQItemNumber = sq->SQItemNumber;
262
263       DocEntries = sq->DocEntries;
264       for(ItDocEntries = DocEntries.begin();ItDocEntries != DocEntries.end();++ItDocEntries)
265          (*ItDocEntries)->Register();
266    }
267 }
268
269 //-----------------------------------------------------------------------------
270 // Protected
271
272 //-----------------------------------------------------------------------------
273 // Private
274
275 //-----------------------------------------------------------------------------
276 // Print
277 /*
278  * \brief   canonical Printer
279  * @param os     Stream to print to. 
280  * @param indent Indentation string to be prepended during printing.
281  */
282 void SQItem::Print(std::ostream &os, std::string const &)
283 {
284    std::ostringstream s;
285
286    if (SQDepthLevel > 0)
287    {
288       for (int i = 0; i < SQDepthLevel; ++i)
289       {
290          s << "   | " ;
291       }
292    }
293    os << s.str() << " --- SQItem number " << SQItemNumber  << std::endl;
294    for (ListDocEntry::iterator i  = DocEntries.begin();
295                                i != DocEntries.end();
296                              ++i)
297    {
298       DocEntry *Entry = *i;
299       bool PrintEndLine = true;
300
301       os << s.str();
302       Entry->SetPrintLevel(PrintLevel);
303       Entry->Print(os); 
304       if ( dynamic_cast<SeqEntry*>(Entry) )
305       {
306          PrintEndLine = false;
307       }
308       if (PrintEndLine)
309       {
310          os << std::endl;
311       }
312    } 
313 }
314
315 //-----------------------------------------------------------------------------
316 } // end namespace gdcm