2012-08-02 18:46:56 +02:00
|
|
|
/*
|
2022-07-14 17:58:12 +02:00
|
|
|
* Copyright 2003-2022 The Music Player Daemon Project
|
2012-08-02 18:46:56 +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.
|
|
|
|
*/
|
|
|
|
|
2012-08-07 22:57:18 +02:00
|
|
|
#include "DatabasePlaylist.hxx"
|
2014-02-07 00:29:07 +01:00
|
|
|
#include "DatabaseSong.hxx"
|
2012-09-28 00:40:00 +02:00
|
|
|
#include "PlaylistFile.hxx"
|
2014-02-19 22:54:52 +01:00
|
|
|
#include "Interface.hxx"
|
2018-08-02 13:45:43 +02:00
|
|
|
#include "song/DetachedSong.hxx"
|
2021-11-09 21:17:50 +01:00
|
|
|
#include "protocol/Ack.hxx"
|
2012-08-02 18:46:56 +02:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2017-02-08 09:47:43 +01:00
|
|
|
AddSong(const Storage *storage, const char *playlist_path_utf8,
|
2015-12-26 06:30:25 +01:00
|
|
|
const LightSong &song)
|
2012-08-07 21:32:08 +02:00
|
|
|
{
|
2015-12-26 06:30:25 +01:00
|
|
|
spl_append_song(playlist_path_utf8,
|
|
|
|
DatabaseDetachSong(storage, song));
|
2012-08-07 21:32:08 +02:00
|
|
|
}
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
2017-02-08 09:47:43 +01:00
|
|
|
search_add_to_playlist(const Database &db, const Storage *storage,
|
2019-03-25 18:48:31 +01:00
|
|
|
const char *playlist_path_utf8,
|
|
|
|
const DatabaseSelection &selection)
|
2012-08-02 18:46:56 +02:00
|
|
|
{
|
2020-02-01 04:54:34 +01:00
|
|
|
const auto f = [=](auto && arg1) { return AddSong(storage, playlist_path_utf8, arg1); };
|
2016-10-29 10:21:57 +02:00
|
|
|
db.Visit(selection, f);
|
2012-08-02 18:46:56 +02:00
|
|
|
}
|
2021-11-11 09:34:30 +01:00
|
|
|
|
2021-11-11 09:44:47 +01:00
|
|
|
unsigned
|
2021-11-11 09:34:30 +01:00
|
|
|
SearchInsertIntoPlaylist(const Database &db, const Storage *storage,
|
|
|
|
const DatabaseSelection &selection,
|
|
|
|
PlaylistFileEditor &playlist,
|
|
|
|
unsigned position)
|
|
|
|
{
|
|
|
|
assert(position <= playlist.size());
|
|
|
|
|
2021-11-11 09:44:47 +01:00
|
|
|
unsigned n = 0;
|
|
|
|
|
2021-11-22 20:47:06 +01:00
|
|
|
db.Visit(selection, [&playlist, position, &n, storage](const auto &song){
|
2021-11-11 09:44:47 +01:00
|
|
|
playlist.Insert(position + n,
|
2021-11-11 09:34:30 +01:00
|
|
|
DatabaseDetachSong(storage, song));
|
2021-11-11 09:44:47 +01:00
|
|
|
++n;
|
2021-11-11 09:34:30 +01:00
|
|
|
});
|
2021-11-11 09:44:47 +01:00
|
|
|
|
|
|
|
return n;
|
2021-11-11 09:34:30 +01:00
|
|
|
}
|
2021-11-09 21:17:50 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
SearchInsertIntoPlaylist(const Database &db, const Storage *storage,
|
|
|
|
const DatabaseSelection &selection,
|
|
|
|
const char *playlist_name,
|
|
|
|
unsigned position)
|
|
|
|
{
|
|
|
|
PlaylistFileEditor editor{
|
|
|
|
playlist_name,
|
|
|
|
PlaylistFileEditor::LoadMode::TRY,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (position > editor.size())
|
|
|
|
throw ProtocolError{ACK_ERROR_ARG, "Bad position"};
|
|
|
|
|
|
|
|
if (SearchInsertIntoPlaylist(db, storage, selection,
|
|
|
|
editor, position) > 0)
|
|
|
|
editor.Save();
|
|
|
|
}
|