X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/53fa91bb028fc115847700f9f3640f1b107c4592..b0b15b7ced28b3c6ddfcd4b0a7e46ee6432a243c:/lib/eclient.h diff --git a/lib/eclient.h b/lib/eclient.h index 3ea8b15..86caf75 100644 --- a/lib/eclient.h +++ b/lib/eclient.h @@ -144,8 +144,7 @@ struct kvp; struct sink; /* Completion callbacks. These provide the result of operations to the caller. - * It is always allowed for these to be null pointers if you don't care about - * the result. */ + * Unlike in earlier releases, these are not allowed to be NULL. */ /** @brief Trivial completion callback * @param v User data @@ -157,7 +156,7 @@ typedef void disorder_eclient_no_response(void *v, /** @brief String result completion callback * @param v User data * @param error Error string or NULL on succes - * @param value or NULL if not found + * @param value Result or NULL * * @p error will be NULL on success. In this case @p value will be the result * (which might be NULL for disorder_eclient_get(), @@ -169,17 +168,65 @@ typedef void disorder_eclient_string_response(void *v, const char *error, const char *value); -typedef void disorder_eclient_integer_response(void *v, long value); -/* completion callback with a integer result */ - -typedef void disorder_eclient_volume_response(void *v, int l, int r); -/* completion callback with a pair of integer results */ +/** @brief String result completion callback + * @param v User data + * @param error Error string or NULL on succes + * @param value Result or 0 + * + * @p error will be NULL on success. In this case @p value will be the result. + * + * @p error will be non-NULL on failure. In this case @p value is always 0. + */ +typedef void disorder_eclient_integer_response(void *v, + const char *error, + long value); +/** @brief Volume completion callback + * @param v User data + * @param error Error string or NULL on success + * @param l Left channel volume + * @param r Right channel volume + * + * @p error will be NULL on success. In this case @p l and @p r will be the + * result. + * + * @p error will be non-NULL on failure. In this case @p l and @p r are always + * 0. + */ +typedef void disorder_eclient_volume_response(void *v, + const char *error, + int l, int r); -typedef void disorder_eclient_queue_response(void *v, struct queue_entry *q); -/* completion callback for queue/recent listing */ +/** @brief Queue request completion callback + * @param v User data + * @param error Error string or NULL on success + * @param q Head of queue data list + * + * @p error will be NULL on success. In this case @p q will be the (head of + * the) result. + * + * @p error will be non-NULL on failure. In this case @p q may be NULL but + * MIGHT also be some subset of the queue. For consistent behavior it should + * be ignored in the error case. + */ +typedef void disorder_eclient_queue_response(void *v, + const char *error, + struct queue_entry *q); -typedef void disorder_eclient_list_response(void *v, int nvec, char **vec); -/* completion callback for file listing etc */ +/** @brief List request completion callback + * @param v User data + * @param error Error string or NULL on success + * @param nvec Number of elements in response list + * @param vec Pointer to response list + * + * @p error will be NULL on success. In this case @p nvec and @p vec will give + * the result. + * + * @p error will be non-NULL on failure. In this case @p nvec and @p vec will + * be 0 and NULL. + */ +typedef void disorder_eclient_list_response(void *v, + const char *error, + int nvec, char **vec); disorder_eclient *disorder_eclient_new(const disorder_eclient_callbacks *cb, void *u);