vega
raw_reader.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <istream>
4 #include <memory>
5 
6 #include "vega/vega.h"
7 #include "vega/tag.h"
8 #include "vega/vr.h"
9 #include "vega/dicom/io_state.h"
10 
11 namespace vega {
12  namespace dicom {
13  class RawReader {
14  public:
15  class ReadingError : public vega::Exception { using vega::Exception::Exception; };
16 
17  private:
18  IOState m_state;
19 
20  std::shared_ptr<std::istream> m_is;
21  std::streampos m_eof_pos;
22 
23  public:
24  RawReader(std::shared_ptr<std::istream> is);
25 
26  const Endian& dicom_endian() const;
27  void set_dicom_endianness(const Endian& dicom_endian);
28 
29  bool vr_explicit() const;
30  void set_vr_explicit(bool vr_explicit);
31 
32  bool swap() const;
33 
34  template <typename Iter>
35  bool read_into(Iter begin, Iter end);
36 
37  // Reads a single item
38  template <typename T>
39  bool read_into(T* ptr);
40 
41  bool eof();
42  void rewind();
43  std::streampos tell();
44  std::streampos eof_pos() const;
45  void seek_pos(std::streampos pos);
46  void seek_delta(std::streampos delta);
47  };
48 
49  template<>
50  bool RawReader::read_into(Tag* tag);
51 
52  template<>
53  bool RawReader::read_into(VR* vr);
54  }
55 }
56 
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: age.h:6