master/src/app.cpp
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #include <corbo-master/master.h>
26 
28 #include <corbo-core/corbo_core.h>
34 
35 #include <algorithm>
36 #include <string>
37 
38 bool has_option(char** argv_begin, char** argv_end, const std::string& option) { return std::find(argv_begin, argv_end, option) != argv_end; }
39 
40 std::string get_option(char** argv_begin, char** argv_end, const std::string& option)
41 {
42  char** it = std::find(argv_begin, argv_end, option);
43  if (it != argv_end && ++it != argv_end) return std::string(*it);
44  return std::string();
45 }
46 
47 void print_help()
48 {
49  PRINT_INFO("=== corbo-master ===");
50  PRINT_INFO("The following options are available:");
51  PRINT_INFO("-s\tSet gRPC server hostname, e.g. -s localhost:50051");
52  PRINT_INFO("-m\tLoad protobuf message file of type corboParameters, e.g. -m path/to/file.cparams");
53 }
54 
55 int main(int argc, char** argv)
56 {
57  // parse arguments for options
58  if (has_option(argv, argv + argc, "-h"))
59  {
60  print_help();
61  return 0;
62  }
63 
64  std::string hostname = get_option(argv, argv + argc, "-s");
65  if (hostname.empty()) hostname = "localhost:50051";
66 
67  std::string proto_msg_path = get_option(argv, argv + argc, "-m");
68 
69  corbo::Master master;
70 
71  if (!proto_msg_path.empty())
72  {
73  if (master.loadFromFile(proto_msg_path))
74  {
75  PRINT_INFO("Loaded default parameters from file " << proto_msg_path);
76  }
77  else
78  {
79  PRINT_ERROR("Cannot load default parameters from file " << proto_msg_path);
80  }
81  }
82 
83  PRINT_DEBUG_WARN("corbo IS COMPILED WITH DEBUG FLAGS: PLEASE EXPECT LARGE COMPUTATION TIMES!");
84 
85  master.start(hostname);
86  return 0;
87 }
corbo::Master::loadFromFile
bool loadFromFile(const std::string &filename)
Definition: master.cpp:107
corbo_observers.h
get_option
std::string get_option(char **argv_begin, char **argv_end, const std::string &option)
Definition: master/src/app.cpp:40
corbo_tasks.h
print_help
void print_help()
Definition: master/src/app.cpp:47
corbo_systems.h
corbo::Master
General service client for rpc communication.
Definition: master.h:86
main
int main(int argc, char **argv)
Definition: master/src/app.cpp:55
corbo_core.h
corbo::Master::start
void start(const std::string &server_address, bool blocking=true)
Start master server (blocking call)
Definition: master.cpp:59
corbo_numerics.h
corbo_controllers.h
corbo_plants.h
PRINT_DEBUG_WARN
#define PRINT_DEBUG_WARN(msg)
Print message in debug mode with warning-color-code.
Definition: console.h:207
master.h
has_option
bool has_option(char **argv_begin, char **argv_end, const std::string &option)
Definition: master/src/app.cpp:38
PRINT_INFO
#define PRINT_INFO(msg)
Print msg-stream.
Definition: console.h:117
PRINT_ERROR
#define PRINT_ERROR(msg)
Print msg-stream as error msg.
Definition: console.h:173


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:36