2016-04-23 11:03:53 +00:00
|
|
|
/**
|
|
|
|
MIT License
|
|
|
|
|
|
|
|
Copyright (c) 2016 Claudio Maggioni
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2016-03-16 20:15:24 +00:00
|
|
|
#include "shell.h"
|
2016-03-18 17:48:16 +00:00
|
|
|
namespace mshconsole {
|
|
|
|
Shell::Commands::Commands(Shell* s) : commands(), threadCommands()
|
|
|
|
{
|
|
|
|
parent = s;
|
|
|
|
}
|
2016-03-16 20:15:24 +00:00
|
|
|
|
2016-03-18 17:48:16 +00:00
|
|
|
void Shell::Commands::add(Command* cmd, bool isthread){
|
|
|
|
if(!isthread) commands.push_back(cmd);
|
|
|
|
else threadCommands.push_back(cmd);
|
|
|
|
}
|
2016-03-16 20:15:24 +00:00
|
|
|
|
2016-03-18 17:48:16 +00:00
|
|
|
size_t Shell::Commands::howMany() const{
|
|
|
|
return commands.size();
|
|
|
|
}
|
2016-03-16 20:15:24 +00:00
|
|
|
|
2016-04-16 17:21:39 +00:00
|
|
|
int Shell::Commands::launch(const struct Params& p, bool launchThread){
|
2016-03-18 17:48:16 +00:00
|
|
|
for(unsigned int i=0; i<(launchThread ? threadCommands.size() : commands.size()); i++){
|
2016-04-16 17:21:39 +00:00
|
|
|
if((launchThread ? threadCommands[i]->getName() : commands[i]->getName())==p.argv[0]){
|
|
|
|
return (launchThread ? threadCommands[i]->execute(p, parent) : commands[i]->execute(p, parent));
|
2016-03-18 17:48:16 +00:00
|
|
|
}
|
2016-03-16 20:15:24 +00:00
|
|
|
}
|
2016-03-18 17:48:16 +00:00
|
|
|
throw CommandNotFoundException();
|
2016-03-16 20:15:24 +00:00
|
|
|
}
|
2016-05-21 16:25:20 +00:00
|
|
|
bool Shell::Commands::found(const std::string& s, bool launchThread){
|
|
|
|
for(unsigned int i=0; i<(launchThread ? threadCommands.size() : commands.size()); i++){
|
|
|
|
if((launchThread ? threadCommands[i]->getName() : commands[i]->getName())==s){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-03-16 20:15:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|