vega
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
reader.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <istream>
4 #include <string>
5 #include <vector>
6 #include <memory>
7 
8 #include "vega/vega.h"
9 #include "vega/tag.h"
10 #include "vega/vr.h"
11 #include "vega/logger.h"
12 #include "vega/dicom/io_state.h"
14 #include "vega/dicom/data_set.h"
15 #include "vega/dicom/raw_reader.h"
16 
17 namespace vega {
18  namespace manipulators {
19  class ValueManipulator;
20  }
21 
22  namespace dictionary {
23  class Page;
24  }
25 
26  namespace dicom {
27  class Reader {
28  public:
29  class FileDoesNotExistError : public vega::Exception { using vega::Exception::Exception; };
30  class ReadingError : public vega::Exception { using vega::Exception::Exception; };
31 
32  private:
33  Logger m_logger;
34  RawReader m_raw_reader;
35  bool m_allow_any_explicit_vr;
36 
37  public:
38  Reader(std::shared_ptr<std::istream> is, bool allow_any_explicit_vr = false);
39 
40  RawReader& raw_reader();
41 
42  const Endian& dicom_endian() const;
43  void set_dicom_endianness(const Endian& dicom_endian);
44 
45  bool vr_explicit() const;
46  void set_vr_explicit(bool vr_explicit);
47 
48  bool swap() const;
49 
50  std::shared_ptr<DataElement> read_data_element(std::shared_ptr<DataSet> parent);
51  std::shared_ptr<DataSet> read_data_set(std::shared_ptr<DataElement> parent);
52 
53  // Returns new DataElement if successfully read in
54  // Otherwise, returns nullptr and leaves file pointer in original location
55  std::shared_ptr<DataElement> read_data_element(const Tag& tag, std::shared_ptr<DataSet> parent);
56 
57  bool eof();
58  void rewind();
59  std::streampos tell();
60  void seek_pos(std::streampos pos);
61  void seek_delta(std::streampos delta);
62 
63  private:
64  static std::shared_ptr<manipulators::ValueManipulator> manipulator_for(const DataElement& element);
65  };
66  }
67 }
Definition: logger.h:7
Endian
Definition: vega.h:24
Exception()
Definition: vega.h:13
The base class for exceptions that are raised by the vega library.
Definition: vega.h:11
Definition: value_manipulator.h:29
std::shared_ptr< manipulators::ValueManipulator > manipulator_for(const dicom::DataElement &element)
Definition: age.h:6
Class for working with DICOM data element tags.
Definition: tag.h:15