Carma-platform v4.2.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
system_controller_config.hpp
Go to the documentation of this file.
1#pragma once
2
3/*
4 * Copyright (C) 2021 LEIDOS.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
7 * use this file except in compliance with the License. You may obtain a copy of
8 * the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15 * License for the specific language governing permissions and limitations under
16 * the License.
17 */
18
19#include <iostream>
20#include <vector>
25{
27 // This is also the total set of nodes which will be managed by this controller
28 std::vector<std::string> required_subsystem_nodes;
29
32
34 uint64_t service_timeout_ms = 1000;
35
37 uint64_t call_timeout_ms = 1000;
38
39 // Stream operator for this config
40 friend std::ostream& operator<<(std::ostream& output, const SystemControllerConfig& c)
41 {
42 output << "SystemControllerConfig { " << std::endl
43 << "signal_configure_delay: " << c.signal_configure_delay << std::endl
44 << "service_timeout_ms: " << c.service_timeout_ms << std::endl
45 << "call_timeout_ms: " << c.call_timeout_ms << std::endl
46 << "required_subsystem_nodes: [ ";
47
48 for (auto node : c.required_subsystem_nodes)
49 output << node << " ";
50
51
52 output << "] " << std::endl << "}" << std::endl;
53 return output;
54 }
55};
Stuct containing the algorithm configuration values for the SystemController.
uint64_t service_timeout_ms
Timeout in ms for service availability.
friend std::ostream & operator<<(std::ostream &output, const SystemControllerConfig &c)
uint64_t call_timeout_ms
Timeout in ms for service calls.
double signal_configure_delay
Time in seconds to wait before telling all nodes to configure.
std::vector< std::string > required_subsystem_nodes
List of nodes to consider required and who's failure shall result in system shutdown.