Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 5, 2008, 5:54:24 PM (16 years ago)
Author:
landauf
Message:
  • added some symbols to the CommandExecutor: a) expression | expression: the pipe leads the output from the right expression into the left one b) expression > file: writes the output of the expression into a file c) expression < file: reads a file and uses it's content as input for the expression
  • added new console commands: a) echo text: returns the input b) read file: reads a file and returns the content c) write file text: writes text into a file d) append file text: appends text to a file
  • added stripEnclosingQuotes function to String.h, that removes enclosing quotes (if there are some). whitespaces outside the quotes are stripped, whitespaces inside the quotes stay. removes the quotes only if there is nothing else than whitespaces outside of them. what it changes: "expression" → expression what it let unchanged:
    • ex"press"ion
    • a"expression"b
    • a"expression"
    • "expression"b
    • express"ion
  • extended SubString: added some bools to determine the behaviour when dividing a string like the following up into pieces: mytext "this is a quoted area" blub (0, 1, 2)

this usually results in:
mytext / this is a quoted area / blub / 0, 1, 2

but now you can change it to:
mytext / "this is a quoted area" / blub / (0, 1, 2)

this is important if the string wents through several substring splitups and the quotes and brackets should stay.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core2/src/orxonox/core/CommandExecutor.cc

    r993 r994  
    4646
    4747    ConsoleCommandShortcutExtern(exec, AccessLevel::None);
     48    ConsoleCommandShortcutExtern(echo, AccessLevel::None);
     49
     50    ConsoleCommandShortcutExtern(read, AccessLevel::None);
     51    ConsoleCommandShortcutExtern(append, AccessLevel::None);
     52    ConsoleCommandShortcutExtern(write, AccessLevel::None);
    4853
    4954    void exec(const std::string& filename)
     
    7984
    8085        executingFiles.erase(filename);
     86        file.close();
     87    }
     88
     89    std::string echo(const std::string& text)
     90    {
     91        return text;
     92    }
     93
     94    void write(const std::string& filename, const std::string& text)
     95    {
     96        std::ofstream file;
     97        file.open(filename.c_str(), std::fstream::out);
     98
     99        if (!file.is_open())
     100        {
     101            COUT(1) << "Error: Couldn't write to file \"" << filename << "\"." << std::endl;
     102            return;
     103        }
     104
     105        file << text << std::endl;
     106        file.close();
     107    }
     108
     109    void append(const std::string& filename, const std::string& text)
     110    {
     111        std::ofstream file;
     112        file.open(filename.c_str(), std::fstream::app);
     113
     114        if (!file.is_open())
     115        {
     116            COUT(1) << "Error: Couldn't append to file \"" << filename << "\"." << std::endl;
     117            return;
     118        }
     119
     120        file << text << std::endl;
     121        file.close();
     122    }
     123
     124    std::string read(const std::string& filename)
     125    {
     126        std::ifstream file;
     127        file.open(filename.c_str(), std::fstream::in);
     128
     129        if (!file.is_open())
     130        {
     131            COUT(1) << "Error: Couldn't read from file \"" << filename << "\"." << std::endl;
     132            return "";
     133        }
     134
     135        std::string output = "";
     136        char line[1024];
     137        while (file.good() && !file.eof())
     138        {
     139            file.getline(line, 1024);
     140            output += line;
     141            output += "\n";
     142        }
     143
     144        file.close();
     145
     146        return output;
    81147    }
    82148
     
    200266    }
    201267
     268    MultiTypeMath CommandEvaluation::getReturnvalue() const
     269    {
     270        if (this->state_ == CS_Shortcut_Params || this->state_ == CS_Shortcut_Finished)
     271        {
     272            if (this->shortcut_)
     273                return this->shortcut_->getReturnvalue();
     274        }
     275        else if (this->state_ == CS_Function_Params || this->state_ == CS_Function_Finished)
     276        {
     277            if (this->function_)
     278                return this->function_->getReturnvalue();
     279        }
     280
     281        return MT_null;
     282    }
     283
    202284
    203285    /////////////////////
     
    252334    bool CommandExecutor::execute(const std::string& command)
    253335    {
    254         if ((CommandExecutor::getEvaluation().processedCommand_ != command) || (CommandExecutor::getEvaluation().state_ == CS_Uninitialized))
    255             CommandExecutor::parse(command);
     336        std::string strippedCommand = getStrippedEnclosingQuotes(command);
     337
     338        SubString tokensIO(strippedCommand, " ", SubString::WhiteSpaces, false, '\\', false, '"', false, '(', ')', false, '\0');
     339        if (tokensIO.size() >= 2)
     340        {
     341            if (tokensIO[tokensIO.size() - 2] == ">")
     342            {
     343                bool success = CommandExecutor::execute(tokensIO.subSet(0, tokensIO.size() - 2).join());
     344                write(tokensIO[tokensIO.size() - 1], CommandExecutor::getEvaluation().getReturnvalue());
     345                return success;
     346            }
     347            else if (tokensIO[tokensIO.size() - 2] == "<")
     348            {
     349                std::string input = read(tokensIO[tokensIO.size() - 1]);
     350                if (input == "" || input.size() == 0)
     351                    return CommandExecutor::execute(tokensIO.subSet(0, tokensIO.size() - 2).join());
     352                else
     353                    return CommandExecutor::execute(tokensIO.subSet(0, tokensIO.size() - 2).join() + " " + input);
     354            }
     355        }
     356
     357
     358        SubString tokensPipeline(strippedCommand, "|", SubString::WhiteSpaces, false, '\\', false, '"', false, '(', ')', false, '\0');
     359        if (tokensPipeline.size() > 1)
     360        {
     361            bool success = true;
     362            std::string returnValue = "";
     363            for (int i = tokensPipeline.size() - 1; i >= 0; i--)
     364            {
     365                if (returnValue == "" || returnValue.size() == 0)
     366                {
     367                    //CommandEvaluation evaluation = CommandExecutor::evaluate(tokens[i]);
     368                    if (!CommandExecutor::execute(tokensPipeline[i]))
     369                        success = false;
     370                }
     371                else
     372                {
     373                    //CommandEvaluation evaluation = CommandExecutor::evaluate(tokens[i] + " " + returnValue);
     374                    if (!CommandExecutor::execute(tokensPipeline[i] + " " + returnValue))
     375                        success = false;
     376                }
     377
     378                //CommandExecutor::execute(evaluation);
     379                //returnValue = evaluation.getReturnvalue();
     380                returnValue = CommandExecutor::getEvaluation().getReturnvalue().toString();
     381            }
     382            return success;
     383        }
     384
     385        if ((CommandExecutor::getEvaluation().processedCommand_ != strippedCommand) || (CommandExecutor::getEvaluation().state_ == CS_Uninitialized))
     386            CommandExecutor::parse(strippedCommand);
    256387
    257388        return CommandExecutor::execute(CommandExecutor::getEvaluation());
     
    261392    bool CommandExecutor::execute(const CommandEvaluation& evaluation)
    262393    {
    263         SubString tokens(evaluation.processedCommand_, " ", SubString::WhiteSpaces, false, '\\', '"', '(', ')', '\0');
     394        SubString tokens(evaluation.processedCommand_, " ", SubString::WhiteSpaces, false, '\\', false, '"', false, '(', ')', false, '\0');
    264395
    265396        if (evaluation.bEvaluatedParams_ && evaluation.evaluatedExecutor_)
     
    353484    std::string CommandExecutor::complete(const CommandEvaluation& evaluation)
    354485    {
    355         SubString tokens(evaluation.processedCommand_, " ", SubString::WhiteSpaces, false, '\\', '"', '(', ')', '\0');
     486        SubString tokens(evaluation.processedCommand_, " ", SubString::WhiteSpaces, false, '\\', false, '"', false, '(', ')', false, '\0');
    356487
    357488        std::list<std::pair<const std::string*, const std::string*> > temp;
     
    444575    std::string CommandExecutor::hint(const CommandEvaluation& evaluation)
    445576    {
    446         SubString tokens(evaluation.processedCommand_, " ", SubString::WhiteSpaces, false, '\\', '"', '(', ')', '\0');
     577        SubString tokens(evaluation.processedCommand_, " ", SubString::WhiteSpaces, false, '\\', false, '"', false, '(', ')', false, '\0');
    447578
    448579        switch (evaluation.state_)
     
    516647    void CommandExecutor::parse(const std::string& command, bool bInitialize)
    517648    {
    518         CommandExecutor::getEvaluation().tokens_.split((command + COMMAND_EXECUTOR_CURSOR), " ", SubString::WhiteSpaces, false, '\\', '"', '(', ')', '\0');
     649        CommandExecutor::getEvaluation().tokens_.split((command + COMMAND_EXECUTOR_CURSOR), " ", SubString::WhiteSpaces, false, '\\', false, '"', false, '(', ')', false, '\0');
    519650        CommandExecutor::getEvaluation().processedCommand_ = command;
    520651
Note: See TracChangeset for help on using the changeset viewer.