2012-08-02 18:46:56 +02:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 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 "DatabaseQueue.hxx"
|
2014-02-07 00:29:07 +01:00
|
|
|
#include "DatabaseSong.hxx"
|
2014-02-19 22:54:52 +01:00
|
|
|
#include "Interface.hxx"
|
2013-01-07 10:59:56 +01:00
|
|
|
#include "Partition.hxx"
|
2014-02-01 00:26:34 +01:00
|
|
|
#include "Instance.hxx"
|
2018-08-02 13:45:43 +02:00
|
|
|
#include "song/DetachedSong.hxx"
|
2012-08-02 18:46:56 +02:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2016-02-28 10:51:07 +01:00
|
|
|
AddToQueue(Partition &partition, const LightSong &song)
|
2012-08-02 18:46:56 +02:00
|
|
|
{
|
2017-02-08 09:47:43 +01:00
|
|
|
const auto *storage = partition.instance.storage;
|
2016-02-28 10:51:07 +01:00
|
|
|
partition.playlist.AppendSong(partition.pc,
|
|
|
|
DatabaseDetachSong(storage,
|
|
|
|
song));
|
2012-08-02 18:46:56 +02:00
|
|
|
}
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
|
|
|
AddFromDatabase(Partition &partition, const DatabaseSelection &selection)
|
2012-08-02 18:46:56 +02:00
|
|
|
{
|
2016-10-26 18:47:19 +02:00
|
|
|
const Database &db = partition.instance.GetDatabaseOrThrow();
|
2012-08-22 21:40:20 +02:00
|
|
|
|
2020-05-04 23:27:04 +02:00
|
|
|
const auto f = [&](const auto &song)
|
|
|
|
{ return AddToQueue(partition, song); };
|
2016-10-29 10:21:57 +02:00
|
|
|
db.Visit(selection, f);
|
2012-08-02 18:46:56 +02:00
|
|
|
}
|