CoreNEURON
nrn_filehandler.cpp
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 #include <iostream>
11 #include "coreneuron/nrnconf.h"
12 
13 namespace coreneuron {
14 FileHandler::FileHandler(const std::string& filename)
15  : chkpnt(0)
16  , stored_chkpnt(0) {
17  this->open(filename);
18 }
19 
20 bool FileHandler::file_exist(const std::string& filename) {
21  struct stat buffer;
22  return (stat(filename.c_str(), &buffer) == 0);
23 }
24 
25 void FileHandler::open(const std::string& filename, std::ios::openmode mode) {
26  nrn_assert((mode & (std::ios::in | std::ios::out)));
27  close();
28  F.open(filename, mode | std::ios::binary);
29  if (!F.is_open()) {
30  std::cerr << "cannot open file '" << filename << "'" << std::endl;
31  }
32  nrn_assert(F.is_open());
33  current_mode = mode;
34  char version[256];
35  if (current_mode & std::ios::in) {
36  F.getline(version, sizeof(version));
37  nrn_assert(!F.fail());
39  }
40  if (current_mode & std::ios::out) {
41  F << bbcore_write_version << "\n";
42  }
43 }
44 
46  if (F.eof()) {
47  return true;
48  }
49  int a = F.get();
50  if (F.eof()) {
51  return true;
52  }
53  F.putback(a);
54  return false;
55 }
56 
58  char line_buf[max_line_length];
59 
60  F.getline(line_buf, sizeof(line_buf));
61  nrn_assert(!F.fail());
62 
63  int i;
64  int n_scan = sscanf(line_buf, "%d", &i);
65  nrn_assert(n_scan == 1);
66 
67  return i;
68 }
69 
70 void FileHandler::read_mapping_count(int* gid, int* nsec, int* nseg, int* nseclist) {
71  char line_buf[max_line_length];
72 
73  F.getline(line_buf, sizeof(line_buf));
74  nrn_assert(!F.fail());
75 
76  /** mapping file has extra strings, ignore those */
77  int n_scan = sscanf(line_buf, "%d %d %d %d", gid, nsec, nseg, nseclist);
78  nrn_assert(n_scan == 4);
79 }
80 
82  *count = read_int();
83 }
84 
86  char line_buf[max_line_length];
87 
88  F.getline(line_buf, sizeof(line_buf));
89  nrn_assert(!F.fail());
90 
91  int i;
92  int n_scan = sscanf(line_buf, "chkpnt %d\n", &i);
93  if (n_scan != 1) {
94  fprintf(stderr, "no chkpnt line for %d\n", chkpnt);
95  }
96  nrn_assert(n_scan == 1);
97  if (i != chkpnt) {
98  fprintf(stderr, "file chkpnt %d != expected %d\n", i, chkpnt);
99  }
100  nrn_assert(i == chkpnt);
101  ++chkpnt;
102 }
103 
105  F.close();
106 }
107 } // 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::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::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::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::check_bbcore_write_version
void check_bbcore_write_version(const char *)
Definition: nrnoc_aux.cpp:128
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::i
int i
Definition: cellorder.cpp:485
coreneuron::FileHandler::eof
bool eof()
nothing more to read
Definition: nrn_filehandler.cpp:45
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::bbcore_write_version
const char * bbcore_write_version
Definition: nrnoc_aux.cpp:24
coreneuron::FileHandler::FileHandler
FileHandler()
Definition: nrn_filehandler.hpp:50
nrnconf.h
coreneuron::version
Project version information.
Definition: config.h:26
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
coreneuron::FileHandler::current_mode
std::ios_base::openmode current_mode
File open mode (not stored in fstream)
Definition: nrn_filehandler.hpp:34
nrn_filehandler.hpp