IODA
test-Engines.c
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /** \file test-Engines.c
8  * \brief C binding tests for ioda-engines engines.
9  *
10  * \author Ryan Honeyager (honeyage@ucar.edu)
11  **/
12 
13 #include <stdio.h>
14 #include <string.h>
15 
16 #include "ioda/C/Engines_c.h"
17 #include "ioda/C/Group_c.h"
18 #include "ioda/defs.h" // Always include this first.
19 
20 int main() {
21  int errval = 0;
22  struct ioda_group *g1 = NULL, *g2 = NULL, *g3 = NULL;
23 
25  if (!g1) goto hadError;
26  g2 = ioda_Engines_HH_createMemoryFile(1, "1", false, 100000);
27  if (!g2) goto hadError;
29  if (!g3) goto hadError;
30 
31  goto cleanup;
32 
33 hadError:
34  printf("An error was encountered.\n");
35  errval = 1;
36 
37 cleanup:
41 
42  return errval;
43 }
C bindings for ioda::Engines
C bindings for ioda::Group
Common preprocessor definitions used throughout IODA.
IODA_DL struct ioda_group * ioda_Engines_HH_createMemoryFile(size_t sz_filename, const char *filename, bool flush_on_close, long increment_len_bytes)
Create a new in-memory data store, backed by HDF5.
Definition: Engines_c.cpp:34
IODA_DL struct ioda_group * ioda_Engines_ObsStore_createRootGroup()
Create a new ObsStore instance.
Definition: Engines_c.cpp:26
IODA_DL struct ioda_group * ioda_Engines_HH_createFile(size_t sz_filename, const char *filename, enum ioda_Engines_BackendCreateModes mode)
Create a new file using the HDF5 interface.
Definition: Engines_c.cpp:62
@ ioda_Engines_BackendCreateModes_Truncate_If_Exists
Create a new file. If a file already exists, overwrite it.
Definition: Engines_c.h:36
IODA_DL void ioda_group_destruct(struct ioda_group *grp)
Frees a ioda_group.
Definition: Group_c.cpp:22
int main()
Definition: test-Engines.c:20