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"
|
2014-07-11 20:01:53 +02:00
|
|
|
#include "BulkEdit.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"
|
2014-04-24 09:43:08 +02:00
|
|
|
#include "util/ConstBuffer.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2014-07-12 03:00:01 +02:00
|
|
|
#include "util/NumberParser.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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_add(Client &client, ConstBuffer<const char *> args)
|
2014-02-02 14:37:52 +01:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
const char *uri = args.front();
|
2014-11-18 21:26:31 +01:00
|
|
|
if (memcmp(uri, "/", 2) == 0)
|
|
|
|
/* this URI is malformed, but some clients are buggy
|
|
|
|
and use "add /" to add the whole database, which
|
|
|
|
was never intended to work, but once did; in order
|
|
|
|
to retain backwards compatibility, work around this
|
|
|
|
here */
|
|
|
|
uri = "";
|
|
|
|
|
|
|
|
uri = translate_uri(client, uri);
|
2014-02-02 14:37:52 +01:00
|
|
|
if (uri == nullptr)
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
|
|
|
|
if (uri_has_scheme(uri) || PathTraitsUTF8::IsAbsolute(uri)) {
|
|
|
|
const SongLoader loader(client);
|
2014-02-27 17:27:23 +01:00
|
|
|
Error error;
|
|
|
|
unsigned id = client.partition.AppendURI(loader, uri, error);
|
|
|
|
if (id == 0)
|
|
|
|
return print_error(client, error);
|
|
|
|
|
|
|
|
return CommandResult::OK;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2014-07-11 20:01:53 +02:00
|
|
|
const ScopeBulkEdit bulk_edit(client.partition);
|
|
|
|
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_addid(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
const char *const uri = translate_uri(client, args.front());
|
2014-02-02 14:37:52 +01:00
|
|
|
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);
|
2014-02-27 17:27:23 +01:00
|
|
|
Error error;
|
|
|
|
unsigned added_id = client.partition.AppendURI(loader, uri, error);
|
|
|
|
if (added_id == 0)
|
|
|
|
return print_error(client, error);
|
2012-08-25 12:59:54 +02:00
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (args.size == 2) {
|
2012-08-25 12:59:54 +02:00
|
|
|
unsigned to;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &to, args[1]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2014-02-27 17:27:23 +01:00
|
|
|
PlaylistResult 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
|
|
|
}
|
|
|
|
|
2014-07-12 03:00:01 +02:00
|
|
|
/**
|
|
|
|
* Parse a string in the form "START:END", both being (optional)
|
|
|
|
* fractional non-negative time offsets in seconds. Returns both in
|
|
|
|
* integer milliseconds. Omitted values are zero.
|
|
|
|
*/
|
|
|
|
static bool
|
2014-08-28 12:53:48 +02:00
|
|
|
parse_time_range(const char *p, SongTime &start_r, SongTime &end_r)
|
2014-07-12 03:00:01 +02:00
|
|
|
{
|
|
|
|
char *endptr;
|
|
|
|
|
|
|
|
const float start = ParseFloat(p, &endptr);
|
|
|
|
if (*endptr != ':' || start < 0)
|
|
|
|
return false;
|
|
|
|
|
2014-08-28 12:53:48 +02:00
|
|
|
start_r = endptr > p
|
|
|
|
? SongTime::FromS(start)
|
|
|
|
: SongTime::zero();
|
2014-07-12 03:00:01 +02:00
|
|
|
|
|
|
|
p = endptr + 1;
|
|
|
|
|
|
|
|
const float end = ParseFloat(p, &endptr);
|
|
|
|
if (*endptr != 0 || end < 0)
|
|
|
|
return false;
|
|
|
|
|
2014-08-28 12:53:48 +02:00
|
|
|
end_r = endptr > p
|
|
|
|
? SongTime::FromS(end)
|
|
|
|
: SongTime::zero();
|
2014-07-12 03:00:01 +02:00
|
|
|
|
2014-08-28 12:53:48 +02:00
|
|
|
return end_r.IsZero() || end_r > start_r;
|
2014-07-12 03:00:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CommandResult
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_rangeid(Client &client, ConstBuffer<const char *> args)
|
2014-07-12 03:00:01 +02:00
|
|
|
{
|
|
|
|
unsigned id;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &id, args.front()))
|
2014-07-12 03:00:01 +02:00
|
|
|
return CommandResult::ERROR;
|
|
|
|
|
2014-08-28 12:53:48 +02:00
|
|
|
SongTime start, end;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!parse_time_range(args[1], start, end)) {
|
2014-07-12 03:00:01 +02:00
|
|
|
command_error(client, ACK_ERROR_ARG, "Bad range");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
Error error;
|
|
|
|
if (!client.partition.playlist.SetSongIdRange(client.partition.pc,
|
2014-08-28 12:53:48 +02:00
|
|
|
id, start, end,
|
2014-07-12 03:00:01 +02:00
|
|
|
error))
|
|
|
|
return print_error(client, error);
|
|
|
|
|
|
|
|
return CommandResult::OK;
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_delete(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
|
|
|
unsigned start, end;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_range(client, &start, &end, args.front()))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_deleteid(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &id, args.front()))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_playlist(Client &client, gcc_unused ConstBuffer<const char *> args)
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_shuffle(gcc_unused Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
unsigned start = 0, end = client.playlist.queue.GetLength();
|
2014-12-06 00:08:08 +01:00
|
|
|
if (args.size == 1 && !check_range(client, &start, &end, args.front()))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_clear(gcc_unused Client &client, gcc_unused ConstBuffer<const char *> args)
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_plchanges(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
|
|
|
uint32_t version;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_uint32(client, &version, args.front()))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_plchangesposid(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
|
|
|
uint32_t version;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_uint32(client, &version, args.front()))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_playlistinfo(Client &client, ConstBuffer<const char *> args)
|
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;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (args.size == 1 && !check_range(client, &start, &end, args.front()))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_playlistid(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!args.IsEmpty()) {
|
2012-08-25 12:59:54 +02:00
|
|
|
unsigned id;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &id, args.front()))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_playlist_match(Client &client, ConstBuffer<const char *> args,
|
2012-08-25 12:59:54 +02:00
|
|
|
bool fold_case)
|
|
|
|
{
|
2012-08-29 19:27:03 +02:00
|
|
|
SongFilter filter;
|
2014-04-24 09:43:08 +02:00
|
|
|
if (!filter.Parse(args, 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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_playlistfind(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
return handle_playlist_match(client, args, false);
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_playlistsearch(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
return handle_playlist_match(client, args, true);
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_prio(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
const char *const priority_string = args.shift();
|
2012-08-25 12:59:54 +02:00
|
|
|
unsigned priority;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &priority, priority_string))
|
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,
|
2014-12-06 00:08:08 +01:00
|
|
|
"Priority out of range: %s", priority_string);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
for (const char *i : args) {
|
2012-08-25 12:59:54 +02:00
|
|
|
unsigned start_position, end_position;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_range(client, &start_position, &end_position, 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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_prioid(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
const char *const priority_string = args.shift();
|
2012-08-25 12:59:54 +02:00
|
|
|
unsigned priority;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &priority, priority_string))
|
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,
|
2014-12-06 00:08:08 +01:00
|
|
|
"Priority out of range: %s", priority_string);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-08-25 12:59:54 +02:00
|
|
|
}
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
for (const char *i : args) {
|
2012-08-25 12:59:54 +02:00
|
|
|
unsigned song_id;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &song_id, 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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_move(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
|
|
|
unsigned start, end;
|
|
|
|
int to;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_range(client, &start, &end, args[0]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_int(client, &to, args[1]))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_moveid(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
int to;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &id, args[0]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_int(client, &to, args[1]))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_swap(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
|
|
|
unsigned song1, song2;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &song1, args[0]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &song2, args[1]))
|
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
|
2014-12-06 00:08:08 +01:00
|
|
|
handle_swapid(Client &client, ConstBuffer<const char *> args)
|
2012-08-25 12:59:54 +02:00
|
|
|
{
|
|
|
|
unsigned id1, id2;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &id1, args[0]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2014-12-06 00:08:08 +01:00
|
|
|
if (!check_unsigned(client, &id2, args[1]))
|
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);
|
|
|
|
}
|