mpd/src/QueueCommands.cxx

392 lines
9.9 KiB
C++
Raw Normal View History

2012-08-25 12:59:54 +02:00
/*
2013-01-03 10:33:04 +01:00
* Copyright (C) 2003-2013 The Music Player Daemon Project
2012-08-25 12:59:54 +02:00
* http://www.musicpd.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; either version 2 of the License, or
* (at your option) any later version.
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include "QueueCommands.hxx"
#include "CommandError.hxx"
2012-08-29 18:55:49 +02:00
#include "DatabaseQueue.hxx"
2012-08-29 19:12:26 +02:00
#include "SongFilter.hxx"
#include "DatabaseSelection.hxx"
2013-01-04 20:50:00 +01:00
#include "Playlist.hxx"
#include "PlaylistPrint.hxx"
2013-01-03 10:33:04 +01:00
#include "ClientFile.hxx"
#include "Client.hxx"
2013-01-07 10:55:05 +01:00
#include "Partition.hxx"
2013-01-03 10:33:04 +01:00
#include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx"
2013-01-03 17:34:51 +01:00
#include "ls.hxx"
2013-04-08 23:30:21 +02:00
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
#include "fs/AllocatedPath.hxx"
2012-08-25 12:59:54 +02:00
2013-10-17 21:53:19 +02:00
#include <limits>
2012-08-25 12:59:54 +02:00
#include <string.h>
enum command_return
2013-10-19 18:48:38 +02:00
handle_add(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
char *uri = argv[1];
PlaylistResult result;
2012-08-25 12:59:54 +02:00
if (memcmp(uri, "file:///", 8) == 0) {
const char *path_utf8 = uri + 7;
const auto path_fs = AllocatedPath::FromUTF8(path_utf8);
if (path_fs.IsNull()) {
command_error(client, ACK_ERROR_NO_EXIST,
"unsupported file name");
return COMMAND_RETURN_ERROR;
}
2012-08-25 12:59:54 +02:00
Error error;
if (!client_allow_file(client, path_fs, error))
2012-08-25 12:59:54 +02:00
return print_error(client, error);
2013-10-19 18:48:38 +02:00
result = client.partition.AppendFile(path_utf8);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
if (uri_has_scheme(uri)) {
if (!uri_supported_scheme(uri)) {
command_error(client, ACK_ERROR_NO_EXIST,
"unsupported URI scheme");
return COMMAND_RETURN_ERROR;
}
2013-10-19 18:48:38 +02:00
result = client.partition.AppendURI(uri);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
const DatabaseSelection selection(uri, true);
Error error;
2013-10-19 18:48:38 +02:00
return AddFromDatabase(client.partition, selection, error)
2012-08-25 12:59:54 +02:00
? COMMAND_RETURN_OK
: print_error(client, error);
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_addid(Client &client, int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
char *uri = argv[1];
unsigned added_id;
PlaylistResult result;
2012-08-25 12:59:54 +02:00
if (memcmp(uri, "file:///", 8) == 0) {
const char *path_utf8 = uri + 7;
const auto path_fs = AllocatedPath::FromUTF8(path_utf8);
if (path_fs.IsNull()) {
command_error(client, ACK_ERROR_NO_EXIST,
"unsupported file name");
return COMMAND_RETURN_ERROR;
}
2012-08-25 12:59:54 +02:00
Error error;
if (!client_allow_file(client, path_fs, error))
2012-08-25 12:59:54 +02:00
return print_error(client, error);
2013-10-19 18:48:38 +02:00
result = client.partition.AppendFile(path_utf8, &added_id);
2012-08-25 12:59:54 +02:00
} else {
if (uri_has_scheme(uri) && !uri_supported_scheme(uri)) {
command_error(client, ACK_ERROR_NO_EXIST,
"unsupported URI scheme");
return COMMAND_RETURN_ERROR;
}
2013-10-19 18:48:38 +02:00
result = client.partition.AppendURI(uri, &added_id);
2012-08-25 12:59:54 +02:00
}
if (result != PlaylistResult::SUCCESS)
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
if (argc == 3) {
unsigned to;
if (!check_unsigned(client, &to, argv[2]))
return COMMAND_RETURN_ERROR;
2013-10-19 18:48:38 +02:00
result = client.partition.MoveId(added_id, to);
if (result != PlaylistResult::SUCCESS) {
2012-08-25 12:59:54 +02:00
enum command_return ret =
print_playlist_result(client, result);
2013-10-19 18:48:38 +02:00
client.partition.DeleteId(added_id);
2012-08-25 12:59:54 +02:00
return ret;
}
}
client_printf(client, "Id: %u\n", added_id);
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_delete(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned start, end;
if (!check_range(client, &start, &end, argv[1]))
return COMMAND_RETURN_ERROR;
PlaylistResult result = client.partition.DeleteRange(start, end);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_deleteid(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned id;
if (!check_unsigned(client, &id, argv[1]))
return COMMAND_RETURN_ERROR;
PlaylistResult result = client.partition.DeleteId(id);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_playlist(Client &client,
2013-08-04 23:48:01 +02:00
gcc_unused int argc, gcc_unused char *argv[])
2012-08-25 12:59:54 +02:00
{
2013-10-19 18:48:38 +02:00
playlist_print_uris(client, client.playlist);
2012-08-25 12:59:54 +02:00
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_shuffle(gcc_unused Client &client,
2013-08-04 23:48:01 +02:00
gcc_unused int argc, gcc_unused char *argv[])
2012-08-25 12:59:54 +02:00
{
2013-10-19 18:48:38 +02:00
unsigned start = 0, end = client.playlist.queue.GetLength();
2012-08-25 12:59:54 +02:00
if (argc == 2 && !check_range(client, &start, &end, argv[1]))
return COMMAND_RETURN_ERROR;
2013-10-19 18:48:38 +02:00
client.partition.Shuffle(start, end);
2012-08-25 12:59:54 +02:00
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_clear(gcc_unused Client &client,
2013-08-04 23:48:01 +02:00
gcc_unused int argc, gcc_unused char *argv[])
2012-08-25 12:59:54 +02:00
{
2013-10-19 18:48:38 +02:00
client.partition.ClearQueue();
2012-08-25 12:59:54 +02:00
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_plchanges(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
uint32_t version;
if (!check_uint32(client, &version, argv[1]))
return COMMAND_RETURN_ERROR;
2013-10-19 18:48:38 +02:00
playlist_print_changes_info(client, client.playlist, version);
2012-08-25 12:59:54 +02:00
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_plchangesposid(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
uint32_t version;
if (!check_uint32(client, &version, argv[1]))
return COMMAND_RETURN_ERROR;
2013-10-19 18:48:38 +02:00
playlist_print_changes_position(client, client.playlist, version);
2012-08-25 12:59:54 +02:00
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_playlistinfo(Client &client, int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
2013-10-17 21:53:19 +02:00
unsigned start = 0, end = std::numeric_limits<unsigned>::max();
2012-08-25 12:59:54 +02:00
bool ret;
if (argc == 2 && !check_range(client, &start, &end, argv[1]))
return COMMAND_RETURN_ERROR;
2013-10-19 18:48:38 +02:00
ret = playlist_print_info(client, client.playlist, start, end);
2012-08-25 12:59:54 +02:00
if (!ret)
return print_playlist_result(client,
PlaylistResult::BAD_RANGE);
2012-08-25 12:59:54 +02:00
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_playlistid(Client &client, int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
if (argc >= 2) {
unsigned id;
if (!check_unsigned(client, &id, argv[1]))
return COMMAND_RETURN_ERROR;
2013-10-19 18:48:38 +02:00
bool ret = playlist_print_id(client, client.playlist, id);
2012-08-25 12:59:54 +02:00
if (!ret)
return print_playlist_result(client,
PlaylistResult::NO_SUCH_SONG);
2012-08-25 12:59:54 +02:00
} else {
2013-10-19 18:48:38 +02:00
playlist_print_info(client, client.playlist,
2013-10-17 21:53:19 +02:00
0, std::numeric_limits<unsigned>::max());
2012-08-25 12:59:54 +02:00
}
return COMMAND_RETURN_OK;
}
static enum command_return
2013-10-19 18:48:38 +02:00
handle_playlist_match(Client &client, int argc, char *argv[],
2012-08-25 12:59:54 +02:00
bool fold_case)
{
2012-08-29 19:27:03 +02:00
SongFilter filter;
if (!filter.Parse(argc - 1, argv + 1, fold_case)) {
2012-08-25 12:59:54 +02:00
command_error(client, ACK_ERROR_ARG, "incorrect arguments");
return COMMAND_RETURN_ERROR;
}
2013-10-19 18:48:38 +02:00
playlist_print_find(client, client.playlist, filter);
2012-08-25 12:59:54 +02:00
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_playlistfind(Client &client, int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
return handle_playlist_match(client, argc, argv, false);
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_playlistsearch(Client &client, int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
return handle_playlist_match(client, argc, argv, true);
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_prio(Client &client, int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned priority;
if (!check_unsigned(client, &priority, argv[1]))
return COMMAND_RETURN_ERROR;
if (priority > 0xff) {
command_error(client, ACK_ERROR_ARG,
"Priority out of range: %s", argv[1]);
return COMMAND_RETURN_ERROR;
}
for (int i = 2; i < argc; ++i) {
unsigned start_position, end_position;
if (!check_range(client, &start_position, &end_position,
argv[i]))
return COMMAND_RETURN_ERROR;
PlaylistResult result =
2013-10-19 18:48:38 +02:00
client.partition.SetPriorityRange(start_position,
2013-01-07 10:55:05 +01:00
end_position,
priority);
if (result != PlaylistResult::SUCCESS)
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_prioid(Client &client, int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned priority;
if (!check_unsigned(client, &priority, argv[1]))
return COMMAND_RETURN_ERROR;
if (priority > 0xff) {
command_error(client, ACK_ERROR_ARG,
"Priority out of range: %s", argv[1]);
return COMMAND_RETURN_ERROR;
}
for (int i = 2; i < argc; ++i) {
unsigned song_id;
if (!check_unsigned(client, &song_id, argv[i]))
return COMMAND_RETURN_ERROR;
PlaylistResult result =
2013-10-19 18:48:38 +02:00
client.partition.SetPriorityId(song_id, priority);
if (result != PlaylistResult::SUCCESS)
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
return COMMAND_RETURN_OK;
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_move(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned start, end;
int to;
if (!check_range(client, &start, &end, argv[1]))
return COMMAND_RETURN_ERROR;
if (!check_int(client, &to, argv[2]))
return COMMAND_RETURN_ERROR;
2013-01-07 10:55:05 +01:00
PlaylistResult result =
2013-10-19 18:48:38 +02:00
client.partition.MoveRange(start, end, to);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_moveid(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned id;
int to;
if (!check_unsigned(client, &id, argv[1]))
return COMMAND_RETURN_ERROR;
if (!check_int(client, &to, argv[2]))
return COMMAND_RETURN_ERROR;
PlaylistResult result = client.partition.MoveId(id, to);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_swap(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned song1, song2;
if (!check_unsigned(client, &song1, argv[1]))
return COMMAND_RETURN_ERROR;
if (!check_unsigned(client, &song2, argv[2]))
return COMMAND_RETURN_ERROR;
2013-01-07 10:55:05 +01:00
PlaylistResult result =
2013-10-19 18:48:38 +02:00
client.partition.SwapPositions(song1, song2);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
enum command_return
2013-10-19 18:48:38 +02:00
handle_swapid(Client &client, gcc_unused int argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned id1, id2;
if (!check_unsigned(client, &id1, argv[1]))
return COMMAND_RETURN_ERROR;
if (!check_unsigned(client, &id2, argv[2]))
return COMMAND_RETURN_ERROR;
2013-01-07 10:55:05 +01:00
PlaylistResult result = client.partition.SwapIds(id1, id2);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}