2012-08-02 18:46:56 +02:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
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"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2012-08-02 18:46:56 +02:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
static bool
|
2016-02-28 10:51:07 +01:00
|
|
|
AddToQueue(Partition &partition, const LightSong &song)
|
2012-08-02 18:46:56 +02:00
|
|
|
{
|
2014-02-07 00:29:07 +01:00
|
|
|
const Storage &storage = *partition.instance.storage;
|
2016-02-28 10:51:07 +01:00
|
|
|
partition.playlist.AppendSong(partition.pc,
|
|
|
|
DatabaseDetachSong(storage,
|
|
|
|
song));
|
|
|
|
return true;
|
2012-08-02 18:46:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-01-07 11:33:00 +01:00
|
|
|
AddFromDatabase(Partition &partition, const DatabaseSelection &selection,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2012-08-02 18:46:56 +02:00
|
|
|
{
|
2014-02-01 00:26:34 +01:00
|
|
|
const Database *db = partition.instance.GetDatabase(error);
|
2012-08-22 21:40:20 +02:00
|
|
|
if (db == nullptr)
|
|
|
|
return false;
|
|
|
|
|
2012-08-02 18:46:56 +02:00
|
|
|
using namespace std::placeholders;
|
2016-02-28 10:51:07 +01:00
|
|
|
const auto f = std::bind(AddToQueue, std::ref(partition), _1);
|
2013-08-10 18:02:44 +02:00
|
|
|
return db->Visit(selection, f, error);
|
2012-08-02 18:46:56 +02:00
|
|
|
}
|