1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "osp/public/presentation/presentation_connection.h"
#include <algorithm>
#include <memory>
#include <ostream>
#include "absl/strings/string_view.h"
#include "osp/impl/presentation/presentation_common.h"
#include "osp/msgs/osp_messages.h"
#include "osp/public/network_service_manager.h"
#include "osp/public/presentation/presentation_controller.h"
#include "osp/public/presentation/presentation_receiver.h"
#include "osp/public/protocol_connection.h"
#include "util/osp_logging.h"
#include "util/std_util.h"
// TODO(crbug.com/openscreen/27): Address TODOs in this file
namespace openscreen {
namespace osp {
namespace {
// TODO(jophba): replace Write methods with a unified write message surface
Error WriteConnectionMessage(const msgs::PresentationConnectionMessage& message,
ProtocolConnection* connection) {
return connection->WriteMessage(message,
msgs::EncodePresentationConnectionMessage);
}
} // namespace
Connection::Connection(const PresentationInfo& info,
Delegate* delegate,
ParentDelegate* parent_delegate)
: presentation_(info),
state_(State::kConnecting),
delegate_(delegate),
parent_delegate_(parent_delegate),
connection_id_(0),
protocol_connection_(nullptr) {}
Connection::~Connection() {
if (state_ == State::kConnected) {
Close(CloseReason::kDiscarded);
delegate_->OnDiscarded();
}
parent_delegate_->OnConnectionDestroyed(this);
}
void Connection::OnConnecting() {
OSP_DCHECK(!protocol_connection_);
state_ = State::kConnecting;
}
void Connection::OnConnected(
uint64_t connection_id,
uint64_t endpoint_id,
std::unique_ptr<ProtocolConnection> protocol_connection) {
if (state_ != State::kConnecting) {
return;
}
connection_id_ = connection_id;
endpoint_id_ = endpoint_id;
protocol_connection_ = std::move(protocol_connection);
state_ = State::kConnected;
delegate_->OnConnected();
}
bool Connection::OnClosed() {
if (state_ != State::kConnecting && state_ != State::kConnected)
return false;
protocol_connection_.reset();
state_ = State::kClosed;
return true;
}
void Connection::OnClosedByError(Error cause) {
if (OnClosed()) {
std::ostringstream stream;
stream << cause;
delegate_->OnError(stream.str());
}
}
void Connection::OnClosedByRemote() {
if (OnClosed())
delegate_->OnClosedByRemote();
}
void Connection::OnTerminated() {
if (state_ == State::kTerminated)
return;
protocol_connection_.reset();
state_ = State::kTerminated;
delegate_->OnTerminated();
}
Error Connection::SendString(absl::string_view message) {
if (state_ != State::kConnected)
return Error::Code::kNoActiveConnection;
msgs::PresentationConnectionMessage cbor_message;
OSP_LOG_INFO << "sending '" << message << "' to (" << presentation_.id << ", "
<< connection_id_.value() << ")";
cbor_message.connection_id = connection_id_.value();
cbor_message.message.which =
msgs::PresentationConnectionMessage::Message::Which::kString;
new (&cbor_message.message.str) std::string(message);
return WriteConnectionMessage(cbor_message, protocol_connection_.get());
}
Error Connection::SendBinary(std::vector<uint8_t>&& data) {
if (state_ != State::kConnected)
return Error::Code::kNoActiveConnection;
msgs::PresentationConnectionMessage cbor_message;
OSP_LOG_INFO << "sending " << data.size() << " bytes to (" << presentation_.id
<< ", " << connection_id_.value() << ")";
cbor_message.connection_id = connection_id_.value();
cbor_message.message.which =
msgs::PresentationConnectionMessage::Message::Which::kBytes;
new (&cbor_message.message.bytes) std::vector<uint8_t>(std::move(data));
return WriteConnectionMessage(cbor_message, protocol_connection_.get());
}
Error Connection::Close(CloseReason reason) {
if (state_ == State::kClosed || state_ == State::kTerminated)
return Error::Code::kAlreadyClosed;
state_ = State::kClosed;
protocol_connection_.reset();
return parent_delegate_->CloseConnection(this, reason);
}
void Connection::Terminate(TerminationReason reason) {
if (state_ == State::kTerminated)
return;
state_ = State::kTerminated;
protocol_connection_.reset();
parent_delegate_->OnPresentationTerminated(presentation_.id, reason);
}
ConnectionManager::ConnectionManager(MessageDemuxer* demuxer) {
message_watch_ = demuxer->SetDefaultMessageTypeWatch(
msgs::Type::kPresentationConnectionMessage, this);
close_request_watch_ = demuxer->SetDefaultMessageTypeWatch(
msgs::Type::kPresentationConnectionCloseRequest, this);
close_event_watch_ = demuxer->SetDefaultMessageTypeWatch(
msgs::Type::kPresentationConnectionCloseEvent, this);
}
void ConnectionManager::AddConnection(Connection* connection) {
auto emplace_result =
connections_.emplace(connection->connection_id(), connection);
OSP_DCHECK(emplace_result.second);
}
void ConnectionManager::RemoveConnection(Connection* connection) {
auto entry = connections_.find(connection->connection_id());
if (entry != connections_.end()) {
connections_.erase(entry);
}
}
// TODO(jophba): add a utility object to track requests/responses
// TODO(jophba): refine the RegisterWatch/OnStreamMessage API. We
// should add a layer between the message logic and the parse/dispatch
// logic, and remove the CBOR information from ConnectionManager.
ErrorOr<size_t> ConnectionManager::OnStreamMessage(uint64_t endpoint_id,
uint64_t connection_id,
msgs::Type message_type,
const uint8_t* buffer,
size_t buffer_size,
Clock::time_point now) {
switch (message_type) {
case msgs::Type::kPresentationConnectionMessage: {
msgs::PresentationConnectionMessage message;
ssize_t bytes_decoded = msgs::DecodePresentationConnectionMessage(
buffer, buffer_size, &message);
if (bytes_decoded < 0) {
OSP_LOG_WARN << "presentation-connection-message parse error";
return Error::Code::kParseError;
}
Connection* connection = GetConnection(message.connection_id);
if (!connection) {
return Error::Code::kItemNotFound;
}
switch (message.message.which) {
case decltype(message.message.which)::kString:
connection->get_delegate()->OnStringMessage(message.message.str);
break;
case decltype(message.message.which)::kBytes:
connection->get_delegate()->OnBinaryMessage(message.message.bytes);
break;
default:
OSP_LOG_WARN << "uninitialized message data in "
"presentation-connection-message";
break;
}
return bytes_decoded;
}
case msgs::Type::kPresentationConnectionCloseRequest: {
msgs::PresentationConnectionCloseRequest request;
ssize_t bytes_decoded = msgs::DecodePresentationConnectionCloseRequest(
buffer, buffer_size, &request);
if (bytes_decoded < 0) {
OSP_LOG_WARN << "decode presentation-connection-close-request error: "
<< bytes_decoded;
return Error::Code::kCborInvalidMessage;
}
msgs::PresentationConnectionCloseResponse response;
response.request_id = request.request_id;
Connection* connection = GetConnection(request.connection_id);
if (connection) {
response.result =
msgs::PresentationConnectionCloseResponse_result::kSuccess;
connection->OnClosedByRemote();
} else {
response.result = msgs::PresentationConnectionCloseResponse_result::
kInvalidConnectionId;
}
std::unique_ptr<ProtocolConnection> protocol_connection =
NetworkServiceManager::Get()
->GetProtocolConnectionServer()
->CreateProtocolConnection(endpoint_id);
if (protocol_connection) {
protocol_connection->WriteMessage(
response, &msgs::EncodePresentationConnectionCloseResponse);
}
return (response.result ==
msgs::PresentationConnectionCloseResponse_result::kSuccess)
? ErrorOr<size_t>(bytes_decoded)
: Error::Code::kNoActiveConnection;
}
case msgs::Type::kPresentationConnectionCloseEvent: {
msgs::PresentationConnectionCloseEvent event;
ssize_t bytes_decoded = msgs::DecodePresentationConnectionCloseEvent(
buffer, buffer_size, &event);
if (bytes_decoded < 0) {
OSP_LOG_WARN << "decode presentation-connection-close-event error: "
<< bytes_decoded;
return Error::Code::kParseError;
}
Connection* connection = GetConnection(event.connection_id);
if (!connection) {
return Error::Code::kNoActiveConnection;
}
connection->OnClosedByRemote();
return bytes_decoded;
}
// TODO(jophba): The spec says to close the connection if we get a message
// we don't understand. Figure out how to honor the spec here.
default:
return Error::Code::kUnknownMessageType;
}
}
Connection* ConnectionManager::GetConnection(uint64_t connection_id) {
auto entry = connections_.find(connection_id);
if (entry != connections_.end()) {
return entry->second;
}
OSP_DVLOG << "unknown ID: " << connection_id;
return nullptr;
}
} // namespace osp
} // namespace openscreen
|