Code

timeseries: Added sdb_timeseries_create().
[sysdb.git] / src / include / core / timeseries.h
index acfdaeff52094f9b37ff7d587ece03793d59a315..1a8e48e47dc4db49cfb243d825bd33910f9125f4 100644 (file)
@@ -70,6 +70,19 @@ typedef struct {
        sdb_time_t end;
 } sdb_timeseries_opts_t;
 
+/*
+ * sdb_timeseries_create:
+ * Allocate a time-series object, pre-populating the data_names information
+ * and allocating the data field.
+ *
+ * Returns:
+ *  - a newly allocated time-series object on success
+ *  - NULL else
+ */
+sdb_timeseries_t *
+sdb_timeseries_create(size_t data_names_len, const char * const *data_names,
+               size_t data_len);
+
 /*
  * sdb_timeseries_destroy:
  * Destroy a time-series object, freeing all of its memory.