blob: 77a70b157071be7dc48b3f763e4121946710446c [file] [log] [blame]
// Copyright 2020 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 "low_energy_connection_request.h"
namespace bt::gap::internal {
LowEnergyConnectionRequest::LowEnergyConnectionRequest(
PeerId peer_id, ConnectionResultCallback first_callback,
LowEnergyConnectionOptions connection_options)
: peer_id_(peer_id, MakeToStringInspectConvertFunction()),
callbacks_(/*convert=*/[](const auto& cbs) { return cbs.size(); }),
connection_options_(connection_options) {
callbacks_.Mutable()->push_back(std::move(first_callback));
}
void LowEnergyConnectionRequest::NotifyCallbacks(fit::result<RefFunc, HostError> result) {
for (const auto& callback : *callbacks_) {
if (result.is_error()) {
callback(fit::error(result.error()));
continue;
}
auto conn_ref = result.value()();
callback(fit::ok(std::move(conn_ref)));
}
}
void LowEnergyConnectionRequest::AttachInspect(inspect::Node& parent, std::string name) {
inspect_node_ = parent.CreateChild(name);
peer_id_.AttachInspect(inspect_node_, "peer_id");
callbacks_.AttachInspect(inspect_node_, "callbacks");
}
} // namespace bt::gap::internal