2013-01-04 00:50:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_COMMAND_LIST_BUILDER_HXX
|
|
|
|
#define MPD_COMMAND_LIST_BUILDER_HXX
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
class CommandListBuilder {
|
|
|
|
/**
|
2013-01-04 01:10:48 +01:00
|
|
|
* print OK after each command execution
|
2013-01-04 00:50:13 +01:00
|
|
|
*/
|
2013-01-04 01:10:48 +01:00
|
|
|
enum class Mode {
|
|
|
|
/**
|
|
|
|
* Not active.
|
|
|
|
*/
|
|
|
|
DISABLED = -1,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enabled in normal list mode.
|
|
|
|
*/
|
|
|
|
ENABLED = false,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enabled in "list_OK" mode.
|
|
|
|
*/
|
|
|
|
OK = true,
|
|
|
|
} mode;
|
2013-01-04 00:50:13 +01:00
|
|
|
|
|
|
|
/**
|
2013-01-04 01:10:48 +01:00
|
|
|
* for when in list mode
|
2013-01-04 00:50:13 +01:00
|
|
|
*/
|
2013-01-04 01:10:48 +01:00
|
|
|
GSList *list;
|
2013-01-04 00:50:13 +01:00
|
|
|
|
|
|
|
/**
|
2013-01-04 01:10:48 +01:00
|
|
|
* Memory consumed by the list.
|
2013-01-04 00:50:13 +01:00
|
|
|
*/
|
2013-01-04 01:10:48 +01:00
|
|
|
size_t size;
|
2013-01-04 00:50:13 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
CommandListBuilder()
|
2013-01-04 01:10:48 +01:00
|
|
|
:mode(Mode::DISABLED), list(nullptr), size(0) {}
|
2013-01-04 00:50:13 +01:00
|
|
|
~CommandListBuilder() {
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is a command list currently being built?
|
|
|
|
*/
|
|
|
|
bool IsActive() const {
|
2013-01-04 01:10:48 +01:00
|
|
|
return mode != Mode::DISABLED;
|
2013-01-04 00:50:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the object in "list_OK" mode?
|
|
|
|
*/
|
|
|
|
bool IsOKMode() const {
|
|
|
|
assert(IsActive());
|
|
|
|
|
2013-01-04 01:10:48 +01:00
|
|
|
return (bool)mode;
|
2013-01-04 00:50:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset the object: delete the list and clear the mode.
|
|
|
|
*/
|
|
|
|
void Reset();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Begin building a command list.
|
|
|
|
*/
|
|
|
|
void Begin(bool ok) {
|
2013-01-04 01:10:48 +01:00
|
|
|
assert(list == nullptr);
|
|
|
|
assert(mode == Mode::DISABLED);
|
2013-01-04 00:50:13 +01:00
|
|
|
|
2013-01-04 01:10:48 +01:00
|
|
|
mode = (Mode)ok;
|
2013-01-04 00:50:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return false if the list is full
|
|
|
|
*/
|
|
|
|
bool Add(const char *cmd);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finishes the list and returns it.
|
|
|
|
*/
|
|
|
|
GSList *Commit() {
|
|
|
|
assert(IsActive());
|
|
|
|
|
|
|
|
/* for scalability reasons, we have prepended each new
|
|
|
|
command; now we have to reverse it to restore the
|
|
|
|
correct order */
|
2013-01-04 01:10:48 +01:00
|
|
|
return list = g_slist_reverse(list);
|
2013-01-04 00:50:13 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|