Files
nearby/presence/presence_client.cc
T
Janusz Sobczak a29be214a3 Migrate to absl::AnyInvocable in NP.
Replaces a bunch of std::function uses with absl::AnyInvocable.

PiperOrigin-RevId: 502960326
2023-01-18 13:16:29 -08:00

67 lines
2.1 KiB
C++

// Copyright 2020 Google LLC
//
// 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
//
// https://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 "presence/presence_client.h"
#include <memory>
#include <utility>
#include <vector>
#include "absl/status/status.h"
#include "internal/platform/borrowable.h"
#include "internal/platform/logging.h"
#include "presence/presence_service.h"
namespace nearby {
namespace presence {
absl::StatusOr<ScanSessionId> PresenceClient::StartScan(
ScanRequest scan_request, ScanCallback callback) {
::nearby::Borrowed<PresenceService*> borrowed = service_.Borrow();
if (!borrowed) {
return absl::FailedPreconditionError(
"Can't start scan, presence service is gone");
}
return (*borrowed)->StartScan(scan_request, std::move(callback));
}
void PresenceClient::StopScan(ScanSessionId id) {
::nearby::Borrowed<PresenceService*> borrowed = service_.Borrow();
if (borrowed) {
(*borrowed)->StopScan(id);
}
}
absl::StatusOr<BroadcastSessionId> PresenceClient::StartBroadcast(
BroadcastRequest broadcast_request, BroadcastCallback callback) {
::nearby::Borrowed<PresenceService*> borrowed = service_.Borrow();
if (!borrowed) {
return absl::FailedPreconditionError(
"Can't start broadcast, presence service is gone");
}
return (*borrowed)->StartBroadcast(broadcast_request, std::move(callback));
}
void PresenceClient::StopBroadcast(BroadcastSessionId session_id) {
::nearby::Borrowed<PresenceService*> borrowed = service_.Borrow();
if (borrowed) {
(*borrowed)->StopBroadcast(session_id);
} else {
NEARBY_LOGS(VERBOSE) << "Session already finished, id: " << session_id;
}
}
} // namespace presence
} // namespace nearby