IODA
structs_c.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /// \file structs_c.h
9 /// \brief C wrappers for ioda classes and structures. Private header. Can have C++!
10 /// \ingroup ioda_c_api
11 
12 #include <string>
13 #include <vector>
14 
15 #include "ioda/C/String_c.h"
17 #include "ioda/Group.h"
18 
19 extern "C" {
20 struct ioda_group {
22 };
25 };
28 };
31 };
32 struct ioda_variable {
34 };
37 };
40 };
41 }
42 
43 inline ioda_string_ret_t* create_str_vector_c(const std::vector<std::string>& vdata) noexcept {
44  ioda_string_ret_t* res = nullptr;
45 
46  res = new ioda_string_ret_t;
47  if (!res) return NULL;
48 
49  res->n = vdata.size();
50 
51  res->strings = new char*[res->n];
52  if (!res->strings) goto hadError_Strings;
53  memset(res->strings, 0, sizeof(char*) * res->n);
54 
55  for (size_t i = 0; i < res->n; ++i) {
56  size_t slen = vdata[i].length(); // length of string without the ending null byte
57  res->strings[i] = new char[slen + 1];
58  if (!res->strings[i]) goto hadError_InnerStrings;
59 
60  std::copy_n(vdata[i].cbegin(), slen, res->strings[i]);
61  res->strings[i][slen] = '\0';
62  }
63 
64  return res;
65 
66 hadError_InnerStrings:
67  for (size_t i = 0; i < res->n; ++i)
68  if (res->strings[i]) delete res->strings[i];
69  // Fallthrough to hadError_Strings.
70 
71 hadError_Strings:
72  delete res;
73 
74  return nullptr;
75 }
Interfaces for ioda::Group and related classes.
C bindings .
C bindings interface to templated C++ ioda classes and functions.
This class represents attributes, which may be attached to both Variables and Groups.
Definition: Attribute.h:493
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
Variables store data!
Definition: Variable.h:680
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57
ioda::Attribute att
Definition: structs_c.h:30
ioda::Dimensions d
Definition: structs_c.h:36
ioda::Group g
Definition: structs_c.h:21
ioda::Has_Attributes atts
Definition: structs_c.h:24
ioda::Has_Variables vars
Definition: structs_c.h:27
Return type when arrays of strings are encountered.
Definition: String_c.h:24
char ** strings
Definition: String_c.h:26
ioda::VariableCreationParameters params
Definition: structs_c.h:39
ioda::Variable var
Definition: structs_c.h:33
ioda_string_ret_t * create_str_vector_c(const std::vector< std::string > &vdata) noexcept
Definition: structs_c.h:43