Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/core/command/Executor.cc @ 7401

Last change on this file since 7401 was 7401, checked in by landauf, 14 years ago

merged doc branch back to trunk

  • Property svn:eol-style set to native
File size: 9.6 KB
RevLine 
[1505]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 *   Inspiration: Executor by Benjamin Grauer
28 */
29
[7401]30/**
31    @file
32    @brief Implementation of orxonox::Executor
33*/
34
[1505]35#include "Executor.h"
[3196]36
[7163]37#include <algorithm>
38
[1625]39#include "util/Convert.h"
[7163]40#include "util/Debug.h"
41#include "util/StringUtils.h"
42#include "util/SubString.h"
[7228]43#include "CommandExecutor.h"
[1505]44
45namespace orxonox
46{
[7401]47    /**
48        @brief Constructor: Creates an executor.
49        @param functor The wrapped functor
50        @param name The name of the executor (optional, used mostly for debug output)
51    */
[7198]52    Executor::Executor(const FunctorPtr& functor, const std::string& name)
[1505]53    {
54        this->functor_ = functor;
55        this->name_ = name;
56    }
57
[7401]58    /**
59        @brief Copy-constructor: Creates a new executor with the same values and a clone of the wrapped Functor.
60    */
[7274]61    Executor::Executor(const Executor& other) : name_(other.name_)
[7270]62    {
[7283]63        for (size_t i = 0; i < MAX_FUNCTOR_ARGUMENTS; ++i)
[7274]64            defaultValue_[i] = other.defaultValue_[i];
[7270]65        this->functor_ = other.functor_->clone();
66    }
67
[7401]68    /**
69        @brief Destructor
70    */
[1505]71    Executor::~Executor()
72    {
73    }
74
[7401]75    /**
76        @brief Calls the wrapped function with arguments that are passed in a string.
77        @param arguments The arguments that should be passed to the function, separated by @a delimiter
78        @param error A pointer to a variable (or NULL) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes")
79        @param delimiter The delimiter that is used to separate the arguments in the string @a arguments
80        @param bPrintError If true, errors are printed to the console if the function couldn't be executed with the given arguments
81        @return Returns the return value of the function (or MT_Type::Null if there is no return value)
82    */
[7230]83    MultiType Executor::parse(const std::string& arguments, int* error, const std::string& delimiter, bool bPrintError) const
[1505]84    {
[7276]85        return this->parse(SubString(arguments, delimiter, SubString::WhiteSpaces, false, '\\', true, '"', true, '{', '}', true, '\0'), error, delimiter, bPrintError);
[7230]86    }
[7189]87
[7401]88    /**
89        @brief Calls the wrapped function with arguments that are passed as tokens in a SubString
90        @param arguments The arguments that should be passed to the function
91        @param error A pointer to a variable (or NULL) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes")
92        @param delimiter The delimiter that was used to separate the arguments in the SubString @a arguments (used to join the surplus arguments)
93        @param bPrintError If true, errors are printed to the console if the function couldn't be executed with the given arguments
94        @return Returns the return value of the function (or MT_Type::Null if there is no return value)
95    */
[7230]96    MultiType Executor::parse(const SubString& arguments, int* error, const std::string& delimiter, bool bPrintError) const
97    {
[7401]98        // evaluate the arguments
99        MultiType arg[MAX_FUNCTOR_ARGUMENTS];
100        unsigned int argCount = this->evaluateArguments(arguments, arg, error, delimiter);
[7186]101
[7401]102        // check if an error occurred
[7230]103        if (error && *error)
[7163]104        {
[7230]105            if (bPrintError)
[7401]106                COUT(2) << "Warning: Can't call executor " << this->name_ << " through parser: Not enough arguments or default values given (input: " << arguments.join() << ")." << std::endl;
[7230]107            return MT_Type::Null;
[7163]108        }
[7230]109
[7401]110        COUT(5) << "Executor::parse: \"" << arguments.join(delimiter) << "\" -> " << argCount << " arguments: " << arg[0] << " / " << arg[1] << " / " << arg[2] << " / " << arg[3] << " / " << arg[4] << std::endl;
[7265]111
[7401]112        // execute the function with the evaluated arguments (the default values of the executor are also included in these arguments)
113        switch (argCount)
[7163]114        {
[7230]115            case 0:  return (*this->functor_)();
[7401]116            case 1:  return (*this->functor_)(arg[0]);
117            case 2:  return (*this->functor_)(arg[0], arg[1]);
118            case 3:  return (*this->functor_)(arg[0], arg[1], arg[2]);
119            case 4:  return (*this->functor_)(arg[0], arg[1], arg[2], arg[3]);
[7230]120            case 5:
[7401]121            default: return (*this->functor_)(arg[0], arg[1], arg[2], arg[3], arg[4]);
[7163]122        }
[1505]123    }
124
[7401]125    /**
126        @brief Converts the arguments in a SubString to the right type, so they can be used to execute the function without further conversions.
127        @param arguments The arguments that should be converted
128        @param arg An array of MultiType where the converted arguments will be stored
129        @param error A pointer to a variable (or NULL) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes")
130        @param delimiter The delimiter that was used to separate the arguments in the SubString @a arguments (used to join the surplus arguments)
131        @return Returns the number of evaluated arguments
132    */
133    int Executor::evaluateArguments(const SubString& arguments, MultiType arg[MAX_FUNCTOR_ARGUMENTS], int* error, const std::string& delimiter) const
[1505]134    {
135        unsigned int paramCount = this->functor_->getParamCount();
[7230]136        unsigned int argumentCount = arguments.size();
[1505]137
[7230]138        // if there are not enough params given, check if there are default values
139        for (unsigned int i = argumentCount; i < paramCount; i++)
[1505]140        {
[7230]141            if (this->defaultValue_[i].null())
[1505]142            {
[7230]143                if (error)
144                    *error = CommandExecutor::Incomplete;
145                return 0;
[1505]146            }
147        }
148
[7230]149        // assign all given arguments to the multitypes
[7265]150        for (unsigned int i = 0; i < std::min(std::min(argumentCount, paramCount), MAX_FUNCTOR_ARGUMENTS); i++)
[7401]151            arg[i] = arguments[i];
[1505]152
[7230]153        // fill the remaining multitypes with default values
154        for (unsigned int i = argumentCount; i < std::min(paramCount, MAX_FUNCTOR_ARGUMENTS); i++)
[7401]155            arg[i] = this->defaultValue_[i];
[1505]156
[7230]157        // assign the remaining arguments all to the last parameter if it is a string
158        if ((paramCount <= MAX_FUNCTOR_ARGUMENTS) &&(argumentCount > paramCount) && (paramCount == 1 || this->functor_->getTypenameParam(paramCount - 1) == "string"))
[7401]159            arg[paramCount - 1] = arguments.subSet(paramCount - 1).join(delimiter);
[1505]160
[7401]161        // evaluate the parameter types through the functor
[7230]162        for (unsigned int i = 0; i < std::min(paramCount, MAX_FUNCTOR_ARGUMENTS); i++)
[7401]163            this->functor_->evaluateArgument(i, arg[i]);
[1505]164
[7230]165        if (error)
166            *error = CommandExecutor::Success;
167        return paramCount;
[1505]168    }
169
[7401]170    /// Defines the default value for the first parameter.
171    void Executor::setDefaultValues(const MultiType& arg1)
[1505]172    {
[7401]173        this->defaultValue_[0] = arg1;
[1505]174    }
175
[7401]176    /// Defines the default value for the first two parameters.
177    void Executor::setDefaultValues(const MultiType& arg1, const MultiType& arg2)
[1505]178    {
[7401]179        this->defaultValue_[0] = arg1;
180        this->defaultValue_[1] = arg2;
[1505]181    }
182
[7401]183    /// Defines the default value for the first three parameters.
184    void Executor::setDefaultValues(const MultiType& arg1, const MultiType& arg2, const MultiType& arg3)
[1505]185    {
[7401]186        this->defaultValue_[0] = arg1;
187        this->defaultValue_[1] = arg2;
188        this->defaultValue_[2] = arg3;
[1505]189    }
190
[7401]191    /// Defines the default value for the first four parameters.
192    void Executor::setDefaultValues(const MultiType& arg1, const MultiType& arg2, const MultiType& arg3, const MultiType& arg4)
[1505]193    {
[7401]194        this->defaultValue_[0] = arg1;
195        this->defaultValue_[1] = arg2;
196        this->defaultValue_[2] = arg3;
197        this->defaultValue_[3] = arg4;
[1505]198    }
199
[7401]200    /// Defines the default value for the first five parameters.
201    void Executor::setDefaultValues(const MultiType& arg1, const MultiType& arg2, const MultiType& arg3, const MultiType& arg4, const MultiType& arg5)
[1505]202    {
[7401]203        this->defaultValue_[0] = arg1;
204        this->defaultValue_[1] = arg2;
205        this->defaultValue_[2] = arg3;
206        this->defaultValue_[3] = arg4;
207        this->defaultValue_[4] = arg5;
[1505]208    }
209
[7401]210    /// Defines the default value for a parameter with given index (the first parameter has index 0).
211    void Executor::setDefaultValue(unsigned int index, const MultiType& arg)
[1505]212    {
[1879]213        if (index < MAX_FUNCTOR_ARGUMENTS)
[7401]214            this->defaultValue_[index] = arg;
[1505]215    }
216
[7401]217    /// Returns true if the executor has a default value for each parameter of the wrapped function, so it can be called without passing additional arguments.
[1505]218    bool Executor::allDefaultValuesSet() const
219    {
220        for (unsigned int i = 0; i < this->functor_->getParamCount(); i++)
[7187]221            if (this->defaultValue_[i].null())
[1505]222                return false;
223
224        return true;
225    }
226}
Note: See TracBrowser for help on using the repository browser.