ScenarioCli.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package ArmarXCore::core
19  * @author Cedric Seehausen (usdnr at kit dot edu)
20  * @date 2016
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 
26 #pragma once
27 
29 
32 
33 
34 
35 
36 namespace armarx
37 {
38  class ScenarioCli : virtual public armarx::Application
39  {
40  public:
41  ScenarioCli();
42 
43  protected:
44  void setup(const ManagedIceObjectRegistryInterfacePtr& registry,
45  Ice::PropertiesPtr properties) override;
46 
47  int exec(const ArmarXManagerPtr& armarXManager) override;
48 
49  private:
50  int run(int argc, char* argv[]) override;
51 
52  std::string packageChoosingDialog(std::string scenarioName);
53  bool deployDialog();
54 
55  void startScenario(std::string command, ScenarioManager::Data_Structure::ScenarioPtr scenario, bool printOnly, IceGrid::AdminPrx iceAdmin, const std::string& commandLineParameters = "");
56  void startApplication(std::string command, ScenarioManager::Data_Structure::ApplicationInstancePtr app, bool printOnly, IceGrid::AdminPrx iceAdmin, const std::string& commandLineParameters = "");
57 
58  void coloredStdOut(std::string message, int colorCode);
59 
60  ScenarioManagerCliOptions optionsManager;
61  CmdOptions options;
63  };
64 }
65 
ScenarioManager::Data_Structure::ApplicationInstancePtr
std::shared_ptr< ApplicationInstance > ApplicationInstancePtr
Definition: ApplicationInstance.h:33
ScenarioManager::Data_Structure::ScenarioPtr
std::shared_ptr< Scenario > ScenarioPtr
Definition: Scenario.h:36
armarx::ScenarioManagerCliOptions
Definition: ScenarioCliOptions.h:48
armarx::ScenarioCli::exec
int exec(const ArmarXManagerPtr &armarXManager) override
Exec method is the main process of the application.
Definition: ScenarioCli.cpp:57
message
message(STATUS "Boost-Library-Dir: " "${Boost_LIBRARY_DIRS}") message(STATUS "Boost-LIBRARIES
Definition: CMakeLists.txt:8
IceInternal::Handle< ::Ice::Properties >
armarx::ScenarioCli::ScenarioCli
ScenarioCli()
Definition: ScenarioCli.cpp:46
Executor.h
ScenarioCliOptions.h
armarx::ScenarioCli
Definition: ScenarioCli.h:38
armarx::Application
Baseclass for all ArmarX applications.
Definition: Application.h:193
armarx::CmdOptions
Definition: ScenarioCliOptions.h:33
IceUtil::Handle< ManagedIceObjectRegistryInterface >
armarx::ScenarioCli::setup
void setup(const ManagedIceObjectRegistryInterfacePtr &registry, Ice::PropertiesPtr properties) override
Setup method to be implemented by user applications.
Definition: ScenarioCli.cpp:51
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:28
Application.h