]> Creatis software - gdcm.git/blob - src/gdcmDataEntry.h
Fix Doxygenation
[gdcm.git] / src / gdcmDataEntry.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDataEntry.h,v $
5   Language:  C++
6   Date:      $Date: 2006/01/20 09:17:25 $
7   Version:   $Revision: 1.12 $
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 #ifndef GDCMDATAENTRY_H
20 #define GDCMDATAENTRY_H
21
22 #include "gdcmDocEntry.h"
23
24 #include <iostream>
25
26 namespace gdcm 
27 {
28 //-----------------------------------------------------------------------------
29 /**
30  * \brief   Any Dicom Document (File or DicomDir, or ...) contains 
31  *           a set of DocEntry  - Dicom entries -
32  *           (when successfuly parsed against a given Dicom dictionary)
33  *          DataEntry is an elementary DocEntry (as opposed to SeqEntry).
34  *          Depending on the type of its content,
35  */
36 class GDCM_EXPORT DataEntry  : public DocEntry
37 {
38    gdcmTypeMacro(DataEntry);
39
40 public:
41 /// \brief Contructs a DataEntry with a RefCounter from DictEntry
42    static DataEntry *New(DictEntry *e) {return new DataEntry(e);}
43 /// \brief Contructs a DataEntry with a RefCounter from DocEntry
44    static DataEntry *New(DocEntry *d)  {return new DataEntry(d);}
45
46 // Print
47    void Print(std::ostream &os = std::cout, std::string const &indent = "");
48
49 // Write
50    virtual void WriteContent(std::ofstream *fp, FileType filetype);
51    uint32_t ComputeFullLength();
52    
53 // Set/Get data
54    // Sets the value (string) of the current Dicom entry
55    //virtual void SetValue(std::string const &val);
56
57    /// \brief Returns the area value of the current Dicom Entry
58    ///  when it's not string-translatable (e.g : LUT table, overlay, icon)   
59    uint8_t *GetBinArea()  { return BinArea; }
60    void SetBinArea( uint8_t *area, bool self = true );
61    void CopyBinArea( uint8_t *area, uint32_t length );
62
63    void SetValue(const uint32_t &id,const double &val);
64    double GetValue(const uint32_t &id) const;
65    uint32_t GetValueCount(void) const;
66    bool IsValueCountValid() const;
67
68    void SetString(std::string const &value);
69    std::string const &GetString() const;
70
71    /// \brief Sets SelfArea
72    void SetSelfArea(bool area) { SelfArea = area; }
73    /// \brief True if Entry owns its BinArea
74    bool IsSelfArea() { return SelfArea; }
75
76    ///\brief values for current state of a DataEntry (internal use only)
77    enum TValueState
78    {
79       STATE_LOADED    = 0x00,
80       STATE_NOTLOADED = 0x01,
81       STATE_UNFOUND   = 0x02,
82       STATE_UNREAD    = 0x03
83    };
84    
85    ///\brief values for current pixel status of a DataEntry (internal use only)
86    enum TValueFlag
87    {
88       FLAG_NONE       = 0x00,
89       FLAG_PIXELDATA  = 0x01
90    };
91
92    // State
93    /// \brief Sets the state (Loaded, NotLoaded, UnFound, ...) of the DataEntry
94    void SetState(const TValueState &state) { State = state; }
95    /// \brief Returns the state (Loaded, NotLoaded, ...) of the DataEntry
96       const TValueState &GetState() const { return State; }
97    /// \brief true when value Entry not loaded  
98    bool IsNotLoaded() { return State == STATE_NOTLOADED; }
99    /// \brief true if Entry not found  
100    bool IsUnfound()   { return State == STATE_UNFOUND; }
101    /// \brief true if Entry not read    
102    bool IsUnread()    { return State == STATE_UNREAD; }
103    /// \brief true if Entry value properly loaded
104    bool IsGoodValue() { return State == STATE_LOADED; }
105
106    // Flags
107    /// \brief sets the 'pixel data flag'   
108    void SetFlag(const TValueFlag &flag) { Flag = flag; }
109    /// \brief returns the 'pixel data flag'    
110    const TValueFlag &GetFlag() const { return Flag; }
111    /// \brief true id Entry is a Pixel Data entry
112    bool IsPixelData() { return (Flag &FLAG_PIXELDATA) != 0; }
113
114    virtual void Copy(DocEntry *doc);
115
116    /// \brief returns the size threshold above which an element value 
117    ///        will NOT be *printed* in order no to polute the screen output
118    static const uint32_t &GetMaxSizePrintEntry() { return MaxSizePrintEntry; }
119    /// \brief Header Elements too long will not be printed
120    static void SetMaxSizePrintEntry(const uint32_t &size) 
121                                                  { MaxSizePrintEntry = size; }
122
123 protected:
124    DataEntry(DictEntry *e);
125    DataEntry(DocEntry *d); 
126    ~DataEntry();
127
128 // Methods :
129    void NewBinArea(void);
130    void DeleteBinArea(void);
131
132 // Members :
133    /// \brief memory area to hold 'non std::string' representable values 
134    ///       (ie : Lookup Tables, overlays, icons)   
135    uint8_t *BinArea;
136    /// \brief Whether DataEntry has its own BinArea or not
137    bool SelfArea;
138    /// \brief  std::string representable value of the Entry. 
139    ///        Parts of a multivaluated data are separated by back-slash
140    mutable std::string StrArea;
141
142 private:
143    /// \brief 0 for straight entries, FLAG_PIXELDATA for Pixel Data entries
144    TValueFlag Flag;
145    /// \brief Entry status:STATE_NOTLOADED,STATE_UNFOUND,STATE_UNREAD,STATE_LOADED
146    TValueState State;
147
148    /// \brief Size threshold above which an element is printed
149    static uint32_t MaxSizePrintEntry;   
150 };
151
152 } // end namespace gdcm
153
154 //-----------------------------------------------------------------------------
155 #endif
156