Go to the documentation of this file.
22 return (stat(filename.c_str(), &buffer) == 0);
26 nrn_assert((mode & (std::ios::in | std::ios::out)));
28 F.open(filename, mode | std::ios::binary);
30 std::cerr <<
"cannot open file '" << filename <<
"'" << std::endl;
60 F.getline(line_buf,
sizeof(line_buf));
64 int n_scan = sscanf(line_buf,
"%d", &
i);
73 F.getline(line_buf,
sizeof(line_buf));
77 int n_scan = sscanf(line_buf,
"%d %d %d %d", gid, nsec, nseg, nseclist);
88 F.getline(line_buf,
sizeof(line_buf));
92 int n_scan = sscanf(line_buf,
"chkpnt %d\n", &
i);
94 fprintf(stderr,
"no chkpnt line for %d\n",
chkpnt);
98 fprintf(stderr,
"file chkpnt %d != expected %d\n",
i,
chkpnt);
const int max_line_length
Encapsulate low-level reading of coreneuron input data files.
void read_mapping_count(int *gid, int *nsec, int *nseg, int *nseclist)
Parse a neuron mapping count entries.
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.
void read_checkpoint_assert()
Read a checkpoint line, bump our chkpnt counter, and assert equality.
int read_int()
Parse a single integer entry.
void check_bbcore_write_version(const char *)
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
bool eof()
nothing more to read
void open(const std::string &filename, std::ios::openmode mode=std::ios::in)
Preserving chkpnt state, move to a new file.
const char * bbcore_write_version
Project version information.
#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)