IODA
Factory.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \defgroup ioda_cxx_engines_pub Engines
9  * \brief Public API for engines
10  * \ingroup ioda_cxx_api
11  *
12  * @{
13  * \file Factory.h
14  * \brief Definitions for setting up backends with file and memory I/O.
15  */
16 #include <iostream>
17 #include <string>
18 
19 #include "../defs.h"
20 
21 namespace ioda {
22 class Group;
23 
24 /// The backends that implement the ioda-engines functionality.
25 namespace Engines {
26 /// \brief Backend names
27 /// \ingroup ioda_cxx_engines_pub
28 enum class BackendNames {
29  Hdf5File, ///< HDF5 file access
30  Hdf5Mem, ///< HDF5 in-memory "file"
31  ObsStore, ///< ObsStore in-memory
32 };
33 
34 /// Actions for accessing a file
35 /// \ingroup ioda_cxx_engines_pub
36 enum class BackendFileActions {
37  Create, ///< Create a new file
38  Open ///< Open an existing file
39 };
40 
41 /// Options when creating a new file.
42 /// \ingroup ioda_cxx_engines_pub
43 /// \note When changing, you need to update the ostream operators.
44 enum class BackendCreateModes {
45  Truncate_If_Exists, ///< If the file already exists, overwrite it.
46  Fail_If_Exists ///< If the file already exists, fail with an error.
47 };
48 
49 /// Options when opening an file that already exists.
50 /// \ingroup ioda_cxx_engines_pub
51 /// \note When changing, you need to update the ostream operators.
52 enum class BackendOpenModes {
53  Read_Only, ///< Open the file in read-only mode.
54  Read_Write ///< Open the file in read-write mode.
55 };
56 
57 /// \brief Used to specify backend creation-time properties
58 /// \ingroup ioda_cxx_engines_pub
60 public:
61  /// @name General
62  /// @{
63  std::string fileName;
67  /// @}
68  /// @name HH / HDF5
69  /// @{
70  std::size_t allocBytes;
71  bool flush;
72  /// @}
73 };
74 
75 /// \brief This is a wrapper function around the constructBackend
76 /// function for creating a backend based on command-line options.
77 /// Intended for unit testing only.
78 /// \ingroup ioda_cxx_engines_pub
79 IODA_DL Group constructFromCmdLine(int argc, char** argv, const std::string& defaultFilename);
80 
81 /// \brief This is a simple factory style function that will instantiate a
82 /// different backend based on a given name an parameters.
83 /// \ingroup ioda_cxx_engines_pub
85 
86 /// stream operator
87 IODA_DL std::ostream& operator<<(std::ostream& os, const BackendCreateModes& mode);
88 /// stream operator
89 IODA_DL std::ostream& operator<<(std::ostream& os, const BackendOpenModes& mode);
90 
91 } // namespace Engines
92 } // namespace ioda
93 
94 /// @}
95 
96 
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
BackendFileActions
Definition: Factory.h:36
IODA_DL Group constructFromCmdLine(int argc, char **argv, const std::string &defaultFilename)
This is a wrapper function around the constructBackend function for creating a backend based on comma...
Definition: Factory.cpp:21
BackendNames
Backend names.
Definition: Factory.h:28
IODA_DL Group constructBackend(BackendNames name, BackendCreationParameters &params)
This is a simple factory style function that will instantiate a different backend based on a given na...
Definition: Factory.cpp:124
BackendCreateModes
Definition: Factory.h:44
@ Open
Open an existing file.
@ Hdf5Mem
HDF5 in-memory "file".
@ Hdf5File
HDF5 file access.
@ ObsStore
ObsStore in-memory.
@ Fail_If_Exists
If the file already exists, fail with an error.
@ Truncate_If_Exists
If the file already exists, overwrite it.
@ Read_Write
Open the file in read-write mode.
@ Read_Only
Open the file in read-only mode.
IODA_DL std::ostream & operator<<(std::ostream &os, const BackendCreateModes &mode)
stream operator
Definition: Factory.cpp:148
Used to specify backend creation-time properties.
Definition: Factory.h:59