summaryrefslogtreecommitdiff
path: root/chromium/third_party/nearby/src/cpp/platform/api/wifi.h
blob: 1f0f5b75cf16e3a1419c8082beb7ef1d9e5d08a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// 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_H_
#define PLATFORM_API_WIFI_H_

#include <cstdint>
#include <string>
#include <vector>

#include "absl/strings/string_view.h"

namespace location {
namespace nearby {
namespace api {

// Possible authentication types for a WiFi network.
enum class WifiAuthType {
  // WiFi Authentication type; either none (non-secured a.k.a. open) link, or
  // WPA PSK (WiFi Protected Access PreShared Key), or
  //   see https://en.wikipedia.org/wiki/Wi-Fi_Protected_Access
  // WEP (Wired Equivalent Privacy);
  //   see https://en.wikipedia.org/wiki/Wired_Equivalent_Privacy
  kUnknown = 0,
  kOpen = 1,
  kWpaPsk = 2,
  kWep = 3,
};

// Possible statuses of a device's connection to a WiFi network.
enum class WifiConnectionStatus {
  kUnknown = 0,
  kConnected = 1,
  kConnectionFailure = 2,
  kAuthFailure = 3,
};

// Represents a WiFi network found during a call to WifiMedium#scan().
class WifiScanResult {
 public:
  virtual ~WifiScanResult() = default;

  // Gets the SSID of this WiFi network.
  virtual std::string GetSsid() const = 0;
  // Gets the signal strength of this WiFi network in dBm.
  virtual std::int32_t GetSignalStrengthDbm() const = 0;
  // Gets the frequency band of this WiFi network in MHz.
  virtual std::int32_t GetFrequencyMhz() const = 0;
  // Gets the authentication type of this WiFi network.
  virtual WifiAuthType GetAuthType() const = 0;
};

// Container of operations that can be performed over the WiFi medium.
class WifiMedium {
 public:
  virtual ~WifiMedium() {}

  class ScanResultCallback {
   public:
    virtual ~ScanResultCallback() = default;

    virtual void OnScanResults(
        const std::vector<WifiScanResult>& scan_results) = 0;
  };

  // Does not take ownership of the passed-in scan_result_callback -- destroying
  // that is up to the caller.
  virtual bool Scan(const ScanResultCallback& scan_result_callback) = 0;

  // If 'password' is an empty string, none has been provided. Returns
  // WifiConnectionStatus::CONNECTED on success, or the appropriate failure code
  // otherwise.
  virtual WifiConnectionStatus ConnectToNetwork(absl::string_view ssid,
                                                absl::string_view password,
                                                WifiAuthType auth_type) = 0;

  // Blocks until it's certain of there being a connection to the internet, or
  // returns false if it fails to do so.
  //
  // How this method wants to verify said connection is totally up to it (so it
  // can feel free to ping whatever server, download whatever resource, etc.
  // that it needs to gain confidence that the internet is reachable hereon in).
  virtual bool VerifyInternetConnectivity() = 0;

  // Returns the local device's IP address in the IPv4 dotted-quad format.
  virtual std::string GetIpAddress() = 0;
};

}  // namespace api
}  // namespace nearby
}  // namespace location

#endif  // PLATFORM_API_WIFI_H_