CoreNEURON
report_configuration_parser.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 <algorithm>
10 #include <cstdio>
11 #include <cstdlib>
12 #include <cstring>
13 #include <fstream>
14 #include <iostream>
15 #include <limits>
16 #include <sstream>
17 #include <string>
18 #include <vector>
19 
25 
26 namespace coreneuron {
27 
28 
29 /*
30  * Split filter comma separated strings ("mech.var_name") into mech_name and var_name
31  */
32 void parse_filter_string(const std::string& filter, ReportConfiguration& config) {
33  std::vector<std::string> mechanisms;
34  std::stringstream ss(filter);
35  std::string mechanism;
36  // Multiple report variables are separated by `,`
37  while (getline(ss, mechanism, ',')) {
38  mechanisms.push_back(mechanism);
39 
40  // Split mechanism name and corresponding reporting variable
41  std::string mech_name;
42  std::string var_name;
43  std::istringstream iss(mechanism);
44  std::getline(iss, mech_name, '.');
45  std::getline(iss, var_name, '.');
46  if (var_name.empty()) {
47  var_name = "i";
48  }
49  config.mech_names.emplace_back(mech_name);
50  config.var_names.emplace_back(var_name);
51  if (mech_name == "i_membrane") {
52  nrn_use_fast_imem = true;
53  }
54  }
55 }
56 
58  report.type = report_type;
59  switch (report.target_type) {
61  report.section_type = All;
62  report.section_all_compartments = true;
63  break;
64  case TargetType::Cell:
65  report.section_type = Cell;
66  report.section_all_compartments = false;
67  break;
69  report.section_type = Soma;
70  report.section_all_compartments = false;
71  break;
73  report.section_type = Soma;
74  report.section_all_compartments = true;
75  break;
77  report.section_type = Axon;
78  report.section_all_compartments = false;
79  break;
81  report.section_type = Axon;
82  report.section_all_compartments = true;
83  break;
85  report.section_type = Dendrite;
86  report.section_all_compartments = false;
87  break;
89  report.section_type = Dendrite;
90  report.section_all_compartments = true;
91  break;
93  report.section_type = Apical;
94  report.section_all_compartments = false;
95  break;
97  report.section_type = Apical;
98  report.section_all_compartments = true;
99  break;
100  default:
101  std::cerr << "Report error: unsupported target type" << std::endl;
102  nrn_abort(1);
103  }
104 }
105 
106 std::vector<ReportConfiguration> create_report_configurations(const std::string& conf_file,
107  const std::string& output_dir,
108  SpikesInfo& spikes_info) {
109  std::string report_on;
110  int target;
111  std::ifstream report_conf(conf_file);
112 
113  int num_reports = 0;
114  report_conf >> num_reports;
115  std::vector<ReportConfiguration> reports(num_reports);
116  for (auto& report: reports) {
117  report.buffer_size = 4; // default size to 4 Mb
118 
119  report_conf >> report.name >> report.target_name >> report.type_str >> report_on >>
120  report.unit >> report.format >> target >> report.report_dt >> report.start >>
121  report.stop >> report.num_gids >> report.buffer_size;
122 
123  report.target_type = static_cast<TargetType>(target);
124  std::transform(report.type_str.begin(),
125  report.type_str.end(),
126  report.type_str.begin(),
127  [](unsigned char c) { return std::tolower(c); });
128  report.output_path = output_dir + "/" + report.name;
129  ReportType report_type;
130  if (report.type_str == "compartment") {
131  report_type = SectionReport;
132  if (report_on == "i_membrane") {
133  nrn_use_fast_imem = true;
134  report_type = IMembraneReport;
135  }
136  } else if (report.type_str == "synapse") {
137  report_type = SynapseReport;
138  } else if (report.type_str == "summation") {
139  report_type = SummationReport;
140  } else {
141  std::cerr << "Report error: unsupported type " << report.type_str << std::endl;
142  nrn_abort(1);
143  }
144  register_target_type(report, report_type);
145  if (report.type == SynapseReport || report.type == SummationReport) {
146  parse_filter_string(report_on, report);
147  }
148  if (report.num_gids) {
149  report.target.resize(report.num_gids);
150  report_conf.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
151  report_conf.read(reinterpret_cast<char*>(report.target.data()),
152  report.num_gids * sizeof(int));
153  // extra new line: skip
154  report_conf.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
155  }
156  }
157  // read population information for spike report
158  int num_populations;
159  std::string spikes_population_name;
160  int spikes_population_offset;
161  if (report_conf.peek() == '\n') {
162  // skip newline and move forward to spike reports
163  report_conf.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
164  }
165  if (isdigit(report_conf.peek())) {
166  report_conf >> num_populations;
167  } else {
168  // support old format: one single line "All"
169  num_populations = 1;
170  }
171  for (int i = 0; i < num_populations; i++) {
172  if (!(report_conf >> spikes_population_name >> spikes_population_offset)) {
173  // support old format: one single line "All"
174  report_conf >> spikes_population_name;
175  spikes_population_offset = 0;
176  }
177  spikes_info.population_info.emplace_back(
178  std::make_pair(spikes_population_name, spikes_population_offset));
179  }
180  report_conf >> spikes_info.file_name;
181 
182  return reports;
183 }
184 } // namespace coreneuron
coreneuron::SummationReport
Definition: nrnreport.hpp:28
coreneuron::ReportType
ReportType
Definition: nrnreport.hpp:73
coreneuron::ReportConfiguration::section_type
SectionType section_type
Definition: nrnreport.hpp:97
coreneuron::TargetType::SectionAxon
@ SectionAxon
utils.hpp
coreneuron::TargetType::SectionDendrite
@ SectionDendrite
coreneuron::ReportConfiguration::type
ReportType type
Definition: nrnreport.hpp:96
coreneuron::TargetType::SectionSoma
@ SectionSoma
coreneuron::TargetType::SectionApicalAll
@ SectionApicalAll
coreneuron::Axon
@ Axon
Definition: nrnreport.hpp:83
coreneuron::nrn_use_fast_imem
bool nrn_use_fast_imem
Definition: fast_imem.cpp:19
coreneuron::TargetType::SectionApical
@ SectionApical
coreneuron::SynapseReport
@ SynapseReport
Definition: nrnreport.hpp:76
coreneuron::Cell
@ Cell
Definition: nrnreport.hpp:83
coreneuron::SummationReport
@ SummationReport
Definition: nrnreport.hpp:79
coreneuron::mechanism
static const char * mechanism[]
Definition: capac.cpp:22
coreneuron::register_target_type
void register_target_type(ReportConfiguration &report, ReportType report_type)
Definition: report_configuration_parser.cpp:57
coreneuron::SpikesInfo::population_info
std::vector< std::pair< std::string, int > > population_info
Definition: nrnreport.hpp:44
coreneuron::ReportConfiguration::var_names
std::vector< std::string > var_names
Definition: nrnreport.hpp:90
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::Dendrite
@ Dendrite
Definition: nrnreport.hpp:83
fast_imem.hpp
coreneuron::All
@ All
Definition: nrnreport.hpp:83
coreneuron::i
int i
Definition: cellorder.cpp:485
coreneuron::IMembraneReport
@ IMembraneReport
Definition: nrnreport.hpp:77
coreneuron::ReportConfiguration
Definition: nrnreport.hpp:85
coreneuron::ReportConfiguration::section_all_compartments
bool section_all_compartments
Definition: nrnreport.hpp:98
mech_mapping.hpp
coreneuron::TargetType::SectionDendriteAll
@ SectionDendriteAll
coreneuron::ReportConfiguration::target_type
TargetType target_type
Definition: nrnreport.hpp:95
coreneuron::create_report_configurations
std::vector< ReportConfiguration > create_report_configurations(const std::string &filename, const std::string &output_dir, SpikesInfo &spikes_info)
Definition: report_configuration_parser.cpp:106
coreneuron::TargetType::SectionAxonAll
@ SectionAxonAll
coreneuron::TargetType::Compartment
@ Compartment
coreneuron::SectionReport
@ SectionReport
Definition: nrnreport.hpp:78
coreneuron::parse_filter_string
void parse_filter_string(const std::string &filter, ReportConfiguration &config)
Definition: report_configuration_parser.cpp:32
coreneuron::SpikesInfo::file_name
std::string file_name
Definition: nrnreport.hpp:43
coreneuron::nrn_abort
void nrn_abort(int errcode)
Definition: utils.cpp:13
coreneuron::ReportConfiguration::mech_names
std::vector< std::string > mech_names
Definition: nrnreport.hpp:89
coreneuron::Soma
@ Soma
Definition: nrnreport.hpp:83
nrnreport.hpp
coreneuron::SpikesInfo
Definition: nrnreport.hpp:42
coreneuron::TargetType
TargetType
Definition: nrnreport.hpp:59
coreneuron::TargetType::SectionSomaAll
@ SectionSomaAll
nrn_assert.h
coreneuron::Apical
@ Apical
Definition: nrnreport.hpp:83