mpd/src/command/PlaylistCommands.cxx

221 lines
5.5 KiB
C++
Raw Normal View History

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 "PlaylistCommands.hxx"
2014-01-24 16:18:50 +01:00
#include "db/DatabasePlaylist.hxx"
#include "CommandError.hxx"
#include "PlaylistPrint.hxx"
#include "PlaylistSave.hxx"
2012-09-28 00:40:00 +02:00
#include "PlaylistFile.hxx"
2014-01-27 11:05:21 +01:00
#include "db/PlaylistVector.hxx"
#include "SongLoader.hxx"
#include "BulkEdit.hxx"
2014-01-23 23:30:12 +01:00
#include "playlist/PlaylistQueue.hxx"
#include "playlist/Print.hxx"
2014-02-27 17:12:42 +01:00
#include "queue/Playlist.hxx"
2013-01-02 20:29:24 +01:00
#include "TimePrint.hxx"
2014-01-24 00:26:53 +01:00
#include "client/Client.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"
#include "Mapper.hxx"
#include "fs/AllocatedPath.hxx"
2013-04-08 23:30:21 +02:00
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
2012-08-25 12:59:54 +02:00
bool
playlist_commands_available()
{
return !map_spl_path().IsNull();
}
2012-08-25 12:59:54 +02:00
static void
2013-10-19 18:48:38 +02:00
print_spl_list(Client &client, const PlaylistVector &list)
2012-08-25 12:59:54 +02:00
{
for (const auto &i : list) {
client_printf(client, "playlist: %s\n", i.name.c_str());
2012-08-25 12:59:54 +02:00
if (i.mtime > 0)
time_print(client, "Last-Modified", i.mtime);
2012-08-25 12:59:54 +02:00
}
}
CommandResult
2014-02-28 22:13:34 +01:00
handle_save(Client &client, gcc_unused unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
PlaylistResult result = spl_save_playlist(argv[1], client.playlist);
2012-08-25 12:59:54 +02:00
return print_playlist_result(client, result);
}
CommandResult
2014-02-28 22:13:34 +01:00
handle_load(Client &client, unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
unsigned start_index, end_index;
if (argc < 3) {
start_index = 0;
end_index = unsigned(-1);
2012-08-25 12:59:54 +02:00
} else if (!check_range(client, &start_index, &end_index, argv[2]))
return CommandResult::ERROR;
2012-08-25 12:59:54 +02:00
const ScopeBulkEdit bulk_edit(client.partition);
Error error;
const SongLoader loader(client);
if (!playlist_open_into_queue(argv[1],
start_index, end_index,
client.playlist,
client.player_control, loader, error))
return print_error(client, error);
2012-08-25 12:59:54 +02:00
return CommandResult::OK;
2012-08-25 12:59:54 +02:00
}
CommandResult
2014-02-28 22:13:34 +01:00
handle_listplaylist(Client &client, gcc_unused unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
if (playlist_file_print(client, argv[1], false))
return CommandResult::OK;
2012-08-25 12:59:54 +02:00
Error error;
return spl_print(client, argv[1], false, error)
? CommandResult::OK
2012-08-25 12:59:54 +02:00
: print_error(client, error);
}
CommandResult
2013-10-19 18:48:38 +02:00
handle_listplaylistinfo(Client &client,
2014-02-28 22:13:34 +01:00
gcc_unused unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
if (playlist_file_print(client, argv[1], true))
return CommandResult::OK;
2012-08-25 12:59:54 +02:00
Error error;
return spl_print(client, argv[1], true, error)
? CommandResult::OK
2012-08-25 12:59:54 +02:00
: print_error(client, error);
}
CommandResult
2014-02-28 22:13:34 +01:00
handle_rm(Client &client, gcc_unused unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
Error error;
return spl_delete(argv[1], error)
? CommandResult::OK
2012-08-25 12:59:54 +02:00
: print_error(client, error);
}
CommandResult
2014-02-28 22:13:34 +01:00
handle_rename(Client &client, gcc_unused unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
Error error;
return spl_rename(argv[1], argv[2], error)
? CommandResult::OK
2012-08-25 12:59:54 +02:00
: print_error(client, error);
}
CommandResult
2013-10-19 18:48:38 +02:00
handle_playlistdelete(Client &client,
2014-02-28 22:13:34 +01:00
gcc_unused unsigned argc, char *argv[]) {
2012-08-25 12:59:54 +02:00
char *playlist = argv[1];
unsigned from;
if (!check_unsigned(client, &from, argv[2]))
return CommandResult::ERROR;
2012-08-25 12:59:54 +02:00
Error error;
return spl_remove_index(playlist, from, error)
? CommandResult::OK
2012-08-25 12:59:54 +02:00
: print_error(client, error);
}
CommandResult
2014-02-28 22:13:34 +01:00
handle_playlistmove(Client &client, gcc_unused unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
char *playlist = argv[1];
unsigned from, to;
if (!check_unsigned(client, &from, argv[2]))
return CommandResult::ERROR;
2012-08-25 12:59:54 +02:00
if (!check_unsigned(client, &to, argv[3]))
return CommandResult::ERROR;
2012-08-25 12:59:54 +02:00
Error error;
return spl_move_index(playlist, from, to, error)
? CommandResult::OK
2012-08-25 12:59:54 +02:00
: print_error(client, error);
}
CommandResult
2014-02-28 22:13:34 +01:00
handle_playlistclear(Client &client, gcc_unused unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
Error error;
return spl_clear(argv[1], error)
? CommandResult::OK
2012-08-25 12:59:54 +02:00
: print_error(client, error);
}
CommandResult
2014-02-28 22:13:34 +01:00
handle_playlistadd(Client &client, gcc_unused unsigned argc, char *argv[])
2012-08-25 12:59:54 +02:00
{
char *playlist = argv[1];
char *uri = argv[2];
bool success;
Error error;
2012-08-25 12:59:54 +02:00
if (uri_has_scheme(uri)) {
2014-02-03 23:30:34 +01:00
const SongLoader loader(client);
success = spl_append_uri(playlist, loader, uri, error);
} else {
#ifdef ENABLE_DATABASE
const Database *db = client.GetDatabase(error);
if (db == nullptr)
return print_error(client, error);
success = search_add_to_playlist(*db, *client.GetStorage(),
uri, playlist, nullptr,
error);
#else
success = false;
#endif
}
2012-08-25 12:59:54 +02:00
if (!success && !error.IsDefined()) {
2012-08-25 12:59:54 +02:00
command_error(client, ACK_ERROR_NO_EXIST,
"directory or file not found");
return CommandResult::ERROR;
2012-08-25 12:59:54 +02:00
}
return success ? CommandResult::OK : print_error(client, error);
2012-08-25 12:59:54 +02:00
}
CommandResult
2013-10-19 18:48:38 +02:00
handle_listplaylists(Client &client,
2014-02-28 22:13:34 +01:00
gcc_unused unsigned argc, gcc_unused char *argv[])
2012-08-25 12:59:54 +02:00
{
Error error;
const auto list = ListPlaylistFiles(error);
if (list.empty() && error.IsDefined())
2012-08-25 12:59:54 +02:00
return print_error(client, error);
print_spl_list(client, list);
return CommandResult::OK;
2012-08-25 12:59:54 +02:00
}