blob: e02a370e9a2de9d6580d9c5f9f15260d88995a49 [file] [log] [blame]
// Copyright 2021 The Fuchsia 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 "bredr_connection_request.h"
namespace bt::gap {
namespace {
const char* const kInspectHasIncomingPropertyName = "has_incoming";
const char* const kInspectCallbacksPropertyName = "callbacks";
const char* const kInspectPeerIdPropertyName = "peer_id";
} // namespace
BrEdrConnectionRequest::BrEdrConnectionRequest(const DeviceAddress& addr, PeerId peer_id)
: peer_id_(peer_id),
address_(addr),
callbacks_(/*convert=*/[](auto& c) { return c.size(); }),
has_incoming_(false) {}
BrEdrConnectionRequest::BrEdrConnectionRequest(const DeviceAddress& addr, PeerId peer_id,
OnComplete&& callback)
: BrEdrConnectionRequest(addr, peer_id) {
callbacks_.Mutable()->push_back(std::move(callback));
}
void BrEdrConnectionRequest::NotifyCallbacks(hci::Status status, const RefFactory& generate_ref) {
// If this request has been moved from, |callbacks_| may be empty.
for (const auto& callback : *callbacks_) {
callback(status, generate_ref());
}
}
void BrEdrConnectionRequest::AttachInspect(inspect::Node& parent, std::string name) {
inspect_node_ = parent.CreateChild(name);
has_incoming_.AttachInspect(inspect_node_, kInspectHasIncomingPropertyName);
callbacks_.AttachInspect(inspect_node_, kInspectCallbacksPropertyName);
peer_id_property_ = inspect_node_.CreateString(kInspectPeerIdPropertyName, peer_id_.ToString());
}
} // namespace bt::gap