1#ifndef WREPORT_BULLETIN_H
2#define WREPORT_BULLETIN_H
6#include <wreport/fwd.h>
7#include <wreport/opcodes.h>
8#include <wreport/subset.h>
9#include <wreport/tables.h>
10#include <wreport/var.h>
192 virtual
unsigned diff(const Bulletin& msg) const;
199class BufrCodecOptions
220 static std::unique_ptr<BufrCodecOptions>
create();
227class BufrBulletin :
public Bulletin
292 static bool read(FILE* in, std::string& buf,
const char*
fname = 0,
305 static void write(
const std::string& buf, FILE* out,
const char*
fname = 0);
311 static std::unique_ptr<BufrBulletin>
create();
325 static std::unique_ptr<BufrBulletin>
343 static std::unique_ptr<BufrBulletin>
345 const char*
fname =
"(memory)",
size_t offset = 0);
359 static std::unique_ptr<BufrBulletin>
decode(
const std::string& raw,
360 const char*
fname =
"(memory)",
377 static std::unique_ptr<BufrBulletin>
379 const char*
fname =
"(memory)",
size_t offset = 0);
395 static std::unique_ptr<BufrBulletin>
decode(
const std::string& raw,
397 const char*
fname =
"(memory)",
405class CrexBulletin :
public Bulletin
466 static bool read(FILE* in, std::string& buf,
const char*
fname = 0,
479 static void write(
const std::string& buf, FILE* out,
const char*
fname = 0);
485 static std::unique_ptr<CrexBulletin>
create();
499 static std::unique_ptr<CrexBulletin>
515 static std::unique_ptr<CrexBulletin>
decode(
const std::string& raw,
516 const char*
fname =
"(memory)",
533 static std::unique_ptr<CrexBulletin>
535 const char*
fname =
"(memory)",
size_t offset = 0);
BUFR bulletin implementation.
Definition bulletin.h:228
static void write(const std::string &buf, FILE *out, const char *fname=0)
Write an encoded BUFR message to a stream.
uint8_t master_table_version_number
Version number of BUFR master table used.
Definition bulletin.h:240
unsigned diff_details(const Bulletin &msg) const override
Diff format-specific details.
uint8_t master_table_version_number_local
Version number of local table used to augment the master table.
Definition bulletin.h:250
static bool read(FILE *in, std::string &buf, const char *fname=0, off_t *offset=0)
Read an encoded BUFR message from a stream.
unsigned section_end[6]
Offsets of the end of BUFR sections.
Definition bulletin.h:267
static std::unique_ptr< BufrBulletin > create()
To prevent breaking ABI if new members are added to bulletins, direct construction is discouraged in ...
bool compression
Whether the message is compressed.
Definition bulletin.h:253
std::string encode() const override
Encode the message.
std::string optional_section
Raw optional section of the message.
Definition bulletin.h:260
static std::unique_ptr< BufrBulletin > decode(const std::string &raw, const char *fname="(memory)", size_t offset=0)
Parse an encoded BUFR message.
void clear() override
Reset the bulletin.
void print_details(FILE *out) const override
Print format-specific details.
static std::unique_ptr< BufrBulletin > decode_header(const std::string &raw, const char *fname="(memory)", size_t offset=0)
Parse only the header of an encoded BUFR message.
void load_tables() override
Load a new set of tables to use for encoding this message.
static std::unique_ptr< BufrBulletin > decode_verbose(const std::string &raw, FILE *out, const char *fname="(memory)", size_t offset=0)
Parse an encoded BUFR message, printing decoding information.
const char * encoding_name() const override
Type of source/target encoding.
Definition bulletin.h:272
static std::unique_ptr< BufrBulletin > decode_header(const std::string &raw, const BufrCodecOptions &opts, const char *fname="(memory)", size_t offset=0)
Parse only the header of an encoded BUFR message.
uint8_t edition_number
BUFR edition number.
Definition bulletin.h:231
static std::unique_ptr< BufrBulletin > decode(const std::string &raw, const BufrCodecOptions &opts, const char *fname="(memory)", size_t offset=0)
Parse an encoded BUFR message.
Options used to configure BUFR decoding.
Definition bulletin.h:200
static std::unique_ptr< BufrCodecOptions > create()
Create a BufrCodecOptions.
bool decode_adds_undef_attrs
By default (false) undefined attributes are not added to variables, and there is no difference betwee...
Definition bulletin.h:211
virtual void print_details(FILE *out) const
Print format-specific details.
uint16_t originating_centre
Identification of originating/generating centre (see Common Code table C-11)
Definition bulletin.h:90
uint8_t update_sequence_number
Update sequence number (zero for original messages and for messages containing only delayed reports; ...
Definition bulletin.h:102
uint8_t rep_hour
Reference hour in bulletin header.
Definition bulletin.h:111
virtual unsigned diff_details(const Bulletin &msg) const
Diff format-specific details.
std::vector< Subset > subsets
Decoded variables.
Definition bulletin.h:124
uint8_t rep_minute
Reference minute in bulletin header.
Definition bulletin.h:113
virtual void load_tables()=0
Load a new set of tables to use for encoding this message.
uint16_t originating_subcentre
Identification of originating/generating sub-centre (allocated by originating/generating centre - see...
Definition bulletin.h:96
virtual const char * encoding_name() const =0
Type of source/target encoding.
uint8_t rep_month
Reference month in bulletin header.
Definition bulletin.h:107
void print_structured(FILE *out) const
Dump the contents of this bulletin, in a more structured way.
std::vector< Varcode > datadesc
Parsed data descriptor section.
Definition bulletin.h:121
off_t offset
File offset of the start of the message.
Definition bulletin.h:48
uint16_t rep_year
Reference year in bulletin header.
Definition bulletin.h:105
Tables tables
Varcode and opcode tables used for encoding or decoding.
Definition bulletin.h:118
std::string fname
Input file name (optional).
Definition bulletin.h:39
uint8_t rep_second
Reference second in bulletin header.
Definition bulletin.h:115
virtual void clear()
Reset the bulletin.
virtual std::string encode() const =0
Encode the message.
void print_datadesc(FILE *out, unsigned indent=0) const
Pretty-print the data descriptor section.
Subset & obtain_subset(unsigned subsection)
Get a Subset from the message.
void print(FILE *out) const
Dump the contents of this bulletin.
uint8_t rep_day
Reference day in bulletin header.
Definition bulletin.h:109
const Subset & subset(unsigned subsection) const
Get a Subset from the message.
virtual unsigned diff(const Bulletin &msg) const
Compute the differences between two bulletins.
uint8_t data_subcategory_local
Local data sub-category, defined locally by automatic data-processing (ADP) centres.
Definition bulletin.h:84
uint8_t master_table_number
BUFR Master table number.
Definition bulletin.h:62
uint8_t data_category
Data category (BUFR or CREX Table A)
Definition bulletin.h:65
uint8_t data_subcategory
International data sub-category (see Common Code table C-13)
Definition bulletin.h:68
static void write(const std::string &buf, FILE *out, const char *fname=0)
Write an encoded BUFR message to a stream.
void print_details(FILE *out) const override
Print format-specific details.
static std::unique_ptr< CrexBulletin > decode_verbose(const std::string &raw, FILE *out, const char *fname="(memory)", size_t offset=0)
Parse an encoded BUFR message, printing decoding information.
std::string encode() const override
Encode the message.
static bool read(FILE *in, std::string &buf, const char *fname=0, off_t *offset=0)
Read an encoded BUFR message from a stream.
void load_tables() override
Load a new set of tables to use for encoding this message.
unsigned diff_details(const Bulletin &msg) const override
Diff format-specific details.
uint8_t master_table_version_number_bufr
BUFR master table version number.
Definition bulletin.h:430
bool has_check_digit
True if the CREX message uses the check digit feature.
Definition bulletin.h:443
uint8_t master_table_version_number
CREX master table version number.
Definition bulletin.h:417
uint8_t master_table_version_number_local
Version number of local table used to augment the master table.
Definition bulletin.h:440
static std::unique_ptr< CrexBulletin > create()
To prevent breaking ABI if new members are added to bulletins, direct construction is discouraged in ...
const char * encoding_name() const override
Type of source/target encoding.
Definition bulletin.h:446
static std::unique_ptr< CrexBulletin > decode_header(const std::string &raw, const char *fname="(memory)", size_t offset=0)
Parse only the header of an encoded BUFR message.
uint8_t edition_number
CREX Edition number.
Definition bulletin.h:409
void clear() override
Reset the bulletin.
static std::unique_ptr< CrexBulletin > decode(const std::string &raw, const char *fname="(memory)", size_t offset=0)
Parse an encoded BUFR message.
Represent a BUFR/CREX data subset as a list of decoded variables.
Definition subset.h:13
The bulletin namespace contains bulletin implementation details, internals and utility functions.
Definition input.h:13
String functions.
Definition benchmark.h:13
Collection of BUFR/CREX tables used to work on a bulletin.
Definition tables.h:15