vega
raw_reader_impl.h
Go to the documentation of this file.
1 namespace vega {
2  namespace dicom {
3  template <typename Iter>
4  bool RawReader::read_into(Iter begin, Iter end) {
5  for(auto it = begin; it != end; ++it) {
6  if (!this->read_into(&(*it))) { return false; }
7  }
8  return true;
9  }
10 
11  template <typename T>
12  bool RawReader::read_into(T* ptr) {
13  if (m_state.swap()) {
14  // Have to swap the bytes to fix endian mis-match
15  char* raw = reinterpret_cast<char*>(ptr);
16  for (size_t j = 0; j < sizeof(T); ++j) {
17  m_is->read(raw + sizeof(T)-j-1, 1);
18  if (m_is->gcount() == 0) return false;
19  }
20  }
21  else {
22  // Read in bytes directly
23  m_is->read(reinterpret_cast<char*>(ptr), sizeof(T));
24  if ((unsigned)m_is->gcount() < sizeof(T)) return false;
25  }
26 
27  return true;
28  }
29  }
30 }
Definition: age.h:6