]> git.droids-corp.org - protos/libecoli.git/commitdiff
more config accessor
authorOlivier Matz <zer0@droids-corp.org>
Sat, 11 Aug 2018 12:46:29 +0000 (14:46 +0200)
committerOlivier Matz <zer0@droids-corp.org>
Sat, 11 Aug 2018 12:46:29 +0000 (14:46 +0200)
lib/ecoli_config.c
lib/ecoli_config.h

index 63b572555c28ca6cfd071f7e75bff1d97e328b3e..5a9a5fb7815a9e2a7de4f3fc66e5cc3b89c52c95 100644 (file)
@@ -375,6 +375,18 @@ ec_config_schema_lookup(const struct ec_config_schema *schema,
        return NULL;
 }
 
+enum ec_config_type
+ec_config_schema_type(const struct ec_config_schema *schema_elt)
+{
+       return schema_elt->type;
+}
+
+const struct ec_config_schema *
+ec_config_schema_sub(const struct ec_config_schema *schema_elt)
+{
+       return schema_elt->subschema;
+}
+
 void
 ec_config_free(struct ec_config *value)
 {
index 706af79f398d5b26b81c9da14c613facdc705c80..9d7c628ea2e2a6b38a1afa442562ce0d3ec2f0e6 100644 (file)
@@ -113,6 +113,28 @@ const struct ec_config_schema *
 ec_config_schema_lookup(const struct ec_config_schema *schema,
                        const char *key);
 
+/**
+ * Get the type of a schema entry.
+ *
+ * @param schema_elt
+ *   Pointer to an element of the schema array.
+ * @return
+ *   The type of the schema entry.
+ */
+enum ec_config_type
+ec_config_schema_type(const struct ec_config_schema *schema_elt);
+
+/**
+ * Get the subschema of a schema entry.
+ *
+ * @param schema_elt
+ *   Pointer to an element of the schema array.
+ * @return
+ *   The subschema if any, or NULL.
+ */
+const struct ec_config_schema *
+ec_config_schema_sub(const struct ec_config_schema *schema_elt);
+
 /**
  * Check if a key name is reserved in a config dict.
  *