Go to the documentation of this file.
57 void open(
const std::string& filename, std::ios::openmode mode = std::ios::in);
64 static bool file_exist(
const std::string& filename);
112 template <
typename T>
114 int nsec, nseg, n_scan;
117 F.getline(line_buf,
sizeof(line_buf));
118 n_scan = sscanf(line_buf,
"%s %d %d", name, &nsec, &nseg);
122 mapinfo->name = std::string(name);
125 std::vector<int>
sec, seg;
129 read_array<int>(&
sec[0], nseg);
130 read_array<int>(&seg[0], nseg);
132 for (
int i = 0;
i < nseg;
i++) {
133 mapinfo->add_segment(
sec[
i], seg[
i]);
158 template <
typename T>
160 if (count > 0 && flag !=
seek)
166 F.seekg(count *
sizeof(T), std::ios_base::cur);
169 F.read((
char*) p, count *
sizeof(T));
180 template <
typename T>
186 template <
typename T>
191 template <
typename T>
193 std::vector<T> vec(count);
202 template <
typename T>
207 F.write((
const char*) p, nb_elements * (
sizeof(T)));
213 template <
typename T>
218 bool to_transpose =
false) {
222 T* temp_cpy =
new T[nb_elements * nb_lines];
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];
231 memcpy(temp_cpy, p, nb_elements *
sizeof(T) * nb_lines);
235 F.write((
const char*) temp_cpy, nb_elements *
sizeof(T) * nb_lines);
240 template <
typename T>
253 F <<
"chkpnt " <<
chkpnt++ <<
"\n";
const int max_line_length
Encapsulate low-level reading of coreneuron input data files.
bool fail() const
Is the file not open.
void record_checkpoint()
Record current chkpnt state.
void read_mapping_count(int *gid, int *nsec, int *nseg, int *nseclist)
Parse a neuron mapping count entries.
int read_mapping_info(T *mapinfo)
Parse a neuron section segment mapping.
void close()
Close currently open file.
std::fstream F
File stream associated with reader.
static bool file_exist(const std::string &filename)
int chkpnt
Current checkpoint number state.
T * parse_array(T *p, size_t count, parse_action flag)
Generic parse function for an array of fixed length.
void read_checkpoint_assert()
Read a checkpoint line, bump our chkpnt counter, and assert equality.
int read_int()
Parse a single integer entry.
void checkpoint(int c)
Explicitly override chkpnt state.
parse_action
Defined flag values for parse_array()
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
int stored_chkpnt
last "remembered" checkpoint number state.
FileHandler & operator<<(const T &scalar)
bool eof()
nothing more to read
void write_array(T *p, size_t nb_elements)
Write an 1D array.
void open(const std::string &filename, std::ios::openmode mode=std::ios::in)
Preserving chkpnt state, move to a new file.
T * read_array(size_t count)
Allocate and read an integer array of fixed length.
T * read_array(T *p, size_t count)
Read an integer array of fixed length.
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.
FileHandler & operator=(const FileHandler &)=delete
int checkpoint() const
Query chkpnt state.
std::vector< T > read_vector(size_t count)
#define nrn_assert(x)
assert()-like macro, independent of NDEBUG status
void read_mapping_cell_count(int *count)
Reads number of cells in parsing file.
std::ios_base::openmode current_mode
File open mode (not stored in fstream)
void restore_checkpoint()
Restored last recorded chkpnt state.