IODA
Capabilities.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 /*! \addtogroup ioda_cxx_engines_pub
9  *
10  * @{
11  * \file Capabilities.h
12  * \brief Structs that describe backend capabilities.
13  */
14 #include <string>
15 
16 #include "../defs.h"
17 
18 namespace ioda {
19 class Group;
20 
21 namespace Engines {
22 /// \brief A tri-bool type that indicates whether a feature is supported,
23 /// ignored if used, or if the engine will fail on use.
24 /// \ingroup ioda_cxx_engines_pub
25 enum class Capability_Mask {
26  /// \brief The feature always works.
27  Supported,
28  /// \brief The feature causes an exception if used.
30  /// \brief The feature is silently disabled or unimplemented.
31  ///
32  /// \details For example, not all engines support data chunking. If a caller
33  /// specifies that chunking is requested, then we store the
34  /// chunking parameters but do not actually chunk the data.
35  /// Useful when we copy data across backends --- some backends may
36  /// support and use the feature, so we preserve the settings without
37  /// always obeying them.
38  Ignored
39 };
40 
41 /// \brief Struct defining what an engine can/cannot do.
42 /// \ingroup ioda_cxx_engines_pub
43 /// \note These options may vary depending on how ioda-engines
44 /// and its required libraries are compiled. For example,
45 /// if SZIP is not available, then the HDF5 backend cannot
46 /// use SZIP compression.
47 struct Capabilities {
52 
53  // Other candidate capabilities:
54  // canResizeAnyDimension
55  // canResize
56  // canUseArrayTypes
57 };
58 } // namespace Engines
59 } // namespace ioda
60 
61 /// @}
Capability_Mask
A tri-bool type that indicates whether a feature is supported, ignored if used, or if the engine will...
Definition: Capabilities.h:25
@ Unsupported
The feature causes an exception if used.
@ Ignored
The feature is silently disabled or unimplemented.
@ Supported
The feature always works.
Struct defining what an engine can/cannot do.
Definition: Capabilities.h:47
Capability_Mask canCompressWithGZIP
Definition: Capabilities.h:49
Capability_Mask canChunk
Definition: Capabilities.h:48
Capability_Mask MPIaware
Definition: Capabilities.h:51
Capability_Mask canCompressWithSZIP
Definition: Capabilities.h:50