mirror of
https://github.com/TREX-CoE/trexio.git
synced 2025-01-05 19:08:59 +01:00
consistent naming init/deinit instead init/finalize in back ends
This commit is contained in:
parent
b8c9bfa2df
commit
b656917323
@ -549,19 +549,19 @@ trexio_exit_code trexio_close(trexio_t* file) {
|
|||||||
switch (file->back_end) {
|
switch (file->back_end) {
|
||||||
|
|
||||||
case TREXIO_TEXT:
|
case TREXIO_TEXT:
|
||||||
rc = trexio_text_finalize(file);
|
rc = trexio_text_deinit(file);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TREXIO_HDF5:
|
case TREXIO_HDF5:
|
||||||
rc = trexio_hdf5_finalize(file);
|
rc = trexio_hdf5_deinit(file);
|
||||||
break;
|
break;
|
||||||
/*
|
/*
|
||||||
case TREXIO_JSON:
|
case TREXIO_JSON:
|
||||||
rc = trexio_json_finalize(file);
|
rc = trexio_json_deinit(file);
|
||||||
break;
|
break;
|
||||||
,*/
|
,*/
|
||||||
default:
|
default:
|
||||||
assert (1 == 0); /* Impossible case */
|
rc = TREXIO_FAILURE; /* Impossible case */
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rc != TREXIO_SUCCESS) {
|
if (rc != TREXIO_SUCCESS) {
|
||||||
|
@ -61,7 +61,7 @@ typedef struct trexio_hdf5_s {
|
|||||||
} trexio_hdf5_t;
|
} trexio_hdf5_t;
|
||||||
|
|
||||||
trexio_exit_code trexio_hdf5_init(trexio_t* const file);
|
trexio_exit_code trexio_hdf5_init(trexio_t* const file);
|
||||||
trexio_exit_code trexio_hdf5_finalize(trexio_t* const file);
|
trexio_exit_code trexio_hdf5_deinit(trexio_t* const file);
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
@ -128,7 +128,7 @@ trexio_exit_code trexio_hdf5_init(trexio_t* const file) {
|
|||||||
return TREXIO_SUCCESS;
|
return TREXIO_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
trexio_exit_code trexio_hdf5_finalize(trexio_t* const file) {
|
trexio_exit_code trexio_hdf5_deinit(trexio_t* const file) {
|
||||||
|
|
||||||
trexio_hdf5_t* f = (trexio_hdf5_t*) file;
|
trexio_hdf5_t* f = (trexio_hdf5_t*) file;
|
||||||
|
|
||||||
|
@ -189,7 +189,7 @@ trexio_exit_code trexio_text_lock(trexio_t* const file) {
|
|||||||
|
|
||||||
|
|
||||||
#+begin_src c :tangle basic_text.h
|
#+begin_src c :tangle basic_text.h
|
||||||
trexio_exit_code trexio_text_finalize(trexio_t* const file);
|
trexio_exit_code trexio_text_deinit(trexio_t* const file);
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
#+begin_src c :tangle basic_text.h
|
#+begin_src c :tangle basic_text.h
|
||||||
@ -220,7 +220,7 @@ trexio_exit_code trexio_text_unlock(trexio_t* const file) {
|
|||||||
** Init/deinit functions (templated part)
|
** Init/deinit functions (templated part)
|
||||||
|
|
||||||
#+begin_src c :tangle basic_text_group.c
|
#+begin_src c :tangle basic_text_group.c
|
||||||
trexio_exit_code trexio_text_finalize(trexio_t* const file) {
|
trexio_exit_code trexio_text_deinit(trexio_t* const file) {
|
||||||
if (file == NULL) return TREXIO_INVALID_ARG_1;
|
if (file == NULL) return TREXIO_INVALID_ARG_1;
|
||||||
|
|
||||||
trexio_exit_code rc;
|
trexio_exit_code rc;
|
||||||
|
Loading…
Reference in New Issue
Block a user