libwreport  3.29
decoder.h
1 #ifndef WREPORT_BUFR_DECODER_H
2 #define WREPORT_BUFR_DECODER_H
3 
4 #include <wreport/var.h>
5 #include <wreport/bulletin.h>
6 #include <wreport/bulletin/interpreter.h>
7 #include <wreport/bufr/input.h>
8 
9 namespace wreport {
10 namespace bufr {
11 struct DispatchToSubsets;
12 
13 struct Decoder
14 {
17  /* Output decoded variables */
18  BufrBulletin& out;
22  bool conf_add_undef_attrs = false;
26  FILE* verbose_output = nullptr;
27 
28  Decoder(const std::string& buf, const char* fname, size_t offset, BufrBulletin& out);
29 
30  void read_options(const BufrCodecOptions& opts);
31 
32  void decode_sec1ed3();
33  void decode_sec1ed4();
34 
35  /* Decode the message header only */
36  void decode_header();
37 
38  /* Decode message data section after the header has been decoded */
39  void decode_data();
40 };
41 
43 {
46 
47  DecoderTarget(Input& in) : in(in) {}
48  virtual ~DecoderTarget() {}
49 
57  virtual const Subset& reference_subset() const = 0;
58 
62  virtual Varinfo lookup_info(unsigned pos) const = 0;
63 
71  virtual Var decode_uniform_b_value(Varinfo info) = 0;
72 
77  virtual const Var& decode_and_add_to_all(Varinfo info) = 0;
78 
79  virtual const Var& decode_and_add_bitmap(const Tables& tables, Varcode code, unsigned bitmap_size) = 0;
80 
85  virtual void decode_and_set_attribute(Varinfo info, unsigned pos) = 0;
86 
90  virtual void decode_and_add_b_value(Varinfo info) = 0;
91 
97 
103 
108  virtual int decode_c03_refval_override(unsigned bits) = 0;
109 
111  virtual void print_last_variable_added(FILE* out) = 0;
112 
114  virtual void print_last_attribute_added(FILE* out, Varcode code, unsigned pos) = 0;
115 };
116 
118 {
121 
123 
124  const Subset& reference_subset() const override;
125  Varinfo lookup_info(unsigned pos) const override;
127  const Var& decode_and_add_to_all(Varinfo info) override;
128  const Var& decode_and_add_bitmap(const Tables& tables, Varcode code, unsigned bitmap_size) override;
129  void decode_and_set_attribute(Varinfo info, unsigned pos) override;
130  void decode_and_add_b_value(Varinfo info) override;
133  int decode_c03_refval_override(unsigned bits) override;
134 
135  void print_last_variable_added(FILE* out) override;
136  void print_last_attribute_added(FILE* out, Varcode code, unsigned pos) override;
137 };
138 
140 {
143 
145  unsigned subset_count;
146 
148 
149  const Subset& reference_subset() const override;
150  Varinfo lookup_info(unsigned pos) const override;
152  const Var& decode_and_add_to_all(Varinfo info) override;
153  const Var& decode_and_add_bitmap(const Tables& tables, Varcode code, unsigned bitmap_size) override;
154  void decode_and_set_attribute(Varinfo info, unsigned pos) override;
155  void decode_and_add_b_value(Varinfo info) override;
158  int decode_c03_refval_override(unsigned bits) override;
159 
160  void print_last_variable_added(FILE* out) override;
161  void print_last_attribute_added(FILE* out, Varcode code, unsigned pos) override;
162 
163 protected:
164  void decode_b_value(Varinfo info, std::function<void(unsigned, Var&&)> dest);
165 };
166 
168 {
169  DecoderTarget& target;
170 
171  DataSectionDecoder(Bulletin& bulletin, DecoderTarget& target);
172 
176  void define_c03_refval_override(Varcode code) override;
177  void define_bitmap(unsigned bitmap_size) override;
178  void define_attribute(Varinfo info, unsigned pos) override;
179  void define_substituted_value(unsigned pos) override;
180  void define_variable(Varinfo info) override;
182  void define_raw_character_data(Varcode code) override;
183 };
184 
186 {
187 protected:
194  void print_lead(Varcode code);
195  void print_lead_continued();
196 
197 public:
198  FILE* out;
199 
206  unsigned indent = 0;
207 
209  unsigned indent_step = 2;
210 
211  VerboseDataSectionDecoder(Bulletin& bulletin, DecoderTarget& target, FILE* out);
212 
213  void b_variable(Varcode code) override;
214  void c_modifier(Varcode code, Opcodes& next) override;
215  void r_replication(Varcode code, Varcode delayed_code, const Opcodes& ops) override;
216  void run_d_expansion(Varcode code) override;
220  void define_c03_refval_override(Varcode code) override;
221  void define_bitmap(unsigned bitmap_size) override;
222  void define_attribute(Varinfo info, unsigned pos) override;
223  void define_substituted_value(unsigned pos) override;
224  void define_variable(Varinfo info) override;
226  void define_raw_character_data(Varcode code) override;
227 };
228 
229 }
230 }
231 #endif
wreport::bufr::CompressedDecoderTarget::decode_and_add_raw_character_data
void decode_and_add_raw_character_data(Varinfo info) override
Decode raw character data described by code and add it to the target subset(s)
wreport::bufr::DataSectionDecoder::define_raw_character_data
void define_raw_character_data(Varcode code) override
Request processing of C05yyy raw character data.
wreport::BufrBulletin
BUFR bulletin implementation.
Definition: bulletin.h:229
wreport::bufr::VerboseDataSectionDecoder::define_variable
void define_variable(Varinfo info) override
Request processing, according to info, of a data variable.
wreport::bufr::DataSectionDecoder::define_delayed_replication_factor
unsigned define_delayed_replication_factor(Varinfo info) override
Request processing, according to info, of a data variabile that is significant for controlling the en...
wreport::bufr::CompressedDecoderTarget::print_last_variable_added
void print_last_variable_added(FILE *out) override
Print the value(s) of the last variable(s) added to out.
wreport::bufr::DataSectionDecoder::define_c03_refval_override
void define_c03_refval_override(Varcode code) override
Request processing of a new value for the reference value of the given B code.
wreport::bufr::DataSectionDecoder::define_variable
void define_variable(Varinfo info) override
Request processing, according to info, of a data variable.
wreport::bufr::DataSectionDecoder
Definition: decoder.h:168
wreport::bufr::VerboseDataSectionDecoder::run_d_expansion
void run_d_expansion(Varcode code) override
Executes the expansion of code, which has been put on top of the opcode stack.
wreport::Tables
Collection of BUFR/CREX tables used to work on a bulletin.
Definition: tables.h:15
wreport::bufr::DataSectionDecoder::define_attribute
void define_attribute(Varinfo info, unsigned pos) override
Request processing of an attribute encoded with info, related to the variable as position pos in the ...
wreport::bufr::VerboseDataSectionDecoder::define_variable_with_associated_field
void define_variable_with_associated_field(Varinfo info) override
Request processing, according to info, of a data variable.
wreport::bufr::Decoder::in
Input in
Input data.
Definition: decoder.h:16
wreport::bufr::DecoderTarget::decode_and_add_to_all
virtual const Var & decode_and_add_to_all(Varinfo info)=0
Decode and add the same value to all datasets, return a reference to one of the variables added.
wreport::bufr::DecoderTarget::decode_uniform_b_value
virtual Var decode_uniform_b_value(Varinfo info)=0
Decode a value that must always be the same across all datasets.
wreport::bufr::UncompressedDecoderTarget::out
Subset & out
Subset where decoded variables go.
Definition: decoder.h:120
wreport::bufr::DataSectionDecoder::define_variable_with_associated_field
void define_variable_with_associated_field(Varinfo info) override
Request processing, according to info, of a data variable.
wreport::bufr::VerboseDataSectionDecoder::indent
unsigned indent
Current indent level.
Definition: decoder.h:206
wreport::bufr::UncompressedDecoderTarget::decode_and_add_raw_character_data
void decode_and_add_raw_character_data(Varinfo info) override
Decode raw character data described by code and add it to the target subset(s)
wreport::bufr::UncompressedDecoderTarget::decode_and_add_to_all
const Var & decode_and_add_to_all(Varinfo info) override
Decode and add the same value to all datasets, return a reference to one of the variables added.
wreport::bufr::CompressedDecoderTarget::decode_uniform_b_value
Var decode_uniform_b_value(Varinfo info) override
Decode a value that must always be the same across all datasets.
wreport::bufr::CompressedDecoderTarget::out
Bulletin & out
Output bulletin.
Definition: decoder.h:142
wreport::Subset
Represent a BUFR/CREX data subset as a list of decoded variables.
Definition: subset.h:13
wreport::bufr::VerboseDataSectionDecoder::r_replication
void r_replication(Varcode code, Varcode delayed_code, const Opcodes &ops) override
Handle a replicated section.
wreport::_Varinfo
Information about a variable.
Definition: varinfo.h:137
wreport::Opcodes
Sequence of opcodes, as a slice of a Varcode vector.
Definition: opcodes.h:20
wreport::bufr::Decoder::verbose_output
FILE * verbose_output
If set, be verbose and print a trace of decoding to the given file.
Definition: decoder.h:26
wreport::bufr::DataSectionDecoder::define_substituted_value
void define_substituted_value(unsigned pos) override
Request processing of a substituted value corresponding to position pos in the list or previous varia...
wreport::bufr::VerboseDataSectionDecoder::define_attribute
void define_attribute(Varinfo info, unsigned pos) override
Request processing of an attribute encoded with info, related to the variable as position pos in the ...
wreport::Varcode
uint16_t Varcode
Holds the WMO variable code of a variable.
Definition: fwd.h:12
wreport::bufr::UncompressedDecoderTarget::print_last_variable_added
void print_last_variable_added(FILE *out) override
Print the value(s) of the last variable(s) added to out.
wreport::bufr::Decoder::expected_subsets
size_t expected_subsets
Number of expected subsets (read in decode_header, used in decode_data)
Definition: decoder.h:20
wreport::Bulletin
Storage for the decoded data of a BUFR or CREX message.
Definition: bulletin.h:30
wreport::bufr::UncompressedDecoderTarget::decode_and_add_b_value_with_associated_field
void decode_and_add_b_value_with_associated_field(Varinfo info, const bulletin::AssociatedField &field) override
Decode a B-table value with associated field, and add its value(s) to the target subset(s)
wreport::bufr::DataSectionDecoder::define_bitmap
void define_bitmap(unsigned bitmap_size) override
Request processing of a data present bitmap.
wreport::bufr::VerboseDataSectionDecoder::b_variable
void b_variable(Varcode code) override
Notify of a B variable entry.
wreport::bufr::DecoderTarget
Definition: decoder.h:43
wreport::bufr::Decoder::optional_section_length
unsigned optional_section_length
Optional section length decoded from the message.
Definition: decoder.h:24
wreport::bufr::UncompressedDecoderTarget
Definition: decoder.h:118
wreport::bufr::CompressedDecoderTarget::decode_and_add_b_value
void decode_and_add_b_value(Varinfo info) override
Decode a B-table value and add its value(s) to the target subset(s)
wreport::bulletin::Interpreter
Interpreter for data descriptor sections.
Definition: interpreter.h:26
wreport::bulletin::AssociatedField
Definition: associated_fields.h:13
wreport::bufr::DecoderTarget::in
Input & in
Input buffer.
Definition: decoder.h:45
wreport::bufr::UncompressedDecoderTarget::decode_and_set_attribute
void decode_and_set_attribute(Varinfo info, unsigned pos) override
Decode an attribute with the given description, and add it to data at position pos.
wreport::bufr::CompressedDecoderTarget::decode_and_add_b_value_with_associated_field
void decode_and_add_b_value_with_associated_field(Varinfo info, const bulletin::AssociatedField &field) override
Decode a B-table value with associated field, and add its value(s) to the target subset(s)
wreport::bufr::UncompressedDecoderTarget::reference_subset
const Subset & reference_subset() const override
Return the reference to a subset that is receiving the data currently decoded.
wreport::bufr::DecoderTarget::decode_and_add_b_value_with_associated_field
virtual void decode_and_add_b_value_with_associated_field(Varinfo info, const bulletin::AssociatedField &field)=0
Decode a B-table value with associated field, and add its value(s) to the target subset(s)
wreport::bufr::DataSectionDecoder::define_associated_field_significance
unsigned define_associated_field_significance(Varinfo info) override
Request processing of an associated field significance variable (B31021).
wreport::bufr::UncompressedDecoderTarget::decode_uniform_b_value
Var decode_uniform_b_value(Varinfo info) override
Decode a value that must always be the same across all datasets.
wreport::bufr::UncompressedDecoderTarget::print_last_attribute_added
void print_last_attribute_added(FILE *out, Varcode code, unsigned pos) override
Print the value(s) of the last attributes(s) with the given code added to out.
wreport::bufr::Decoder
Definition: decoder.h:14
wreport::bufr::VerboseDataSectionDecoder::define_bitmap_delayed_replication_factor
unsigned define_bitmap_delayed_replication_factor(Varinfo info) override
Request processing of a delayed replication factor variable used to encode the size of a bitmap.
wreport::bufr::CompressedDecoderTarget::decode_and_set_attribute
void decode_and_set_attribute(Varinfo info, unsigned pos) override
Decode an attribute with the given description, and add it to data at position pos.
wreport::bufr::CompressedDecoderTarget::reference_subset
const Subset & reference_subset() const override
Return the reference to a subset that is receiving the data currently decoded.
wreport::Var
A physical variable.
Definition: var.h:25
wreport::bufr::DecoderTarget::print_last_attribute_added
virtual void print_last_attribute_added(FILE *out, Varcode code, unsigned pos)=0
Print the value(s) of the last attributes(s) with the given code added to out.
wreport::bufr::DataSectionDecoder::define_bitmap_delayed_replication_factor
unsigned define_bitmap_delayed_replication_factor(Varinfo info) override
Request processing of a delayed replication factor variable used to encode the size of a bitmap.
wreport::bufr::DecoderTarget::print_last_variable_added
virtual void print_last_variable_added(FILE *out)=0
Print the value(s) of the last variable(s) added to out.
wreport::bufr::VerboseDataSectionDecoder::define_c03_refval_override
void define_c03_refval_override(Varcode code) override
Request processing of a new value for the reference value of the given B code.
wreport::bufr::CompressedDecoderTarget
Definition: decoder.h:140
wreport::bufr::VerboseDataSectionDecoder
Definition: decoder.h:186
wreport::bufr::CompressedDecoderTarget::print_last_attribute_added
void print_last_attribute_added(FILE *out, Varcode code, unsigned pos) override
Print the value(s) of the last attributes(s) with the given code added to out.
wreport::bufr::VerboseDataSectionDecoder::c_modifier
void c_modifier(Varcode code, Opcodes &next) override
Notify of a C modifier.
wreport::bufr::VerboseDataSectionDecoder::define_bitmap
void define_bitmap(unsigned bitmap_size) override
Request processing of a data present bitmap.
wreport::bufr::VerboseDataSectionDecoder::define_delayed_replication_factor
unsigned define_delayed_replication_factor(Varinfo info) override
Request processing, according to info, of a data variabile that is significant for controlling the en...
wreport::BufrCodecOptions
Options used to configure BUFR decoding.
Definition: bulletin.h:200
wreport::bufr::VerboseDataSectionDecoder::define_raw_character_data
void define_raw_character_data(Varcode code) override
Request processing of C05yyy raw character data.
wreport::bufr::Input
Binary buffer with bit-level read operations.
Definition: input.h:46
wreport::bufr::CompressedDecoderTarget::decode_c03_refval_override
int decode_c03_refval_override(unsigned bits) override
Decode the given number of bits a signed integer, to use as a new value for B table reference value.
wreport::bufr::CompressedDecoderTarget::lookup_info
Varinfo lookup_info(unsigned pos) const override
Return information about a value previously stored at the given position.
wreport::bufr::VerboseDataSectionDecoder::print_lead
void print_lead(Varcode code)
Print line lead (indentation and formatted code)
wreport::bufr::UncompressedDecoderTarget::lookup_info
Varinfo lookup_info(unsigned pos) const override
Return information about a value previously stored at the given position.
wreport::bufr::DecoderTarget::decode_and_add_b_value
virtual void decode_and_add_b_value(Varinfo info)=0
Decode a B-table value and add its value(s) to the target subset(s)
wreport::bufr::VerboseDataSectionDecoder::define_substituted_value
void define_substituted_value(unsigned pos) override
Request processing of a substituted value corresponding to position pos in the list or previous varia...
wreport::bufr::UncompressedDecoderTarget::decode_and_add_b_value
void decode_and_add_b_value(Varinfo info) override
Decode a B-table value and add its value(s) to the target subset(s)
wreport::bufr::CompressedDecoderTarget::subset_count
unsigned subset_count
Number of subsets in data section.
Definition: decoder.h:145
wreport::bufr::CompressedDecoderTarget::decode_and_add_to_all
const Var & decode_and_add_to_all(Varinfo info) override
Decode and add the same value to all datasets, return a reference to one of the variables added.
wreport::bufr::Decoder::conf_add_undef_attrs
bool conf_add_undef_attrs
True if undefined attributes are added to the output, else false.
Definition: decoder.h:22
wreport
String functions.
Definition: benchmark.h:13
wreport::bufr::DecoderTarget::decode_c03_refval_override
virtual int decode_c03_refval_override(unsigned bits)=0
Decode the given number of bits a signed integer, to use as a new value for B table reference value.
wreport::bufr::DecoderTarget::lookup_info
virtual Varinfo lookup_info(unsigned pos) const =0
Return information about a value previously stored at the given position.
wreport::bufr::DecoderTarget::reference_subset
virtual const Subset & reference_subset() const =0
Return the reference to a subset that is receiving the data currently decoded.
wreport::bufr::VerboseDataSectionDecoder::define_associated_field_significance
unsigned define_associated_field_significance(Varinfo info) override
Request processing of an associated field significance variable (B31021).
wreport::bufr::VerboseDataSectionDecoder::indent_step
unsigned indent_step
How many spaces in an indentation level.
Definition: decoder.h:209
wreport::bufr::DecoderTarget::decode_and_add_raw_character_data
virtual void decode_and_add_raw_character_data(Varinfo info)=0
Decode raw character data described by code and add it to the target subset(s)
wreport::bufr::UncompressedDecoderTarget::decode_c03_refval_override
int decode_c03_refval_override(unsigned bits) override
Decode the given number of bits a signed integer, to use as a new value for B table reference value.
wreport::bufr::DecoderTarget::decode_and_set_attribute
virtual void decode_and_set_attribute(Varinfo info, unsigned pos)=0
Decode an attribute with the given description, and add it to data at position pos.