OOPS
variables_f.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #include <stdio.h>
9 #include <string.h>
10 #include <string>
11 
12 #include "eckit/exception/Exceptions.h"
13 
14 #include "oops/base/Variables.h"
15 #include "oops/base/variables_f.h"
16 
17 namespace oops {
18 
19 // -----------------------------------------------------------------------------
21  oops::Variables* vars = new oops::Variables();
22  return vars;
23 }
24 
25 // -----------------------------------------------------------------------------
27  ASSERT(vars != nullptr);
28  delete vars;
29 }
30 
31 // -----------------------------------------------------------------------------
32 void variables_push_back_f(oops::Variables & vars, const char * vname) {
33  vars.push_back(std::string(vname));
34 }
35 
36 // -----------------------------------------------------------------------------
37 size_t variables_size_f(const oops::Variables & vars) {
38  return vars.size();
39 }
40 
41 // -----------------------------------------------------------------------------
42 void variables_getvariablelength_f(const oops::Variables & vars, const size_t & jj,
43  size_t & lcvarname) {
44  std::string varname = vars[jj];
45  lcvarname = varname.size();
46 }
47 
48 // -----------------------------------------------------------------------------
49 void variables_getvariable_f(const oops::Variables & vars, const size_t & jj,
50  size_t & lcvarname, const size_t & lfvarname,
51  char * cvarname) {
52  std::string varname = vars[jj];
53  lcvarname = varname.size();
54  /* lfvarname is the length of the string in Fortran, which must be allocated
55  by the Fortran calling routine. In order to pass varname to Fortran it is
56  first rendered as a c character array called cvarname, which according to
57  the C++ standard, must terminate with a null character. So, the length
58  of cvarname and the corresponding Fortran string must be at least one
59  character longer than the length of the string in C++, namely lcvarname,
60  to avoid buffer overrun.
61  */
62  ASSERT(lfvarname > lcvarname);
63  snprintf(cvarname, lcvarname+1, "%s", varname.c_str());
64 }
65 
66 // -----------------------------------------------------------------------------
67 bool variables_has_f(const oops::Variables & vars, const char * vname) {
68  return vars.has(std::string(vname));
69 }
70 
71 } // namespace oops
bool has(const std::string &) const
size_t size() const
void push_back(const std::string &)
The namespace for the main oops code.
size_t variables_size_f(const oops::Variables &vars)
Definition: variables_f.cc:37
void variables_getvariablelength_f(const oops::Variables &vars, const size_t &jj, size_t &lcvarname)
Definition: variables_f.cc:42
void variables_getvariable_f(const oops::Variables &vars, const size_t &jj, size_t &lcvarname, const size_t &lfvarname, char *cvarname)
Definition: variables_f.cc:49
void variables_push_back_f(oops::Variables &vars, const char *vname)
Definition: variables_f.cc:32
oops::Variables * variables_empty_ctor_f()
Definition: variables_f.cc:20
void variables_destruct_f(oops::Variables *vars)
Definition: variables_f.cc:26
bool variables_has_f(const oops::Variables &vars, const char *vname)
Definition: variables_f.cc:67