CoreNEURON
binary_report_handler.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 
10 #ifdef ENABLE_BIN_REPORTS
11 #include "reportinglib/Records.h"
12 #endif // ENABLE_BIN_REPORTS
13 
14 namespace coreneuron {
15 
17  double dt,
18  double tstop,
19  double delay) {
20 #ifdef ENABLE_BIN_REPORTS
21  records_set_atomic_step(dt);
22 #endif // ENABLE_BIN_REPORTS
23  ReportHandler::create_report(config, dt, tstop, delay);
24 }
25 
26 #ifdef ENABLE_BIN_REPORTS
27 static void create_soma_extra(const CellMapping& mapping, std::array<int, 5>& extra) {
28  extra = {1, 0, 0, 0, 0};
29  /* report extra "mask" all infos not written in report: here only soma count is reported */
30  extra[1] = mapping.get_seclist_segment_count("soma");
31 }
32 
33 static void create_compartment_extra(const CellMapping& mapping, std::array<int, 5>& extra) {
34  extra[1] = mapping.get_seclist_section_count("soma");
35  extra[2] = mapping.get_seclist_section_count("axon");
36  extra[3] = mapping.get_seclist_section_count("dend");
37  extra[4] = mapping.get_seclist_section_count("apic");
38  extra[0] = std::accumulate(extra.begin() + 1, extra.end(), 0);
39 }
40 
41 static void create_custom_extra(const CellMapping& mapping, std::array<int, 5>& extra) {
42  extra = {1, 0, 0, 0, 1};
43  extra[1] = mapping.get_seclist_section_count("soma");
44  // extra[2] and extra[3]
45  extra[4] = mapping.get_seclist_section_count("apic");
46  extra[0] = std::accumulate(extra.begin() + 1, extra.end(), 0);
47 }
48 
49 void BinaryReportHandler::register_section_report(const NrnThread& nt,
50  const ReportConfiguration& config,
51  const VarsToReport& vars_to_report,
52  bool is_soma_target) {
53  create_extra_func create_extra = is_soma_target ? create_soma_extra : create_compartment_extra;
54  register_report(nt, config, vars_to_report, create_extra);
55 }
56 
57 void BinaryReportHandler::register_custom_report(const NrnThread& nt,
58  const ReportConfiguration& config,
59  const VarsToReport& vars_to_report) {
60  create_extra_func create_extra = create_custom_extra;
61  register_report(nt, config, vars_to_report, create_extra);
62 }
63 
64 void BinaryReportHandler::register_report(const NrnThread& nt,
65  const ReportConfiguration& config,
66  const VarsToReport& vars_to_report,
67  create_extra_func& create_extra) {
68  int sizemapping = 1;
69  int extramapping = 5;
70  std::array<int, 1> mapping = {0};
71  std::array<int, 5> extra;
72  for (const auto& var: vars_to_report) {
73  int gid = var.first;
74  auto& vars = var.second;
75  if (vars.empty()) {
76  continue;
77  }
78  const auto* mapinfo = static_cast<NrnThreadMappingInfo*>(nt.mapping);
79  const CellMapping* m = mapinfo->get_cell_mapping(gid);
80  extra[0] = vars.size();
81  create_extra(*m, extra);
82  records_add_report(config.output_path.data(),
83  gid,
84  gid,
85  gid,
86  config.start,
87  config.stop,
88  config.report_dt,
89  sizemapping,
90  config.type_str.data(),
91  extramapping,
92  config.unit.data());
93 
94  records_set_report_max_buffer_size_hint(config.output_path.data(), config.buffer_size);
95  records_extra_mapping(config.output_path.data(), gid, 5, extra.data());
96  for (const auto& var: vars) {
97  mapping[0] = var.id;
98  records_add_var_with_mapping(
99  config.output_path.data(), gid, var.var_value, sizemapping, mapping.data());
100  }
101  }
102 }
103 #endif // ENABLE_BIN_REPORTS
104 
105 } // Namespace coreneuron
coreneuron::CellMapping
Compartment mapping information for a cell.
Definition: nrnsection_mapping.hpp:69
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::ReportConfiguration
Definition: nrnreport.hpp:85
coreneuron::dt
double dt
Definition: register_mech.cpp:22
coreneuron::CellMapping::get_seclist_segment_count
size_t get_seclist_segment_count(const std::string &name) const
return segment count for specific section list with given name
Definition: nrnsection_mapping.hpp:122
coreneuron::BinaryReportHandler::create_report
void create_report(ReportConfiguration &config, double dt, double tstop, double delay) override
Definition: binary_report_handler.cpp:16
binary_report_handler.hpp
coreneuron::ReportHandler::create_report
virtual void create_report(ReportConfiguration &config, double dt, double tstop, double delay)
Definition: report_handler.cpp:36