Public API for engines.
More...
|
file | Capabilities.h |
| Structs that describe backend capabilities.
|
|
file | Factory.h |
| Definitions for setting up backends with file and memory I/O.
|
|
Public API for engines.
◆ BackendCreateModes
Options when creating a new file.
- Note
- When changing, you need to update the ostream operators.
Enumerator |
---|
Truncate_If_Exists | If the file already exists, overwrite it.
|
Fail_If_Exists | If the file already exists, fail with an error.
|
Definition at line 44 of file Factory.h.
◆ BackendFileActions
Actions for accessing a file
Enumerator |
---|
Create | Create a new file.
|
Open | Open an existing file.
|
Definition at line 36 of file Factory.h.
◆ BackendNames
Backend names.
Enumerator |
---|
Hdf5File | HDF5 file access.
|
Hdf5Mem | HDF5 in-memory "file".
|
ObsStore | ObsStore in-memory.
|
Definition at line 28 of file Factory.h.
◆ BackendOpenModes
Options when opening an file that already exists.
- Note
- When changing, you need to update the ostream operators.
Enumerator |
---|
Read_Only | Open the file in read-only mode.
|
Read_Write | Open the file in read-write mode.
|
Definition at line 52 of file Factory.h.
◆ Capability_Mask
A tri-bool type that indicates whether a feature is supported, ignored if used, or if the engine will fail on use.
Enumerator |
---|
Supported | The feature always works.
|
Unsupported | The feature causes an exception if used.
|
Ignored | The feature is silently disabled or unimplemented.
For example, not all engines support data chunking. If a caller specifies that chunking is requested, then we store the chunking parameters but do not actually chunk the data. Useful when we copy data across backends — some backends may support and use the feature, so we preserve the settings without always obeying them.
|
Definition at line 25 of file Capabilities.h.
◆ constructBackend()
This is a simple factory style function that will instantiate a different backend based on a given name an parameters.
Definition at line 124 of file Factory.cpp.
◆ constructFromCmdLine()
Group ioda::Engines::constructFromCmdLine |
( |
int |
argc, |
|
|
char ** |
argv, |
|
|
const std::string & |
defaultFilename |
|
) |
| |
This is a wrapper function around the constructBackend function for creating a backend based on command-line options. Intended for unit testing only.
Definition at line 21 of file Factory.cpp.