Newer
Older
* Copyright (c) 2009-2011, Kitty Barnett
*
* The source code in this file is provided to you under the terms of the
* GNU Lesser General Public License, version 2.1, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. Terms of the LGPL can be found in doc/LGPL-licence.txt
* in this distribution, or online at http://www.gnu.org/licenses/lgpl-2.1.txt
*
* By copying, modifying or distributing this software, you acknowledge that
* you have read and understood your obligations described above, and agree to
* abide by those obligations.
*
*/
#ifndef RLV_EXTENSIONS_H
#define RLV_EXTENSIONS_H
#include "rlvcommon.h"
// ============================================================================
/*
* RlvExtGetSet
* ============
* Implements @get_XXX:<option>=<channel> and @set_XXX:<option>=force
*
*/
class RlvExtGetSet final : public RlvExtCommandHandler
Kitty Barnett
committed
virtual bool onForceCommand(const RlvCommand& rlvCmd, ERlvCmdRet& cmdRet);
virtual bool onReplyCommand(const RlvCommand& rlvCmd, ERlvCmdRet& cmdRet);
protected:
std::string onGetDebug(std::string strSetting);
std::string onGetPseudoDebug(const std::string& strSetting);
ERlvCmdRet onSetDebug(std::string strSetting, const std::string& strValue);
ERlvCmdRet onSetPseudoDebug(const std::string& strSetting, const std::string& strValue);
Kitty Barnett
committed
bool processCommand(const RlvCommand& rlvCmd, ERlvCmdRet& eRet);
public:
enum { DBG_READ = 0x01, DBG_WRITE = 0x02, DBG_PERSIST = 0x04, DBG_PSEUDO = 0x08 };
static std::map<std::string, S16> m_DbgAllowed;
static std::map<std::string, std::string> m_PseudoDebug;
static bool findDebugSetting(/*[in,out]*/ std::string& strSetting, /*[out]*/ S16& flags);
static S16 getDebugSettingFlags(const std::string& strSetting);
};
// ============================================================================
#endif // RLV_EXTENSIONS_H