libwreport  3.29
dds-scanfeatures.h
1 #ifndef WREPORT_BULLETIN_DDS_SCANFEATURES_H
2 #define WREPORT_BULLETIN_DDS_SCANFEATURES_H
3 
4 #include <wreport/bulletin/interpreter.h>
5 #include <set>
6 
7 namespace wreport {
8 namespace bulletin {
9 
13 class ScanFeatures : public Interpreter
14 {
15 public:
17  std::set<std::string> features;
18 
19  ScanFeatures(const Tables& tables, const Opcodes& opcodes);
20 
21  void c_modifier(Varcode code, Opcodes& next) override;
22  void r_replication(Varcode code, Varcode delayed_code, const Opcodes& ops) override;
23  void define_variable(Varinfo info) override;
24  void define_bitmap(unsigned bitmap_size) override;
27 };
28 
29 }
30 }
31 #endif
wreport::Tables
Collection of BUFR/CREX tables used to work on a bulletin.
Definition: tables.h:15
wreport::bulletin::ScanFeatures
Interpreter that scans what features are used by a bulletin.
Definition: dds-scanfeatures.h:14
wreport::bulletin::ScanFeatures::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::_Varinfo
Information about a variable.
Definition: varinfo.h:137
wreport::bulletin::ScanFeatures::define_associated_field_significance
unsigned define_associated_field_significance(Varinfo info) override
Request processing of an associated field significance variable (B31021).
wreport::Opcodes
Sequence of opcodes, as a slice of a Varcode vector.
Definition: opcodes.h:20
wreport::Varcode
uint16_t Varcode
Holds the WMO variable code of a variable.
Definition: fwd.h:12
wreport::bulletin::ScanFeatures::features
std::set< std::string > features
Features that have been found.
Definition: dds-scanfeatures.h:17
wreport::bulletin::Interpreter
Interpreter for data descriptor sections.
Definition: interpreter.h:26
wreport::bulletin::ScanFeatures::c_modifier
void c_modifier(Varcode code, Opcodes &next) override
Notify of a C modifier.
wreport
String functions.
Definition: benchmark.h:13
wreport::bulletin::ScanFeatures::r_replication
void r_replication(Varcode code, Varcode delayed_code, const Opcodes &ops) override
Handle a replicated section.
wreport::bulletin::ScanFeatures::define_bitmap
void define_bitmap(unsigned bitmap_size) override
Request processing of a data present bitmap.
wreport::bulletin::ScanFeatures::define_variable
void define_variable(Varinfo info) override
Request processing, according to info, of a data variable.