vega
raw_writer.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <ostream>
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 RawWriter {
14  public:
15  class WritingError : public vega::Exception { using vega::Exception::Exception; };
16 
17  private:
18  IOState m_state;
19  std::shared_ptr<std::ostream> m_os;
20 
21  public:
22  explicit RawWriter(std::shared_ptr<std::ostream> os);
23 
24  const Endian& dicom_endian() const;
25  void set_dicom_endianness(const Endian& dicom_endian);
26 
27  bool vr_explicit() const;
28  void set_vr_explicit(bool vr_explicit);
29 
30  std::streampos tell();
31  void seek_pos(std::streampos pos);
32  void seek_delta(std::streampos delta);
33 
34  template <typename Iter>
35  size_t write_from(Iter begin, Iter end) {
36  size_t bytes = 0;
37  for(auto it = begin; it != end; ++it) {
38  bytes += this->write_from(*it);
39  }
40  return bytes;
41  }
42 
43  // Define by do not implement -- require usage of reference template below
44  template <typename T>
45  size_t write_from(const T* val);
46 
47  template <typename T>
48  size_t write_from(const T& val) {
49  if (m_state.swap()) {
50  // Have to swap the bytes to fix endian mis-match
51  const char* raw = reinterpret_cast<const char*>(&val);
52  for (size_t j = 0; j < sizeof(T); ++j) {
53  m_os->write(raw + sizeof(T)-j-1, 1);
54  }
55  }
56  else {
57  // Read in bytes directly
58  const char* raw = reinterpret_cast<const char*>(&val);
59  m_os->write(raw, sizeof(T));
60  }
61 
62  return sizeof(T);
63  }
64  };
65 
66  template <>
67  size_t RawWriter::write_from(const Tag& tag);
68 
69  template<>
70  size_t RawWriter::write_from(const VR& vr);
71  }
72 }
73 
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