-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add option to enable unique network flow - Option enabled for publishers and subscriptions - TODO: Discuss error handling if not supported Signed-off-by: Ananya Muddukrishna <[email protected]> * Get network flows of publishers and subscriptions Signed-off-by: Ananya Muddukrishna <[email protected]> * Use new unique network flow option Signed-off-by: Ananya Muddukrishna <[email protected]> * Rename files for clarity Signed-off-by: Ananya Muddukrishna <[email protected]> * Rename API for clarity and add DSCP option Signed-off-by: Ananya Muddukrishna <[email protected]> * Convert integer to string prior to streaming Signed-off-by: Ananya Muddukrishna <[email protected]> * Uncrustify Signed-off-by: Ananya Muddukrishna <[email protected]> * Fix linkage error thrown by MSVC compiler Signed-off-by: Ananya Muddukrishna <[email protected]> * Use updated rmw interface Signed-off-by: Ananya Muddukrishna <[email protected]> * Improve readability Signed-off-by: Ananya Muddukrishna <[email protected]> * Forward declare friend functions Signed-off-by: Ananya Muddukrishna <[email protected]> Co-authored-by: Ananya Muddukrishna <[email protected]>
- Loading branch information
Showing
11 changed files
with
372 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
// Copyright 2020 Ericsson AB | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef RCLCPP__NETWORK_FLOW_ENDPOINT_HPP_ | ||
#define RCLCPP__NETWORK_FLOW_ENDPOINT_HPP_ | ||
|
||
#include <cstdint> | ||
#include <string> | ||
#include <iostream> | ||
|
||
#include "rcl/network_flow_endpoints.h" | ||
|
||
#include "rclcpp/visibility_control.hpp" | ||
|
||
namespace rclcpp | ||
{ | ||
|
||
/// Forward declaration | ||
class NetworkFlowEndpoint; | ||
|
||
/// Check if two NetworkFlowEndpoint instances are equal | ||
RCLCPP_PUBLIC | ||
bool operator==(const NetworkFlowEndpoint & left, const NetworkFlowEndpoint & right); | ||
|
||
/// Check if two NetworkFlowEndpoint instances are not equal | ||
RCLCPP_PUBLIC | ||
bool operator!=(const NetworkFlowEndpoint & left, const NetworkFlowEndpoint & right); | ||
|
||
/// Streaming helper for NetworkFlowEndpoint | ||
RCLCPP_PUBLIC | ||
std::ostream & operator<<(std::ostream & os, const NetworkFlowEndpoint & network_flow_endpoint); | ||
|
||
/** | ||
* Class describes a network flow endpoint based on the counterpart definition | ||
* in the RMW layer. | ||
*/ | ||
class NetworkFlowEndpoint | ||
{ | ||
public: | ||
/// Construct from rcl_network_flow_endpoint_t | ||
RCLCPP_PUBLIC | ||
explicit NetworkFlowEndpoint(const rcl_network_flow_endpoint_t & network_flow_endpoint) | ||
: transport_protocol_( | ||
rcl_network_flow_endpoint_get_transport_protocol_string(network_flow_endpoint. | ||
transport_protocol)), | ||
internet_protocol_( | ||
rcl_network_flow_endpoint_get_internet_protocol_string( | ||
network_flow_endpoint.internet_protocol)), | ||
transport_port_(network_flow_endpoint.transport_port), | ||
flow_label_(network_flow_endpoint.flow_label), | ||
dscp_(network_flow_endpoint.dscp), | ||
internet_address_(network_flow_endpoint.internet_address) | ||
{ | ||
} | ||
|
||
/// Get transport protocol | ||
RCLCPP_PUBLIC | ||
const std::string & transport_protocol() const; | ||
|
||
/// Get internet protocol | ||
RCLCPP_PUBLIC | ||
const std::string & internet_protocol() const; | ||
|
||
/// Get transport port | ||
RCLCPP_PUBLIC | ||
uint16_t transport_port() const; | ||
|
||
/// Get flow label | ||
RCLCPP_PUBLIC | ||
uint32_t flow_label() const; | ||
|
||
/// Get DSCP | ||
RCLCPP_PUBLIC | ||
uint8_t dscp() const; | ||
|
||
/// Get internet address | ||
RCLCPP_PUBLIC | ||
const std::string & internet_address() const; | ||
|
||
/// Compare two NetworkFlowEndpoint instances | ||
friend bool rclcpp::operator==( | ||
const NetworkFlowEndpoint & left, | ||
const NetworkFlowEndpoint & right); | ||
friend bool rclcpp::operator!=( | ||
const NetworkFlowEndpoint & left, | ||
const NetworkFlowEndpoint & right); | ||
|
||
/// Streaming helper | ||
friend std::ostream & rclcpp::operator<<( | ||
std::ostream & os, | ||
const NetworkFlowEndpoint & network_flow_endpoint); | ||
|
||
private: | ||
std::string transport_protocol_; | ||
std::string internet_protocol_; | ||
uint16_t transport_port_; | ||
uint32_t flow_label_; | ||
uint8_t dscp_; | ||
std::string internet_address_; | ||
}; | ||
|
||
} // namespace rclcpp | ||
|
||
#endif // RCLCPP__NETWORK_FLOW_ENDPOINT_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
// Copyright 2020 Ericsson AB | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include <string> | ||
|
||
#include "rclcpp/network_flow_endpoint.hpp" | ||
|
||
namespace rclcpp | ||
{ | ||
|
||
const std::string & | ||
NetworkFlowEndpoint::transport_protocol() const | ||
{ | ||
return transport_protocol_; | ||
} | ||
|
||
const std::string & | ||
NetworkFlowEndpoint::internet_protocol() const | ||
{ | ||
return internet_protocol_; | ||
} | ||
|
||
uint16_t NetworkFlowEndpoint::transport_port() const | ||
{ | ||
return transport_port_; | ||
} | ||
|
||
uint32_t NetworkFlowEndpoint::flow_label() const | ||
{ | ||
return flow_label_; | ||
} | ||
|
||
uint8_t NetworkFlowEndpoint::dscp() const | ||
{ | ||
return dscp_; | ||
} | ||
|
||
const std::string & | ||
NetworkFlowEndpoint::internet_address() const | ||
{ | ||
return internet_address_; | ||
} | ||
|
||
bool operator==(const NetworkFlowEndpoint & left, const NetworkFlowEndpoint & right) | ||
{ | ||
return left.transport_protocol_ == right.transport_protocol_ && | ||
left.internet_protocol_ == right.internet_protocol_ && | ||
left.transport_port_ == right.transport_port_ && | ||
left.flow_label_ == right.flow_label_ && | ||
left.dscp_ == right.dscp_ && | ||
left.internet_address_ == right.internet_address_; | ||
} | ||
|
||
bool operator!=(const NetworkFlowEndpoint & left, const NetworkFlowEndpoint & right) | ||
{ | ||
return !(left == right); | ||
} | ||
|
||
std::ostream & operator<<(std::ostream & os, const NetworkFlowEndpoint & network_flow_endpoint) | ||
{ | ||
// Stream out in JSON-like format | ||
os << "{" << | ||
"\"transportProtocol\": \"" << network_flow_endpoint.transport_protocol_ << "\", " << | ||
"\"internetProtocol\": \"" << network_flow_endpoint.internet_protocol_ << "\", " << | ||
"\"transportPort\": \"" << network_flow_endpoint.transport_port_ << "\", " << | ||
"\"flowLabel\": \"" << std::to_string(network_flow_endpoint.flow_label_) << "\", " << | ||
"\"dscp\": \"" << std::to_string(network_flow_endpoint.dscp_) << "\", " << | ||
"\"internetAddress\": \"" << network_flow_endpoint.internet_address_ << "\"" << | ||
"}"; | ||
return os; | ||
} | ||
|
||
} // namespace rclcpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.