IODA
FillPolicy.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 FillPolicy.h
12  * \brief Default fill values for ioda files.
13  */
14 
15 #include <gsl/gsl-lite.hpp>
16 #include <memory>
17 #include <string>
18 
19 #include "ioda/Variables/Fill.h"
20 #include "ioda/Exception.h"
21 #include "ioda/defs.h"
22 
23 namespace ioda {
24 
25 /// \brief This option describes the default fill values that will be used if the user does not
26 /// manually specify a fill value.
27 /// \ingroup ioda_cxx_variable
28 enum class FillValuePolicy {
29  HDF5, ///< Set all fill values to zero or null strings.
30  NETCDF4 ///< Use NetCDF4 default fill values. This is the default option for ioda files.
31 };
32 
33 /// \brief Holds the different default fill values used in ioda files produced by different
34 /// backends.
35 /// \ingroup ioda_cxx_variable
36 /// \details This matters for netCDF4 vs HDF5-produced files. They have different default
37 /// fill values.
38 namespace FillValuePolicies {
39 template <class T>
41  return 0;
42 }
43 template <>
44 inline std::string HDF5_default<std::string>() {
45  return std::string();
46 }
47 
48 /// \ingroup ioda_cxx_variable
49 /// \see netcdf.h, starting around line 62, for these values
50 /// netcdf uses "ints" and "shorts", but these are all defined as fixed-width types.
51 template <class T>
53  return 0;
54 }
55 template <>
56 inline std::string netCDF4_default<std::string>() {
57  return std::string();
58 }
59 template <>
60 inline signed char netCDF4_default<signed char>() {
61  return static_cast<signed char>(-127);
62 }
63 template <>
64 inline char netCDF4_default<char>() {
65  return static_cast<char>(0);
66 }
67 template <>
68 inline int16_t netCDF4_default<int16_t>() {
69  return static_cast<int16_t>(-32767);
70 }
71 template <>
72 inline int32_t netCDF4_default<int32_t>() {
73  return -2147483647;
74 }
75 template <>
76 inline float netCDF4_default<float>() {
77  return 9.9692099683868690e+36f;
78 }
79 template <>
80 inline double netCDF4_default<double>() {
81  return 9.9692099683868690e+36;
82 }
83 template <>
84 inline unsigned char netCDF4_default<unsigned char>() {
85  return static_cast<unsigned char>(255);
86 }
87 template <>
88 inline uint16_t netCDF4_default<uint16_t>() {
89  return static_cast<unsigned short>(65535);
90 }
91 template <>
92 inline uint32_t netCDF4_default<uint32_t>() {
93  return 4294967295U;
94 }
95 template <>
96 inline int64_t netCDF4_default<int64_t>() {
97  return -9223372036854775806LL;
98 }
99 template <>
100 inline uint64_t netCDF4_default<uint64_t>() {
101  return 18446744073709551614ULL;
102 }
103 
104 /// \brief Applies the fill value policy. This sets default fill values when fill values are not
105 /// already provided.
106 /// \ingroup ioda_cxx_variable
107 template <class T>
109  if (fvd.set_) return; // If already set, then do nothing.
110  if (pol == FillValuePolicy::HDF5)
111  detail::assignFillValue(fvd, HDF5_default<T>());
112  else if (pol == FillValuePolicy::NETCDF4)
113  detail::assignFillValue(fvd, netCDF4_default<T>());
114  else
115  throw Exception("Unsupported fill value policy.", ioda_Here());
116 }
117 
118 
119 
120 } // namespace FillValuePolicies
121 } // namespace ioda
122 
123 /// @}
124 
IODA's error system.
Fill value getters and setters.
The ioda exception class.
Definition: Exception.h:54
Common preprocessor definitions used throughout IODA.
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
Definition: FillPolicy.h:28
void applyFillValuePolicy(FillValuePolicy pol, detail::FillValueData_t &fvd)
Applies the fill value policy. This sets default fill values when fill values are not already provide...
Definition: FillPolicy.h:108
void assignFillValue(FillValueData_t &data, T val)
Definition: Fill.h:81
@ HDF5
Set all fill values to zero or null strings.
@ NETCDF4
Use NetCDF4 default fill values. This is the default option for ioda files.
char netCDF4_default< char >()
Definition: FillPolicy.h:64
uint32_t netCDF4_default< uint32_t >()
Definition: FillPolicy.h:92
int16_t netCDF4_default< int16_t >()
Definition: FillPolicy.h:68
uint16_t netCDF4_default< uint16_t >()
Definition: FillPolicy.h:88
unsigned char netCDF4_default< unsigned char >()
Definition: FillPolicy.h:84
double netCDF4_default< double >()
Definition: FillPolicy.h:80
signed char netCDF4_default< signed char >()
Definition: FillPolicy.h:60
int64_t netCDF4_default< int64_t >()
Definition: FillPolicy.h:96
float netCDF4_default< float >()
Definition: FillPolicy.h:76
uint64_t netCDF4_default< uint64_t >()
Definition: FillPolicy.h:100
int32_t netCDF4_default< int32_t >()
Definition: FillPolicy.h:72
#define ioda_Here()
Container used to store and manipulate fill values.
Definition: Fill.h:35