CoreNEURON
nrn_filehandler.hpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================.
7 */
8 
9 #pragma once
10 
11 #include <iostream>
12 #include <fstream>
13 #include <vector>
14 #include <sys/stat.h>
15 
17 
18 namespace coreneuron {
19 /** Encapsulate low-level reading of coreneuron input data files.
20  *
21  * Error handling is simple: abort()!
22  *
23  * Reader will abort() if native integer size is not 4 bytes.
24  *
25  * All automatic allocations performed by read_int_array()
26  * and read_dbl_array() methods use new [].
27  */
28 
29 // @todo: remove this static buffer
30 const int max_line_length = 1024;
31 
32 class FileHandler {
33  std::fstream F; //!< File stream associated with reader.
34  std::ios_base::openmode current_mode; //!< File open mode (not stored in fstream)
35  int chkpnt; //!< Current checkpoint number state.
36  int stored_chkpnt; //!< last "remembered" checkpoint number state.
37  /** Read a checkpoint line, bump our chkpnt counter, and assert equality.
38  *
39  * Checkpoint information is represented by a sequence "checkpt %d\n"
40  * where %d is a scanf-compatible representation of the checkpoint
41  * integer.
42  */
44 
45  // FileHandler is not copyable.
46  FileHandler(const FileHandler&) = delete;
47  FileHandler& operator=(const FileHandler&) = delete;
48 
49  public:
51  : chkpnt(0)
52  , stored_chkpnt(0) {}
53 
54  explicit FileHandler(const std::string& filename);
55 
56  /** Preserving chkpnt state, move to a new file. */
57  void open(const std::string& filename, std::ios::openmode mode = std::ios::in);
58 
59  /** Is the file not open */
60  bool fail() const {
61  return F.fail();
62  }
63 
64  static bool file_exist(const std::string& filename);
65 
66  /** nothing more to read */
67  bool eof();
68 
69  /** Query chkpnt state. */
70  int checkpoint() const {
71  return chkpnt;
72  }
73 
74  /** Explicitly override chkpnt state. */
75  void checkpoint(int c) {
76  chkpnt = c;
77  }
78 
79  /** Record current chkpnt state. */
82  }
83 
84  /** Restored last recorded chkpnt state. */
87  }
88 
89  /** Parse a single integer entry.
90  *
91  * Single integer entries are represented by their standard
92  * (C locale) text representation, followed by a newline.
93  * Extraneous characters following the integer but preceding
94  * the newline are ignore.
95  */
96  int read_int();
97 
98  /** Parse a neuron mapping count entries
99  *
100  * Reads neuron mapping info which is represented by
101  * gid, #sections, #segments, #section lists
102  */
103  void read_mapping_count(int* gid, int* nsec, int* nseg, int* nseclist);
104 
105  /** Reads number of cells in parsing file */
106  void read_mapping_cell_count(int* count);
107 
108  /** Parse a neuron section segment mapping
109  *
110  * Read count no of mappings for section to segment
111  */
112  template <typename T>
113  int read_mapping_info(T* mapinfo) {
114  int nsec, nseg, n_scan;
115  char line_buf[max_line_length], name[max_line_length];
116 
117  F.getline(line_buf, sizeof(line_buf));
118  n_scan = sscanf(line_buf, "%s %d %d", name, &nsec, &nseg);
119 
120  nrn_assert(n_scan == 3);
121 
122  mapinfo->name = std::string(name);
123 
124  if (nseg) {
125  std::vector<int> sec, seg;
126  sec.reserve(nseg);
127  seg.reserve(nseg);
128 
129  read_array<int>(&sec[0], nseg);
130  read_array<int>(&seg[0], nseg);
131 
132  for (int i = 0; i < nseg; i++) {
133  mapinfo->add_segment(sec[i], seg[i]);
134  }
135  }
136  return nseg;
137  }
138 
139  /** Defined flag values for parse_array() */
140  enum parse_action { read, seek };
141 
142  /** Generic parse function for an array of fixed length.
143  *
144  * \tparam T the array element type: may be \c int or \c double.
145  * \param p pointer to the target in memory for reading into.
146  * \param count number of items of type \a T to parse.
147  * \param action whether to validate and skip (\c seek) or
148  * copy array into memory (\c read).
149  * \return the supplied pointer value.
150  *
151  * Error if \a count is non-zero, \a flag is \c read, and
152  * the supplied pointer \p is null.
153  *
154  * Arrays are represented by a checkpoint line followed by
155  * the array items in increasing index order, in the native binary
156  * representation of the writing process.
157  */
158  template <typename T>
159  inline T* parse_array(T* p, size_t count, parse_action flag) {
160  if (count > 0 && flag != seek)
161  nrn_assert(p != 0);
162 
164  switch (flag) {
165  case seek:
166  F.seekg(count * sizeof(T), std::ios_base::cur);
167  break;
168  case read:
169  F.read((char*) p, count * sizeof(T));
170  break;
171  }
172 
173  nrn_assert(!F.fail());
174  return p;
175  }
176 
177  // convenience interfaces:
178 
179  /** Read an integer array of fixed length. */
180  template <typename T>
181  inline T* read_array(T* p, size_t count) {
182  return parse_array(p, count, read);
183  }
184 
185  /** Allocate and read an integer array of fixed length. */
186  template <typename T>
187  inline T* read_array(size_t count) {
188  return parse_array(new T[count], count, read);
189  }
190 
191  template <typename T>
192  inline std::vector<T> read_vector(size_t count) {
193  std::vector<T> vec(count);
194  parse_array(vec.data(), count, read);
195  return vec;
196  }
197 
198  /** Close currently open file. */
199  void close();
200 
201  /** Write an 1D array **/
202  template <typename T>
203  void write_array(T* p, size_t nb_elements) {
204  nrn_assert(F.is_open());
205  nrn_assert(current_mode & std::ios::out);
207  F.write((const char*) p, nb_elements * (sizeof(T)));
208  nrn_assert(!F.fail());
209  }
210 
211  /** Write a padded array. nb_elements is number of elements to write per line,
212  * line_width is full size of a line in nb elements**/
213  template <typename T>
214  void write_array(T* p,
215  size_t nb_elements,
216  size_t line_width,
217  size_t nb_lines,
218  bool to_transpose = false) {
219  nrn_assert(F.is_open());
220  nrn_assert(current_mode & std::ios::out);
222  T* temp_cpy = new T[nb_elements * nb_lines];
223 
224  if (to_transpose) {
225  for (size_t i = 0; i < nb_lines; i++) {
226  for (size_t j = 0; j < nb_elements; j++) {
227  temp_cpy[i + j * nb_lines] = p[i * line_width + j];
228  }
229  }
230  } else {
231  memcpy(temp_cpy, p, nb_elements * sizeof(T) * nb_lines);
232  }
233  // AoS never use padding, SoA is translated above, so one write
234  // operation is enought in both cases
235  F.write((const char*) temp_cpy, nb_elements * sizeof(T) * nb_lines);
236  nrn_assert(!F.fail());
237  delete[] temp_cpy;
238  }
239 
240  template <typename T>
241  FileHandler& operator<<(const T& scalar) {
242  nrn_assert(F.is_open());
243  nrn_assert(current_mode & std::ios::out);
244  F << scalar;
245  nrn_assert(!F.fail());
246  return *this;
247  }
248 
249  private:
250  /* write_checkpoint is callable only for our internal uses, making it accesible to user, makes
251  * file format unpredictable */
253  F << "chkpnt " << chkpnt++ << "\n";
254  }
255 };
256 } // namespace coreneuron
coreneuron::max_line_length
const int max_line_length
Encapsulate low-level reading of coreneuron input data files.
Definition: nrn_filehandler.hpp:30
coreneuron::FileHandler::fail
bool fail() const
Is the file not open.
Definition: nrn_filehandler.hpp:60
coreneuron::FileHandler::record_checkpoint
void record_checkpoint()
Record current chkpnt state.
Definition: nrn_filehandler.hpp:80
coreneuron::FileHandler::read_mapping_count
void read_mapping_count(int *gid, int *nsec, int *nseg, int *nseclist)
Parse a neuron mapping count entries.
Definition: nrn_filehandler.cpp:70
coreneuron::FileHandler::read_mapping_info
int read_mapping_info(T *mapinfo)
Parse a neuron section segment mapping.
Definition: nrn_filehandler.hpp:113
coreneuron::FileHandler::close
void close()
Close currently open file.
Definition: nrn_filehandler.cpp:104
coreneuron::FileHandler::F
std::fstream F
File stream associated with reader.
Definition: nrn_filehandler.hpp:33
coreneuron::FileHandler::file_exist
static bool file_exist(const std::string &filename)
Definition: nrn_filehandler.cpp:20
coreneuron::FileHandler::chkpnt
int chkpnt
Current checkpoint number state.
Definition: nrn_filehandler.hpp:35
coreneuron::FileHandler::parse_array
T * parse_array(T *p, size_t count, parse_action flag)
Generic parse function for an array of fixed length.
Definition: nrn_filehandler.hpp:159
coreneuron::FileHandler::read_checkpoint_assert
void read_checkpoint_assert()
Read a checkpoint line, bump our chkpnt counter, and assert equality.
Definition: nrn_filehandler.cpp:85
coreneuron::FileHandler::read_int
int read_int()
Parse a single integer entry.
Definition: nrn_filehandler.cpp:57
coreneuron::FileHandler::checkpoint
void checkpoint(int c)
Explicitly override chkpnt state.
Definition: nrn_filehandler.hpp:75
coreneuron::FileHandler::parse_action
parse_action
Defined flag values for parse_array()
Definition: nrn_filehandler.hpp:140
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::FileHandler::stored_chkpnt
int stored_chkpnt
last "remembered" checkpoint number state.
Definition: nrn_filehandler.hpp:36
coreneuron::i
int i
Definition: cellorder.cpp:485
coreneuron::FileHandler::operator<<
FileHandler & operator<<(const T &scalar)
Definition: nrn_filehandler.hpp:241
coreneuron::FileHandler
Definition: nrn_filehandler.hpp:32
coreneuron::FileHandler::eof
bool eof()
nothing more to read
Definition: nrn_filehandler.cpp:45
coreneuron::FileHandler::write_array
void write_array(T *p, size_t nb_elements)
Write an 1D array.
Definition: nrn_filehandler.hpp:203
coreneuron::FileHandler::open
void open(const std::string &filename, std::ios::openmode mode=std::ios::in)
Preserving chkpnt state, move to a new file.
Definition: nrn_filehandler.cpp:25
coreneuron::FileHandler::FileHandler
FileHandler()
Definition: nrn_filehandler.hpp:50
coreneuron::FileHandler::read_array
T * read_array(size_t count)
Allocate and read an integer array of fixed length.
Definition: nrn_filehandler.hpp:187
coreneuron::FileHandler::read_array
T * read_array(T *p, size_t count)
Read an integer array of fixed length.
Definition: nrn_filehandler.hpp:181
coreneuron::FileHandler::read
@ read
Definition: nrn_filehandler.hpp:140
sec
#define sec
Definition: md1redef.h:20
coreneuron::FileHandler::write_array
void write_array(T *p, size_t nb_elements, size_t line_width, size_t nb_lines, bool to_transpose=false)
Write a padded array.
Definition: nrn_filehandler.hpp:214
coreneuron::FileHandler::operator=
FileHandler & operator=(const FileHandler &)=delete
coreneuron::FileHandler::checkpoint
int checkpoint() const
Query chkpnt state.
Definition: nrn_filehandler.hpp:70
coreneuron::FileHandler::seek
@ seek
Definition: nrn_filehandler.hpp:140
coreneuron::FileHandler::read_vector
std::vector< T > read_vector(size_t count)
Definition: nrn_filehandler.hpp:192
nrn_assert
#define nrn_assert(x)
assert()-like macro, independent of NDEBUG status
Definition: nrn_assert.h:33
coreneuron::FileHandler::read_mapping_cell_count
void read_mapping_cell_count(int *count)
Reads number of cells in parsing file.
Definition: nrn_filehandler.cpp:81
nrn_assert.h
coreneuron::FileHandler::current_mode
std::ios_base::openmode current_mode
File open mode (not stored in fstream)
Definition: nrn_filehandler.hpp:34
coreneuron::FileHandler::restore_checkpoint
void restore_checkpoint()
Restored last recorded chkpnt state.
Definition: nrn_filehandler.hpp:85
coreneuron::FileHandler::write_checkpoint
void write_checkpoint()
Definition: nrn_filehandler.hpp:252