From e89fc8705b660a27cbd979722ca97d00f4b0198b Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Thu, 23 Sep 2021 12:39:16 +0200 Subject: [PATCH] ENH: Add IsUndefined to datatypes in extern c --- include/ccaosdb.h | 1 + src/ccaosdb.cpp | 8 ++++++++ test/test_ccaosdb.cpp | 3 +++ 3 files changed, 12 insertions(+) diff --git a/include/ccaosdb.h b/include/ccaosdb.h index b929634..4d1b99d 100644 --- a/include/ccaosdb.h +++ b/include/ccaosdb.h @@ -412,6 +412,7 @@ int caosdb_entity_parent_get_description(caosdb_entity_parent *parent, char **ou int caosdb_entity_message_get_code(caosdb_entity_message *message, int *out); int caosdb_entity_message_get_description(caosdb_entity_message *message, char **out); +int caosdb_entity_datatype_is_undefined(caosdb_entity_datatype *datatype, bool *out); int caosdb_entity_datatype_is_atomic(caosdb_entity_datatype *datatype, bool *out); int caosdb_entity_datatype_is_reference(caosdb_entity_datatype *datatype, bool *out); int caosdb_entity_datatype_is_list_of_atomic(caosdb_entity_datatype *datatype, bool *out); diff --git a/src/ccaosdb.cpp b/src/ccaosdb.cpp index a18c56d..77759fc 100644 --- a/src/ccaosdb.cpp +++ b/src/ccaosdb.cpp @@ -991,6 +991,14 @@ ERROR_RETURN_CODE( return 0; }) +ERROR_RETURN_CODE(GENERIC_ERROR, + int caosdb_entity_datatype_is_undefined(caosdb_entity_datatype *datatype, + bool *out), + { + auto *wrapped_datatype = WRAPPED_DATATYPE_CAST(datatype); + *out = wrapped_datatype->IsUndefined(); + return 0; + }) ERROR_RETURN_CODE(GENERIC_ERROR, int caosdb_entity_datatype_is_atomic(caosdb_entity_datatype *datatype, bool *out), { diff --git a/test/test_ccaosdb.cpp b/test/test_ccaosdb.cpp index 361b091..41a0b9b 100644 --- a/test/test_ccaosdb.cpp +++ b/test/test_ccaosdb.cpp @@ -150,6 +150,9 @@ TEST_F(test_ccaosdb, test_datatype) { EXPECT_EQ(return_code, 0); bool is_a(false); + return_code = caosdb_entity_datatype_is_undefined(&atomic, &is_a); + EXPECT_EQ(return_code, 0); + EXPECT_FALSE(is_a); return_code = caosdb_entity_datatype_is_atomic(&atomic, &is_a); EXPECT_EQ(return_code, 0); EXPECT_TRUE(is_a); -- GitLab