]> Creatis software - gdcm.git/blob - src/gdcmSQItem.h
58d5e86f1424217294742826d0cb86936c00a9d2
[gdcm.git] / src / gdcmSQItem.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSQItem.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/11 15:15:38 $
7   Version:   $Revision: 1.31 $
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 #ifndef GDCMSQITEM_H
19 #define GDCMSQITEM_H
20
21 #include "gdcmDocEntrySet.h"
22 #include "gdcmElementSet.h"
23
24 #include <list>
25 #include <fstream>
26
27 namespace gdcm 
28 {
29 class DocEntry;
30
31 //-----------------------------------------------------------------------------
32 typedef std::list<DocEntry *> ListDocEntry;
33 //-----------------------------------------------------------------------------
34 /**
35  * \brief a SeqEntry is composed by a set of SQItems.
36  *        Each SQItem is composed by a set of DocEntry
37  *        A DocEntry may be a SeqEntry
38  *        ... and so forth 
39  */ 
40 class GDCM_EXPORT SQItem : public DocEntrySet 
41 {
42 public:
43    SQItem(int depthLevel);
44    ~SQItem();
45
46    virtual void Print(std::ostream &os = std::cout); 
47    void WriteContent(std::ofstream *fp, FileType filetype);
48
49    /// \brief   returns the DocEntry chained List for this SQ Item.
50    ListDocEntry const &GetDocEntries() const { return DocEntries; };
51    
52    /// \brief   adds the passed DocEntry to the DocEntry chained List for
53    /// this SQ Item.      
54    bool AddEntry(DocEntry *Entry); // add to the List
55    bool RemoveEntry(DocEntry *EntryToRemove);
56    bool RemoveEntryNoDestroy(DocEntry *EntryToRemove);
57   
58    DocEntry *GetDocEntry(uint16_t group, uint16_t element);
59    
60    bool SetEntry(std::string const &val, uint16_t group, 
61                                          uint16_t element);
62     
63    std::string GetEntry(uint16_t group, uint16_t element);
64
65    /// \brief   returns the ordinal position of a given SQItem
66    int GetSQItemNumber() { return SQItemNumber; };
67
68    /// \brief   Sets the ordinal position of a given SQItem
69    void SetSQItemNumber(int itemNumber) { SQItemNumber = itemNumber; };
70
71    ///  \brief Accessor on \ref SQDepthLevel.
72    int GetDepthLevel() { return SQDepthLevel; }
73                                                                                 
74    ///  \brief Accessor on \ref SQDepthLevel.
75    void SetDepthLevel(int depth) { SQDepthLevel = depth; }
76
77    ///  \brief Accessor on \ref BaseTagKey.
78    void SetBaseTagKey( BaseTagKey const &key ) { BaseTagKeyNested = key; }
79
80    ///  \brief Accessor on \ref BaseTagKey.
81    BaseTagKey const &GetBaseTagKey() const { return BaseTagKeyNested; }
82
83    void Initialize();
84    DocEntry *GetNextEntry();
85
86 protected:
87 // Variables that need to be access in subclasses
88
89    /// \brief Chained list of (Elementary) Doc Entries
90    ListDocEntry DocEntries;
91    /// Chained list iterator, used to visit the TagHT variable
92    ListDocEntry::iterator ItDocEntries;
93    
94    /// \brief pointer to the HTable of the Document,
95    ///       (because we don't know it within any DicomDirObject nor any SQItem)
96    // TagDocEntryHT *PtagHT;
97
98 private:
99
100    /// \brief Sequences can be nested. This \ref SQDepthLevel represents
101    ///        the level of the nesting of instances of this class.
102    ///        \ref SQDepthLevel and its \ref SeqEntry::SQDepthLevel
103    ///        counterpart are only defined on printing purposes
104    ///        (see \ref Print).
105    int SQDepthLevel;
106
107    /// \brief A TagKey of a DocEntry nested in a sequence is prepended
108    ///        with this BaseTagKey.
109    BaseTagKey BaseTagKeyNested;
110
111    /// \brief SQ Item ordinal number 
112    int SQItemNumber;
113 };
114 } // end namespace gdcm
115 //-----------------------------------------------------------------------------
116 #endif