IODA
Dimensions_c.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_dimensions Dimensions
9  * \brief Provides the C-style interface for ioda::Dimensions objects.
10  * \ingroup ioda_c_api
11  *
12  * @{
13  * \file Dimensions_c.h
14  * \brief @link ioda_dimensions C bindings @endlink for ioda::Dimensions
15  */
16 #include "../defs.h"
17 #include "./c_binding_macros.h"
18 
19 #ifdef __cplusplus
20 # include <cstddef>
21 #else
22 # include <stddef.h>
23 #endif
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 struct ioda_dimensions;
30 
31 /// \brief Deallocates a dimensions container.
32 /// \param[in] d is the dimensions object to be destructed.
34 /// \brief Gets dimensionality (i.e. number of dimensions)
35 /// \param[in] d is the dimensions object.
36 /// \param[out] val stores the dimensionality of d.
37 /// \return true on success, false on failure.
38 /// \pre val must be valid (exist and be non-null).
39 /// \pre d must be valid.
40 /// \post val is filled with the dimensionality on success. On failure, it is unchanged.
42 /// \brief Set dimensionality of the dimensions container.
43 /// \param[in] d is the dimensions object.
44 /// \param[in] N is the new dimensionality.
45 /// \return true on success, false on failure.
46 /// \pre d must be a valid object.
48 /// \brief Get the number of distinct elements in the dimensions object (the product of each
49 /// dimension size).
50 /// \param[in] d is the dimensions object.
51 /// \param[out] val stores the number of elements.
52 /// \return true on success, false on failure.
53 /// \pre d must be a valid object.
54 /// \pre val must be valid.
55 /// \post val is filled on function success and is unchanged on failure.
56 IODA_DL bool ioda_dimensions_get_num_elements(const struct ioda_dimensions* d, size_t* val);
57 /// \brief Get the current size of the n-th dimension.
58 /// \param[in] d is the dimensions object.
59 /// \param n is the nth dimension. Count starts at zero.
60 /// \param[out] val stores the size of the dimension.
61 /// \return true on success, false on failure.
62 /// \pre d must be a valid object.
63 /// \pre n must be less than the dimensionality of d (see ioda_dimensions_get_dimensionality).
64 /// \pre val must be a valid for output.
65 /// \post val is filled on function success and is unchanged on failure.
66 IODA_DL bool ioda_dimensions_get_dim_cur(const struct ioda_dimensions* d, size_t n, ptrdiff_t* val);
67 /// \brief Set the current size of the n-th dimension.
68 /// \param[in] d is the dimensions object.
69 /// \param n is the nth dimension. Count starts at zero.
70 /// \param sz is the new size of the dimension.
71 /// \return true on success, false on failure.
72 /// \pre d must be a valid object.
73 /// \pre n must be less than the dimensionality of d (see ioda_dimensions_get_dimensionality).
74 /// \post Dimension size is only set on success. Unchanged on failure.
75 IODA_DL bool ioda_dimensions_set_dim_cur(struct ioda_dimensions* d, size_t n, ptrdiff_t sz);
76 /// \brief Get the maximum size of the n-th dimension.
77 /// \param[in] d is the dimensions object.
78 /// \param n is the nth dimension. Count starts at zero.
79 /// \param[out] val stores the maximum size of the dimension.
80 /// \return true on success, false on failure.
81 /// \pre d must be a valid object.
82 /// \pre n must be less than the dimensionality of d (see ioda_dimensions_get_dimensionality).
83 /// \pre val must be a valid for output.
84 /// \post val is filled on function success and is unchanged on failure.
85 IODA_DL bool ioda_dimensions_get_dim_max(const struct ioda_dimensions* d, size_t n, ptrdiff_t* val);
86 /// \brief Set the maximum size of the n-th dimension.
87 /// \param[in] d is the dimensions object.
88 /// \param n is the nth dimension. Count starts at zero.
89 /// \param sz is the new size of the dimension.
90 /// \return true on success, false on failure.
91 /// \pre d must be a valid object.
92 /// \pre n must be less than the dimensionality of d (see ioda_dimensions_get_dimensionality).
93 /// \post Dimension max size is only set on success. Unchanged on failure.
94 IODA_DL bool ioda_dimensions_set_dim_max(struct ioda_dimensions* d, size_t n, ptrdiff_t sz);
95 
96 /*!@brief Class-like encapsulation of C dimension-manipulating functions.
97  * @see c_ioda for an example.
98  * @see use_c_ioda for an example.
99  */
100 struct c_dimensions {
101  void (*destruct)(struct ioda_dimensions*);
102  bool (*getDimensionality)(const struct ioda_dimensions*, size_t*);
103  bool (*setDimensionality)(struct ioda_dimensions*, size_t);
104  bool (*getNumElements)(const struct ioda_dimensions*, size_t*);
105  bool (*getDimCur)(const struct ioda_dimensions*, size_t, ptrdiff_t*);
106  bool (*setDimCur)(struct ioda_dimensions*, size_t, ptrdiff_t);
107  bool (*getDimMax)(const struct ioda_dimensions*, size_t, ptrdiff_t*);
108  bool (*setDimMax)(struct ioda_dimensions*, size_t, ptrdiff_t);
109 };
110 
111 #ifdef __cplusplus
112 }
113 #endif
114 
115 /// @} // End Doxygen group
C bindings interface to templated C++ ioda classes and functions.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
IODA_DL bool ioda_dimensions_get_dim_cur(const struct ioda_dimensions *d, size_t n, ptrdiff_t *val)
Get the current size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_dim_max(const struct ioda_dimensions *d, size_t n, ptrdiff_t *val)
Get the maximum size of the n-th dimension.
IODA_DL bool ioda_dimensions_set_dimensionality(struct ioda_dimensions *d, size_t N)
Set dimensionality of the dimensions container.
IODA_DL bool ioda_dimensions_set_dim_max(struct ioda_dimensions *d, size_t n, ptrdiff_t sz)
Set the maximum size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_dimensionality(const struct ioda_dimensions *d, size_t *val)
Gets dimensionality (i.e. number of dimensions)
IODA_DL bool ioda_dimensions_set_dim_cur(struct ioda_dimensions *d, size_t n, ptrdiff_t sz)
Set the current size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_num_elements(const struct ioda_dimensions *d, size_t *val)
Get the number of distinct elements in the dimensions object (the product of each dimension size).
IODA_DL void ioda_dimensions_destruct(struct ioda_dimensions *d)
Deallocates a dimensions container.
Class-like encapsulation of C dimension-manipulating functions.
Definition: Dimensions_c.h:100
bool(* setDimensionality)(struct ioda_dimensions *, size_t)
Definition: Dimensions_c.h:103
bool(* setDimMax)(struct ioda_dimensions *, size_t, ptrdiff_t)
Definition: Dimensions_c.h:108
bool(* getNumElements)(const struct ioda_dimensions *, size_t *)
Definition: Dimensions_c.h:104
bool(* getDimMax)(const struct ioda_dimensions *, size_t, ptrdiff_t *)
Definition: Dimensions_c.h:107
void(* destruct)(struct ioda_dimensions *)
Definition: Dimensions_c.h:101
bool(* getDimensionality)(const struct ioda_dimensions *, size_t *)
Definition: Dimensions_c.h:102
bool(* setDimCur)(struct ioda_dimensions *, size_t, ptrdiff_t)
Definition: Dimensions_c.h:106
bool(* getDimCur)(const struct ioda_dimensions *, size_t, ptrdiff_t *)
Definition: Dimensions_c.h:105
ioda::Dimensions d
Definition: structs_c.h:36