]> Creatis software - gdcm.git/blob - src/gdcmSeqEntry.cxx
ENH: Removed all FILE* ref and replace by ifstream/ofstream. For now I use a temp...
[gdcm.git] / src / gdcmSeqEntry.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSeqEntry.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/10/22 03:05:42 $
7   Version:   $Revision: 1.32 $
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    delimitor_mode = false;
46    seq_term  = 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    for(ListSQItem::iterator cc = items.begin();cc != items.end();++cc)
70    {
71       delete *cc;
72    }
73    if (!seq_term)
74       delete seq_term;
75 }
76
77 /**
78  * \brief   canonical Printer
79  */
80 void SeqEntry::Print( std::ostream &os )
81 {
82    // First, Print the Dicom Element itself.
83    SetPrintLevel(2);   
84    DocEntry::Print(os);
85    os << std::endl;
86
87    if (GetReadLength() == 0)
88       return;
89
90    // Then, Print each SQ Item   
91    for(ListSQItem::iterator cc = items.begin();cc != items.end();++cc)
92    {
93       (*cc)->Print(os);   
94    }
95
96    // at end, print the sequence terminator item, if any
97    if (delimitor_mode) {
98       for ( int i = 0; i < SQDepthLevel; i++ )
99       {
100          os << "   | " ;
101       }
102       if (seq_term != NULL)
103       {
104          seq_term->Print(os);
105          os << std::endl;
106       } 
107       else 
108       {
109          // fuse
110          os << "      -------------- should have a sequence terminator item";
111       }
112    }                    
113 }
114
115 /*
116  * \brief   canonical Writer
117  */
118 void SeqEntry::Write(std::ofstream* fp, FileType filetype)
119 {
120    uint16_t seq_term_gr = 0xfffe;
121    uint16_t seq_term_el = 0xe0dd;
122    uint32_t seq_term_lg = 0xffffffff;
123
124    //uint16_t item_term_gr = 0xfffe;
125    //uint16_t item_term_el = 0xe00d;
126    
127    DocEntry::Write(fp, filetype);
128    for(ListSQItem::iterator cc  = GetSQItems().begin();
129                             cc != GetSQItems().end();
130                           ++cc)
131    {        
132       (*cc)->Write(fp, filetype);
133    }
134    
135    // we force the writting of a Sequence Delimitation item
136    // because we wrote the Sequence as a 'no Length' sequence
137    fp->write ( (char*)&seq_term_gr,(size_t)2 );
138    fp->write ( (char*)&seq_term_el,(size_t)2 );
139    fp->write ( (char*)&seq_term_lg,(size_t)4 );
140 }
141
142 //-----------------------------------------------------------------------------
143 // Public
144
145 /// \brief   adds the passed ITEM to the ITEM chained List for this SeQuence.
146 void SeqEntry::AddEntry(SQItem *sqItem, int itemNumber)
147 {
148    sqItem->SetSQItemNumber(itemNumber);
149    items.push_back(sqItem);
150 }
151
152 /**
153  * \brief return a pointer to the SQItem referenced by its ordinal number.
154  *        Returns the first item when argument is negative.
155  *        Returns the last item when argument is bigget than the total
156  *        item number.
157  */
158 SQItem* SeqEntry::GetSQItemByOrdinalNumber(int nb)
159 {
160    if (nb<0)
161       return (*(items.begin()));
162    int count = 0 ;
163    for(ListSQItem::iterator cc = items.begin();
164        cc != items.end();
165        count ++, ++cc){
166       if (count==nb)
167          return *cc;
168    }
169    return (*(items.end())); // Euhhhhh ?!? Is this the last one . FIXME
170 }
171 //-----------------------------------------------------------------------------
172 // Protected
173
174
175 //-----------------------------------------------------------------------------
176 // Private
177
178 //-----------------------------------------------------------------------------
179 } // end namespace gdcm
180