Files
nearby/fastpair/server_access/fast_pair_metadata_downloader.h
T
Janusz Sobczak 3cf20ee3bc Store metadata in FastPairDevice
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
2023-06-22 01:48:56 -07:00

59 lines
1.8 KiB
C++

// Copyright 2022 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_SERVER_ACCESS_FAST_PAIR_METADATA_DOWNLOADER_H_
#define THIRD_PARTY_NEARBY_FASTPAIR_SERVER_ACCESS_FAST_PAIR_METADATA_DOWNLOADER_H_
#include <functional>
#include <optional>
#include <string>
#include "absl/functional/any_invocable.h"
#include "absl/strings/string_view.h"
#include "fastpair/common/device_metadata.h"
namespace nearby {
namespace fastpair {
class FastPairMetadataDownloader {
public:
using SuccessCallback = absl::AnyInvocable<void(DeviceMetadata&)>;
using FailureCallback = absl::AnyInvocable<void()>;
FastPairMetadataDownloader(absl::string_view model_id,
SuccessCallback success_callback,
FailureCallback failure_callback);
virtual ~FastPairMetadataDownloader();
// Starts downloading the device information
void Run();
protected:
absl::string_view model_id() const { return model_id_; }
virtual void OnRun() = 0;
void Succeed(DeviceMetadata& device_metadata);
void Fail();
private:
absl::string_view model_id_;
SuccessCallback success_callback_;
FailureCallback failure_callback_;
bool was_run_ = false;
};
} // namespace fastpair
} // namespace nearby
#endif // THIRD_PARTY_NEARBY_FASTPAIR_SERVER_ACCESS_FAST_PAIR_METADATA_DOWNLOADER_H_