]> Creatis software - gdcm.git/blob - src/gdcmSQItem.cxx
gdcmDocEntry::PrintCommonPart() and ::WriteCommonPart() removed.
[gdcm.git] / src / gdcmSQItem.cxx
1 /*=========================================================================
2   
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSQItem.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/06/23 13:02:36 $
7   Version:   $Revision: 1.16 $
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.htm 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 "gdcmValEntry.h"
22 #include "gdcmBinEntry.h"
23 #include "gdcmGlobal.h"
24 #include "gdcmUtil.h"
25
26 #include "gdcmDebug.h"
27
28
29 //-----------------------------------------------------------------------------
30 // Constructor / Destructor
31 /**
32  * \ingroup gdcmSQItem
33  * \brief   Constructor from a given gdcmSQItem
34  */
35 gdcmSQItem::gdcmSQItem(int depthLevel ) 
36           : gdcmDocEntrySet(depthLevel) {
37    SQDepthLevel = depthLevel +1;
38 }
39
40 /**
41  * \brief   Canonical destructor.
42  */
43 gdcmSQItem::~gdcmSQItem() 
44 {
45    for(ListDocEntry::iterator cc = docEntries.begin();
46        cc != docEntries.end();
47        ++cc)
48    {
49       delete (*cc);
50    }
51    docEntries.clear();
52 }
53
54 //-----------------------------------------------------------------------------
55 // Print
56 /*
57  * \brief   canonical Printer
58  */
59  void gdcmSQItem::Print(std::ostream & os) {
60    std::ostringstream s;
61
62    if (SQDepthLevel>0)
63    {
64       for (int i=0;i<SQDepthLevel;i++)
65          s << "   | " ;
66    }
67    std::cout << s.str() << " --- SQItem number " << SQItemNumber  << std::endl;
68    for (ListDocEntry::iterator i  = docEntries.begin();  
69                                i != docEntries.end();
70                              ++i)
71    {
72       gdcmDocEntry* Entry = *i;
73       bool PrintEndLine = true;
74
75       os << s.str();
76       Entry->SetPrintLevel(2);
77       Entry->Print(os);   
78       if ( gdcmSeqEntry* SeqEntry = dynamic_cast<gdcmSeqEntry*>(Entry) )
79          PrintEndLine = false;
80       if (PrintEndLine)
81          os << std::endl;
82    } 
83 }
84
85 /*
86  * \ingroup gdcmSQItem
87  * \brief   canonical Writer
88  */
89 void gdcmSQItem::Write(FILE *fp,FileType filetype)
90 {
91    for (ListDocEntry::iterator i = docEntries.begin();  
92         i != docEntries.end();
93         ++i)
94    {
95       (*i)->Write(fp, filetype);
96    } 
97 }
98
99 //-----------------------------------------------------------------------------
100 // Public
101 /**
102  * \brief   adds any Entry (Dicom Element) to the Sequence Item
103  */
104 bool gdcmSQItem::AddEntry(gdcmDocEntry *entry)
105 {
106    docEntries.push_back(entry);
107    //TODO : check if it worked
108    return true;
109 }   
110
111 /**
112  * \brief   Sets Entry (Dicom Element) value of an element,
113  *          specified by it's tag (Group, Number) 
114  *          and the length, too ...  inside a SQ Item
115  *          If the Element is not found, it's just created !
116  * \warning we suppose, right now, the element belongs to a Public Group
117  *          (NOT a shadow one)       
118  * @param   val string value to set
119  * @param   group Group number of the searched tag.
120  * @param   element Element number of the searched tag.
121  * @return  true if element was found or created successfully
122  */
123
124 bool gdcmSQItem::SetEntryByNumber(std::string val,guint16 group, 
125                                   guint16 element)
126 {
127    for(ListDocEntry::iterator i=docEntries.begin();i!=docEntries.end();++i)
128    { 
129       if ( (*i)->GetGroup() == 0xfffe && (*i)->GetElement() == 0xe000 ) 
130          continue;
131
132       if (  ( group   < (*i)->GetGroup() )
133           ||( group == (*i)->GetGroup() && element < (*i)->GetElement()) )
134       {
135          // instead of ReplaceOrCreateByNumber 
136          // that is a method of gdcmDocument :-( 
137          gdcmValEntry* Entry = (gdcmValEntry*)0;
138          TagKey key = gdcmDictEntry::TranslateToKey(group, element);
139
140          if ( ! ptagHT->count(key))
141          {
142             // we assume a Public Dictionnary *is* loaded
143             gdcmDict *PubDict = gdcmGlobal::GetDicts()->GetDefaultPubDict();
144             // if the invoked (group,elem) doesn't exist inside the Dictionary
145             // we create a VirtualDictEntry
146             gdcmDictEntry *DictEntry = PubDict->GetDictEntryByNumber(group,
147                                                                      element);
148             if (DictEntry == NULL)
149             {
150               DictEntry=gdcmGlobal::GetDicts()->NewVirtualDictEntry(group,
151                                                                     element,
152                                                                     "UN",
153                                                                     "??","??");
154             } 
155             // we assume the constructor didn't fail
156             Entry = new gdcmValEntry(DictEntry);
157             /// \todo
158             /// ----
159             /// better we don't assume too much !
160             /// gdcmSQItem is now used to describe any DICOMDIR related object
161          } else {
162             gdcmDocEntry* FoundEntry = ptagHT->find(key)->second;
163             Entry = dynamic_cast<gdcmValEntry*>(FoundEntry);
164             if (!Entry) 
165                dbg.Verbose(0, "gdcmSQItem::SetEntryByNumber: docEntries"
166                               " contains non gdcmValEntry occurences");
167          }
168          if (Entry)
169             Entry->SetValue(val); 
170          Entry->SetLength(val.length());
171          docEntries.insert(i,Entry); 
172          return true;
173       }   
174       if (group == (*i)->GetGroup() && element == (*i)->GetElement() )
175       {
176          if ( gdcmValEntry* Entry = dynamic_cast<gdcmValEntry*>(*i) )
177             Entry->SetValue(val);
178          (*i)->SetLength(val.length()); 
179          return true;    
180       }
181    }
182    return false;
183 }
184 //-----------------------------------------------------------------------------
185 // Protected
186
187
188 /**
189  * \brief   Gets a Dicom Element inside a SQ Item Entry, by number
190  * @return
191  */
192 gdcmDocEntry *gdcmSQItem::GetDocEntryByNumber(guint16 group, guint16 element) {
193    for(ListDocEntry::iterator i=docEntries.begin();i!=docEntries.end();++i) {
194       if ( (*i)->GetGroup()==group && (*i)->GetElement()==element)
195          return (*i);
196    }   
197    return NULL;
198 }
199
200 /**
201  * \brief   Get the value of a Dicom Element inside a SQ Item Entry, by number
202  * @return
203  */ 
204
205 std::string gdcmSQItem::GetEntryByNumber(guint16 group, guint16 element) { 
206    for(ListDocEntry::iterator i=docEntries.begin();i!=docEntries.end();++i) {
207       if ( (*i)->GetGroup()==group && (*i)->GetElement()==element) {
208          return ((gdcmValEntry *)(*i))->GetValue();
209       }
210    }   
211    return GDCM_UNFOUND;
212 }
213 //-----------------------------------------------------------------------------
214 // Private
215
216
217 //-----------------------------------------------------------------------------