X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fdaemon%2Futils_cache.h;h=7200906dcc74e93e6232022a8ed5f2bef1b349a8;hb=06a86a60a7dabc685bdbd81ce3d36ea5f7e2c2d4;hp=5c8127fec396bce4269ec44653bd2c3afd960366;hpb=79963d13c1884d1d92667cc502ad20758b084a12;p=collectd.git diff --git a/src/daemon/utils_cache.h b/src/daemon/utils_cache.h index 5c8127fe..7200906d 100644 --- a/src/daemon/utils_cache.h +++ b/src/daemon/utils_cache.h @@ -42,6 +42,9 @@ int uc_update(const data_set_t *ds, const value_list_t *vl); int uc_get_rate_by_name(const char *name, gauge_t **ret_values, size_t *ret_values_num); gauge_t *uc_get_rate(const data_set_t *ds, const value_list_t *vl); +int uc_get_value_by_name(const char *name, value_t **ret_values, + size_t *ret_values_num); +value_t *uc_get_value(const data_set_t *ds, const value_list_t *vl); size_t uc_get_size(void); int uc_get_names(char ***ret_names, cdtime_t **ret_times, size_t *ret_number); @@ -86,9 +89,9 @@ uc_iter_t *uc_get_iterator(void); * * PARAMETERS * `iter' The iterator object to advance. - * `ret_name' Pointer to a string where to store the name. The returned - * value is a copy of the value and has to be freed by the - * caller. + * `ret_name' Optional pointer to a string where to store the name. If not + * NULL, the returned value is a copy of the value and has to be + * freed by the caller. * * RETURN VALUE * Zero upon success or non-zero if the iterator ie NULL or no further @@ -104,6 +107,8 @@ int uc_iterator_get_values(uc_iter_t *iter, value_t **ret_values, size_t *ret_num); /* Return the interval of the value at the current position. */ int uc_iterator_get_interval(uc_iter_t *iter, cdtime_t *ret_interval); +/* Return the metadata for the value at the current position. */ +int uc_iterator_get_meta(uc_iter_t *iter, meta_data_t **ret_meta); /* * Meta data interface @@ -120,7 +125,7 @@ int uc_meta_data_add_unsigned_int(const value_list_t *vl, const char *key, int uc_meta_data_add_double(const value_list_t *vl, const char *key, double value); int uc_meta_data_add_boolean(const value_list_t *vl, const char *key, - _Bool value); + bool value); int uc_meta_data_get_string(const value_list_t *vl, const char *key, char **value); @@ -131,7 +136,6 @@ int uc_meta_data_get_unsigned_int(const value_list_t *vl, const char *key, int uc_meta_data_get_double(const value_list_t *vl, const char *key, double *value); int uc_meta_data_get_boolean(const value_list_t *vl, const char *key, - _Bool *value); + bool *value); -/* vim: set shiftwidth=2 softtabstop=2 tabstop=8 : */ #endif /* !UTILS_CACHE_H */