cellular_capability_universal.h revision 2849214ae17c9bd87c10f9012edfe469cf189a80
172fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray// Copyright (c) 2013 The Chromium OS Authors. All rights reserved. 282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow// Use of this source code is governed by a BSD-style license that can be 382f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow// found in the LICENSE file. 482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 5145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow#ifndef SHILL_CELLULAR_CAPABILITY_UNIVERSAL_H_ 6145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow#define SHILL_CELLULAR_CAPABILITY_UNIVERSAL_H_ 782f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include <deque> 9af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow#include <map> 1082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include <string> 1182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include <vector> 1282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 1382f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include <base/memory/scoped_ptr.h> 1482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include <base/memory/weak_ptr.h> 1582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include <gtest/gtest_prod.h> // for FRIEND_TEST 165c853ef21b9247d2ad3d60736b3dea77b8681ed8Ben Chan#include <ModemManager/ModemManager.h> 1782f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 1882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include "shill/accessor_interface.h" 1982f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include "shill/cellular.h" 202849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le#include "shill/cellular_bearer.h" 2182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include "shill/cellular_capability.h" 2207193fdb601f4cea6301ebb85ebf20596807e126Ben Chan#include "shill/cellular_operator_info.h" 2382f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include "shill/mm1_modem_modem3gpp_proxy_interface.h" 2482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include "shill/mm1_modem_proxy_interface.h" 2582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include "shill/mm1_modem_simple_proxy_interface.h" 2682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow#include "shill/mm1_sim_proxy_interface.h" 2743ce4d428d619bda64eea6d37534f02c179a1756Thieu Le#include "shill/out_of_credits_detector.h" 2882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 2982f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgowstruct mobile_provider; 3082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 3182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgownamespace shill { 3282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 3327526f1dad75e135f437e023cb34b0919d9a981fPrathmesh Prabhuclass ModemInfo; 34c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray 3582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow// CellularCapabilityUniversal handles modems using the 3682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow// org.chromium.ModemManager1 DBUS interface. This class is used for 3782f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow// all types of modems, i.e. CDMA, GSM, and LTE modems. 3882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgowclass CellularCapabilityUniversal : public CellularCapability { 3982f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow public: 4082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow typedef std::vector<DBusPropertiesMap> ScanResults; 4182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow typedef DBusPropertiesMap ScanResult; 4274924d87cc111f8603751f09cd009c830f43e668Ben Chan typedef std::map<uint32_t, uint32_t> LockRetryData; 4382f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 44145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow // Constants used in connect method call. Make available to test matchers. 45145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow // TODO(jglasgow): Generate from modem manager into 46145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow // ModemManager-names.h. 47ee6b3d7f9d49fa52072a352fbb59f06127b1ba4cPaul Stewart // See http://crbug.com/212909. 48145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectPin[]; 49145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectOperatorId[]; 50145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectApn[]; 51145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectIPType[]; 52145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectUser[]; 53145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectPassword[]; 54145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectNumber[]; 55145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectAllowRoaming[]; 56145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kConnectRMProtocol[]; 57145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow 58ce4483e054058ab3f6d940c7aa2e7b5697af325aThieu Le CellularCapabilityUniversal(Cellular *cellular, 59ce4483e054058ab3f6d940c7aa2e7b5697af325aThieu Le ProxyFactory *proxy_factory, 6027526f1dad75e135f437e023cb34b0919d9a981fPrathmesh Prabhu ModemInfo *modem_info); 61f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual ~CellularCapabilityUniversal(); 6282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 6382f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow // Inherited from CellularCapability. 64f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual std::string GetTypeString() const override; 65f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void OnDBusPropertiesChanged( 66f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const std::string &interface, 67f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const DBusPropertiesMap &changed_properties, 68f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const std::vector<std::string> &invalidated_properties) override; 69e285a84b38b81f5557b576da187d037ad24ae4afGary Morain // Checks the modem state. If the state is kModemStateDisabled, then the 70e285a84b38b81f5557b576da187d037ad24ae4afGary Morain // modem is enabled. Otherwise, the enable command is buffered until the 71e285a84b38b81f5557b576da187d037ad24ae4afGary Morain // modem becomes disabled. ModemManager rejects the enable command if the 721ee9391c97a19fc6e618d8f23748b49acbf868d0Arman Uguray // modem is not disabled, for example, if it is initializing instead. 73f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void StartModem(Error *error, 74f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultCallback &callback) override; 75f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void StopModem(Error *error, const ResultCallback &callback) override; 76f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void Reset(Error *error, const ResultCallback &callback) override; 77f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual bool IsServiceActivationRequired() const override; 78f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void CompleteActivation(Error *error) override; 79f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void Scan(Error *error, 80f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultStringmapsCallback &callback) override; 8182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow virtual void RegisterOnNetwork(const std::string &network_id, 8282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow Error *error, 83f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultCallback &callback) override; 84f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual bool IsRegistered() const override; 85f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void SetUnregistered(bool searching) override; 86f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void OnServiceCreated() override; 87f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual std::string CreateFriendlyServiceName() override; 88f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual std::string GetNetworkTechnologyString() const override; 89f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual std::string GetRoamingStateString() const override; 90f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual bool AllowRoaming() override; 91f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void GetSignalQuality() override; 92f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void SetupConnectProperties(DBusPropertiesMap *properties) override; 93f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void Connect(const DBusPropertiesMap &properties, 94f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan Error *error, 95f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultCallback &callback) override; 96f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void Disconnect(Error *error, 97f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultCallback &callback) override; 98f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual CellularBearer *GetActiveBearer() const override; 99f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void RequirePIN(const std::string &pin, 100f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan bool require, 101f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan Error *error, 102f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultCallback &callback) override; 10382f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow virtual void EnterPIN(const std::string &pin, 104f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan Error *error, 105f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultCallback &callback) override; 10682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow virtual void UnblockPIN(const std::string &unblock_code, 10782f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow const std::string &pin, 108f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan Error *error, 109f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultCallback &callback) override; 11082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow virtual void ChangePIN(const std::string &old_pin, 11182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow const std::string &new_pin, 112f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan Error *error, 113f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan const ResultCallback &callback) override; 11482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 115f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void GetProperties(); 116f98f00e52f3408fd3ca6184f19636efb7e66b986Ben Chan virtual void Register(const ResultCallback &callback); 117145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow 11882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow protected: 11982f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow virtual void InitProxies(); 12082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow virtual void ReleaseProxies(); 12182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 12272fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray // Updates the |sim_path_| variable and creates a new proxy to the 12372fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray // DBUS ModemManager1.Sim interface. 12472fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray // TODO(armansito): Put this method in a 3GPP-only subclass. 12572fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray virtual void OnSimPathChanged(const std::string &sim_path); 12672fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray 12772fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray // Updates the online payment portal information, if any, for the cellular 12872fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray // provider. 12972fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray virtual void UpdateOLP(); 13072fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray 1310a3e27994a45a9723f3867fe7f297e089bd2254bArman Uguray // Post-payment activation handlers. 1320a3e27994a45a9723f3867fe7f297e089bd2254bArman Uguray virtual void UpdatePendingActivationState(); 1330a3e27994a45a9723f3867fe7f297e089bd2254bArman Uguray 134c539123120725dedc9055ec0b4171215946ac307Arman Uguray // Updates the storage identifier used for the current cellular service. 135c539123120725dedc9055ec0b4171215946ac307Arman Uguray virtual void UpdateStorageIdentifier(); 136c539123120725dedc9055ec0b4171215946ac307Arman Uguray 1379f06c870229b00cdd19224cb12c4202de65772aePrathmesh Prabhu // Returns the operator-specific form of |mdn|, which is passed to the online 13807193fdb601f4cea6301ebb85ebf20596807e126Ben Chan // payment portal of a cellular operator. 13907193fdb601f4cea6301ebb85ebf20596807e126Ben Chan std::string GetMdnForOLP( 14007193fdb601f4cea6301ebb85ebf20596807e126Ben Chan const CellularOperatorInfo::CellularOperator &cellular_operator) const; 14107193fdb601f4cea6301ebb85ebf20596807e126Ben Chan 14282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow private: 14374924d87cc111f8603751f09cd009c830f43e668Ben Chan struct ModemModes { 14474924d87cc111f8603751f09cd009c830f43e668Ben Chan ModemModes() 14574924d87cc111f8603751f09cd009c830f43e668Ben Chan : allowed_modes(MM_MODEM_MODE_NONE), 14674924d87cc111f8603751f09cd009c830f43e668Ben Chan preferred_mode(MM_MODEM_MODE_NONE) {} 14774924d87cc111f8603751f09cd009c830f43e668Ben Chan 14874924d87cc111f8603751f09cd009c830f43e668Ben Chan ModemModes(uint32 allowed, MMModemMode preferred) 14974924d87cc111f8603751f09cd009c830f43e668Ben Chan : allowed_modes(allowed), 15074924d87cc111f8603751f09cd009c830f43e668Ben Chan preferred_mode(preferred) {} 15174924d87cc111f8603751f09cd009c830f43e668Ben Chan 15274924d87cc111f8603751f09cd009c830f43e668Ben Chan uint32 allowed_modes; // Bits based on MMModemMode. 15374924d87cc111f8603751f09cd009c830f43e668Ben Chan MMModemMode preferred_mode; // A single MMModemMode bit. 15474924d87cc111f8603751f09cd009c830f43e668Ben Chan }; 15574924d87cc111f8603751f09cd009c830f43e668Ben Chan 156cd0349c9bafcb5c250da25691ada7fcc3752e145Jason Glasgow // Constants used in scan results. Make available to unit tests. 157cd0349c9bafcb5c250da25691ada7fcc3752e145Jason Glasgow // TODO(jglasgow): Generate from modem manager into ModemManager-names.h. 158ee6b3d7f9d49fa52072a352fbb59f06127b1ba4cPaul Stewart // See http://crbug.com/212909. 159cd0349c9bafcb5c250da25691ada7fcc3752e145Jason Glasgow static const char kStatusProperty[]; 160cd0349c9bafcb5c250da25691ada7fcc3752e145Jason Glasgow static const char kOperatorLongProperty[]; 161cd0349c9bafcb5c250da25691ada7fcc3752e145Jason Glasgow static const char kOperatorShortProperty[]; 162cd0349c9bafcb5c250da25691ada7fcc3752e145Jason Glasgow static const char kOperatorCodeProperty[]; 163cd0349c9bafcb5c250da25691ada7fcc3752e145Jason Glasgow static const char kOperatorAccessTechnologyProperty[]; 164cd0349c9bafcb5c250da25691ada7fcc3752e145Jason Glasgow 165145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow // Modem Model ID strings. From modem firmware via modemmanager. 16643ce4d428d619bda64eea6d37534f02c179a1756Thieu Le static const char kALT3100ModelId[]; 167145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow static const char kE362ModelId[]; 168145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow 1692717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray // Generic service name prefix, shown when the correct carrier name is 1702717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray // unknown. 1712717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray static const char kGenericServiceNamePrefix[]; 1722717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray 173a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray static const int64 kActivationRegistrationTimeoutMilliseconds; 174f6366ac746f63e4bacaa03ea8e524c2e8ec65aa8Arman Uguray static const int64 kEnterPinTimeoutMilliseconds; 1758f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu static const int64 kRegistrationDroppedUpdateTimeoutMilliseconds; 1762cac294eff9415574cb9066e88f5cf43180a5092Thieu Le static const int kSetPowerStateTimeoutMilliseconds; 177ee464d3c77dc7662973bfa5cb3c6eeb207366eacArman Uguray 1781361c0366043f3d2628dc7c339339116ce31085eArman Uguray 1796552f8c74196782e9adf09f4fea01c836f551255Arman Uguray // Root path. The SIM path is reported by ModemManager to be the root path 1806552f8c74196782e9adf09f4fea01c836f551255Arman Uguray // when no SIM is present. 1816552f8c74196782e9adf09f4fea01c836f551255Arman Uguray static const char kRootPath[]; 1826552f8c74196782e9adf09f4fea01c836f551255Arman Uguray 18382f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow friend class CellularTest; 18482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow friend class CellularCapabilityTest; 1853d27539b13590e0b149440ce017fdc401ef6e735Thieu Le friend class CellularCapabilityUniversalTest; 18672fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray friend class CellularCapabilityUniversalCDMATest; 1870a3e27994a45a9723f3867fe7f297e089bd2254bArman Uguray FRIEND_TEST(CellularCapabilityUniversalCDMAMainTest, PropertiesChanged); 1880a3e27994a45a9723f3867fe7f297e089bd2254bArman Uguray FRIEND_TEST(CellularCapabilityUniversalCDMAMainTest, UpdateOLP); 189c539123120725dedc9055ec0b4171215946ac307Arman Uguray FRIEND_TEST(CellularCapabilityUniversalCDMAMainTest, 190c539123120725dedc9055ec0b4171215946ac307Arman Uguray UpdateStorageIdentifier); 1911361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, AllowRoaming); 192a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, 193a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray ActivationWaitForRegisterTimeout); 1941361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, Connect); 1951361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, ConnectApns); 1961361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, CreateFriendlyServiceName); 1971361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, DisconnectNoProxy); 1987af0fac103deceec063554ef5705901d6d82d42fArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, 1998f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu DisconnectWithDeferredCallback); 20043ce4d428d619bda64eea6d37534f02c179a1756Thieu Le FRIEND_TEST(CellularCapabilityUniversalMainTest, ExtractPcoValue); 20143ce4d428d619bda64eea6d37534f02c179a1756Thieu Le FRIEND_TEST(CellularCapabilityUniversalMainTest, GetMdnForOLP); 2028f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu FRIEND_TEST(CellularCapabilityUniversalMainTest, 2037af0fac103deceec063554ef5705901d6d82d42fArman Uguray GetNetworkTechnologyStringOnE362); 20443ce4d428d619bda64eea6d37534f02c179a1756Thieu Le FRIEND_TEST(CellularCapabilityUniversalMainTest, 20543ce4d428d619bda64eea6d37534f02c179a1756Thieu Le GetOutOfCreditsDetectionType); 2061361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, GetTypeString); 207c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, IsMdnValid); 20831ce564d64f68172299d4cde60edd7a5c004b38eBen Chan FRIEND_TEST(CellularCapabilityUniversalMainTest, IsRegistered); 2091361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, IsServiceActivationRequired); 2106552f8c74196782e9adf09f4fea01c836f551255Arman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, IsValidSimPath); 211d759252158ec07b4a9edbcfdfb265f010b3e7e13Ben Chan FRIEND_TEST(CellularCapabilityUniversalMainTest, NormalizeMdn); 212c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, OnLockRetriesChanged); 213c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, OnLockTypeChanged); 2141361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, 215fcca27bd166ce485d9ef8afce5e060be935ece97Ben Chan OnModemCurrentCapabilitiesChanged); 216c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, OnSimLockPropertiesChanged); 2171361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, PropertiesChanged); 2181361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, Reset); 2191361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, Scan); 2201361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, ScanFailure); 2211361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, SetHomeProvider); 2221361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, SimLockStatusChanged); 223c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, SimLockStatusToProperty); 2241361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, SimPathChanged); 2251361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, SimPropertiesChanged); 2261361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, StartModem); 227151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan FRIEND_TEST(CellularCapabilityUniversalMainTest, StartModemFailure); 228151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan FRIEND_TEST(CellularCapabilityUniversalMainTest, StartModemInWrongState); 229151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan FRIEND_TEST(CellularCapabilityUniversalMainTest, 230151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan StartModemWithDeferredEnableFailure); 2311361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, StopModem); 2322849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le FRIEND_TEST(CellularCapabilityUniversalMainTest, StopModemALT3100); 2331361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, StopModemConnected); 2349f3dcf80a84c07701b7c224fca5ed637c966fa3eBen Chan FRIEND_TEST(CellularCapabilityUniversalMainTest, TerminationAction); 2359f3dcf80a84c07701b7c224fca5ed637c966fa3eBen Chan FRIEND_TEST(CellularCapabilityUniversalMainTest, 2369f3dcf80a84c07701b7c224fca5ed637c966fa3eBen Chan TerminationActionRemovedByStopModem); 237539ab0266ef93a3198f12b8be83a6312d35d6ba0Ben Chan FRIEND_TEST(CellularCapabilityUniversalMainTest, UpdateActiveBearer); 2380a3e27994a45a9723f3867fe7f297e089bd2254bArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, 2390a3e27994a45a9723f3867fe7f297e089bd2254bArman Uguray UpdatePendingActivationState); 240efea6e0f28c3270038914e80166702d5ac23095eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, 2418f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu UpdateRegistrationState); 2428f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu FRIEND_TEST(CellularCapabilityUniversalMainTest, 2438f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu UpdateRegistrationStateModemNotConnected); 2448f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu FRIEND_TEST(CellularCapabilityUniversalMainTest, 245efea6e0f28c3270038914e80166702d5ac23095eArman Uguray UpdateServiceActivationState); 2461361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, UpdateServiceName); 2471361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, UpdateStorageIdentifier); 2481361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, UpdateOLP); 2491361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, UpdateOperatorInfo); 2501361c0366043f3d2628dc7c339339116ce31085eArman Uguray FRIEND_TEST(CellularCapabilityUniversalMainTest, 2511361c0366043f3d2628dc7c339339116ce31085eArman Uguray UpdateOperatorInfoViaOperatorId); 252a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray FRIEND_TEST(CellularCapabilityUniversalTimerTest, CompleteActivation); 253d42d8ec85a9a1bdc406870b75d1b9e266fbaaa02Arman Uguray FRIEND_TEST(CellularTest, EnableTrafficMonitor); 25409fa2a0e9c0feed7b3ca23fc7d8ad59783f4c6a7Ben Chan FRIEND_TEST(CellularTest, 25509fa2a0e9c0feed7b3ca23fc7d8ad59783f4c6a7Ben Chan HandleNewRegistrationStateForServiceRequiringActivation); 2565218cf2bb1301197e0e3c9381bc4c66e8adf80b0Thieu Le FRIEND_TEST(CellularTest, ModemStateChangeLostRegistration); 257f407d5934100e6f2106aeeede46bafb0074cee35mukesh agrawal FRIEND_TEST(CellularTest, OnPPPDied); 25882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 259c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray // SimLockStatus represents the fields in the Cellular.SIMLockStatus 260c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray // DBUS property of the shill device. 261c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray struct SimLockStatus { 262c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray public: 263c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray SimLockStatus() : enabled(false), 264c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray lock_type(MM_MODEM_LOCK_UNKNOWN), 265c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray retries_left(0) {} 266c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray 267c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray bool enabled; 268c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray MMModemLock lock_type; 269c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray uint32 retries_left; 270c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray }; 271c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray 2729a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu // SubscriptionState represents the provisioned state of SIM. It is used 2739a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu // currently by activation logic for LTE to determine if activation process is 2749a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu // complete. 2759a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu enum SubscriptionState { 2769a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu kSubscriptionStateUnknown = 0, 2779a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu kSubscriptionStateUnprovisioned = 1, 2789a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu kSubscriptionStateProvisioned = 2, 2799a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu kSubscriptionStateOutOfData = 3 2809a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu }; 2819a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu 282ef96556fff984bbc79597669af2465905666ed09Jason Glasgow // Methods used in starting a modem 283151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan void EnableModem(bool deferralbe, 284151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan Error *error, 285151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan const ResultCallback& callback); 286151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan void EnableModemCompleted(bool deferrable, 287151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan const ResultCallback &callback, 288151d447d1f3a252a3f2ecbca0f75792e693f1d47Ben Chan const Error &error); 289ef96556fff984bbc79597669af2465905666ed09Jason Glasgow 290ef96556fff984bbc79597669af2465905666ed09Jason Glasgow // Methods used in stopping a modem 2912849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le void Stop_DeleteActiveBearer(const ResultCallback &callback); 2922849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le void Stop_DeleteActiveBearerCompleted(const ResultCallback &callback, 2932849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le const Error &error); 294ef96556fff984bbc79597669af2465905666ed09Jason Glasgow void Stop_Disable(const ResultCallback &callback); 295ef96556fff984bbc79597669af2465905666ed09Jason Glasgow void Stop_DisableCompleted(const ResultCallback &callback, 296ef96556fff984bbc79597669af2465905666ed09Jason Glasgow const Error &error); 297ee464d3c77dc7662973bfa5cb3c6eeb207366eacArman Uguray void Stop_PowerDown(const ResultCallback &callback); 298ee464d3c77dc7662973bfa5cb3c6eeb207366eacArman Uguray void Stop_PowerDownCompleted(const ResultCallback &callback, 299ee464d3c77dc7662973bfa5cb3c6eeb207366eacArman Uguray const Error &error); 300ef96556fff984bbc79597669af2465905666ed09Jason Glasgow 3012717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray // Updates the name property that is exposed by the service to Chrome. 3022717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray void UpdateServiceName(); 3032717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray 304d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray // Methods used in acquiring information related to the carrier; 305d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray 30682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow // Updates the Universal operator name and country based on a newly 30782f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow // obtained network id. 30882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow void UpdateOperatorInfo(); 30982f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 310d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray // Sets the upper level information about the home cellular provider from the 311d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray // modem's IMSI and SPN. 312d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray void SetHomeProvider(); 313d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray 31482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow // Updates the serving operator on the active service. 31582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow void UpdateServingOperator(); 31682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 3179f06c870229b00cdd19224cb12c4202de65772aePrathmesh Prabhu // Initializes the |apn_list| property based on the current 31899ec94d3ef0049e5013e590017e8714b5fc9c682Prathmesh Prabhu // |home_provider_info_|. 319d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray void InitAPNList(); 320d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray 321539ab0266ef93a3198f12b8be83a6312d35d6ba0Ben Chan // Updates |active_bearer_| to match the currently active bearer. 322539ab0266ef93a3198f12b8be83a6312d35d6ba0Ben Chan void UpdateActiveBearer(); 3236e5639f9ef54db278c5f2265d5364e5994966f4aArman Uguray 32482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow Stringmap ParseScanResult(const ScanResult &result); 32582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 32682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow KeyValueStore SimLockStatusToProperty(Error *error); 32782f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 32882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow void SetupApnTryList(); 32982f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow void FillConnectPropertyMap(DBusPropertiesMap *properties); 33082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 331bebf1b8bce52b88c2cc2d93200b9405f9c19cf21mukesh agrawal void HelpRegisterConstDerivedKeyValueStore( 33282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow const std::string &name, 333bebf1b8bce52b88c2cc2d93200b9405f9c19cf21mukesh agrawal KeyValueStore(CellularCapabilityUniversal::*get)(Error *error)); 33482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 335145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow // Returns true if a connect error should be retried. This function 336145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow // abstracts modem specific behavior for modems which do a lousy job 337145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow // of returning specific errors on connect failures. 338145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow bool RetriableConnectError(const Error &error) const; 339145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow 34082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow // Signal callbacks 3413022be5da0e7e158c7f8fc4e3f5d005eb5dde7e7Nathan Williams void OnNetworkModeSignal(uint32 mode); 3427fce52c4afdc5e73a9e740dc9b90f1e61ae8cea4Eric Shienbrood void OnModemStateChangedSignal(int32 old_state, 3437fce52c4afdc5e73a9e740dc9b90f1e61ae8cea4Eric Shienbrood int32 new_state, 3447fce52c4afdc5e73a9e740dc9b90f1e61ae8cea4Eric Shienbrood uint32 reason); 34582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 34682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow // Property Change notification handlers 3473022be5da0e7e158c7f8fc4e3f5d005eb5dde7e7Nathan Williams void OnModemPropertiesChanged( 3484c0724af38d0eaf7155bb789280940a41ef9f08cJason Glasgow const DBusPropertiesMap &properties, 3494c0724af38d0eaf7155bb789280940a41ef9f08cJason Glasgow const std::vector<std::string> &invalidated_properties); 3504c0724af38d0eaf7155bb789280940a41ef9f08cJason Glasgow 3513022be5da0e7e158c7f8fc4e3f5d005eb5dde7e7Nathan Williams void OnSignalQualityChanged(uint32 quality); 35274924d87cc111f8603751f09cd009c830f43e668Ben Chan 35374924d87cc111f8603751f09cd009c830f43e668Ben Chan void OnSupportedCapabilitesChanged( 35474924d87cc111f8603751f09cd009c830f43e668Ben Chan const std::vector<uint32> &supported_capabilities); 355af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnModemCurrentCapabilitiesChanged(uint32 current_capabilities); 356af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnMdnChanged(const std::string &mdn); 357af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnModemRevisionChanged(const std::string &revision); 358af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnModemStateChanged(Cellular::ModemState state); 359af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnAccessTechnologiesChanged(uint32 access_technologies); 36074924d87cc111f8603751f09cd009c830f43e668Ben Chan void OnSupportedModesChanged(const std::vector<ModemModes> &supported_modes); 36174924d87cc111f8603751f09cd009c830f43e668Ben Chan void OnCurrentModesChanged(const ModemModes ¤t_modes); 362cbef8123fa639622b1aa86d7a041a02347ddc69dBen Chan void OnBearersChanged(const RpcIdentifiers &bearers); 363c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray void OnLockRetriesChanged(const LockRetryData &lock_retries); 364c7e63afa9cfabf9aa022a0bf8e9ec5340f5d13bfArman Uguray void OnLockTypeChanged(MMModemLock unlock_required); 365af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnSimLockStatusChanged(); 366af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow 367c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray // Returns false if the MDN is empty or if the MDN consists of all 0s. 368c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray bool IsMdnValid() const; 369c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray 370af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow // 3GPP property change handlers 371af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow virtual void OnModem3GPPPropertiesChanged( 372af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow const DBusPropertiesMap &properties, 373af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow const std::vector<std::string> &invalidated_properties); 374af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void On3GPPRegistrationChanged(MMModem3gppRegistrationState state, 375af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow const std::string &operator_code, 376af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow const std::string &operator_name); 3778f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu void Handle3GPPRegistrationChange( 3788f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu MMModem3gppRegistrationState updated_state, 3798f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu std::string updated_operator_code, 3808f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu std::string updated_operator_name); 3819a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu void On3GPPSubscriptionStateChanged(MMModem3gppSubscriptionState state); 382af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnFacilityLocksChanged(uint32 locks); 383af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow 384af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow // SIM property change handlers 38572fab6ab6f6d481f904b5e259ce27a84e32760e4Arman Uguray // TODO(armansito): Put these methods in a 3GPP-only subclass. 386af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnSimPropertiesChanged( 387af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow const DBusPropertiesMap &props, 388af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow const std::vector<std::string> &invalidated_properties); 389d73783fb016a4c9d7d8644db83c8caeb447b0063Arman Uguray void OnSpnChanged(const std::string &spn); 390af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnSimIdentifierChanged(const std::string &id); 391af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnOperatorIdChanged(const std::string &operator_id); 392af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow void OnOperatorNameChanged(const std::string &operator_name); 393ef96556fff984bbc79597669af2465905666ed09Jason Glasgow 39482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow // Method callbacks 3953022be5da0e7e158c7f8fc4e3f5d005eb5dde7e7Nathan Williams void OnRegisterReply(const ResultCallback &callback, 3963022be5da0e7e158c7f8fc4e3f5d005eb5dde7e7Nathan Williams const Error &error); 3975d0d32c1b5e2370ff0739f7a2dbb641726d4bf87Ben Chan void OnResetReply(const ResultCallback &callback, const Error &error); 39849ffffd458c2407c67c2d0d572974e91c7e9bea7Prathmesh Prabhu void OnScanReply(const ResultStringmapsCallback &callback, 3993022be5da0e7e158c7f8fc4e3f5d005eb5dde7e7Nathan Williams const ScanResults &results, 4003022be5da0e7e158c7f8fc4e3f5d005eb5dde7e7Nathan Williams const Error &error); 401b54974f033f713690135f3f3516ca14aa7ee6cfdNathan Williams void OnConnectReply(const ResultCallback &callback, 402b54974f033f713690135f3f3516ca14aa7ee6cfdNathan Williams const DBus::Path &bearer, 403b54974f033f713690135f3f3516ca14aa7ee6cfdNathan Williams const Error &error); 40482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 405a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray // Timeout callback that is called if the modem takes too long to register to 406a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray // a network after online payment is complete. Resets the modem. 407a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray void OnActivationWaitForRegisterTimeout(); 408a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray 4096552f8c74196782e9adf09f4fea01c836f551255Arman Uguray // Returns true, if |sim_path| constitutes a valid SIM path. Currently, a 4106552f8c74196782e9adf09f4fea01c836f551255Arman Uguray // path is accepted to be valid, as long as it is not equal to one of "" 4116552f8c74196782e9adf09f4fea01c836f551255Arman Uguray // and "/". 4126552f8c74196782e9adf09f4fea01c836f551255Arman Uguray bool IsValidSimPath(const std::string &sim_path) const; 4136552f8c74196782e9adf09f4fea01c836f551255Arman Uguray 414d759252158ec07b4a9edbcfdfb265f010b3e7e13Ben Chan // Returns the normalized version of |mdn| by keeping only digits in |mdn| 415d759252158ec07b4a9edbcfdfb265f010b3e7e13Ben Chan // and removing other non-digit characters. 416d759252158ec07b4a9edbcfdfb265f010b3e7e13Ben Chan std::string NormalizeMdn(const std::string &mdn) const; 417d759252158ec07b4a9edbcfdfb265f010b3e7e13Ben Chan 4182717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray static std::string GenerateNewGenericServiceName(); 4192717a10096e12e46413adf47b39c5b19cd33bce7Arman Uguray 420c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray // Post-payment activation handlers. 421c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray void ResetAfterActivation(); 422efea6e0f28c3270038914e80166702d5ac23095eArman Uguray void UpdateServiceActivationState(); 423c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray void OnResetAfterActivationReply(const Error &error); 424c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray 4258f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu static bool IsRegisteredState(MMModem3gppRegistrationState state); 4268f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu 42743ce4d428d619bda64eea6d37534f02c179a1756Thieu Le // Returns the out-of-credits detection algorithm to be used on this modem. 42843ce4d428d619bda64eea6d37534f02c179a1756Thieu Le OutOfCreditsDetector::OOCType GetOutOfCreditsDetectionType() const; 42943ce4d428d619bda64eea6d37534f02c179a1756Thieu Le 4302849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le // For unit tests. 4312849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le void set_active_bearer(CellularBearer *bearer) { 4322849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le active_bearer_.reset(bearer); // Takes ownership 4332849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le } 4342849214ae17c9bd87c10f9012edfe469cf189a80Thieu Le 43582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow scoped_ptr<mm1::ModemModem3gppProxyInterface> modem_3gpp_proxy_; 43682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow scoped_ptr<mm1::ModemProxyInterface> modem_proxy_; 43782f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow scoped_ptr<mm1::ModemSimpleProxyInterface> modem_simple_proxy_; 43882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow scoped_ptr<mm1::SimProxyInterface> sim_proxy_; 43982f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 44082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow base::WeakPtrFactory<CellularCapabilityUniversal> weak_ptr_factory_; 44182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 44282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow MMModem3gppRegistrationState registration_state_; 443af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow 444af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow // Bits based on MMModemCapabilities 44574924d87cc111f8603751f09cd009c830f43e668Ben Chan std::vector<uint32> supported_capabilities_; // Technologies supported 44674924d87cc111f8603751f09cd009c830f43e668Ben Chan uint32 current_capabilities_; // Technologies supported without a reload 447145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow uint32 access_technologies_; // Bits based on MMModemAccessTechnology 44874924d87cc111f8603751f09cd009c830f43e668Ben Chan std::vector<ModemModes> supported_modes_; 44974924d87cc111f8603751f09cd009c830f43e668Ben Chan ModemModes current_modes_; 450af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow 45182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow Cellular::Operator serving_operator_; 45282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow std::string spn_; 453af5832853cf49fcfa34632a736aa4763ef2347d6Jason Glasgow std::string operator_id_; 45499ec94d3ef0049e5013e590017e8714b5fc9c682Prathmesh Prabhu mobile_provider *home_provider_info_; 45582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow std::string desired_network_; 45682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 45782f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow // Properties. 45882f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow std::deque<Stringmap> apn_try_list_; 4595d0d32c1b5e2370ff0739f7a2dbb641726d4bf87Ben Chan bool resetting_; 46082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow SimLockStatus sim_lock_status_; 4619a0534e17ad58e38fd5db4ac67a67c964e2bcfbePrathmesh Prabhu SubscriptionState subscription_state_; 462ef96556fff984bbc79597669af2465905666ed09Jason Glasgow std::string sim_path_; 463539ab0266ef93a3198f12b8be83a6312d35d6ba0Ben Chan scoped_ptr<CellularBearer> active_bearer_; 464cbef8123fa639622b1aa86d7a041a02347ddc69dBen Chan RpcIdentifiers bearer_paths_; 465c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray bool reset_done_; 466c7b1560b03c070fad239767f868322e6b3bdd932Arman Uguray 467e285a84b38b81f5557b576da187d037ad24ae4afGary Morain // If the modem is not in a state to be enabled when StartModem is called, 468e285a84b38b81f5557b576da187d037ad24ae4afGary Morain // enabling is deferred using this callback. 469e285a84b38b81f5557b576da187d037ad24ae4afGary Morain base::Closure deferred_enable_modem_callback_; 470e285a84b38b81f5557b576da187d037ad24ae4afGary Morain 471a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray base::CancelableClosure activation_wait_for_registration_callback_; 472a14941d234722d4f867027a966ef85ae0f7ba3a9Arman Uguray int64 activation_registration_timeout_milliseconds_; 4731361c0366043f3d2628dc7c339339116ce31085eArman Uguray 4748f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu // Sometimes flaky cellular network causes the 3GPP registration state to 4758f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu // rapidly change from registered --> searching and back. Delay such updates 4768f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu // a little to smooth over temporary registration loss. 4778f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu base::CancelableClosure registration_dropped_update_callback_; 4788f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu int64 registration_dropped_update_timeout_milliseconds_; 4798f6479fed67969c162aa079eed04c55ee574a841Prathmesh Prabhu 48082f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow static unsigned int friendly_service_name_id_; 48182f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 48282f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow DISALLOW_COPY_AND_ASSIGN(CellularCapabilityUniversal); 48382f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow}; 48482f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 48582f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow} // namespace shill 48682f9ab3f404c8f414348c6effdc57c4d3b9223d7Jason Glasgow 487145218710c2daa27ab55690f2ca372200d2a4cdfJason Glasgow#endif // SHILL_CELLULAR_CAPABILITY_UNIVERSAL_H_ 488