]> Creatis software - gdcm.git/blob - src/gdcmSeqEntry.cxx
STYLE: ivars should start with a capital letter. Accessors should be const to avoid...
[gdcm.git] / src / gdcmSeqEntry.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSeqEntry.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/10/25 03:03:45 $
7   Version:   $Revision: 1.33 $
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 "gdcmSeqEntry.h"
20 #include "gdcmSQItem.h"
21 #include "gdcmTS.h"
22 #include "gdcmGlobal.h"
23 #include "gdcmUtil.h"
24
25 #include <iostream>
26 #include <iomanip>
27 #include <fstream>
28
29 namespace gdcm 
30 {
31
32 //-----------------------------------------------------------------------------
33 // Constructor / Destructor
34 /**
35  * \ingroup SeqEntry
36  * \brief   Constructor from a given SeqEntry
37  */
38 SeqEntry::SeqEntry( DictEntry* e ) 
39              : DocEntry(e)
40 {
41    UsableLength = 0;
42    ReadLength = 0xffffffff;
43    SQDepthLevel = -1;
44
45    DelimitorMode = false;
46    SeqTerm  = NULL;
47 }
48
49 /**
50  * \brief   Constructor from a given SeqEntry
51  * @param   e Pointer to existing Doc entry
52  * @param   depth depth level of the current Seq entry
53   */
54 SeqEntry::SeqEntry( DocEntry* e, int depth )
55              : DocEntry( e->GetDictEntry() )
56 {
57    this->UsableLength = 0;
58    this->ReadLength   = 0xffffffff;
59    SQDepthLevel = depth;
60
61    this->ImplicitVR   = e->IsImplicitVR();
62    this->Offset       = e->GetOffset();
63 }
64
65 /**
66  * \brief   Canonical destructor.
67  */
68 SeqEntry::~SeqEntry()
69 {
70    for(ListSQItem::iterator cc = Items.begin(); cc != Items.end(); ++cc)
71    {
72       delete *cc;
73    }
74    if (!SeqTerm)
75    {
76       delete SeqTerm;
77    }
78 }
79
80 /**
81  * \brief   canonical Printer
82  */
83 void SeqEntry::Print( std::ostream &os )
84 {
85    // First, Print the Dicom Element itself.
86    SetPrintLevel(2);   
87    DocEntry::Print(os);
88    os << std::endl;
89
90    if (GetReadLength() == 0)
91       return;
92
93    // Then, Print each SQ Item   
94    for(ListSQItem::iterator cc = Items.begin(); cc != Items.end(); ++cc)
95    {
96       (*cc)->Print(os);   
97    }
98
99    // at end, print the sequence terminator item, if any
100    if (DelimitorMode)
101    {
102       for ( int i = 0; i < SQDepthLevel; i++ )
103       {
104          os << "   | " ;
105       }
106       if (SeqTerm != NULL)
107       {
108          SeqTerm->Print(os);
109          os << std::endl;
110       } 
111       else 
112       {
113          // fuse
114          os << "      -------------- should have a sequence terminator item";
115       }
116    }                    
117 }
118
119 /*
120  * \brief   canonical Writer
121  */
122 void SeqEntry::Write(std::ofstream* fp, FileType filetype)
123 {
124    uint16_t seq_term_gr = 0xfffe;
125    uint16_t seq_term_el = 0xe0dd;
126    uint32_t seq_term_lg = 0xffffffff;
127
128    //uint16_t item_term_gr = 0xfffe;
129    //uint16_t item_term_el = 0xe00d;
130    
131    DocEntry::Write(fp, filetype);
132    for(ListSQItem::iterator cc  = Items.begin();
133                             cc != Items.end();
134                           ++cc)
135    {        
136       (*cc)->Write(fp, filetype);
137    }
138    
139    // we force the writting of a Sequence Delimitation item
140    // because we wrote the Sequence as a 'no Length' sequence
141    fp->write ( (char*)&seq_term_gr,(size_t)2 );
142    fp->write ( (char*)&seq_term_el,(size_t)2 );
143    fp->write ( (char*)&seq_term_lg,(size_t)4 );
144 }
145
146 //-----------------------------------------------------------------------------
147 // Public
148
149 /// \brief   adds the passed ITEM to the ITEM chained List for this SeQuence.
150 void SeqEntry::AddEntry(SQItem *sqItem, int itemNumber)
151 {
152    sqItem->SetSQItemNumber(itemNumber);
153    Items.push_back(sqItem);
154 }
155
156 /**
157  * \brief return a pointer to the SQItem referenced by its ordinal number.
158  *        Returns the first item when argument is negative.
159  *        Returns the last item when argument is bigget than the total
160  *        item number.
161  */
162 SQItem* SeqEntry::GetSQItemByOrdinalNumber(int nb)
163 {
164    if (nb<0)
165    {
166       return *(Items.begin());
167    }
168    int count = 0 ;
169    for(ListSQItem::iterator cc = Items.begin();
170                            cc != Items.end();
171                            count ++, ++cc)
172    {
173       if (count == nb)
174       {
175          return *cc;
176       }
177    }
178    return *(Items.end()); // Euhhhhh ?!? Is this the last one . FIXME
179 }
180 //-----------------------------------------------------------------------------
181 // Protected
182
183
184 //-----------------------------------------------------------------------------
185 // Private
186
187 //-----------------------------------------------------------------------------
188 } // end namespace gdcm
189