libwreport  3.29
subset.h
1 #ifndef WREPORT_SUBSET_H
2 #define WREPORT_SUBSET_H
3 
4 #include <wreport/var.h>
5 #include <vector>
6 
7 namespace wreport {
8 
12 class Subset : public std::vector<Var>
13 {
14 public:
16  const Tables* tables;
17 
24  Subset(const Tables& tables);
25  Subset(const Subset& subset) = default;
26  Subset(Subset&& subset)
27  : std::vector<Var>(move(subset)), tables(subset.tables)
28  {
29  }
30  ~Subset();
31  Subset& operator=(const Subset&) = default;
32  Subset& operator=(Subset&& s);
33 
35  void store_variable(const Var& var);
36 
38  void store_variable(Var&& var);
39 
49  void store_variable(Varcode code, const Var& var);
50 
59  void store_variable_i(Varcode code, int val);
60 
69  void store_variable_d(Varcode code, double val);
70 
79  void store_variable_c(Varcode code, const char* val);
80 
83 
86 
99  int append_dpb(Varcode ccode, unsigned size, Varcode attr);
100 
109  void append_fixed_dpb(Varcode ccode, int size);
110 
112  void print(FILE* out) const;
113 
125  unsigned diff(const Subset& s2) const;
126 
127 protected:
129  void append_c_with_dpb(Varcode ccode, int count, const char* bitmap);
130 };
131 
132 }
133 #endif
wreport::Subset::store_variable
void store_variable(const Var &var)
Store a decoded variable in the message, to be encoded later.
wreport::Subset::print
void print(FILE *out) const
Dump the contents of this subset.
wreport::Tables
Collection of BUFR/CREX tables used to work on a bulletin.
Definition: tables.h:15
wreport::Subset::append_fixed_dpb
void append_fixed_dpb(Varcode ccode, int size)
Append a fixed-size data present bitmap with all zeros.
wreport::Subset::append_dpb
int append_dpb(Varcode ccode, unsigned size, Varcode attr)
Compute and append a data present bitmap.
wreport::Subset::diff
unsigned diff(const Subset &s2) const
Compute the differences between two wreport subsets.
wreport::Subset
Represent a BUFR/CREX data subset as a list of decoded variables.
Definition: subset.h:13
wreport::_Varinfo
Information about a variable.
Definition: varinfo.h:137
wreport::Subset::tables
const Tables * tables
Tables used for creating variables in this subset.
Definition: subset.h:16
wreport::Subset::Subset
Subset(const Tables &tables)
Create a new BUFR/CREX subset.
wreport::Subset::store_variable_undef
void store_variable_undef(Varcode code)
Store a new, undefined variable in the message.
wreport::Varcode
uint16_t Varcode
Holds the WMO variable code of a variable.
Definition: fwd.h:12
wreport::Subset::append_c_with_dpb
void append_c_with_dpb(Varcode ccode, int count, const char *bitmap)
Append a C operator with a count long bitmap.
wreport::Var
A physical variable.
Definition: var.h:25
wreport::Subset::store_variable_undef
void store_variable_undef(Varinfo info)
Store a new, undefined variable in the message.
wreport::Subset::store_variable
void store_variable(Var &&var)
Store a decoded variable in the message, to be encoded later.
wreport::Subset::store_variable
void store_variable(Varcode code, const Var &var)
Store a new variable in the message, copying it from an already existing variable.
wreport::Subset::store_variable_c
void store_variable_c(Varcode code, const char *val)
Store a new variable in the message, providing its value as a string.
wreport::Subset::store_variable_i
void store_variable_i(Varcode code, int val)
Store a new variable in the message, providing its value as an int.
wreport
String functions.
Definition: benchmark.h:13
wreport::Subset::store_variable_d
void store_variable_d(Varcode code, double val)
Store a new variable in the message, providing its value as a double.