2012-08-25 12:59:54 +02:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 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"
|
2012-09-25 12:10:12 +02:00
|
|
|
#include "CommandError.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/DatabaseQueue.hxx"
|
|
|
|
#include "db/Selection.hxx"
|
2014-02-02 14:37:52 +01:00
|
|
|
#include "SongFilter.hxx"
|
|
|
|
#include "SongLoader.hxx"
|
2014-02-27 17:12:42 +01:00
|
|
|
#include "queue/Playlist.hxx"
|
2012-08-29 20:17:13 +02:00
|
|
|
#include "PlaylistPrint.hxx"
|
2014-01-24 00:26:53 +01:00
|
|
|
#include "client/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"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-17 21:59:35 +02:00
|
|
|
#include "fs/AllocatedPath.hxx"
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-17 21:53:19 +02:00
|
|
|
#include <limits>
|
2013-10-17 18:42:14 +02:00
|
|
|
|
2012-08-25 12:59:54 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2014-02-02 14:37:52 +01:00
|
|
|
static const char *
|
|
|
|
translate_uri(Client &client, const char *uri)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2014-02-02 14:37:52 +01:00
|
|
|
if (memcmp(uri, "file:///", 8) == 0)
|
|
|
|
/* drop the "file://", leave only an absolute path
|
|
|
|
(starting with a slash) */
|
|
|
|
return uri + 7;
|
|
|
|
|
|
|
|
if (PathTraitsUTF8::IsAbsolute(uri)) {
|
|
|
|
command_error(client, ACK_ERROR_NO_EXIST, "Malformed URI");
|
|
|
|
return nullptr;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2014-02-02 14:37:52 +01:00
|
|
|
return uri;
|
|
|
|
}
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2014-02-02 14:37:52 +01:00
|
|
|
CommandResult
|
|
|
|
handle_add(Client &client, gcc_unused int argc, char *argv[])
|
|
|
|
{
|
|
|
|
const char *const uri = translate_uri(client, argv[1]);
|
|
|
|
if (uri == nullptr)
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
|
|
|
|
if (uri_has_scheme(uri) || PathTraitsUTF8::IsAbsolute(uri)) {
|
|
|
|
const SongLoader loader(client);
|
|
|
|
auto result = client.partition.AppendURI(loader, uri);
|
2012-08-25 12:59:54 +02:00
|
|
|
return print_playlist_result(client, result);
|
|
|
|
}
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2013-01-07 11:33:00 +01:00
|
|
|
const DatabaseSelection selection(uri, true);
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-10-19 18:48:38 +02:00
|
|
|
return AddFromDatabase(client.partition, selection, error)
|
2013-10-20 13:10:54 +02:00
|
|
|
? CommandResult::OK
|
2012-08-25 12:59:54 +02:00
|
|
|
: print_error(client, error);
|
2014-01-30 20:29:48 +01:00
|
|
|
#else
|
|
|
|
command_error(client, ACK_ERROR_NO_EXIST, "No database");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
#endif
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_addid(Client &client, int argc, char *argv[])
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2014-02-02 14:37:52 +01:00
|
|
|
const char *const uri = translate_uri(client, argv[1]);
|
|
|
|
if (uri == nullptr)
|
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2014-02-02 14:37:52 +01:00
|
|
|
const SongLoader loader(client);
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2014-02-02 14:37:52 +01:00
|
|
|
unsigned added_id;
|
|
|
|
auto result = client.partition.AppendURI(loader, uri, &added_id);
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-19 19:50: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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2013-10-19 18:48:38 +02:00
|
|
|
result = client.partition.MoveId(added_id, to);
|
2013-10-19 19:50:54 +02:00
|
|
|
if (result != PlaylistResult::SUCCESS) {
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult ret =
|
2012-08-25 12:59:54 +02:00
|
|
|
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);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
PlaylistResult result = client.partition.DeleteRange(start, end);
|
2012-08-25 12:59:54 +02:00
|
|
|
return print_playlist_result(client, result);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
PlaylistResult result = client.partition.DeleteId(id);
|
2012-08-25 12:59:54 +02:00
|
|
|
return print_playlist_result(client, result);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
client.partition.Shuffle(start, end);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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();
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_changes_info(client, client.playlist, version);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_changes_position(client, client.playlist, version);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
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,
|
2013-10-19 19:50:54 +02:00
|
|
|
PlaylistResult::BAD_RANGE);
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
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,
|
2013-10-19 19:50:54 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
static CommandResult
|
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");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_find(client, client.playlist, filter);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
|
|
|
if (priority > 0xff) {
|
|
|
|
command_error(client, ACK_ERROR_ARG,
|
|
|
|
"Priority out of range: %s", argv[1]);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 2; i < argc; ++i) {
|
|
|
|
unsigned start_position, end_position;
|
|
|
|
if (!check_range(client, &start_position, &end_position,
|
|
|
|
argv[i]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
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);
|
2013-10-19 19:50:54 +02:00
|
|
|
if (result != PlaylistResult::SUCCESS)
|
2012-08-25 12:59:54 +02:00
|
|
|
return print_playlist_result(client, result);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
|
|
|
if (priority > 0xff) {
|
|
|
|
command_error(client, ACK_ERROR_ARG,
|
|
|
|
"Priority out of range: %s", argv[1]);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 2; i < argc; ++i) {
|
|
|
|
unsigned song_id;
|
|
|
|
if (!check_unsigned(client, &song_id, argv[i]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
PlaylistResult result =
|
2013-10-19 18:48:38 +02:00
|
|
|
client.partition.SetPriorityId(song_id, priority);
|
2013-10-19 19:50:54 +02:00
|
|
|
if (result != PlaylistResult::SUCCESS)
|
2012-08-25 12:59:54 +02:00
|
|
|
return print_playlist_result(client, result);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
if (!check_int(client, &to, argv[2]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2013-01-07 10:55:05 +01:00
|
|
|
|
2013-10-19 19:50:54 +02: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);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
if (!check_int(client, &to, argv[2]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2013-10-19 19:50:54 +02:00
|
|
|
PlaylistResult result = client.partition.MoveId(id, to);
|
2012-08-25 12:59:54 +02:00
|
|
|
return print_playlist_result(client, result);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
if (!check_unsigned(client, &song2, argv[2]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2013-01-07 10:55:05 +01:00
|
|
|
|
2013-10-19 19:50:54 +02: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);
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
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]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
if (!check_unsigned(client, &id2, argv[2]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2013-01-07 10:55:05 +01:00
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
PlaylistResult result = client.partition.SwapIds(id1, id2);
|
2012-08-25 12:59:54 +02:00
|
|
|
return print_playlist_result(client, result);
|
|
|
|
}
|