forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdevice_state.h
126 lines (100 loc) · 4.26 KB
/
device_state.h
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_NETWORK_DEVICE_STATE_H_
#define CHROMEOS_NETWORK_DEVICE_STATE_H_
#include <stdint.h>
#include "base/macros.h"
#include "base/values.h"
#include "chromeos/network/managed_state.h"
#include "chromeos/network/network_util.h"
namespace chromeos {
// Simple class to provide device state information. Similar to NetworkState;
// see network_state.h for usage guidelines.
class CHROMEOS_EXPORT DeviceState : public ManagedState {
public:
typedef std::vector<CellularScanResult> CellularScanResults;
explicit DeviceState(const std::string& path);
~DeviceState() override;
// ManagedState overrides
bool PropertyChanged(const std::string& key,
const base::Value& value) override;
void IPConfigPropertiesChanged(const std::string& ip_config_path,
const base::Value& properties);
// Accessors
const std::string& mac_address() const { return mac_address_; }
bool scanning() const { return scanning_; }
void set_scanning(bool scanning) { scanning_ = scanning; }
// Cellular specific accessors
const std::string& operator_name() const { return operator_name_; }
const std::string& country_code() const { return country_code_; }
bool allow_roaming() const { return allow_roaming_; }
bool provider_requires_roaming() const { return provider_requires_roaming_; }
bool support_network_scan() const { return support_network_scan_; }
const std::string& technology_family() const { return technology_family_; }
const std::string& carrier() const { return carrier_; }
const std::string& sim_lock_type() const { return sim_lock_type_; }
int sim_retries_left() const { return sim_retries_left_; }
bool sim_lock_enabled() const { return sim_lock_enabled_; }
const std::string& meid() const { return meid_; }
const std::string& imei() const { return imei_; }
const std::string& iccid() const { return iccid_; }
const std::string& mdn() const { return mdn_; }
const CellularScanResults& scan_results() const { return scan_results_; }
// |ip_configs_| is kept up to date by NetworkStateHandler.
const base::DictionaryValue& ip_configs() const { return ip_configs_; }
// Do not use this. It exists temporarily for internet_options_handler.cc
// which is being deprecated.
const base::DictionaryValue& properties() const { return properties_; }
// Ethernet specific accessors
bool eap_authentication_completed() const {
return eap_authentication_completed_;
}
// WiFi specific accessors
const std::string& available_managed_network_path() const {
return available_managed_network_path_;
}
void set_available_managed_network_path(
const std::string available_managed_network_path) {
available_managed_network_path_ = available_managed_network_path;
}
// Returns a human readable string for the device.
std::string GetName() const;
// Returns the IP Address for |type| if it exists or an empty string.
std::string GetIpAddressByType(const std::string& type) const;
// The following return false if the technology does not require a SIM.
bool IsSimAbsent() const;
bool IsSimLocked() const;
private:
// Common Device Properties
std::string mac_address_;
// Cellular specific properties
std::string operator_name_;
std::string country_code_;
bool allow_roaming_;
bool provider_requires_roaming_;
bool support_network_scan_;
bool scanning_;
std::string technology_family_;
std::string carrier_;
std::string sim_lock_type_;
int sim_retries_left_;
bool sim_lock_enabled_;
bool sim_present_;
std::string meid_;
std::string imei_;
std::string iccid_;
std::string mdn_;
CellularScanResults scan_results_;
// Ethernet specific properties
bool eap_authentication_completed_;
// WiFi specific properties
std::string available_managed_network_path_;
// Keep all Device properties in a dictionary for now. See comment above.
base::DictionaryValue properties_;
// Dictionary of IPConfig properties, keyed by IpConfig path.
base::DictionaryValue ip_configs_;
DISALLOW_COPY_AND_ASSIGN(DeviceState);
};
} // namespace chromeos
#endif // CHROMEOS_NETWORK_DEVICE_STATE_H_