libwreport  3.29
dds-printer.h
1 #ifndef WREPORT_BULLETIN_DDS_PRINTER_H
2 #define WREPORT_BULLETIN_DDS_PRINTER_H
3 
4 #include <wreport/bulletin.h>
5 #include <wreport/bulletin/internals.h>
6 #include <vector>
7 #include <cstdio>
8 
9 namespace wreport {
10 namespace bulletin {
11 
16 {
17  std::vector<Varcode> stack;
18  FILE* out;
19  unsigned subset_no;
20 
21  void print_context(Varinfo info, unsigned var_pos);
22  void print_context(Varcode code, unsigned var_pos);
23  void print_attr(Varinfo info, unsigned var_pos);
24 
25 public:
34  DDSPrinter(const Bulletin& b, FILE* out, unsigned subset_idx);
35  virtual ~DDSPrinter();
36 
37  void define_bitmap(unsigned bitmap_size) override;
38  void define_substituted_value(unsigned pos) override;
39  void define_attribute(Varinfo info, unsigned pos) override;
40  void define_raw_character_data(Varcode code) override;
41  void encode_var(Varinfo info, const Var& var) override;
42  void encode_associated_field(const Var& var) override;
43 
44  void r_replication(Varcode code, Varcode delayed_code, const Opcodes& ops) override;
45  void run_d_expansion(Varcode code) override;
46 };
47 
48 }
49 }
50 #endif
wreport::bulletin::DDSPrinter::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::bulletin::DDSPrinter::DDSPrinter
DDSPrinter(const Bulletin &b, FILE *out, unsigned subset_idx)
Create a new DDS printer.
wreport::bulletin::DDSPrinter::r_replication
void r_replication(Varcode code, Varcode delayed_code, const Opcodes &ops) override
Handle a replicated section.
wreport::bulletin::DDSPrinter::define_bitmap
void define_bitmap(unsigned bitmap_size) override
Request processing of a data present bitmap.
wreport::bulletin::DDSPrinter::encode_var
void encode_var(Varinfo info, const Var &var) override
Encode a variable.
wreport::bulletin::DDSPrinter::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::bulletin::DDSPrinter::define_raw_character_data
void define_raw_character_data(Varcode code) override
Request processing of C05yyy raw character data.
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::Varcode
uint16_t Varcode
Holds the WMO variable code of a variable.
Definition: fwd.h:12
wreport::Bulletin
Storage for the decoded data of a BUFR or CREX message.
Definition: bulletin.h:30
wreport::bulletin::DDSPrinter
Interpreter that prints the bulletin contents and its structure.
Definition: dds-printer.h:16
wreport::Var
A physical variable.
Definition: var.h:25
wreport::bulletin::DDSPrinter::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::bulletin::UncompressedEncoder
Base Interpreter specialisation for message encoders that works on a subset at a time.
Definition: internals.h:23
wreport::bulletin::DDSPrinter::encode_associated_field
void encode_associated_field(const Var &var) override
Encode an attribute for an associated field.
wreport
String functions.
Definition: benchmark.h:13