CoreNEURON
mk_mech.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 <cstring>
10 #include <map>
11 #include <iostream>
12 #include <fstream>
13 #include <sstream>
14 
15 #include "coreneuron/nrnconf.h"
25 
26 static char banner[] = "Duke, Yale, and the BlueBrain Project -- Copyright 1984-2020";
27 
28 namespace coreneuron {
29 extern int nrn_nobanner_;
30 
31 // NB: this should go away
32 extern std::string cnrn_version();
33 std::map<std::string, int> mech2type;
34 
35 extern "C" {
36 void (*nrn2core_mkmech_info_)(std::ostream&);
37 }
38 static void mk_mech();
39 static void mk_mech(std::istream&);
40 
41 /// Read meta data about the mechanisms and allocate corresponding mechanism management data
42 /// structures
43 void mk_mech(const char* datpath) {
44  if (corenrn_embedded) {
45  // we are embedded in NEURON
46  mk_mech();
47  return;
48  }
49  {
50  std::string fname = std::string(datpath) + "/bbcore_mech.dat";
51  std::ifstream fs(fname);
52 
53  if (!fs.good()) {
54  fprintf(stderr,
55  "Error: couldn't find bbcore_mech.dat file in the dataset directory \n");
56  fprintf(stderr,
57  " Make sure to pass full directory path of dataset using -d DIR or "
58  "--datpath=DIR \n");
59  }
60 
61  nrn_assert(fs.good());
62  mk_mech(fs);
63  fs.close();
64  }
65 }
66 
67 // we are embedded in NEURON, get info as stringstream from nrnbbcore_write.cpp
68 static void mk_mech() {
69  static bool already_called = false;
70  if (already_called) {
71  return;
72  }
73  std::stringstream ss;
75  (*nrn2core_mkmech_info_)(ss);
76  mk_mech(ss);
77  already_called = true;
78 }
79 
80 static void mk_mech(std::istream& s) {
81  char version[256];
82  s >> version;
84 
85  // printf("reading %s\n", fname);
86  int n = 0;
87  nrn_assert(s >> n);
88 
89  /// Allocate space for mechanism related data structures
90  alloc_mech(n);
91 
92  /// Read all the mechanisms and their meta data
93  for (int i = 2; i < n; ++i) {
94  char mname[100];
95  int type = 0, pnttype = 0, is_art = 0, is_ion = 0, dsize = 0, pdsize = 0;
96  nrn_assert(s >> mname >> type >> pnttype >> is_art >> is_ion >> dsize >> pdsize);
97  nrn_assert(i == type);
98 #ifdef DEBUG
99  printf("%s %d %d %d %d %d %d\n", mname, type, pnttype, is_art, is_ion, dsize, pdsize);
100 #endif
101  std::string str(mname);
102  corenrn.get_memb_func(type).sym = (Symbol*) strdup(mname);
103  mech2type[str] = type;
104  corenrn.get_pnt_map()[type] = (char) pnttype;
105  corenrn.get_prop_param_size()[type] = dsize;
106  corenrn.get_prop_dparam_size()[type] = pdsize;
107  corenrn.get_is_artificial()[type] = is_art;
108  if (is_ion) {
109  double charge = 0.;
110  nrn_assert(s >> charge);
111  // strip the _ion
112  char iname[100];
113  strcpy(iname, mname);
114  iname[strlen(iname) - 4] = '\0';
115  // printf("%s %s\n", mname, iname);
116  ion_reg(iname, charge);
117  }
118  // printf("%s %d %d\n", mname, nrn_get_mechtype(mname), type);
119  }
120 
121  if (nrnmpi_myid < 1 && nrn_nobanner_ == 0) {
122  fprintf(stderr, " \n");
123  fprintf(stderr, " %s\n", banner);
124  fprintf(stderr, " Version : %s\n", cnrn_version().c_str());
125  fprintf(stderr, " \n");
126  fflush(stderr);
127  }
128  /* will have to put this back if any mod file refers to diam */
129  // register_mech(morph_mech, morph_alloc, (Pfri)0, (Pfri)0, (Pfri)0, (Pfri)0, -1, 0);
130 
131  /// Calling _reg functions for the default mechanisms from the file mech/cfile/cabvars.h
132  for (int i = 0; mechanism[i]; i++) {
133  (*mechanism[i])();
134  }
135 }
136 
137 /// Get mechanism type by the mechanism name
138 int nrn_get_mechtype(const char* name) {
139  auto mapit = mech2type.find(name);
140  if (mapit == mech2type.end())
141  return -1; // Could not find the mechanism
142  return mapit->second;
143 }
144 
145 const char* nrn_get_mechname(int type) {
146  for (const auto& item: mech2type) {
147  if (type == item.second) {
148  return item.first.c_str();
149  }
150  }
151  return nullptr;
152 }
153 } // namespace coreneuron
coreneuron::nrn_get_mechtype
int nrn_get_mechtype(const char *name)
Get mechanism type by the mechanism name.
Definition: mk_mech.cpp:138
coreneuron::alloc_mech
void alloc_mech(int memb_func_size_)
Definition: register_mech.cpp:86
cabvars.h
nrn2core_direct.h
eion.hpp
coreneuron::CoreNeuron::get_is_artificial
auto & get_is_artificial()
Definition: coreneuron.hpp:178
coreneuron::CoreNeuron::get_memb_func
auto & get_memb_func(size_t idx)
Definition: coreneuron.hpp:138
coreneuron::check_bbcore_write_version
void check_bbcore_write_version(const char *)
Definition: nrnoc_aux.cpp:128
coreneuron::ion_reg
void ion_reg(const char *, double)
coreneuron::nrn2core_mkmech_info_
void(* nrn2core_mkmech_info_)(std::ostream &)
Definition: mk_mech.cpp:36
coreneuron::mechanism
static const char * mechanism[]
Definition: capac.cpp:22
coreneuron.hpp
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::i
int i
Definition: cellorder.cpp:485
coreneuron::Symbol
char Symbol
Definition: nrnconf.h:25
nrniv_decl.h
coreneuron::CoreNeuron::get_prop_dparam_size
auto & get_prop_dparam_size()
Definition: coreneuron.hpp:170
register_mech.hpp
coreneuron::corenrn
CoreNeuron corenrn
Definition: multicore.cpp:53
membrane_definitions.h
nrnconf.h
coreneuron::nrn_get_mechname
const char * nrn_get_mechname(int type)
Definition: mk_mech.cpp:145
coreneuron::mk_mech
static void mk_mech()
Definition: mk_mech.cpp:68
coreneuron::CoreNeuron::get_pnt_map
auto & get_pnt_map()
Definition: coreneuron.hpp:146
multicore.hpp
corenrn_embedded
bool corenrn_embedded
--> Coreneuron
Definition: nrn_setup.cpp:46
coreneuron::CoreNeuron::get_prop_param_size
auto & get_prop_param_size()
Definition: coreneuron.hpp:166
coreneuron::nrn_nobanner_
int nrn_nobanner_
Declaring global corenrn_parameters object for this instance of CoreNeuron.
Definition: corenrn_parameters.cpp:269
coreneuron::nrnmpi_myid
int nrnmpi_myid
Definition: nrnmpi_def_cinc.cpp:11
coreneuron::version
Project version information.
Definition: config.h:26
coreneuron::mech2type
std::map< std::string, int > mech2type
Definition: mk_mech.cpp:33
nrn_assert
#define nrn_assert(x)
assert()-like macro, independent of NDEBUG status
Definition: nrn_assert.h:33
nrn_assert.h
banner
static char banner[]
Definition: mk_mech.cpp:26
coreneuron::cnrn_version
std::string cnrn_version()
Definition: main1.cpp:408