2009-09-24 21:39:46 +02:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 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.
|
|
|
|
*/
|
|
|
|
|
2013-01-02 19:22:15 +01:00
|
|
|
#ifndef MPD_UPDATE_QUEUE_HXX
|
|
|
|
#define MPD_UPDATE_QUEUE_HXX
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2012-06-13 21:38:28 +02:00
|
|
|
#include "check.h"
|
2014-02-26 08:39:44 +01:00
|
|
|
#include "Compiler.h"
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
#include <string>
|
2014-01-29 20:16:43 +01:00
|
|
|
#include <list>
|
2013-10-17 21:13:40 +02:00
|
|
|
|
2014-02-26 08:39:44 +01:00
|
|
|
class SimpleDatabase;
|
|
|
|
class Storage;
|
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
struct UpdateQueueItem {
|
2014-02-26 08:39:44 +01:00
|
|
|
SimpleDatabase *db;
|
|
|
|
Storage *storage;
|
|
|
|
|
2013-10-17 21:13:40 +02:00
|
|
|
std::string path_utf8;
|
2013-10-17 21:34:36 +02:00
|
|
|
unsigned id;
|
2013-10-17 21:13:40 +02:00
|
|
|
bool discard;
|
|
|
|
|
2013-10-17 21:34:36 +02:00
|
|
|
UpdateQueueItem():id(0) {}
|
2014-02-26 08:39:44 +01:00
|
|
|
|
|
|
|
UpdateQueueItem(SimpleDatabase &_db,
|
|
|
|
Storage &_storage,
|
|
|
|
const char *_path, bool _discard,
|
2013-10-17 21:34:36 +02:00
|
|
|
unsigned _id)
|
2014-02-26 08:39:44 +01:00
|
|
|
:db(&_db), storage(&_storage), path_utf8(_path),
|
|
|
|
id(_id), discard(_discard) {}
|
2013-10-17 21:13:40 +02:00
|
|
|
|
|
|
|
bool IsDefined() const {
|
2013-10-17 21:34:36 +02:00
|
|
|
return id != 0;
|
2013-10-17 21:13:40 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-01-29 20:16:43 +01:00
|
|
|
class UpdateQueue {
|
|
|
|
static constexpr unsigned MAX_UPDATE_QUEUE_SIZE = 32;
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2014-02-27 19:15:01 +01:00
|
|
|
std::list<UpdateQueueItem> update_queue;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
public:
|
2014-02-26 08:39:44 +01:00
|
|
|
gcc_nonnull_all
|
|
|
|
bool Push(SimpleDatabase &db, Storage &storage,
|
|
|
|
const char *path, bool discard, unsigned id);
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
UpdateQueueItem Pop();
|
2014-02-27 16:36:11 +01:00
|
|
|
|
|
|
|
void Clear() {
|
2014-02-27 19:15:01 +01:00
|
|
|
update_queue.clear();
|
2014-02-27 16:36:11 +01:00
|
|
|
}
|
2014-02-26 08:39:44 +01:00
|
|
|
|
|
|
|
gcc_nonnull_all
|
|
|
|
void Erase(SimpleDatabase &db);
|
|
|
|
|
|
|
|
gcc_nonnull_all
|
|
|
|
void Erase(Storage &storage);
|
2014-01-29 20:16:43 +01:00
|
|
|
};
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
#endif
|