libwreport
3.29
|
Represent a BUFR/CREX data subset as a list of decoded variables. More...
#include <subset.h>
Public Member Functions | |
Subset (const Tables &tables) | |
Create a new BUFR/CREX subset. More... | |
Subset (const Subset &subset)=default | |
Subset (Subset &&subset) | |
Subset & | operator= (const Subset &)=default |
Subset & | operator= (Subset &&s) |
void | store_variable (const Var &var) |
Store a decoded variable in the message, to be encoded later. | |
void | store_variable (Var &&var) |
Store a decoded variable in the message, to be encoded later. | |
void | store_variable (Varcode code, const Var &var) |
Store a new variable in the message, copying it from an already existing variable. More... | |
void | store_variable_i (Varcode code, int val) |
Store a new variable in the message, providing its value as an int. More... | |
void | store_variable_d (Varcode code, double val) |
Store a new variable in the message, providing its value as a double. More... | |
void | store_variable_c (Varcode code, const char *val) |
Store a new variable in the message, providing its value as a string. More... | |
void | store_variable_undef (Varcode code) |
Store a new, undefined variable in the message. | |
void | store_variable_undef (Varinfo info) |
Store a new, undefined variable in the message. | |
int | append_dpb (Varcode ccode, unsigned size, Varcode attr) |
Compute and append a data present bitmap. More... | |
void | append_fixed_dpb (Varcode ccode, int size) |
Append a fixed-size data present bitmap with all zeros. More... | |
void | print (FILE *out) const |
Dump the contents of this subset. | |
unsigned | diff (const Subset &s2) const |
Compute the differences between two wreport subsets. More... | |
Data Fields | |
const Tables * | tables |
Tables used for creating variables in this subset. | |
Protected Member Functions | |
void | append_c_with_dpb (Varcode ccode, int count, const char *bitmap) |
Append a C operator with a count long bitmap. | |
Represent a BUFR/CREX data subset as a list of decoded variables.
wreport::Subset::Subset | ( | const Tables & | tables | ) |
Create a new BUFR/CREX subset.
btable | Reference to the B table to use to create variables. |
Compute and append a data present bitmap.
ccode | The C code that uses this bitmap |
size | The size of the bitmap |
attr | The code of the attribute that the bitmap will represent. See vartable.h |
void wreport::Subset::append_fixed_dpb | ( | Varcode | ccode, |
int | size | ||
) |
Append a fixed-size data present bitmap with all zeros.
ccode | The C code that uses this bitmap |
size | The size of the bitmap |
unsigned wreport::Subset::diff | ( | const Subset & | s2 | ) | const |
Compute the differences between two wreport subsets.
Details of the differences found will be formatted using the notes system (
s2 | The subset to compare with this one |
Store a new variable in the message, copying it from an already existing variable.
code | The Varcode of the variable to add. See varinfo.h |
var | The variable holding the value for the variable to add. |
void wreport::Subset::store_variable_c | ( | Varcode | code, |
const char * | val | ||
) |
Store a new variable in the message, providing its value as a string.
code | The Varcode of the variable to add. See vartable.h |
val | The value for the variable |
void wreport::Subset::store_variable_d | ( | Varcode | code, |
double | val | ||
) |
Store a new variable in the message, providing its value as a double.
code | The Varcode of the variable to add. See vartable.h |
val | The value for the variable |
void wreport::Subset::store_variable_i | ( | Varcode | code, |
int | val | ||
) |
Store a new variable in the message, providing its value as an int.
code | The Varcode of the variable to add. See vartable.h |
val | The value for the variable |