1 #ifndef DBA_CORE_FILE_H 2 #define DBA_CORE_FILE_H 4 #include <dballe/file.h> 28 File(
const std::string& name, FILE* fd,
bool close_on_exit=
true);
32 void close()
override;
33 bool foreach(std::function<
bool(
const BinaryMessage&)> dest)
override;
47 static std::unique_ptr<dballe::File>
open_test_data_file(Encoding type,
const std::string& name);
56 Encoding
encoding()
const override {
return Encoding::BUFR; }
58 void write(
const std::string& msg)
override;
67 Encoding
encoding()
const override {
return Encoding::CREX; }
69 void write(
const std::string& msg)
override;
Binary message.
Definition: file.h:130
static std::unique_ptr< dballe::File > open_test_data_file(Encoding type, const std::string &name)
Open a test data file.
std::string m_name
Name of the file.
Definition: core/file.h:19
Definition: core/file.h:61
Encoding encoding() const override
Get the file encoding.
Definition: core/file.h:67
FILE * fd
FILE structure used to read or write to the file.
Definition: core/file.h:21
std::string pathname() const override
Get the file pathname.
Definition: core/file.h:31
File object for doing I/O on binary message streams.
Definition: file.h:17
int idx
Index of the last message read from the file or written to the file.
Definition: core/file.h:25
static std::string resolve_test_data_file(const std::string &name)
Resolve the location of a test data file.
void close() override
Close the underlying file.
virtual BinaryMessage read()=0
Read a message from the file.
Definition: core/file.h:50
bool close_on_exit
True if fd should be closed on destruction.
Definition: core/file.h:23
virtual void write(const std::string &msg)=0
Append the binary message to the file.
Base for dballe::File implementations.
Definition: core/file.h:15
Encoding encoding() const override
Get the file encoding.
Definition: core/file.h:56