Files
nearby/fastpair/ui/ui_broker_impl.cc
T
Qin Wang 2bdafe926c Add UX to show pairing result
PiperOrigin-RevId: 551027791
2023-07-25 16:18:35 -07:00

88 lines
2.9 KiB
C++

// Copyright 2023 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 "fastpair/ui/ui_broker_impl.h"
#include <memory>
#include <utility>
#include "fastpair/common/fast_pair_device.h"
#include "fastpair/common/protocol.h"
#include "fastpair/ui/actions.h"
#include "fastpair/ui/fast_pair/fast_pair_presenter.h"
#include "fastpair/ui/fast_pair/fast_pair_presenter_impl.h"
#include "internal/platform/logging.h"
namespace nearby {
namespace fastpair {
UIBrokerImpl::UIBrokerImpl()
: fast_pair_presenter_(FastPairPresenterImpl::Factory::Create()) {}
void UIBrokerImpl::AddObserver(Observer* observer) {
observers_.AddObserver(observer);
}
void UIBrokerImpl::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
}
void UIBrokerImpl::ShowDiscovery(
FastPairDevice& device,
FastPairNotificationController& notification_controller) {
switch (device.GetProtocol()) {
case Protocol::kFastPairInitialPairing:
case Protocol::kFastPairSubsequentPairing:
fast_pair_presenter_->ShowDiscovery(
device, notification_controller, [&](DiscoveryAction action) {
NEARBY_LOGS(VERBOSE)
<< __func__
<< "ui broker notify discovery action of device: " << device;
NotifyDiscoveryAction(device, action);
});
break;
case Protocol::kFastPairRetroactivePairing:
NEARBY_LOGS(ERROR)
<< __func__
<< ": Retroactive Pairing should not show discovery Halfsheet.";
break;
}
}
void UIBrokerImpl::ShowPairingResult(
FastPairDevice& device,
FastPairNotificationController& notification_controller, bool success) {
NEARBY_LOGS(VERBOSE) << __func__;
switch (device.GetProtocol()) {
case Protocol::kFastPairInitialPairing:
case Protocol::kFastPairSubsequentPairing:
fast_pair_presenter_->ShowPairingResult(device, notification_controller,
success);
break;
case Protocol::kFastPairRetroactivePairing:
// In this scenario, we don't show the error UI because it would be
// misleading, since a pair failure is a retroactive pair failure.
break;
}
}
void UIBrokerImpl::NotifyDiscoveryAction(FastPairDevice& device,
DiscoveryAction action) {
for (auto& observer : observers_.GetObservers())
observer->OnDiscoveryAction(device, action);
}
} // namespace fastpair
} // namespace nearby