mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
129 lines
5.1 KiB
C++
129 lines
5.1 KiB
C++
// Copyright 2021 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 CORE_INTERNAL_OFFLINE_SERVICE_CONTROLLER_H_
|
|
#define CORE_INTERNAL_OFFLINE_SERVICE_CONTROLLER_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "connections/discovery_options.h"
|
|
#include "connections/implementation/bwu_manager.h"
|
|
#include "connections/implementation/client_proxy.h"
|
|
#include "connections/implementation/endpoint_channel_manager.h"
|
|
#include "connections/implementation/endpoint_manager.h"
|
|
#include "connections/implementation/injected_bluetooth_device_store.h"
|
|
#include "connections/implementation/mediums/mediums.h"
|
|
#include "connections/implementation/payload_manager.h"
|
|
#include "connections/implementation/pcp_manager.h"
|
|
#include "connections/implementation/service_controller.h"
|
|
#include "connections/listeners.h"
|
|
#include "connections/payload.h"
|
|
#include "connections/status.h"
|
|
#include "connections/v3/connection_listening_options.h"
|
|
|
|
namespace nearby {
|
|
namespace connections {
|
|
|
|
class OfflineServiceController : public ServiceController {
|
|
public:
|
|
explicit OfflineServiceController(const BwuManager::Config& bwu_config)
|
|
: bwu_manager_(BwuManager(mediums_, endpoint_manager_, channel_manager_,
|
|
{}, bwu_config)) {}
|
|
|
|
~OfflineServiceController() override;
|
|
|
|
Status StartAdvertising(ClientProxy* client, const std::string& service_id,
|
|
const AdvertisingOptions& advertising_options,
|
|
const ConnectionRequestInfo& info) override;
|
|
|
|
void StopAdvertising(ClientProxy* client) override;
|
|
|
|
Status StartDiscovery(ClientProxy* client, const std::string& service_id,
|
|
const DiscoveryOptions& discovery_options,
|
|
DiscoveryListener listener) override;
|
|
void StopDiscovery(ClientProxy* client) override;
|
|
|
|
void InjectEndpoint(ClientProxy* client, const std::string& service_id,
|
|
const OutOfBandConnectionMetadata& metadata) override;
|
|
|
|
std::pair<Status, std::vector<ConnectionInfoVariant>>
|
|
StartListeningForIncomingConnections(
|
|
ClientProxy* client, absl::string_view service_id,
|
|
v3::ConnectionListener listener,
|
|
const v3::ConnectionListeningOptions& options) override;
|
|
|
|
void StopListeningForIncomingConnections(ClientProxy* client) override;
|
|
|
|
Status RequestConnection(
|
|
ClientProxy* client, const std::string& endpoint_id,
|
|
const ConnectionRequestInfo& info,
|
|
const ConnectionOptions& connection_options) override;
|
|
|
|
Status RequestConnectionV3(
|
|
ClientProxy* client, const NearbyDevice& remote_device,
|
|
const ConnectionRequestInfo& info,
|
|
const ConnectionOptions& connection_options) override;
|
|
Status AcceptConnection(ClientProxy* client, const std::string& endpoint_id,
|
|
PayloadListener listener) override;
|
|
Status RejectConnection(ClientProxy* client,
|
|
const std::string& endpoint_id) override;
|
|
|
|
void InitiateBandwidthUpgrade(ClientProxy* client,
|
|
const std::string& endpoint_id) override;
|
|
|
|
void SendPayload(ClientProxy* client,
|
|
const std::vector<std::string>& endpoint_ids,
|
|
Payload payload) override;
|
|
Status CancelPayload(ClientProxy* client, Payload::Id payload_id) override;
|
|
|
|
void DisconnectFromEndpoint(ClientProxy* client,
|
|
const std::string& endpoint_id) override;
|
|
|
|
Status UpdateAdvertisingOptions(
|
|
ClientProxy* client, absl::string_view service_id,
|
|
const AdvertisingOptions& advertising_options) override;
|
|
|
|
Status UpdateDiscoveryOptions(
|
|
ClientProxy* client, absl::string_view service_id,
|
|
const DiscoveryOptions& discovery_options) override;
|
|
|
|
void Stop() override;
|
|
|
|
void SetCustomSavePath(ClientProxy* client, const std::string& path) override;
|
|
|
|
void ShutdownBwuManagerExecutors() override;
|
|
|
|
BwuManager::Config GetBwuConfig() const { return bwu_manager_.GetConfig(); }
|
|
|
|
private:
|
|
// Note that the order of declaration of these is crucial, because we depend
|
|
// on the destructors running (strictly) in the reverse order; a deviation
|
|
// from that will lead to crashes at runtime.
|
|
AtomicBoolean stop_{false};
|
|
Mediums mediums_;
|
|
EndpointChannelManager channel_manager_;
|
|
EndpointManager endpoint_manager_{&channel_manager_};
|
|
PayloadManager payload_manager_{endpoint_manager_};
|
|
BwuManager bwu_manager_;
|
|
InjectedBluetoothDeviceStore injected_bluetooth_device_store_;
|
|
PcpManager pcp_manager_{mediums_, channel_manager_, endpoint_manager_,
|
|
bwu_manager_, injected_bluetooth_device_store_};
|
|
};
|
|
|
|
} // namespace connections
|
|
} // namespace nearby
|
|
|
|
#endif // CORE_INTERNAL_OFFLINE_SERVICE_CONTROLLER_H_
|