blob: 69a8f1e66f7f02c8d9d4d74ff7e51ba460c26b8d [file] [log] [blame]
Darin Petkovc64fe5e2012-01-11 12:46:13 +01001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Darin Petkovdaf43862011-10-27 11:37:28 +02002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_CELLULAR_CAPABILITY_
6#define SHILL_CELLULAR_CAPABILITY_
7
Darin Petkovb05315f2011-11-07 10:14:25 +01008#include <string>
Eric Shienbrood3e20a232012-02-16 11:35:56 -05009#include <vector>
Darin Petkovb05315f2011-11-07 10:14:25 +010010
Darin Petkovdaf43862011-10-27 11:37:28 +020011#include <base/basictypes.h>
Eric Shienbrood3e20a232012-02-16 11:35:56 -050012#include <base/callback.h>
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050013#include <base/memory/scoped_ptr.h>
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050014#include <gtest/gtest_prod.h> // for FRIEND_TEST
Darin Petkovdaf43862011-10-27 11:37:28 +020015
Jason Glasgow82f9ab32012-04-04 14:27:19 -040016#include "shill/callbacks.h"
Eric Shienbrood7fce52c2012-04-13 19:11:02 -040017#include "shill/cellular.h"
Darin Petkovae0c64e2011-11-15 15:50:27 +010018#include "shill/dbus_properties.h"
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050019
Darin Petkovdaf43862011-10-27 11:37:28 +020020namespace shill {
21
22class Cellular;
Darin Petkovb05315f2011-11-07 10:14:25 +010023class Error;
Darin Petkovdaf43862011-10-27 11:37:28 +020024class ProxyFactory;
25
Eric Shienbrood9a245532012-03-07 14:20:39 -050026typedef std::vector<base::Closure> CellularTaskList;
27
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050028// Cellular devices instantiate subclasses of CellularCapability that
29// handle the specific modem technologies and capabilities.
Jason Glasgow82f9ab32012-04-04 14:27:19 -040030//
31// The CellularCapability is directly subclassed by:
32// * CelllularCapabilityUniversal which handles all modems managed by
33// a modem manager using the the org.chromium.ModemManager1 DBUS
34// interface
35// * CellularCapabilityClassic which handles all modems managed by a
36// modem manager using the older org.chromium.ModemManager DBUS
37// interface. This class is further subclassed to represent CDMA
38// and GSM modems
39//
40// Pictorially:
41//
42// CellularCapability
43// |
44// |-- CellularCapabilityUniversal
45// |
46// |-- CellularCapabilityClassic
47// |
48// |-- CellularCapabilityGSM
49// |
50// |-- CellularCapabilityCDMA
51//
Eric Shienbrood9a245532012-03-07 14:20:39 -050052class CellularCapability {
Darin Petkovdaf43862011-10-27 11:37:28 +020053 public:
Jason Glasgow82f9ab32012-04-04 14:27:19 -040054 // SimLockStatus represents the fields in the Cellular.SIMLockStatus
55 // DBUS property of the shill device.
56 struct SimLockStatus {
57 SimLockStatus() : enabled(false), retries_left(0) {}
58
59 bool enabled;
60 std::string lock_type;
61 uint32 retries_left;
62 };
63
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050064 static const int kTimeoutActivate;
65 static const int kTimeoutConnect;
66 static const int kTimeoutDefault;
Eric Shienbrood9a245532012-03-07 14:20:39 -050067 static const int kTimeoutEnable;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050068 static const int kTimeoutRegister;
69 static const int kTimeoutScan;
70
Eric Shienbrood7fce52c2012-04-13 19:11:02 -040071 static const char kModemPropertyIMSI[];
72 static const char kModemPropertyState[];
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050073
Darin Petkovdaf43862011-10-27 11:37:28 +020074 // |cellular| is the parent Cellular device.
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050075 CellularCapability(Cellular *cellular, ProxyFactory *proxy_factory);
Darin Petkovdaf43862011-10-27 11:37:28 +020076 virtual ~CellularCapability();
77
78 Cellular *cellular() const { return cellular_; }
79 ProxyFactory *proxy_factory() const { return proxy_factory_; }
Darin Petkov5f316f62011-11-18 12:10:26 +010080
81 // Invoked by the parent Cellular device when a new service is created.
82 virtual void OnServiceCreated() = 0;
Darin Petkovdaf43862011-10-27 11:37:28 +020083
Darin Petkovae0c64e2011-11-15 15:50:27 +010084 virtual void UpdateStatus(const DBusPropertiesMap &properties) = 0;
85
86 virtual void SetupConnectProperties(DBusPropertiesMap *properties) = 0;
87
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050088 // StartModem attempts to put the modem in a state in which it is
89 // usable for creating services and establishing connections (if
90 // network conditions permit). It potentially consists of multiple
91 // non-blocking calls to the modem-manager server. After each call,
92 // control is passed back up to the main loop. Each time a reply to
93 // a non-blocking call is received, the operation advances to the next
94 // step, until either an error occurs in one of them, or all the steps
95 // have been completed, at which point StartModem() is finished.
Eric Shienbrood9a245532012-03-07 14:20:39 -050096 virtual void StartModem(Error *error,
97 const ResultCallback &callback) = 0;
Thieu Le923006b2012-04-05 16:32:58 -070098 // StopModem disconnects and disables a modem asynchronously.
99 // |callback| is invoked when this completes and the result is passed
100 // to the callback.
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400101 virtual void StopModem(Error *error, const ResultCallback &callback) = 0;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500102 virtual void Connect(const DBusPropertiesMap &properties, Error *error,
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400103 const ResultCallback &callback) = 0;
104 virtual void Disconnect(Error *error, const ResultCallback &callback) = 0;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500105
106 // Activates the modem. Returns an Error on failure.
107 // The default implementation fails by returning a kNotSupported error
108 // to the caller.
109 virtual void Activate(const std::string &carrier,
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400110 Error *error, const ResultCallback &callback) = 0;
Darin Petkova3d3be52011-11-14 21:34:16 +0100111
Darin Petkov184c54e2011-11-15 12:44:39 +0100112 // Network registration.
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500113 virtual void RegisterOnNetwork(const std::string &network_id,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500114 Error *error,
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400115 const ResultCallback &callback) = 0;
Darin Petkovb72cf402011-11-22 14:51:39 +0100116 virtual bool IsRegistered() = 0;
Eric Shienbrood7fce52c2012-04-13 19:11:02 -0400117 // If we are informed by means of something other than a signal indicating
118 // a registration state change that the modem has unregistered from the
119 // network, we need to update the network-type-specific capability object.
120 virtual void SetUnregistered(bool searching) = 0;
Darin Petkov184c54e2011-11-15 12:44:39 +0100121
Darin Petkovac635a82012-01-10 16:51:58 +0100122 virtual std::string CreateFriendlyServiceName() = 0;
123
Darin Petkovc64fe5e2012-01-11 12:46:13 +0100124 // PIN management. The default implementation fails by returning an error.
Eric Shienbrood9a245532012-03-07 14:20:39 -0500125 virtual void RequirePIN(const std::string &pin, bool require,
126 Error *error, const ResultCallback &callback);
127 virtual void EnterPIN(const std::string &pin,
128 Error *error, const ResultCallback &callback);
Darin Petkovb05315f2011-11-07 10:14:25 +0100129 virtual void UnblockPIN(const std::string &unblock_code,
130 const std::string &pin,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500131 Error *error, const ResultCallback &callback);
Darin Petkovb05315f2011-11-07 10:14:25 +0100132 virtual void ChangePIN(const std::string &old_pin,
133 const std::string &new_pin,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500134 Error *error, const ResultCallback &callback);
Darin Petkovb05315f2011-11-07 10:14:25 +0100135
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400136 // Asks the modem to scan for networks.
137 //
138 // The default implementation fails by filling error with
139 // kNotSupported.
140 //
141 // Subclasses should implement this by fetching scan results
142 // asynchronously. When the results are ready, update the
143 // flimflam::kFoundNetworksProperty and send a property change
144 // notification. Finally, callback must be invoked to inform the
145 // caller that the scan has completed.
146 //
147 // Errors are not generally reported, but on error the
148 // kFoundNetworksProperty should be cleared and a property change
149 // notification sent out.
150 //
151 // TODO(jglasgow): Refactor to reuse code by putting notification
152 // logic into Cellular or CellularCapability.
153 //
154 // TODO(jglasgow): Implement real error handling.
Eric Shienbrood9a245532012-03-07 14:20:39 -0500155 virtual void Scan(Error *error, const ResultCallback &callback);
Darin Petkov1272a432011-11-10 15:53:37 +0100156
Darin Petkov20c13ec2011-11-09 15:07:15 +0100157 // Returns an empty string if the network technology is unknown.
158 virtual std::string GetNetworkTechnologyString() const = 0;
159
160 virtual std::string GetRoamingStateString() const = 0;
161
Eric Shienbrood9a245532012-03-07 14:20:39 -0500162 virtual void GetSignalQuality() = 0;
163
Eric Shienbrood0db6a9b2012-03-30 16:11:39 -0400164 virtual std::string GetTypeString() const = 0;
165
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400166 // Called when ModemManager has sent a property change notification
167 // signal over DBUS.
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400168 virtual void OnDBusPropertiesChanged(
169 const std::string &interface,
170 const DBusPropertiesMap &changed_properties,
171 const std::vector<std::string> &invalidated_properties) = 0;
Darin Petkovae0c64e2011-11-15 15:50:27 +0100172
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400173 // Should this device allow roaming?
174 // The decision to allow roaming or not is based on the home
175 // provider as well as on the user modifiable "allow_roaming"
176 // property.
177 virtual bool AllowRoaming() = 0;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500178
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400179 protected:
Eric Shienbrood9a245532012-03-07 14:20:39 -0500180 virtual void GetRegistrationState() = 0;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500181
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400182 // Releases all proxies held by the object. This is most useful
183 // during unit tests.
184 virtual void ReleaseProxies() = 0;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500185
Eric Shienbrood9a245532012-03-07 14:20:39 -0500186 static void OnUnsupportedOperation(const char *operation, Error *error);
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500187
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400188 // Runs the next task in a list.
Eric Shienbrood9a245532012-03-07 14:20:39 -0500189 // Precondition: |tasks| is not empty.
190 void RunNextStep(CellularTaskList *tasks);
Thieu Le923006b2012-04-05 16:32:58 -0700191 // StepCompletedCallback is called after a task completes.
192 // |callback| is the original callback that needs to be invoked when all of
193 // the tasks complete or if there is a failure. |ignore_error| will be set
194 // to true if the next task should be run regardless of the result of the
195 // just-completed task. |tasks| is the list of tasks remaining. |error| is
196 // the result of the just-completed task.
197 void StepCompletedCallback(const ResultCallback &callback, bool ignore_error,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500198 CellularTaskList *tasks, const Error &error);
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400199
200 // accessor for subclasses to read the allow roaming property
201 bool allow_roaming_property() const { return allow_roaming_; }
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500202
Darin Petkovdaf43862011-10-27 11:37:28 +0200203 private:
Thieu Le923006b2012-04-05 16:32:58 -0700204 friend class CellularCapabilityGSMTest;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500205 friend class CellularCapabilityTest;
Jason Glasgowef965562012-04-10 16:12:35 -0400206 friend class CellularCapabilityUniversalTest;
Thieu Le923006b2012-04-05 16:32:58 -0700207 friend class CellularTest;
Darin Petkov9c1dcef2012-02-07 15:58:26 +0100208 FRIEND_TEST(CellularCapabilityTest, AllowRoaming);
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500209 FRIEND_TEST(CellularTest, Connect);
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400210 FRIEND_TEST(CellularTest, TearDown);
Darin Petkov721ac932011-11-16 15:43:09 +0100211
Darin Petkov9c1dcef2012-02-07 15:58:26 +0100212 void HelpRegisterDerivedBool(
213 const std::string &name,
214 bool(CellularCapability::*get)(Error *error),
215 void(CellularCapability::*set)(const bool &value, Error *error));
216
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400217 // DBUS accessors to read/modify the allow roaming property
Darin Petkov9c1dcef2012-02-07 15:58:26 +0100218 bool GetAllowRoaming(Error */*error*/) { return allow_roaming_; }
219 void SetAllowRoaming(const bool &value, Error *error);
220
Darin Petkovdaf43862011-10-27 11:37:28 +0200221 Cellular *cellular_;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500222
223 // Store cached copies of singletons for speed/ease of testing.
Darin Petkovdaf43862011-10-27 11:37:28 +0200224 ProxyFactory *proxy_factory_;
225
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400226 // User preference to allow or disallow roaming
227 bool allow_roaming_;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500228
Darin Petkovdaf43862011-10-27 11:37:28 +0200229 DISALLOW_COPY_AND_ASSIGN(CellularCapability);
230};
231
232} // namespace shill
233
234#endif // SHILL_CELLULAR_CAPABILITY_