2009-09-24 21:39:46 +02:00
|
|
|
/*
|
2013-01-02 19:22:15 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-09-24 21:39:46 +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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 19:22:15 +01:00
|
|
|
#include "UpdateQueue.hxx"
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
#include <queue>
|
|
|
|
#include <list>
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
static constexpr unsigned MAX_UPDATE_QUEUE_SIZE = 32;
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
static std::queue<UpdateQueueItem, std::list<UpdateQueueItem>> update_queue;
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
unsigned
|
2009-09-24 21:55:40 +02:00
|
|
|
update_queue_push(const char *path, bool discard, unsigned base)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-10-17 21:13:40 +02:00
|
|
|
if (update_queue.size() >= MAX_UPDATE_QUEUE_SIZE)
|
2009-09-24 21:39:46 +02:00
|
|
|
return 0;
|
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
update_queue.emplace(path, discard);
|
|
|
|
return base + update_queue.size();
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
UpdateQueueItem
|
|
|
|
update_queue_shift()
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-10-17 21:13:40 +02:00
|
|
|
if (update_queue.empty())
|
|
|
|
return UpdateQueueItem();
|
2009-09-24 21:55:40 +02:00
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
auto i = std::move(update_queue.front());
|
|
|
|
update_queue.pop();
|
|
|
|
return i;
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|