libwreport  3.29
varinfo.h
Go to the documentation of this file.
1 #ifndef WREPORT_VARINFO_H
2 #define WREPORT_VARINFO_H
3 
4 #include <cstdint>
5 #include <string>
6 #include <wreport/fwd.h>
7 
8 namespace wreport {
9 
58 typedef uint16_t Varcode;
59 
61 std::string varcode_format(Varcode code);
62 
66 #define WR_VAR(f, x, y) ((wreport::Varcode)( ((unsigned)(f)<<14) | ((unsigned)(x)<<8) | (unsigned)(y) ))
67 
74 #define WR_STRING_TO_VAR(str) ((wreport::Varcode)( \
75  (( ((str)[0] - '0')*10 + ((str)[1] - '0') ) << 8) | \
76  ( ((str)[2] - '0')*100 + ((str)[3] - '0')*10 + ((str)[4] - '0') ) \
77 ))
78 
80 #define WR_VAR_F(code) (((code) >> 14) & 0x3)
81 
83 #define WR_VAR_X(code) ((code) >> 8 & 0x3f)
84 
86 #define WR_VAR_Y(code) ((code) & 0xff)
87 
95 #define WR_VAR_FXY(code) WR_VAR_F(code), WR_VAR_X(code), WR_VAR_Y(code)
96 
107 Varcode varcode_parse(const char* desc);
108 
109 
111 enum class Vartype : unsigned
112 {
113  // Integer value
114  Integer,
115  // Floating point value
116  Decimal,
117  // String value
118  String,
119  // Opaque binary value
120  Binary,
121 };
122 
123 
125 const char* vartype_format(Vartype type);
126 
128 Vartype vartype_parse(const char* s);
129 
130 
136 struct _Varinfo
137 {
140 
143 
145  char desc[64];
146 
149  char unit[24];
150 
157  int scale;
158 
160  unsigned len;
161 
168  int bit_ref;
169 
171  unsigned bit_len;
172 
174  int imin;
175 
177  int imax;
178 
180  double dmin;
181 
183  double dmax;
184 
194  int encode_decimal(double fval) const;
195 
199  double round_decimal(double val) const;
200 
210  uint32_t encode_binary(double fval) const;
211 
221  double decode_decimal(int val) const;
222 
232  double decode_binary(uint32_t val) const;
233 
236  const char* desc,
237  const char* unit,
238  int scale=0, unsigned len=0,
239  int bit_ref=0, int bit_len=0);
240 
243  const char* desc,
244  const char* unit,
245  int scale=0, unsigned len=0);
246 
254  void set_string(Varcode code, const char* desc, unsigned len);
255 
263  void set_binary(Varcode code, const char* desc, unsigned bit_len);
264 
271 };
272 
273 
282 typedef const _Varinfo* Varinfo;
283 
284 }
285 #endif
wreport::vartype_parse
Vartype vartype_parse(const char *s)
Return a Vartype from its string description.
wreport::_Varinfo::set_string
void set_string(Varcode code, const char *desc, unsigned len)
Set all the fields to represent a string variable.
wreport::_Varinfo::set_binary
void set_binary(Varcode code, const char *desc, unsigned bit_len)
Set all the fields to represent an opaque binary variable.
wreport::_Varinfo::set_crex
void set_crex(Varcode code, const char *desc, const char *unit, int scale=0, unsigned len=0)
Set all the base Varinfo fields, then call compute_range.
wreport::_Varinfo::unit
char unit[24]
Measurement unit of the variable, using the units defined in WMO BUFR/CREX table B.
Definition: varinfo.h:149
wreport::_Varinfo::imax
int imax
Minimum unscaled decimal integer value the field can have.
Definition: varinfo.h:177
wreport::_Varinfo::dmax
double dmax
Maximum value the field can have.
Definition: varinfo.h:183
wreport::_Varinfo::decode_binary
double decode_binary(uint32_t val) const
Decode a double value from a decimal integer value using Varinfo binary encoding informations (bit_re...
wreport::Vartype
Vartype
Variable type.
Definition: varinfo.h:112
wreport::_Varinfo::scale
int scale
Scale of the variable, defining its decimal precision.
Definition: varinfo.h:157
wreport::_Varinfo::len
unsigned len
Length in digits of the variable encoded as a decimal integer.
Definition: varinfo.h:160
wreport::_Varinfo::round_decimal
double round_decimal(double val) const
Round val so that it only fits the significant digits given in scale.
wreport::_Varinfo
Information about a variable.
Definition: varinfo.h:137
wreport::Varcode
uint16_t Varcode
Holds the WMO variable code of a variable.
Definition: fwd.h:12
wreport::_Varinfo::desc
char desc[64]
Freeform variable description.
Definition: varinfo.h:145
wreport::Varinfo
const _Varinfo * Varinfo
Varinfo reference.
Definition: fwd.h:10
wreport::_Varinfo::dmin
double dmin
Minimum value the field can have.
Definition: varinfo.h:180
wreport::_Varinfo::imin
int imin
Minimum unscaled decimal integer value the field can have.
Definition: varinfo.h:174
wreport::_Varinfo::encode_binary
uint32_t encode_binary(double fval) const
Encode a double value into a positive integer value using Varinfo binary encoding informations (bit_r...
wreport::varcode_format
std::string varcode_format(Varcode code)
Format a varcode into a string.
wreport::_Varinfo::set_bufr
void set_bufr(Varcode code, const char *desc, const char *unit, int scale=0, unsigned len=0, int bit_ref=0, int bit_len=0)
Set all the base Varinfo fields, then call compute_range.
wreport::_Varinfo::code
Varcode code
Variable code, as in WMO BUFR/CREX table B.
Definition: varinfo.h:139
wreport::_Varinfo::bit_ref
int bit_ref
Binary reference value for the variable.
Definition: varinfo.h:168
wreport::_Varinfo::compute_range
void compute_range()
Compute the widest ranges for imin, imax, dmin and dmax that can fit any value that can be encoded bo...
wreport::_Varinfo::bit_len
unsigned bit_len
Length in bits of the variable when encoded as an unsigned binary value.
Definition: varinfo.h:171
wreport::_Varinfo::decode_decimal
double decode_decimal(int val) const
Decode a double value from a decimal integer value using Varinfo decimal encoding informations (scale...
wreport::_Varinfo::type
Vartype type
Type of the value stored in the variable.
Definition: varinfo.h:142
wreport::vartype_format
const char * vartype_format(Vartype type)
Return a string description of a Vartype.
wreport::varcode_parse
Varcode varcode_parse(const char *desc)
Convert a FXXYYY string descriptor code into its short integer representation.
wreport
String functions.
Definition: benchmark.h:13
wreport::_Varinfo::encode_decimal
int encode_decimal(double fval) const
Encode a double value into a decimal integer value using Varinfo decimal encoding informations (scale...