mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
58 lines
1.8 KiB
C++
58 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/strings/string_view.h"
|
|
#include "fastpair/proto/fastpair_rpcs.proto.h"
|
|
|
|
namespace nearby {
|
|
namespace fastpair {
|
|
|
|
class FastPairMetadataDownloader {
|
|
public:
|
|
using SuccessCallback = std::function<void(proto::Device device)>;
|
|
using FailureCallback = std::function<void()>;
|
|
|
|
FastPairMetadataDownloader(std::optional<std::string> model_id,
|
|
SuccessCallback success_callback,
|
|
FailureCallback failure_callback);
|
|
virtual ~FastPairMetadataDownloader();
|
|
|
|
// Starts downloading the device information
|
|
void Run();
|
|
|
|
protected:
|
|
std::optional<std::string> model_id() const { return model_id_; }
|
|
virtual void OnRun() = 0;
|
|
void Succeed(proto::Device device);
|
|
void Fail();
|
|
|
|
private:
|
|
const std::optional<std::string> 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_
|