From dfc7ff57efee0608c652f81779ef45a1b5269abf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Thu, 13 Oct 2016 01:12:34 +0200 Subject: MPD client: support command_list_ok_begin --- liberty-proto.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/liberty-proto.c b/liberty-proto.c index 33bb29d..e99b659 100644 --- a/liberty-proto.c +++ b/liberty-proto.c @@ -1498,9 +1498,6 @@ mpd_client_parse_response (const char *p, struct mpd_response *response) { if (!strcmp (p, "OK")) return response->success = true; - if (!strcmp (p, "list_OK")) - // TODO: either implement this or fail the connection properly - hard_assert (!"command_list_ok_begin not implemented"); char *end = NULL; if (*p++ != 'A' || *p++ != 'C' || *p++ != 'K' || *p++ != ' ' || *p++ != '[') @@ -1574,7 +1571,9 @@ mpd_client_parse_line (struct mpd_client *self, const char *line) struct mpd_response response; memset (&response, 0, sizeof response); - if (mpd_client_parse_response (line, &response)) + if (!strcmp (line, "list_OK")) + str_vector_add_owned (&self->data, NULL); + else if (mpd_client_parse_response (line, &response)) { mpd_client_dispatch (self, &response); free (response.current_command); @@ -1759,6 +1758,15 @@ mpd_client_list_begin (struct mpd_client *self) self->in_list = true; } +/// Beware that "list_OK" turns into NULL values in the output vector +static void +mpd_client_list_ok_begin (struct mpd_client *self) +{ + hard_assert (!self->in_list); + mpd_client_send_command (self, "command_list_ok_begin", NULL); + self->in_list = true; +} + /// End a list of commands. Remember to call mpd_client_add_task() /// to handle the summary response. static void -- cgit v1.2.3