mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
136 lines
5.0 KiB
C++
136 lines
5.0 KiB
C++
// Copyright 2020 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 PLATFORM_API_WIFI_LAN_H_
|
|
#define PLATFORM_API_WIFI_LAN_H_
|
|
|
|
#include <string>
|
|
|
|
#include "absl/strings/string_view.h"
|
|
#include "platform/base/byte_array.h"
|
|
#include "platform/base/cancellation_flag.h"
|
|
#include "platform/base/input_stream.h"
|
|
#include "platform/base/listeners.h"
|
|
#include "platform/base/nsd_service_info.h"
|
|
#include "platform/base/output_stream.h"
|
|
|
|
namespace location {
|
|
namespace nearby {
|
|
namespace api {
|
|
|
|
// Opaque wrapper over a WifiLan service which contains |NsdServiceInfo|.
|
|
class WifiLanService {
|
|
public:
|
|
virtual ~WifiLanService() = default;
|
|
|
|
// Returns the |NsdServiceInfo| which contains the packed string of
|
|
// |WifiLanServiceInfo| and the endpoint info with named key in a TXTRecord
|
|
// map.
|
|
// The details refer to
|
|
// https://developer.android.com/reference/android/net/nsd/NsdServiceInfo.html.
|
|
virtual NsdServiceInfo GetServiceInfo() const = 0;
|
|
};
|
|
|
|
class WifiLanSocket {
|
|
public:
|
|
virtual ~WifiLanSocket() = default;
|
|
|
|
// Returns the InputStream of the WifiLanSocket.
|
|
// On error, returned stream will report Exception::kIo on any operation.
|
|
//
|
|
// The returned object is not owned by the caller, and can be invalidated once
|
|
// the WifiLanSocket object is destroyed.
|
|
virtual InputStream& GetInputStream() = 0;
|
|
|
|
// Returns the OutputStream of the WifiLanSocket.
|
|
// On error, returned stream will report Exception::kIo on any operation.
|
|
//
|
|
// The returned object is not owned by the caller, and can be invalidated once
|
|
// the WifiLanSocket object is destroyed.
|
|
virtual OutputStream& GetOutputStream() = 0;
|
|
|
|
// Returns Exception::kIo on error, Exception::kSuccess otherwise.
|
|
virtual Exception Close() = 0;
|
|
|
|
// Returns valid WifiLanService pointer if there is a connection, and
|
|
// nullptr otherwise.
|
|
virtual WifiLanService* GetRemoteWifiLanService() = 0;
|
|
};
|
|
|
|
// Container of operations that can be performed over the WifiLan medium.
|
|
class WifiLanMedium {
|
|
public:
|
|
virtual ~WifiLanMedium() = default;
|
|
|
|
virtual bool StartAdvertising(const std::string& service_id,
|
|
const NsdServiceInfo& nsd_service_info) = 0;
|
|
virtual bool StopAdvertising(const std::string& service_id) = 0;
|
|
|
|
// Callback that is invoked when a discovered service is found or lost.
|
|
struct DiscoveredServiceCallback {
|
|
std::function<void(WifiLanService& wifi_lan_service,
|
|
const std::string& service_id)>
|
|
service_discovered_cb =
|
|
DefaultCallback<WifiLanService&, const std::string&>();
|
|
std::function<void(WifiLanService& wifi_lan_service,
|
|
const std::string& service_id)>
|
|
service_lost_cb =
|
|
DefaultCallback<WifiLanService&, const std::string&>();
|
|
};
|
|
|
|
// Returns true once the WifiLan discovery has been initiated.
|
|
virtual bool StartDiscovery(const std::string& service_id,
|
|
DiscoveredServiceCallback callback) = 0;
|
|
|
|
// Returns true once WifiLan discovery for service_id is well and truly
|
|
// stopped; after this returns, there must be no more invocations of the
|
|
// DiscoveredServiceCallback passed in to StartDiscovery() for service_id.
|
|
virtual bool StopDiscovery(const std::string& service_id) = 0;
|
|
|
|
// Callback that is invoked when a new connection is accepted.
|
|
struct AcceptedConnectionCallback {
|
|
std::function<void(WifiLanSocket& socket, const std::string& service_id)>
|
|
accepted_cb = DefaultCallback<WifiLanSocket&, const std::string&>();
|
|
};
|
|
|
|
// Returns true once WifiLan socket connection requests to service_id can be
|
|
// accepted.
|
|
virtual bool StartAcceptingConnections(
|
|
const std::string& service_id, AcceptedConnectionCallback callback) = 0;
|
|
virtual bool StopAcceptingConnections(const std::string& service_id) = 0;
|
|
|
|
// Connects to a WifiLan service.
|
|
// On success, returns a new WifiLanSocket.
|
|
// On error, returns nullptr.
|
|
virtual std::unique_ptr<WifiLanSocket> Connect(
|
|
WifiLanService& wifi_lan_service, const std::string& service_id,
|
|
CancellationFlag* cancellation_flag) = 0;
|
|
|
|
virtual WifiLanService* GetRemoteService(const std::string& ip_address,
|
|
int port) = 0;
|
|
|
|
// Gets ip address + port for remote services on the network to identify and
|
|
// connect to this service.
|
|
//
|
|
// Credential is for the currently-hosted Wifi ServerSocket (if any).
|
|
virtual std::pair<std::string, int> GetCredentials(
|
|
const std::string& service_id) = 0;
|
|
};
|
|
|
|
} // namespace api
|
|
} // namespace nearby
|
|
} // namespace location
|
|
|
|
#endif // PLATFORM_API_WIFI_LAN_H_
|