IODA

Provides the C-style interface for ioda::Group objects. More...

Collaboration diagram for Groups:

Files

file  Group_c.h
 C bindings for ioda::Group
 
file  Group_c.cpp
 C bindings for ioda::Group
 

Classes

struct  c_ioda_group
 Spiffy C++-like container of function pointers for group methods. More...
 

Functions

IODA_DL void ioda_group_destruct (struct ioda_group *grp)
 Frees a ioda_group. More...
 
IODA_DL struct ioda_string_ret_tioda_group_list (const struct ioda_group *grp)
 Lists all one-level child groups. More...
 
IODA_DL int ioda_group_exists (const struct ioda_group *base, size_t child_sz, const char *child)
 Check if a group exists. More...
 
IODA_DL struct ioda_groupioda_group_create (struct ioda_group *base, size_t sz, const char *name)
 Create a group. More...
 
IODA_DL struct ioda_groupioda_group_open (const struct ioda_group *base, size_t sz, const char *name)
 Open a group. More...
 
IODA_DL struct ioda_has_attributesioda_group_atts (const struct ioda_group *grp)
 Access a group's attributes. More...
 
IODA_DL struct ioda_has_variablesioda_group_vars (const struct ioda_group *grp)
 Access a group's variables. More...
 
ioda_string_ret_tioda_group_list (const ioda_group *g)
 
int ioda_group_exists (const ioda_group *g, size_t sz, const char *name)
 
ioda_groupioda_group_open (const ioda_group *g, size_t sz, const char *name)
 
IODA_DL ioda_has_attributesioda_group_atts (const ioda_group *g)
 
IODA_DL ioda_has_variablesioda_group_vars (const ioda_group *g)
 

Detailed Description

Provides the C-style interface for ioda::Group objects.

Function Documentation

◆ ioda_group_atts() [1/2]

IODA_DL ioda_has_attributes* ioda_group_atts ( const ioda_group g)

Definition at line 68 of file Group_c.cpp.

◆ ioda_group_atts() [2/2]

IODA_DL struct ioda_has_attributes* ioda_group_atts ( const struct ioda_group grp)

Access a group's attributes.

See also
ioda::Group::atts.
Parameters
[in]grpis the group whose attributes are being accessed.
Returns
A handle to the Has_Attributes container on success (you must free after use).
NULL on failure.
Here is the caller graph for this function:

◆ ioda_group_create()

ioda_group * ioda_group_create ( struct ioda_group base,
size_t  sz,
const char *  name 
)

Create a group.

See also
ioda::Group::create.
Parameters
[in]baseis the base group.
[in]nameis the name of the new group.
szis the length of the group name (as in strlen(name)). Explicitly specified for Fortran bindings.
Returns
A handle to the new group on success. The handle should be freed after use by ioda_group_destruct (c_ioda.Groups.destruct).
NULL on failure.
Precondition
base must be valid. name must be non-null.
Postcondition
The group will now exist, and the returned on handle must be freed by caller after use. Upon failure, base is unchanged.

Definition at line 46 of file Group_c.cpp.

Here is the caller graph for this function:

◆ ioda_group_destruct()

void ioda_group_destruct ( struct ioda_group grp)

Frees a ioda_group.

Parameters
grpis the group to free.
Precondition
grp must be a valid group returned by a ioda_group_* call or an engine invocation.

Definition at line 22 of file Group_c.cpp.

Here is the caller graph for this function:

◆ ioda_group_exists() [1/2]

int ioda_group_exists ( const ioda_group g,
size_t  sz,
const char *  name 
)

Definition at line 39 of file Group_c.cpp.

◆ ioda_group_exists() [2/2]

IODA_DL int ioda_group_exists ( const struct ioda_group base,
size_t  child_sz,
const char *  child 
)

Check if a group exists.

See also
ioda::Group::exists
Parameters
[in]baseis the base group.
child_szis the size of the child string, as strlen(child). Explicitly specified for Fortran bindings.
[in]childis the name of the group whose existence is tested.
Returns
1 if the group exists.
0 if the group does not exist.
-1 on error, such as if base or child is NULL, or if there is a missing intermediary group between base and child.
Here is the caller graph for this function:

◆ ioda_group_list() [1/2]

ioda_string_ret_t* ioda_group_list ( const ioda_group g)

Definition at line 29 of file Group_c.cpp.

Here is the call graph for this function:

◆ ioda_group_list() [2/2]

IODA_DL struct ioda_string_ret_t* ioda_group_list ( const struct ioda_group grp)

Lists all one-level child groups.

See also
String_c.h.
Parameters
grpis the group. Must be valid.
Returns
ioda_string_ret_t, which is an array of strings that should be freed after use by ioda_string_ret_t_destruct (c_ioda.Strings.destruct).
Here is the caller graph for this function:

◆ ioda_group_open() [1/2]

ioda_group* ioda_group_open ( const ioda_group g,
size_t  sz,
const char *  name 
)

Definition at line 57 of file Group_c.cpp.

◆ ioda_group_open() [2/2]

IODA_DL struct ioda_group* ioda_group_open ( const struct ioda_group base,
size_t  sz,
const char *  name 
)

Open a group.

See also
ioda::Group::open.
Parameters
baseis the base group
nameis the name of the group to be opened.
szis the length of the group name, as strlen(name). Explicitly specified for Fortran bindings.
Returns
A handle to the group on success, which must be freed after use.
NULL on failure.
Precondition
base must be valid. name must be non-null.
Here is the caller graph for this function:

◆ ioda_group_vars() [1/2]

IODA_DL ioda_has_variables* ioda_group_vars ( const ioda_group g)

Definition at line 77 of file Group_c.cpp.

◆ ioda_group_vars() [2/2]

IODA_DL struct ioda_has_variables* ioda_group_vars ( const struct ioda_group grp)

Access a group's variables.

See also
ioda::Group::vars.
Parameters
[in]grpis the group whose variables are being accessed.
Returns
A handle to the Has_Variables container on success (free after use).
NULL on failure.
Here is the caller graph for this function: