1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-07-01 00:53:14 +00:00
ympd/src/mpd_client.c

1375 lines
51 KiB
C
Raw Normal View History

/* myMPD
(c) 2018 Juergen Mang <mail@jcgames.de>
This project's homepage is: https://github.com/jcorporation/ympd
myMPD ist fork of:
ympd
(c) 2013-2014 Andrew Karpow <andy@ndyk.de>
2014-01-17 18:41:41 +00:00
This project's homepage is: http://www.ympd.org
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2014-01-17 18:41:41 +00:00
*/
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <libgen.h>
#include <ctype.h>
2013-11-04 17:18:38 +00:00
#include <mpd/client.h>
2017-03-24 10:01:24 +00:00
#include <mpd/message.h>
2013-11-04 17:18:38 +00:00
#include "mpd_client.h"
2014-02-04 16:58:10 +00:00
#include "config.h"
2014-02-22 01:11:45 +00:00
#include "json_encode.h"
2013-11-04 17:18:38 +00:00
2015-04-28 09:08:21 +00:00
/* forward declaration */
static int mpd_notify_callback(struct mg_connection *c, enum mg_event ev);
2014-02-16 18:46:53 +00:00
const char * mpd_cmd_strs[] = {
MPD_CMDS(GEN_STR)
};
2013-11-04 17:18:38 +00:00
char * get_arg1 (char *p) {
return strchr(p, ',') + 1;
}
char * get_arg2 (char *p) {
return get_arg1(get_arg1(p));
}
2014-02-16 18:46:53 +00:00
static inline enum mpd_cmd_ids get_cmd_id(char *cmd)
2013-11-04 17:18:38 +00:00
{
2014-02-16 18:46:53 +00:00
for(int i = 0; i < sizeof(mpd_cmd_strs)/sizeof(mpd_cmd_strs[0]); i++)
if(!strncmp(cmd, mpd_cmd_strs[i], strlen(mpd_cmd_strs[i])))
return i;
2013-11-09 01:07:03 +00:00
2014-02-16 18:46:53 +00:00
return -1;
}
2013-11-09 01:07:03 +00:00
2014-02-16 18:46:53 +00:00
int callback_mpd(struct mg_connection *c)
{
enum mpd_cmd_ids cmd_id = get_cmd_id(c->content);
size_t n = 0;
unsigned int uint_buf, uint_buf_2;
double double_buf;
2014-02-16 18:46:53 +00:00
int int_buf;
char *p_charbuf = NULL, *token;
char *p_charbuf2 = NULL;
char *searchstr = NULL;
2014-02-16 18:46:53 +00:00
2018-06-03 16:36:06 +00:00
fprintf(stdout,"Got request: %s:%d\n",c->content,cmd_id);
2018-05-24 22:21:19 +00:00
2014-02-16 18:46:53 +00:00
if(cmd_id == -1)
return MG_TRUE;
2014-02-16 18:46:53 +00:00
switch(cmd_id)
{
case MPD_API_UPDATE_DB:
mpd_run_update(mpd.conn, NULL);
2013-11-09 01:07:03 +00:00
break;
2014-02-16 18:46:53 +00:00
case MPD_API_SET_PAUSE:
mpd_run_toggle_pause(mpd.conn);
break;
case MPD_API_SET_PREV:
mpd_run_previous(mpd.conn);
break;
case MPD_API_SET_NEXT:
mpd_run_next(mpd.conn);
break;
case MPD_API_SET_PLAY:
mpd_run_play(mpd.conn);
break;
case MPD_API_SET_STOP:
mpd_run_stop(mpd.conn);
break;
case MPD_API_RM_ALL:
mpd_run_clear(mpd.conn);
break;
case MPD_API_RM_TRACK:
if(sscanf(c->content, "MPD_API_RM_TRACK,%u", &uint_buf))
mpd_run_delete_id(mpd.conn, uint_buf);
break;
case MPD_API_RM_RANGE:
if(sscanf(c->content, "MPD_API_RM_RANGE,%u,%u", &uint_buf, &uint_buf_2))
mpd_run_delete_range(mpd.conn, uint_buf, uint_buf_2);
break;
case MPD_API_MOVE_TRACK:
if (sscanf(c->content, "MPD_API_MOVE_TRACK,%u,%u", &uint_buf, &uint_buf_2) == 2)
{
uint_buf -= 1;
uint_buf_2 -= 1;
mpd_run_move(mpd.conn, uint_buf, uint_buf_2);
}
break;
2014-02-16 18:46:53 +00:00
case MPD_API_PLAY_TRACK:
if(sscanf(c->content, "MPD_API_PLAY_TRACK,%u", &uint_buf))
mpd_run_play_id(mpd.conn, uint_buf);
break;
case MPD_API_TOGGLE_RANDOM:
if(sscanf(c->content, "MPD_API_TOGGLE_RANDOM,%u", &uint_buf))
mpd_run_random(mpd.conn, uint_buf);
break;
case MPD_API_TOGGLE_REPEAT:
if(sscanf(c->content, "MPD_API_TOGGLE_REPEAT,%u", &uint_buf))
mpd_run_repeat(mpd.conn, uint_buf);
break;
case MPD_API_TOGGLE_CONSUME:
if(sscanf(c->content, "MPD_API_TOGGLE_CONSUME,%u", &uint_buf))
mpd_run_consume(mpd.conn, uint_buf);
break;
case MPD_API_TOGGLE_SINGLE:
if(sscanf(c->content, "MPD_API_TOGGLE_SINGLE,%u", &uint_buf))
mpd_run_single(mpd.conn, uint_buf);
break;
case MPD_API_SET_CROSSFADE:
if(sscanf(c->content, "MPD_API_SET_CROSSFADE,%u", &uint_buf))
mpd_run_crossfade(mpd.conn, uint_buf);
break;
case MPD_API_SET_MIXRAMPDB:
if(sscanf(c->content, "MPD_API_SET_MIXRAMPDB,%lf", &double_buf))
mpd_run_mixrampdb(mpd.conn, double_buf);
break;
case MPD_API_SET_MIXRAMPDELAY:
if(sscanf(c->content, "MPD_API_SET_MIXRAMPDELAY,%lf", &double_buf))
mpd_run_mixrampdelay(mpd.conn, double_buf);
break;
2015-04-28 09:08:21 +00:00
case MPD_API_GET_OUTPUTS:
2015-05-01 21:51:44 +00:00
mpd.buf_size = mpd_put_outputs(mpd.buf, 1);
2015-04-28 09:08:21 +00:00
c->callback_param = NULL;
mpd_notify_callback(c, MG_POLL);
break;
case MPD_API_TOGGLE_OUTPUT:
if (sscanf(c->content, "MPD_API_TOGGLE_OUTPUT,%u,%u", &uint_buf, &uint_buf_2)) {
if (uint_buf_2)
mpd_run_enable_output(mpd.conn, uint_buf);
else
mpd_run_disable_output(mpd.conn, uint_buf);
}
break;
2014-02-16 18:46:53 +00:00
case MPD_API_SET_VOLUME:
if(sscanf(c->content, "MPD_API_SET_VOLUME,%ud", &uint_buf) && uint_buf <= 100)
mpd_run_set_volume(mpd.conn, uint_buf);
break;
case MPD_API_SET_SEEK:
if(sscanf(c->content, "MPD_API_SET_SEEK,%u,%u", &uint_buf, &uint_buf_2))
mpd_run_seek_id(mpd.conn, uint_buf, uint_buf_2);
break;
2014-02-22 01:11:45 +00:00
case MPD_API_GET_QUEUE:
if(sscanf(c->content, "MPD_API_GET_QUEUE,%u", &uint_buf))
n = mpd_put_queue(mpd.buf, uint_buf);
break;
2018-06-03 16:36:06 +00:00
case MPD_API_GET_ARTISTS:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_ARTISTS"))
goto out_artist;
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
goto out_artist;
} else {
p_charbuf2 = strdup(token);
}
n = mympd_put_db_tag(mpd.buf, uint_buf, "AlbumArtist","","",p_charbuf2);
free(p_charbuf2);
out_artist:
free(p_charbuf);
2018-06-03 16:36:06 +00:00
break;
case MPD_API_GET_ARTISTALBUMS:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_ARTISTALBUMS"))
goto out_artistalbum;
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
goto out_artistalbum;
} else {
p_charbuf2 = strdup(token);
}
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_artistalbum;
2018-06-03 16:36:06 +00:00
} else {
searchstr = strdup(token);
}
n = mympd_put_db_tag(mpd.buf, uint_buf, "Album", "AlbumArtist", searchstr, p_charbuf2);
2018-06-03 16:36:06 +00:00
free(searchstr);
free(p_charbuf2);
2018-06-03 16:36:06 +00:00
out_artistalbum:
free(p_charbuf);
2018-06-03 16:36:06 +00:00
break;
case MPD_API_GET_ARTISTALBUMTITLES:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_ARTISTALBUMTITLES"))
goto out_artistalbumtitle;
if((token = strtok(NULL, ",")) == NULL) {
goto out_artistalbumtitle;
} else {
searchstr = strdup(token);
}
n = mympd_put_songs_in_album(mpd.buf, searchstr, token+strlen(token)+1);
2018-06-03 16:36:06 +00:00
free(searchstr);
out_artistalbumtitle:
free(p_charbuf);
break;
case MPD_API_GET_PLAYLISTS:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_PLAYLISTS"))
goto out_artist;
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
goto out_playlists;
} else {
p_charbuf2 = strdup(token);
}
n = mympd_put_playlists(mpd.buf, uint_buf, p_charbuf2);
free(p_charbuf2);
out_playlists:
free(p_charbuf);
break;
2014-02-16 18:46:53 +00:00
case MPD_API_GET_BROWSE:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_BROWSE"))
goto out_browse;
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
goto out_browse;
} else {
p_charbuf2 = strdup(token);
}
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_browse;
} else {
searchstr = strdup(token);
}
n = mpd_put_browse(mpd.buf, p_charbuf2, uint_buf, searchstr);
free(searchstr);
free(p_charbuf2);
out_browse:
free(p_charbuf);
break;
2014-02-16 18:46:53 +00:00
break;
case MPD_API_ADD_TRACK:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_ADD_TRACK"))
goto out_add_track;
if((token = strtok(NULL, ",")) == NULL)
goto out_add_track;
free(p_charbuf);
p_charbuf = strdup(c->content);
mpd_run_add(mpd.conn, get_arg1(p_charbuf));
out_add_track:
free(p_charbuf);
2014-02-16 18:46:53 +00:00
break;
case MPD_API_ADD_PLAY_TRACK:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_ADD_PLAY_TRACK"))
goto out_play_track;
if((token = strtok(NULL, ",")) == NULL)
goto out_play_track;
free(p_charbuf);
p_charbuf = strdup(c->content);
int_buf = mpd_run_add_id(mpd.conn, get_arg1(p_charbuf));
if(int_buf != -1)
mpd_run_play_id(mpd.conn, int_buf);
out_play_track:
free(p_charbuf);
break;
case MPD_API_ADD_PLAYLIST:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_ADD_PLAYLIST"))
goto out_playlist;
if((token = strtok(NULL, ",")) == NULL)
goto out_playlist;
free(p_charbuf);
p_charbuf = strdup(c->content);
mpd_run_load(mpd.conn, get_arg1(p_charbuf));
out_playlist:
free(p_charbuf);
break;
2015-09-02 17:24:52 +00:00
case MPD_API_SAVE_QUEUE:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SAVE_QUEUE"))
goto out_save_queue;
if((token = strtok(NULL, ",")) == NULL)
goto out_save_queue;
free(p_charbuf);
p_charbuf = strdup(c->content);
mpd_run_save(mpd.conn, get_arg1(p_charbuf));
2015-09-02 17:24:52 +00:00
out_save_queue:
free(p_charbuf);
break;
2018-05-24 22:21:19 +00:00
case MPD_API_SEARCH_QUEUE:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SEARCH_QUEUE"))
goto out_search_queue;
if((token = strtok(NULL, ",")) == NULL) {
2018-05-24 22:21:19 +00:00
goto out_search_queue;
} else {
p_charbuf2 = strdup(token);
}
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_search_queue;
} else {
searchstr = strdup(token);
}
n = mpd_search_queue(mpd.buf, p_charbuf2, uint_buf, searchstr);
free(searchstr);
free(p_charbuf2);
2018-05-24 22:21:19 +00:00
out_search_queue:
free(p_charbuf);
break;
case MPD_API_SEARCH_ADD:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SEARCH_ADD"))
goto out_search_add;
if((token = strtok(NULL, ",")) == NULL) {
goto out_search_add;
} else {
p_charbuf2 = strdup(token);
}
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_search_add;
} else {
searchstr = strdup(token);
}
n = mpd_search_add(mpd.buf, p_charbuf2, searchstr);
free(searchstr);
free(p_charbuf2);
out_search_add:
free(p_charbuf);
break;
case MPD_API_SEARCH:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SEARCH"))
goto out_search;
if((token = strtok(NULL, ",")) == NULL) {
goto out_search;
} else {
p_charbuf2 = strdup(token);
}
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_search;
} else {
searchstr = strdup(token);
}
n = mpd_search(mpd.buf, p_charbuf2, uint_buf, searchstr);
free(searchstr);
free(p_charbuf2);
out_search:
free(p_charbuf);
break;
2018-05-24 19:36:40 +00:00
case MPD_API_SEND_SHUFFLE:
mpd_run_shuffle(mpd.conn);
break;
case MPD_API_SEND_MESSAGE:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SEND_MESSAGE"))
goto out_send_message;
if((token = strtok(NULL, ",")) == NULL)
goto out_send_message;
free(p_charbuf);
p_charbuf = strdup(get_arg1(c->content));
if ( strtok(p_charbuf, ",") == NULL )
goto out_send_message;
if ( (token = strtok(NULL, ",")) == NULL )
goto out_send_message;
2018-05-27 21:34:39 +00:00
mpd_run_send_message(mpd.conn, p_charbuf, token);
out_send_message:
free(p_charbuf);
break;
case MPD_API_RM_PLAYLIST:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_RM_PLAYLIST"))
goto out_rm_playlist;
if((token = strtok(NULL, ",")) == NULL)
goto out_rm_playlist;
free(p_charbuf);
p_charbuf = strdup(c->content);
mpd_run_rm(mpd.conn, get_arg1(p_charbuf));
out_rm_playlist:
free(p_charbuf);
break;
case MPD_API_GET_SETTINGS:
n = mympd_put_settings(mpd.buf);
2014-02-16 18:46:53 +00:00
break;
2018-05-27 21:34:39 +00:00
case MPD_API_GET_STATS:
n = mympd_get_stats(mpd.buf);
break;
case MPD_API_SET_REPLAYGAIN:
p_charbuf = strdup(c->content);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SET_REPLAYGAIN"))
goto out_set_replaygain;
if((token = strtok(NULL, ",")) == NULL)
goto out_set_replaygain;
free(p_charbuf);
p_charbuf = strdup(c->content);
mpd_send_command(mpd.conn, "replay_gain_mode", get_arg1(p_charbuf), NULL);
struct mpd_pair *pair;
while ((pair = mpd_recv_pair(mpd.conn)) != NULL) {
mpd_return_pair(mpd.conn, pair);
}
out_set_replaygain:
free(p_charbuf);
break;
2014-02-16 18:46:53 +00:00
}
2014-02-16 18:46:53 +00:00
if(mpd.conn_state == MPD_CONNECTED && mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS)
{
n = snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"error\", \"data\": \"%s\"}",
mpd_connection_get_error_message(mpd.conn));
2013-11-09 01:07:03 +00:00
2014-02-16 18:46:53 +00:00
/* Try to recover error */
if (!mpd_connection_clear_error(mpd.conn))
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
}
2018-06-03 16:36:06 +00:00
if(n > 0) {
2018-06-03 19:35:16 +00:00
//fprintf(stdout,"Send response:\n %s\n",mpd.buf);
2014-02-16 18:46:53 +00:00
mg_websocket_write(c, 1, mpd.buf, n);
2018-06-03 16:36:06 +00:00
}
2014-02-16 18:46:53 +00:00
return MG_TRUE;
2014-02-16 18:46:53 +00:00
}
int mpd_close_handler(struct mg_connection *c)
{
/* Cleanup session data */
if(c->connection_param)
free(c->connection_param);
2013-11-09 01:07:03 +00:00
return 0;
2013-11-04 17:18:38 +00:00
}
static int mpd_notify_callback(struct mg_connection *c, enum mg_event ev) {
2014-02-16 18:46:53 +00:00
size_t n;
if(!c->is_websocket)
return MG_TRUE;
2014-02-16 18:46:53 +00:00
if(c->callback_param)
{
/* error message? */
n = snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"error\",\"data\":\"%s\"}",
(const char *)c->callback_param);
mg_websocket_write(c, 1, mpd.buf, n);
return MG_TRUE;
2014-02-16 18:46:53 +00:00
}
if(!c->connection_param)
c->connection_param = calloc(1, sizeof(struct t_mpd_client_session));
struct t_mpd_client_session *s = (struct t_mpd_client_session *)c->connection_param;
if(mpd.conn_state != MPD_CONNECTED) {
n = snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"disconnected\"}");
mg_websocket_write(c, 1, mpd.buf, n);
}
else
{
mg_websocket_write(c, 1, mpd.buf, mpd.buf_size);
if(s->song_id != mpd.song_id || s->queue_version != mpd.queue_version)
2014-02-16 18:46:53 +00:00
{
n = mpd_put_current_song(mpd.buf);
mg_websocket_write(c, 1, mpd.buf, n);
s->song_id = mpd.song_id;
}
if(s->queue_version != mpd.queue_version)
{
n = snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"update_queue\"}");
2014-02-16 18:46:53 +00:00
mg_websocket_write(c, 1, mpd.buf, n);
s->queue_version = mpd.queue_version;
}
}
return MG_TRUE;
2014-02-16 18:46:53 +00:00
}
void mpd_poll(struct mg_server *s)
2013-11-04 17:18:38 +00:00
{
2014-02-16 18:46:53 +00:00
switch (mpd.conn_state) {
2013-11-09 01:07:03 +00:00
case MPD_DISCONNECTED:
/* Try to connect */
2014-02-16 18:46:53 +00:00
fprintf(stdout, "MPD Connecting to %s:%d\n", mpd.host, mpd.port);
mpd.conn = mpd_connection_new(mpd.host, mpd.port, 3000);
if (mpd.conn == NULL) {
fprintf(stderr, "Out of memory.");
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
return;
}
2014-02-16 18:46:53 +00:00
if (mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS) {
fprintf(stderr, "MPD connection: %s\n", mpd_connection_get_error_message(mpd.conn));
for (struct mg_connection *c = mg_next(s, NULL); c != NULL; c = mg_next(s, c))
{
c->callback_param = (void *)mpd_connection_get_error_message(mpd.conn);
mpd_notify_callback(c, MG_POLL);
}
2014-02-16 18:46:53 +00:00
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
return;
}
2014-02-16 18:46:53 +00:00
if(mpd.password && !mpd_run_password(mpd.conn, mpd.password))
{
fprintf(stderr, "MPD connection: %s\n", mpd_connection_get_error_message(mpd.conn));
for (struct mg_connection *c = mg_next(s, NULL); c != NULL; c = mg_next(s, c))
{
c->callback_param = (void *)mpd_connection_get_error_message(mpd.conn);
mpd_notify_callback(c, MG_POLL);
}
2014-02-16 18:46:53 +00:00
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
return;
}
2014-02-16 18:46:53 +00:00
fprintf(stderr, "MPD connected.\n");
mpd_connection_set_timeout(mpd.conn, 10000);
2014-02-16 18:46:53 +00:00
mpd.conn_state = MPD_CONNECTED;
2015-04-28 09:08:21 +00:00
/* write outputs */
2015-05-01 21:51:44 +00:00
mpd.buf_size = mpd_put_outputs(mpd.buf, 1);
2015-04-28 09:08:21 +00:00
for (struct mg_connection *c = mg_next(s, NULL); c != NULL; c = mg_next(s, c))
{
c->callback_param = NULL;
mpd_notify_callback(c, MG_POLL);
}
2013-11-09 01:07:03 +00:00
break;
case MPD_FAILURE:
2014-02-16 18:46:53 +00:00
fprintf(stderr, "MPD connection failed.\n");
2013-11-09 01:07:03 +00:00
2014-02-16 18:46:53 +00:00
case MPD_DISCONNECT:
2014-02-04 16:58:10 +00:00
case MPD_RECONNECT:
2014-02-16 18:46:53 +00:00
if(mpd.conn != NULL)
mpd_connection_free(mpd.conn);
mpd.conn = NULL;
mpd.conn_state = MPD_DISCONNECTED;
2013-11-09 01:07:03 +00:00
break;
case MPD_CONNECTED:
mpd.buf_size = mpd_put_state(mpd.buf, &mpd.song_id, &mpd.next_song_id, &mpd.queue_version);
for (struct mg_connection *c = mg_next(s, NULL); c != NULL; c = mg_next(s, c))
{
c->callback_param = NULL;
mpd_notify_callback(c, MG_POLL);
}
2015-05-01 21:51:44 +00:00
mpd.buf_size = mpd_put_outputs(mpd.buf, 0);
2015-04-28 09:08:21 +00:00
for (struct mg_connection *c = mg_next(s, NULL); c != NULL; c = mg_next(s, c))
{
c->callback_param = NULL;
mpd_notify_callback(c, MG_POLL);
}
2013-11-09 01:07:03 +00:00
break;
}
2013-11-04 17:18:38 +00:00
}
2013-11-05 23:15:24 +00:00
char* mpd_get_title(struct mpd_song const *song)
2013-11-04 23:17:28 +00:00
{
2014-02-22 01:11:45 +00:00
char *str;
2013-11-05 23:15:24 +00:00
2013-11-09 01:07:03 +00:00
str = (char *)mpd_song_get_tag(song, MPD_TAG_TITLE, 0);
if(str == NULL){
str = basename((char *)mpd_song_get_uri(song));
}
2013-11-05 23:15:24 +00:00
return str;
2013-11-04 23:17:28 +00:00
}
2018-06-03 19:35:16 +00:00
char* mpd_get_track(struct mpd_song const *song)
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_TRACK, 0);
if(str == NULL){
str = "-";
}
return str;
}
char* mpd_get_album(struct mpd_song const *song)
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_ALBUM, 0);
if(str == NULL){
str = "-";
}
return str;
}
char* mpd_get_artist(struct mpd_song const *song)
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_ARTIST, 0);
if(str == NULL){
str = "-";
}
return str;
}
2018-04-16 19:22:07 +00:00
char* mpd_get_album_artist(struct mpd_song const *song)
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_ALBUM_ARTIST, 0);
if(str == NULL){
str = "-";
}
return str;
}
2014-11-20 19:17:16 +00:00
char* mpd_get_year(struct mpd_song const *song)
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_DATE, 0);
if(str == NULL){
str = "-";
2014-11-20 19:17:16 +00:00
}
return str;
}
int mpd_put_state(char *buffer, int *current_song_id, int *next_song_id, unsigned *queue_version)
2013-11-04 17:18:38 +00:00
{
2013-11-09 01:07:03 +00:00
struct mpd_status *status;
const struct mpd_audio_format *audioformat;
2013-11-09 01:07:03 +00:00
int len;
2014-02-16 18:46:53 +00:00
status = mpd_run_status(mpd.conn);
2013-11-09 01:07:03 +00:00
if (!status) {
2014-02-16 18:46:53 +00:00
fprintf(stderr, "MPD mpd_run_status: %s\n", mpd_connection_get_error_message(mpd.conn));
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
return 0;
}
if (status) {
audioformat = mpd_status_get_audio_format(status);
}
2013-11-09 01:07:03 +00:00
len = snprintf(buffer, MAX_SIZE,
"{\"type\":\"state\", \"data\":{"
"\"state\":%d, \"volume\":%d, \"songpos\": %d, \"elapsedTime\": %d, "
"\"totalTime\":%d, \"currentsongid\": %d, \"kbitrate\": %d, "
"\"audioformat\": { \"sample_rate\": %d, \"bits\": %d, \"channels\": %d}, "
"\"queue_length\": %d, \"nextsongpos\": %d"
"}}",
mpd_status_get_state(status),
mpd_status_get_volume(status),
mpd_status_get_song_pos(status),
mpd_status_get_elapsed_time(status),
mpd_status_get_total_time(status),
mpd_status_get_song_id(status),
mpd_status_get_kbit_rate(status),
audioformat ? audioformat->sample_rate : 0,
audioformat ? audioformat->bits : 0,
audioformat ? audioformat->channels : 0,
mpd_status_get_queue_length(status),
mpd_status_get_next_song_pos(status)
);
2013-11-09 01:07:03 +00:00
2014-01-17 15:26:26 +00:00
*current_song_id = mpd_status_get_song_id(status);
*next_song_id = mpd_status_get_next_song_id(status);
2014-01-17 15:26:26 +00:00
*queue_version = mpd_status_get_queue_version(status);
2013-11-09 01:07:03 +00:00
mpd_status_free(status);
return len;
2013-11-04 17:18:38 +00:00
}
int mympd_put_settings(char *buffer)
{
struct mpd_status *status;
int len;
char *replaygain;
status = mpd_run_status(mpd.conn);
if (!status) {
fprintf(stderr, "MPD mpd_run_status: %s\n", mpd_connection_get_error_message(mpd.conn));
mpd.conn_state = MPD_FAILURE;
return 0;
}
mpd_send_command(mpd.conn, "replay_gain_status", NULL);
struct mpd_pair *pair;
while ((pair = mpd_recv_pair(mpd.conn)) != NULL) {
replaygain=strdup(pair->value);
mpd_return_pair(mpd.conn, pair);
}
len = snprintf(buffer, MAX_SIZE,
"{\"type\":\"settings\", \"data\":{"
"\"repeat\":%d, \"single\":%d, \"crossfade\":%d, \"consume\":%d, \"random\":%d, "
"\"mixrampdb\": %lf, \"mixrampdelay\": %lf, \"mpdhost\" : \"%s\", \"mpdport\": \"%d\", \"passwort_set\": %s, "
"\"streamport\": \"%d\",\"coverimage\": \"%s\", \"max_elements_per_page\": %d, \"replaygain\": \"%s\""
"}}",
mpd_status_get_repeat(status),
mpd_status_get_single(status),
mpd_status_get_crossfade(status),
mpd_status_get_consume(status),
mpd_status_get_random(status),
mpd_status_get_mixrampdb(status),
mpd_status_get_mixrampdelay(status),
mpd.host, mpd.port,
mpd.password ? "true" : "false",
streamport, coverimage,
MAX_ELEMENTS_PER_PAGE,
replaygain
);
mpd_status_free(status);
return len;
}
2015-05-01 21:51:44 +00:00
int mpd_put_outputs(char *buffer, int names)
2015-04-28 09:08:21 +00:00
{
struct mpd_output *out;
int nout;
char *str, *strend;
str = buffer;
strend = buffer+MAX_SIZE;
2015-05-01 21:51:44 +00:00
str += snprintf(str, strend-str, "{\"type\":\"%s\", \"data\":{",
2015-05-25 16:11:22 +00:00
names ? "outputnames" : "outputs");
2015-04-28 09:08:21 +00:00
mpd_send_outputs(mpd.conn);
nout = 0;
while ((out = mpd_recv_output(mpd.conn)) != NULL) {
if (nout++)
*str++ = ',';
2015-05-01 21:51:44 +00:00
if (names)
str += snprintf(str, strend - str, " \"%d\":\"%s\"",
mpd_output_get_id(out), mpd_output_get_name(out));
else
str += snprintf(str, strend-str, " \"%d\":%d",
mpd_output_get_id(out), mpd_output_get_enabled(out));
2015-04-28 09:08:21 +00:00
mpd_output_free(out);
}
2015-05-01 22:07:37 +00:00
if (!mpd_response_finish(mpd.conn)) {
fprintf(stderr, "MPD outputs: %s\n", mpd_connection_get_error_message(mpd.conn));
2015-05-01 22:07:37 +00:00
mpd_connection_clear_error(mpd.conn);
return 0;
2015-05-01 22:07:37 +00:00
}
2015-04-28 09:08:21 +00:00
str += snprintf(str, strend-str, " }}");
return str-buffer;
}
2013-11-07 09:09:40 +00:00
int mpd_put_current_song(char *buffer)
2013-11-04 17:18:38 +00:00
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
2013-11-09 01:07:03 +00:00
struct mpd_song *song;
2013-11-04 17:18:38 +00:00
2014-02-16 18:46:53 +00:00
song = mpd_run_current_song(mpd.conn);
2013-11-09 01:07:03 +00:00
if(song == NULL)
return 0;
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\": \"song_change\", \"data\":{\"pos\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_pos(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_title(song));
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"uri\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_uri(song));
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "}}");
2013-11-09 01:07:03 +00:00
mpd_song_free(song);
2014-02-16 18:46:53 +00:00
mpd_response_finish(mpd.conn);
2013-11-09 01:07:03 +00:00
return cur - buffer;
2013-11-04 17:18:38 +00:00
}
2014-02-22 01:11:45 +00:00
int mpd_put_queue(char *buffer, unsigned int offset)
2013-11-04 17:18:38 +00:00
{
2013-11-09 01:07:03 +00:00
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_entity *entity;
unsigned long totalTime = 0;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
2013-11-04 17:18:38 +00:00
if (!mpd_send_list_queue_range_meta(mpd.conn, 0, -1))
RETURN_ERROR_AND_RECOVER("mpd_send_list_queue_meta");
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"queue\",\"data\":[ ");
2013-11-04 17:18:38 +00:00
2014-02-16 18:46:53 +00:00
while((entity = mpd_recv_entity(mpd.conn)) != NULL) {
2013-11-07 09:09:40 +00:00
const struct mpd_song *song;
unsigned int drtn;
2013-11-04 17:18:38 +00:00
2013-11-09 01:07:03 +00:00
if(mpd_entity_get_type(entity) == MPD_ENTITY_TYPE_SONG) {
song = mpd_entity_get_song(entity);
drtn = mpd_song_get_duration(song);
totalTime += drtn;
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"id\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_id(song));
cur += json_emit_raw_str(cur, end - cur, ",\"pos\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_pos(song));
cur += json_emit_raw_str(cur, end - cur, ",\"duration\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_duration(song));
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_title(song));
cur += json_emit_raw_str(cur, end - cur, "},");
}
2013-11-09 01:07:03 +00:00
}
mpd_entity_free(entity);
}
/* remove last ',' */
cur--;
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "],\"totalTime\":");
cur += json_emit_int(cur, end - cur, totalTime);
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, "}");
2013-11-09 01:07:03 +00:00
return cur - buffer;
2013-11-07 09:09:40 +00:00
}
2013-11-04 17:18:38 +00:00
int mpd_put_browse(char *buffer, char *path, unsigned int offset, char *filter)
2013-11-07 09:09:40 +00:00
{
2013-11-09 01:07:03 +00:00
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_entity *entity;
const struct mpd_playlist *pl;
2014-02-22 01:11:45 +00:00
unsigned int entity_count = 0;
unsigned int entities_returned = 0;
const char *entityName;
2013-11-09 01:07:03 +00:00
if (!mpd_send_list_meta(mpd.conn, path))
RETURN_ERROR_AND_RECOVER("mpd_send_list_meta");
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"browse\",\"data\":[ ");
2013-11-07 09:09:40 +00:00
2014-02-16 18:46:53 +00:00
while((entity = mpd_recv_entity(mpd.conn)) != NULL) {
2013-11-07 09:09:40 +00:00
const struct mpd_song *song;
const struct mpd_directory *dir;
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
switch (mpd_entity_get_type(entity)) {
case MPD_ENTITY_TYPE_UNKNOWN:
entity_count --;
break;
case MPD_ENTITY_TYPE_SONG:
song = mpd_entity_get_song(entity);
entityName = mpd_get_title(song);
if (strncmp(filter,"!",1) == 0 || strncasecmp(filter,entityName,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*entityName) == 0 )
) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"song\",\"uri\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_uri(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
cur += json_emit_raw_str(cur, end - cur, ",\"duration\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_duration(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, entityName);
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
}
break;
case MPD_ENTITY_TYPE_DIRECTORY:
dir = mpd_entity_get_directory(entity);
entityName = mpd_directory_get_path(dir);
char *dirName = strrchr(entityName, '/');
if (dirName != NULL) {
dirName ++;
} else {
dirName = strdup(entityName);
}
if (strncmp(filter,"!",1) == 0 || strncasecmp(filter,dirName,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*dirName) == 0 )
) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"directory\",\"dir\":");
cur += json_emit_quoted_str(cur, end - cur, entityName);
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
}
break;
case MPD_ENTITY_TYPE_PLAYLIST:
pl = mpd_entity_get_playlist(entity);
entityName = mpd_playlist_get_path(pl);
char *plName = strrchr(entityName, '/');
if (plName != NULL) {
plName ++;
} else {
plName = strdup(entityName);
}
if (strncmp(filter,"!",1) == 0 || strncasecmp(filter,plName,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*plName) == 0 )
) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"playlist\",\"plist\":");
cur += json_emit_quoted_str(cur, end - cur, entityName );
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
}
break;
}
2013-11-07 09:09:40 +00:00
}
2013-11-09 01:07:03 +00:00
mpd_entity_free(entity);
}
2013-11-04 17:18:38 +00:00
2014-02-16 18:46:53 +00:00
if (mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS || !mpd_response_finish(mpd.conn)) {
fprintf(stderr, "MPD mpd_send_list_meta: %s\n", mpd_connection_get_error_message(mpd.conn));
mpd.conn_state = MPD_FAILURE;
2013-11-07 09:09:40 +00:00
return 0;
}
2013-11-09 01:07:03 +00:00
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "],\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"filter\":");
cur += json_emit_quoted_str(cur, end - cur, filter);
cur += json_emit_raw_str(cur, end - cur, "}");
2013-11-09 01:07:03 +00:00
return cur - buffer;
}
2014-02-16 18:46:53 +00:00
int mympd_put_db_tag(char *buffer, unsigned int offset, char *mpdtagtype, char *mpdsearchtagtype, char *searchstr, char *filter)
2018-06-03 16:36:06 +00:00
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_pair *pair;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
if(mpd_search_db_tags(mpd.conn, mpd_tag_name_parse(mpdtagtype)) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_db_tags");
if (mpd_tag_name_parse(mpdsearchtagtype) != MPD_TAG_UNKNOWN) {
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, mpd_tag_name_parse(mpdsearchtagtype), searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
}
if(mpd_search_commit(mpd.conn) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"listDBtags\",\"data\":[ ");
while((pair = mpd_recv_pair_tag(mpd.conn, mpd_tag_name_parse(mpdtagtype))) != NULL) {
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
if (strncmp(filter,"!",1) == 0 || strncasecmp(filter,pair->value,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*pair->value) == 0 )
) {
2018-06-03 16:36:06 +00:00
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":");
cur += json_emit_quoted_str(cur, end - cur, mpdtagtype);
cur += json_emit_raw_str(cur, end - cur, ",\"value\":");
cur += json_emit_quoted_str(cur, end - cur, pair->value);
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
2018-06-03 16:36:06 +00:00
}
}
mpd_return_pair(mpd.conn, pair);
}
2018-06-03 16:36:06 +00:00
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "]");
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"tagtype\":");
cur += json_emit_quoted_str(cur, end - cur, mpdtagtype);
cur += json_emit_raw_str(cur, end - cur, ",\"searchtagtype\":");
cur += json_emit_quoted_str(cur, end - cur, mpdsearchtagtype);
cur += json_emit_raw_str(cur, end - cur, ",\"searchstr\":");
cur += json_emit_quoted_str(cur, end - cur, searchstr);
cur += json_emit_raw_str(cur, end - cur, ",\"filter\":");
cur += json_emit_quoted_str(cur, end - cur, filter);
cur += json_emit_raw_str(cur, end - cur, "}");
2018-06-03 16:36:06 +00:00
return cur - buffer;
}
int mympd_put_songs_in_album(char *buffer, char *albumartist, char *album)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_song *song;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
2018-06-03 19:35:16 +00:00
if(mpd_search_db_songs(mpd.conn, true) == false) {
2018-06-03 16:36:06 +00:00
RETURN_ERROR_AND_RECOVER("mpd_search_db_songs");
}
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, MPD_TAG_ALBUM_ARTIST, albumartist) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, MPD_TAG_ALBUM, album) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
if(mpd_search_commit(mpd.conn) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
else {
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"listTitles\",\"data\":[ ");
while((song = mpd_recv_song(mpd.conn)) != NULL) {
entity_count ++;
if(entity_count <= MAX_ELEMENTS_PER_PAGE) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"song\"");
cur += json_emit_raw_str(cur, end - cur, ",\"uri\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_uri(song));
cur += json_emit_raw_str(cur, end - cur, ",\"duration\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_duration(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_title(song));
2018-06-03 19:35:16 +00:00
cur += json_emit_raw_str(cur, end - cur, ",\"track\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_track(song));
2018-06-03 16:36:06 +00:00
cur += json_emit_raw_str(cur, end - cur, "},");
}
mpd_song_free(song);
}
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "]");
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"albumartist\":");
cur += json_emit_quoted_str(cur, end - cur, albumartist);
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
cur += json_emit_quoted_str(cur, end - cur, album);
cur += json_emit_raw_str(cur, end - cur, "}");
}
return cur - buffer;
}
int mympd_put_playlists(char *buffer, unsigned int offset, char *filter)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_playlist *pl;
unsigned int entity_count = 0;
unsigned int entities_returned = 0;
const char *plpath;
if (!mpd_send_list_playlists(mpd.conn))
RETURN_ERROR_AND_RECOVER("mpd_send_lists_playlists");
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"playlists\",\"data\":[ ");
while((pl = mpd_recv_playlist(mpd.conn)) != NULL) {
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
plpath = mpd_playlist_get_path(pl);
if (strncmp(filter,"!",1) == 0 || strncasecmp(filter,plpath,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*plpath) == 0 )
) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"playlist\",\"plist\":");
cur += json_emit_quoted_str(cur, end - cur, plpath);
cur += json_emit_raw_str(cur, end - cur, ",\"last_modified\":");
cur += json_emit_int(cur, end - cur, mpd_playlist_get_last_modified(pl));
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
}
}
mpd_playlist_free(pl);
}
2018-06-03 16:36:06 +00:00
if (mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS || !mpd_response_finish(mpd.conn))
RETURN_ERROR_AND_RECOVER("mpd_send_list_playlists");
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "],\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, "}");
return cur - buffer;
}
int mpd_search(char *buffer, char *mpdtagtype, unsigned int offset, char *searchstr)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_song *song;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
if(mpd_search_db_songs(mpd.conn, false) == false) {
RETURN_ERROR_AND_RECOVER("mpd_search_db_songs");
}
if (mpd_tag_name_parse(mpdtagtype) != MPD_TAG_UNKNOWN) {
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, mpd_tag_name_parse(mpdtagtype), searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
}
else {
if (mpd_search_add_any_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_any_tag_constraint");
}
if(mpd_search_commit(mpd.conn) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
else {
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"search\",\"data\":[ ");
while((song = mpd_recv_song(mpd.conn)) != NULL) {
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"song\"");
cur += json_emit_raw_str(cur, end - cur, ",\"uri\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_uri(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
cur += json_emit_raw_str(cur, end - cur, ",\"duration\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_duration(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_title(song));
cur += json_emit_raw_str(cur, end - cur, "},");
2018-05-24 22:21:19 +00:00
}
mpd_song_free(song);
}
2018-05-24 22:21:19 +00:00
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "]");
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"mpdtagtype\":");
cur += json_emit_quoted_str(cur, end - cur, mpdtagtype);
cur += json_emit_raw_str(cur, end - cur, "}");
2018-05-24 22:21:19 +00:00
}
return cur - buffer;
}
int mpd_search_add(char *buffer,char *mpdtagtype, char *searchstr)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_song *song;
if(mpd_search_add_db_songs(mpd.conn, false) == false) {
RETURN_ERROR_AND_RECOVER("mpd_search_add_db_songs");
}
if (mpd_tag_name_parse(mpdtagtype) != MPD_TAG_UNKNOWN) {
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, mpd_tag_name_parse(mpdtagtype), searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
}
else {
if (mpd_search_add_any_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_any_tag_constraint");
}
if(mpd_search_commit(mpd.conn) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
while((song = mpd_recv_song(mpd.conn)) != NULL) {
mpd_song_free(song);
}
return cur - buffer;
}
int mpd_search_queue(char *buffer, char *mpdtagtype, unsigned int offset, char *searchstr)
2018-05-24 22:21:19 +00:00
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_song *song;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
2018-05-24 22:21:19 +00:00
if(mpd_search_queue_songs(mpd.conn, false) == false) {
2018-05-24 22:21:19 +00:00
RETURN_ERROR_AND_RECOVER("mpd_search_queue_songs");
}
if (mpd_tag_name_parse(mpdtagtype) != MPD_TAG_UNKNOWN) {
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, mpd_tag_name_parse(mpdtagtype), searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
}
else {
if (mpd_search_add_any_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_any_tag_constraint");
}
if(mpd_search_commit(mpd.conn) == false)
2018-05-24 22:21:19 +00:00
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
else {
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"queuesearch\",\"data\":[ ");
while((song = mpd_recv_song(mpd.conn)) != NULL) {
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
entities_returned ++;
2018-05-24 23:08:33 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"song\"");
2018-05-24 22:21:19 +00:00
cur += json_emit_raw_str(cur, end - cur, ",\"id\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_id(song));
cur += json_emit_raw_str(cur, end - cur, ",\"pos\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_pos(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
2018-05-24 22:21:19 +00:00
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
cur += json_emit_raw_str(cur, end - cur, ",\"duration\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_duration(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_title(song));
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "},");
mpd_song_free(song);
}
}
cur--;
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "]");
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"mpdtagtype\":");
cur += json_emit_quoted_str(cur, end - cur, mpdtagtype);
cur += json_emit_raw_str(cur, end - cur, "}");
}
2013-11-09 01:07:03 +00:00
return cur - buffer;
}
2018-05-27 21:34:39 +00:00
int mympd_get_stats(char *buffer)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_stats *stats = mpd_run_stats(mpd.conn);
2018-05-31 23:29:45 +00:00
const unsigned *version = mpd_connection_get_server_version(mpd.conn);
char mpd_version[20];
snprintf(mpd_version,20,"%i.%i.%i", version[0], version[1], version[2]);
2018-05-27 21:34:39 +00:00
if (stats == NULL)
RETURN_ERROR_AND_RECOVER("mympd_get_stats");
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"mpdstats\",\"data\": {");
cur += json_emit_raw_str(cur, end - cur, "\"artists\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_number_of_artists(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"albums\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_number_of_albums(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"songs\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_number_of_songs(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"playtime\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_play_time(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"uptime\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_uptime(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"dbupdated\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_db_update_time(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"dbplaytime\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_db_play_time(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"mympd_version\":");
2018-05-31 23:29:45 +00:00
cur += json_emit_quoted_str(cur, end - cur, MYMPD_VERSION);
cur += json_emit_raw_str(cur, end - cur, ",\"mpd_version\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_version);
2018-05-27 21:34:39 +00:00
cur += json_emit_raw_str(cur, end - cur, "}}");
mpd_stats_free(stats);
return cur - buffer;
}
2014-02-16 18:46:53 +00:00
void mpd_disconnect()
{
mpd.conn_state = MPD_DISCONNECT;
mpd_poll(NULL);
2014-03-18 00:30:01 +00:00
}