libmpdclient 2.22
parser.h
Go to the documentation of this file.
1/* libmpdclient
2 (c) 2003-2019 The Music Player Daemon Project
3 This project's homepage is: http://www.musicpd.org
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions
7 are met:
8
9 - Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
11
12 - Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
15
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
20 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27*/
28
29#ifndef LIBMPDCLIENT_PARSER_H
30#define LIBMPDCLIENT_PARSER_H
31
32#include "protocol.h"
33#include "compiler.h"
34
35#include <stdbool.h>
36
42
48
54
60};
61
68struct mpd_parser;
69
70#ifdef __cplusplus
71extern "C" {
72#endif
73
78mpd_malloc
79struct mpd_parser *
81
85void
87
104mpd_parser_feed(struct mpd_parser *parser, char *line);
105
113mpd_pure
114bool
115mpd_parser_is_discrete(const struct mpd_parser *parser);
116
123mpd_pure
126
133mpd_pure
134unsigned
135mpd_parser_get_at(const struct mpd_parser *parser);
136
147mpd_pure
148const char *
149mpd_parser_get_message(const struct mpd_parser *parser);
150
160mpd_pure
161const char *
162mpd_parser_get_name(const struct mpd_parser *parser);
163
173mpd_pure
174const char *
175mpd_parser_get_value(const struct mpd_parser *parser);
176
177#ifdef __cplusplus
178}
179#endif
180
181#endif
enum mpd_parser_result mpd_parser_feed(struct mpd_parser *parser, char *line)
const char * mpd_parser_get_name(const struct mpd_parser *parser)
unsigned mpd_parser_get_at(const struct mpd_parser *parser)
bool mpd_parser_is_discrete(const struct mpd_parser *parser)
struct mpd_parser * mpd_parser_new(void)
void mpd_parser_free(struct mpd_parser *parser)
const char * mpd_parser_get_message(const struct mpd_parser *parser)
const char * mpd_parser_get_value(const struct mpd_parser *parser)
mpd_parser_result
Definition: parser.h:37
@ MPD_PARSER_PAIR
Definition: parser.h:59
@ MPD_PARSER_MALFORMED
Definition: parser.h:41
@ MPD_PARSER_ERROR
Definition: parser.h:53
@ MPD_PARSER_SUCCESS
Definition: parser.h:47
enum mpd_server_error mpd_parser_get_server_error(const struct mpd_parser *parser)
MPD client library.
mpd_server_error
Definition: protocol.h:39