blob: 42ba42a3b344e9e9bb9b8652c3ef409bda41586d [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS 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 SHILL_CELLULAR_
#define SHILL_CELLULAR_
#include <string>
#include <base/basictypes.h>
#include <base/task.h>
#include <gtest/gtest_prod.h> // for FRIEND_TEST
#include "shill/dbus_properties.h"
#include "shill/device.h"
#include "shill/event_dispatcher.h"
#include "shill/modem_proxy_interface.h"
#include "shill/refptr_types.h"
struct mobile_provider_db;
namespace shill {
class CellularCapability;
class Error;
class ModemSimpleProxyInterface;
class ProxyFactory;
class Cellular : public Device,
public ModemProxyDelegate {
public:
enum Type {
kTypeGSM,
kTypeCDMA
};
// The device states progress linearly from Disabled to Linked.
enum State {
// This is the initial state of the modem and indicates that the modem radio
// is not turned on.
kStateDisabled,
// This state indicates that the modem radio is turned on, and it should be
// possible to measure signal strength.
kStateEnabled,
// The modem has registered with a network and has signal quality
// measurements. A cellular service object is created.
kStateRegistered,
// The modem has connected to a network.
kStateConnected,
// The network interface is UP.
kStateLinked,
};
// These should be kept in sync with ModemManager's mm-modem.h:MMModemState.
enum ModemState {
kModemStateUnknown = 0,
kModemStateDisabled = 10,
kModemStateDisabling = 20,
kModemStateEnabling = 30,
kModemStateEnabled = 40,
kModemStateSearching = 50,
kModemStateRegistered = 60,
kModemStateDisconnecting = 70,
kModemStateConnecting = 80,
kModemStateConnected = 90,
};
class Operator {
public:
Operator();
~Operator();
void CopyFrom(const Operator &oper);
const std::string &GetName() const;
void SetName(const std::string &name);
const std::string &GetCode() const;
void SetCode(const std::string &code);
const std::string &GetCountry() const;
void SetCountry(const std::string &country);
const Stringmap &ToDict() const;
private:
Stringmap dict_;
DISALLOW_COPY_AND_ASSIGN(Operator);
};
static const char kConnectPropertyPhoneNumber[];
static const char kPropertyIMSI[];
// |owner| is the ModemManager DBus service owner (e.g., ":1.17"). |path| is
// the ModemManager.Modem DBus object path (e.g.,
// "/org/chromium/ModemManager/Gobi/0").
Cellular(ControlInterface *control_interface,
EventDispatcher *dispatcher,
Metrics *metrics,
Manager *manager,
const std::string &link_name,
const std::string &address,
int interface_index,
Type type,
const std::string &owner,
const std::string &path,
mobile_provider_db *provider_db);
virtual ~Cellular();
// Asynchronously connects the modem to the network. Populates |error| on
// failure, leaves it unchanged otherwise.
void Connect(Error *error);
// Asynchronously activates the modem. Populates |error| on failure, leaves it
// unchanged otherwise.
void Activate(const std::string &carrier, Error *error);
const CellularServiceRefPtr &service() const { return service_; }
static std::string GetStateString(State state);
std::string CreateFriendlyServiceName();
State state() const { return state_; }
void set_modem_state(ModemState state) { modem_state_ = state; }
ModemState modem_state() const { return modem_state_; }
mobile_provider_db *provider_db() const { return provider_db_; }
const std::string &dbus_owner() const { return dbus_owner_; }
const std::string &dbus_path() const { return dbus_path_; }
const std::string &carrier() const { return carrier_; }
const Operator &home_provider() const { return home_provider_; }
void set_home_provider(const Operator &oper);
const std::string &meid() const { return meid_; }
void set_meid(const std::string &meid) { meid_ = meid; }
const std::string &imei() const { return imei_; }
void set_imei(const std::string &imei) { imei_ = imei; }
const std::string &imsi() const { return imsi_; }
void set_imsi(const std::string &imsi) { imsi_ = imsi; }
const std::string &mdn() const { return mdn_; }
void set_mdn(const std::string &mdn) { mdn_ = mdn; }
const std::string &min() const { return min_; }
void set_min(const std::string &min) { min_ = min; }
ProxyFactory *proxy_factory() const { return proxy_factory_; }
void HandleNewSignalQuality(uint32 strength);
// Processes a change in the modem registration state, possibly creating,
// destroying or updating the CellularService.
void HandleNewRegistrationState();
void OnModemManagerPropertiesChanged(const DBusPropertiesMap &properties);
// Inherited from Device.
virtual void Start();
virtual void Stop();
virtual bool TechnologyIs(Technology::Identifier type) const;
virtual void LinkEvent(unsigned int flags, unsigned int change);
virtual void Scan(Error *error);
virtual void RegisterOnNetwork(const std::string &network_id, Error *error);
virtual void RequirePIN(
const std::string &pin, bool require, ReturnerInterface *returner);
virtual void EnterPIN(const std::string &pin, ReturnerInterface *returner);
virtual void UnblockPIN(const std::string &unblock_code,
const std::string &pin,
ReturnerInterface *returner);
virtual void ChangePIN(const std::string &old_pin,
const std::string &new_pin,
ReturnerInterface *returner);
private:
friend class CellularTest;
friend class CellularCapabilityCDMATest;
friend class CellularCapabilityGSMTest;
friend class ModemTest;
FRIEND_TEST(CellularCapabilityCDMATest, CreateFriendlyServiceName);
FRIEND_TEST(CellularCapabilityGSMTest, CreateFriendlyServiceName);
FRIEND_TEST(CellularServiceTest, FriendlyName);
FRIEND_TEST(CellularTest, CreateService);
FRIEND_TEST(CellularTest, Connect);
FRIEND_TEST(CellularTest, GetModemInfo);
FRIEND_TEST(CellularTest, GetModemStatus);
FRIEND_TEST(CellularTest, InitProxies);
FRIEND_TEST(CellularTest, StartConnected);
FRIEND_TEST(CellularTest, StartCDMARegister);
FRIEND_TEST(CellularTest, StartGSMRegister);
FRIEND_TEST(CellularTest, StartLinked);
void SetState(State state);
void ConnectTask(const DBusPropertiesMap &properties);
// Invoked when the modem is connected to the cellular network to transition
// to the network-connected state and bring the network interface up.
void EstablishLink();
void InitCapability(Type type);
void InitProxies();
void EnableModem();
void GetModemStatus();
// Obtains modem's manufacturer, model ID, and hardware revision.
void GetModemInfo();
void HandleNewRegistrationStateTask();
void CreateService();
void DestroyService();
// Signal callbacks inherited from ModemProxyDelegate.
virtual void OnModemStateChanged(uint32 old_state,
uint32 new_state,
uint32 reason);
// Store cached copies of singletons for speed/ease of testing.
ProxyFactory *proxy_factory_;
State state_;
ModemState modem_state_;
scoped_ptr<CellularCapability> capability_;
const std::string dbus_owner_; // ModemManager.Modem
const std::string dbus_path_; // ModemManager.Modem
scoped_ptr<ModemProxyInterface> proxy_;
scoped_ptr<ModemSimpleProxyInterface> simple_proxy_;
mobile_provider_db *provider_db_;
CellularServiceRefPtr service_;
ScopedRunnableMethodFactory<Cellular> task_factory_;
// Properties
bool allow_roaming_;
std::string carrier_;
std::string meid_;
std::string imei_;
std::string imsi_;
std::string esn_;
std::string mdn_;
std::string min_;
std::string model_id_;
std::string manufacturer_;
std::string firmware_revision_;
std::string hardware_revision_;
Operator home_provider_;
DISALLOW_COPY_AND_ASSIGN(Cellular);
};
} // namespace shill
#endif // SHILL_CELLULAR_