mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
Add DeviceMetadata to FastPairDevice after downloading it. It simplifies the code and prevents fetching the same metadata several times. FastPairDataEncryptorImpl does not download the metadata anymore. Metadata must have already been downloaded, otherwise we wouldn't know what FP protocol to use. PiperOrigin-RevId: 542490742
71 lines
2.4 KiB
C++
71 lines
2.4 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.
|
|
|
|
#ifndef THIRD_PARTY_NEARBY_FASTPAIR_UI_FAST_PAIR_FAST_PAIR_NOTIFICATION_CONTROLLER_H_
|
|
#define THIRD_PARTY_NEARBY_FASTPAIR_UI_FAST_PAIR_FAST_PAIR_NOTIFICATION_CONTROLLER_H_
|
|
|
|
#include "absl/functional/any_invocable.h"
|
|
#include "absl/strings/string_view.h"
|
|
#include "fastpair/common/device_metadata.h"
|
|
#include "fastpair/ui/actions.h"
|
|
#include "internal/base/observer_list.h"
|
|
|
|
namespace nearby {
|
|
namespace fastpair {
|
|
|
|
using DiscoveryCallback = absl::AnyInvocable<void(DiscoveryAction) const>;
|
|
|
|
enum class FastPairNotificationDismissReason {
|
|
kDismissedByUser,
|
|
kDismissedByOs,
|
|
kDismissedByTimeout,
|
|
};
|
|
// This controller creates and manages messages for each FastPair corresponding
|
|
// notification event.
|
|
class FastPairNotificationController {
|
|
public:
|
|
class Observer {
|
|
public:
|
|
virtual ~Observer() = default;
|
|
virtual void OnUpdateDevice(const DeviceMetadata& device) = 0;
|
|
};
|
|
|
|
FastPairNotificationController() = default;
|
|
~FastPairNotificationController() = default;
|
|
FastPairNotificationController(const FastPairNotificationController&) =
|
|
delete;
|
|
FastPairNotificationController& operator=(
|
|
const FastPairNotificationController&) = delete;
|
|
|
|
// Observer process
|
|
void AddObserver(Observer* observer);
|
|
void RemoveObserver(Observer* observer);
|
|
void NotifyShowDiscovery(const DeviceMetadata& device);
|
|
|
|
// Creates and displays corresponding notification.
|
|
void ShowGuestDiscoveryNotification(const DeviceMetadata& device_metadata,
|
|
DiscoveryCallback callback);
|
|
|
|
// Triggers callback when the related action is clicked.
|
|
void OnDiscoveryClicked(DiscoveryAction action);
|
|
|
|
private:
|
|
DiscoveryCallback callback_;
|
|
ObserverList<Observer> observers_;
|
|
};
|
|
} // namespace fastpair
|
|
} // namespace nearby
|
|
|
|
#endif // THIRD_PARTY_NEARBY_FASTPAIR_UI_FAST_PAIR_FAST_PAIR_NOTIFICATION_CONTROLLER_H_
|