forgot to add this
This commit is contained in:
parent
9f2f65a698
commit
5b0806f1cb
1 changed files with 128 additions and 0 deletions
128
src/FbTk/CommandParser.hh
Normal file
128
src/FbTk/CommandParser.hh
Normal file
|
@ -0,0 +1,128 @@
|
|||
// CommandParser.hh for FbTk
|
||||
// Copyright (c) 2007 Fluxbox Team (fluxgen at fluxbox dot org)
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
// copy of this software and associated documentation files (the "Software"),
|
||||
// to deal in the Software without restriction, including without limitation
|
||||
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
// and/or sell copies of the Software, and to permit persons to whom the
|
||||
// Software is furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
#ifndef CommandParser_HH
|
||||
#define CommandParser_HH
|
||||
|
||||
#include "ObjectRegistry.hh"
|
||||
#include "StringUtil.hh"
|
||||
|
||||
using std::string;
|
||||
|
||||
namespace FbTk {
|
||||
|
||||
// helper for registering a function to parse arguments
|
||||
#define REGISTER_COMMAND_PARSER(name, parser, type) \
|
||||
namespace { \
|
||||
static const bool p_register_command_##type_##name = FbTk::CommandParser<type>::instance().registerCommand(#name, parser); \
|
||||
}
|
||||
|
||||
// include some basic Command<void> creators
|
||||
template <typename ClassName, typename Type>
|
||||
Command<Type> *CommandCreator(const string &name, const string &args,
|
||||
bool trusted) {
|
||||
return new ClassName();
|
||||
}
|
||||
|
||||
#define REGISTER_COMMAND(name, classname, type) \
|
||||
namespace { \
|
||||
static const bool p_register_##type_##name = FbTk::CommandParser<type>::instance().registerCommand(#name, FbTk::CommandCreator<classname, type>); \
|
||||
}
|
||||
|
||||
template <typename ClassName, typename Type>
|
||||
Command<Type> *CommandCreatorWithArgs(const string &name, const string &args,
|
||||
bool trusted) {
|
||||
return new ClassName(args);
|
||||
}
|
||||
|
||||
#define REGISTER_COMMAND_WITH_ARGS(name, classname, type) \
|
||||
namespace { \
|
||||
static const bool p_register_##type_##name = FbTk::CommandParser<type>::instance().registerCommand(#name, FbTk::CommandCreatorWithArgs<classname, type>); \
|
||||
}
|
||||
|
||||
template <typename ClassName, typename Type>
|
||||
Command<Type> *UntrustedCommandCreator(const string &name, const string &args,
|
||||
bool trusted) {
|
||||
if (!trusted) return 0;
|
||||
return new ClassName();
|
||||
}
|
||||
|
||||
#define REGISTER_UNTRUSTED_COMMAND(name, classname, type) \
|
||||
namespace { \
|
||||
static const bool p_register_##type_##name = FbTk::CommandParser<type>::instance().registerCommand(#name, FbTk::UntrustedCommandCreator<classname, type>); \
|
||||
}
|
||||
|
||||
template <typename ClassName, typename Type>
|
||||
Command<Type> *UntrustedCommandCreatorWithArgs(const string &name,
|
||||
const string &args, bool trusted) {
|
||||
if (!trusted) return 0;
|
||||
return new ClassName(args);
|
||||
}
|
||||
|
||||
#define REGISTER_UNTRUSTED_COMMAND_WITH_ARGS(name, classname, type) \
|
||||
namespace { \
|
||||
static const bool p_register_##type_##name = FbTk::CommandParser<type>::instance().registerCommand(#name, FbTk::UntrustedCommandCreatorWithArgs<classname, type>); \
|
||||
}
|
||||
|
||||
template <typename Type>
|
||||
class CommandParser {
|
||||
public:
|
||||
typedef Command<Type> *Creator(const string &, const string &, bool);
|
||||
|
||||
static CommandParser<Type> &instance() {
|
||||
static CommandParser<Type> s_instance;
|
||||
return s_instance;
|
||||
}
|
||||
|
||||
Command<Type> *parse(const string &name, const string &args,
|
||||
bool trusted = true) const {
|
||||
string lc = StringUtil::toLower(name);
|
||||
Creator *creator = ObjectRegistry<Creator *>::instance().lookup(lc);
|
||||
if (creator)
|
||||
return creator(lc, args, trusted);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Command<Type> *parse(const string &line, bool trusted = true) const {
|
||||
// separate args and command
|
||||
string command, args;
|
||||
StringUtil::getFirstWord(line, command, args);
|
||||
StringUtil::removeFirstWhitespace(args);
|
||||
StringUtil::removeTrailingWhitespace(args);
|
||||
|
||||
// now we parse
|
||||
return parse(command, args, trusted);
|
||||
}
|
||||
|
||||
bool registerCommand(string name, Creator creator) {
|
||||
name = StringUtil::toLower(name);
|
||||
return ObjectRegistry<Creator *>::instance().registerObject(name,
|
||||
creator);
|
||||
}
|
||||
|
||||
private:
|
||||
CommandParser() {}
|
||||
~CommandParser() {}
|
||||
};
|
||||
|
||||
} // end namespace FbTk
|
||||
|
||||
#endif // COMMANDPARSER_HH
|
Loading…
Reference in a new issue