IODA
Fill.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 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 /*! \addtogroup ioda_cxx_variable
9  *
10  * @{
11  * \file Fill.h
12  * \brief Fill value getters and setters
13  */
14 
15 #include <cstdint> // uint64_t
16 #include <memory> // weak_ptr
17 #include <string>
18 
19 #include "ioda/defs.h"
20 
21 namespace ioda {
22 namespace detail {
23 class Group_Base;
24 
25 /**
26  * \brief Container used to store and manipulate fill values.
27  * \ingroup ioda_cxx_variable
28  *
29  * When reading a fill value, first always check that the fill value is set (set_ == true).
30  * Then, check the type of fill value (string, or a fundamental data type),
31  * and then only read the correct field.
32  *
33  * When writing a fill value, use the assignFillValue convenience function.
34  **/
37  uint64_t ui64; // Kept for compatability with HH
38  const char* cp;
39  long long ll;
40  unsigned long long ull;
41  long double ld;
42  long l;
43  unsigned long ul;
44  double d;
45  float f;
46  int i;
47  unsigned int ui;
48  short s;
49  unsigned short us;
50  char c;
51  unsigned char uc;
52  } fillValue_ = {0};
53  std::string stringFillValue_;
54  bool set_ = false;
55  bool isString_ = false;
56  FillValueUnion_t finalize() const;
57 
58  // Type fillValue_type; // Possible TODO - store this and make sure it matches?
59 };
60 
61 /// \ingroup ioda_cxx_variable
62 template <class T>
64  if (sizeof(T) > sizeof(uint64_t)) {
65  long double* ldp = &(data.fillValue_.ld);
66  return *(T*)(ldp); // NOLINT: compilers may complain if I try to use a reinterpret_cast.
67  } else {
68  uint64_t* up = &(data.fillValue_.ui64);
69  return *(T*)(up); // NOLINT: see above comment
70  }
71 }
72 
73 /// \ingroup ioda_cxx_variable
74 template <>
75 inline std::string getFillValue(FillValueData_t& data) {
76  return data.stringFillValue_;
77 }
78 
79 /// \ingroup ioda_cxx_variable
80 template <class T>
81 void assignFillValue(FillValueData_t& data, T val) {
82  if (sizeof(T) > sizeof(uint64_t))
83  memcpy(&(data.fillValue_.ld), &val, sizeof(val));
84  else
85  memcpy(&(data.fillValue_.ui64), &val, sizeof(val));
86  data.stringFillValue_ = "";
87  data.set_ = true;
88  data.isString_ = false;
89 }
90 /// \ingroup ioda_cxx_variable
91 template <>
92 inline void assignFillValue<std::string>(FillValueData_t& data, std::string val) {
93  data.stringFillValue_ = val;
94  data.set_ = true;
95  data.isString_ = true;
96 }
97 } // namespace detail
98 } // namespace ioda
99 
100 /// @}
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
T getFillValue(FillValueData_t &data)
Definition: Fill.h:63
void assignFillValue(FillValueData_t &data, T val)
Definition: Fill.h:81
Container used to store and manipulate fill values.
Definition: Fill.h:35
std::string stringFillValue_
Definition: Fill.h:53
union ioda::detail::FillValueData_t::FillValueUnion_t fillValue_