blob: f447ebecc00e54a4bcae17b5698737f52dd100c0 [file] [log] [blame]
Darin Petkov41c0e0a2012-01-09 16:38:53 +01001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Darin Petkov5c97ac52011-07-19 16:30:49 -07002// 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_MODEM_
6#define SHILL_MODEM_
7
8#include <string>
Hristo Stefanoved2c28c2011-11-29 15:37:30 -08009#include <vector>
Darin Petkov5c97ac52011-07-19 16:30:49 -070010
11#include <base/basictypes.h>
Jason Glasgow82f9ab32012-04-04 14:27:19 -040012#include <base/file_util.h>
Darin Petkov5c97ac52011-07-19 16:30:49 -070013#include <base/memory/scoped_ptr.h>
Darin Petkove0a312e2011-07-20 13:45:28 -070014#include <gtest/gtest_prod.h> // for FRIEND_TEST
15
David Rochbergfa1d31d2012-03-20 10:38:07 -040016#include "shill/cellular.h"
17#include "shill/dbus_objectmanager_proxy_interface.h"
Darin Petkove0a312e2011-07-20 13:45:28 -070018#include "shill/dbus_properties_proxy_interface.h"
19#include "shill/refptr_types.h"
Darin Petkov5c97ac52011-07-19 16:30:49 -070020
Darin Petkov137884a2011-10-26 18:52:47 +020021struct mobile_provider_db;
22
Darin Petkov5c97ac52011-07-19 16:30:49 -070023namespace shill {
24
25class ControlInterface;
Darin Petkov5c97ac52011-07-19 16:30:49 -070026class EventDispatcher;
27class Manager;
Thieu Le3426c8f2012-01-11 17:35:11 -080028class Metrics;
Darin Petkovab565bb2011-10-06 02:55:51 -070029class ProxyFactory;
Darin Petkov5c97ac52011-07-19 16:30:49 -070030
Darin Petkove0a312e2011-07-20 13:45:28 -070031// Handles an instance of ModemManager.Modem and an instance of a Cellular
32// device.
Eric Shienbrood11567d02012-04-10 18:08:49 -040033class Modem : public DBusPropertiesProxyDelegate {
Darin Petkov5c97ac52011-07-19 16:30:49 -070034 public:
Darin Petkove0a312e2011-07-20 13:45:28 -070035 // |owner| is the ModemManager DBus service owner (e.g., ":1.17"). |path| is
36 // the ModemManager.Modem DBus object path (e.g.,
37 // "/org/chromium/ModemManager/Gobi/0").
Darin Petkov5c97ac52011-07-19 16:30:49 -070038 Modem(const std::string &owner,
39 const std::string &path,
40 ControlInterface *control_interface,
41 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080042 Metrics *metrics,
Darin Petkov137884a2011-10-26 18:52:47 +020043 Manager *manager,
44 mobile_provider_db *provider_db);
Darin Petkov5c97ac52011-07-19 16:30:49 -070045 ~Modem();
46
David Rochbergfa1d31d2012-03-20 10:38:07 -040047 // Asynchronously initializes support for the modem. If the
48 // |modem_properties| are valid and the MAC address is present,
49 // constructs and registers a Cellular device in |device_| based on
50 // |modem_properties|.
51 virtual void CreateDeviceFromModemProperties(
52 const DBusPropertiesMap &modem_properties);
Darin Petkove0a312e2011-07-20 13:45:28 -070053
Darin Petkov41c0e0a2012-01-09 16:38:53 +010054 void OnDeviceInfoAvailable(const std::string &link_name);
55
David Rochbergfa1d31d2012-03-20 10:38:07 -040056 const std::string &owner() const { return owner_; }
57 const std::string &path() const { return path_; }
Darin Petkove0a312e2011-07-20 13:45:28 -070058
David Rochbergfa1d31d2012-03-20 10:38:07 -040059 void set_type(Cellular::Type type) { type_ = type; }
60
61 protected:
Darin Petkove0a312e2011-07-20 13:45:28 -070062 static const char kPropertyLinkName[];
63 static const char kPropertyIPMethod[];
64 static const char kPropertyType[];
Darin Petkove0a312e2011-07-20 13:45:28 -070065
Eric Shienbrood11567d02012-04-10 18:08:49 -040066 virtual void Init();
67
David Rochbergfa1d31d2012-03-20 10:38:07 -040068 ControlInterface *control_interface() const { return control_interface_; }
69 CellularRefPtr device() const { return device_; }
70 EventDispatcher *dispatcher() const { return dispatcher_; }
71 Manager *manager() const { return manager_; }
72 Metrics *metrics() const { return metrics_; }
73 mobile_provider_db *provider_db() const { return provider_db_; }
Darin Petkove0a312e2011-07-20 13:45:28 -070074
David Rochbergfa1d31d2012-03-20 10:38:07 -040075 virtual Cellular *ConstructCellular(const std::string &link_name,
76 const std::string &device_name,
77 int interface_index);
David Rochbergfa1d31d2012-03-20 10:38:07 -040078 virtual bool GetLinkName(const DBusPropertiesMap &properties,
79 std::string *name) const = 0;
Jason Glasgow4c0724a2012-04-17 15:47:40 -040080 // Returns the name of the DBUS Modem interface.
81 virtual std::string GetModemInterface(void) const = 0;
Darin Petkovc5f56562011-08-06 16:40:05 -070082
David Rochbergfa1d31d2012-03-20 10:38:07 -040083 private:
84 friend class ModemTest;
Jason Glasgow82f9ab32012-04-04 14:27:19 -040085 friend class Modem1Test;
86 FRIEND_TEST(Modem1Test, Init);
87 FRIEND_TEST(Modem1Test, CreateDeviceMM1);
David Rochbergfa1d31d2012-03-20 10:38:07 -040088 FRIEND_TEST(ModemManager1Test, Connect);
Jason Glasgow82f9ab32012-04-04 14:27:19 -040089 FRIEND_TEST(ModemManager1Test, AddRemoveInterfaces);
David Rochbergfa1d31d2012-03-20 10:38:07 -040090 FRIEND_TEST(ModemManagerClassicTest, Connect);
91 FRIEND_TEST(ModemManagerCoreTest, ShouldAddModem);
92 FRIEND_TEST(ModemTest, CreateDeviceEarlyFailures);
93 FRIEND_TEST(ModemTest, EarlyDeviceProperties);
94 FRIEND_TEST(ModemTest, Init);
95 FRIEND_TEST(ModemTest, PendingDevicePropertiesAndCreate);
Darin Petkovab565bb2011-10-06 02:55:51 -070096
Eric Shienbrood11567d02012-04-10 18:08:49 -040097 // Signal callbacks inherited from DBusPropertiesProxyDelegate.
98 virtual void OnDBusPropertiesChanged(
99 const std::string &interface,
100 const DBusPropertiesMap &changed_properties,
101 const std::vector<std::string> &invalidated_properties);
102 virtual void OnModemManagerPropertiesChanged(
103 const std::string &interface,
104 const DBusPropertiesMap &properties);
105
106 // A proxy to the org.freedesktop.DBusProperties interface used to obtain
107 // ModemManager.Modem properties and watch for property changes
108 scoped_ptr<DBusPropertiesProxyInterface> dbus_properties_proxy_;
109
David Rochbergfa1d31d2012-03-20 10:38:07 -0400110 DBusPropertiesMap initial_modem_properties_;
Darin Petkov5c97ac52011-07-19 16:30:49 -0700111
Darin Petkove0a312e2011-07-20 13:45:28 -0700112 const std::string owner_;
113 const std::string path_;
114
115 CellularRefPtr device_;
116
Darin Petkov5c97ac52011-07-19 16:30:49 -0700117 ControlInterface *control_interface_;
118 EventDispatcher *dispatcher_;
Thieu Le3426c8f2012-01-11 17:35:11 -0800119 Metrics *metrics_;
Darin Petkov5c97ac52011-07-19 16:30:49 -0700120 Manager *manager_;
Darin Petkov137884a2011-10-26 18:52:47 +0200121 mobile_provider_db *provider_db_;
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100122 std::string link_name_;
David Rochbergfa1d31d2012-03-20 10:38:07 -0400123 Cellular::Type type_;
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100124 bool pending_device_info_;
David Rochbergfa1d31d2012-03-20 10:38:07 -0400125 RTNLHandler *rtnl_handler_;
Darin Petkov5c97ac52011-07-19 16:30:49 -0700126
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400127 // Store cached copies of singletons for speed/ease of testing.
128 ProxyFactory *proxy_factory_;
129
Darin Petkov5c97ac52011-07-19 16:30:49 -0700130 DISALLOW_COPY_AND_ASSIGN(Modem);
131};
132
Eric Shienbrood11567d02012-04-10 18:08:49 -0400133class ModemClassic : public Modem {
David Rochbergfa1d31d2012-03-20 10:38:07 -0400134 public:
135 ModemClassic(const std::string &owner,
136 const std::string &path,
137 ControlInterface *control_interface,
138 EventDispatcher *dispatcher,
139 Metrics *metrics,
140 Manager *manager,
141 mobile_provider_db *provider_db);
142 virtual ~ModemClassic();
143
144 // Gathers information and passes it to CreateDeviceFromModemProperties.
145 void CreateDeviceClassic(const DBusPropertiesMap &modem_properties);
146
David Rochbergfa1d31d2012-03-20 10:38:07 -0400147 protected:
David Rochbergfa1d31d2012-03-20 10:38:07 -0400148 virtual bool GetLinkName(const DBusPropertiesMap &modem_properties,
149 std::string *name) const;
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400150 virtual std::string GetModemInterface(void) const;
David Rochbergfa1d31d2012-03-20 10:38:07 -0400151
152 private:
153 DISALLOW_COPY_AND_ASSIGN(ModemClassic);
154};
155
156class Modem1 : public Modem {
David Rochbergfa1d31d2012-03-20 10:38:07 -0400157 public:
158 Modem1(const std::string &owner,
159 const std::string &path,
160 ControlInterface *control_interface,
161 EventDispatcher *dispatcher,
162 Metrics *metrics,
163 Manager *manager,
164 mobile_provider_db *provider_db);
165 virtual ~Modem1();
166
167 // Gathers information and passes it to CreateDeviceFromModemProperties.
168 void CreateDeviceMM1(const DBusInterfaceToProperties &i_to_p);
169
170 protected:
David Rochbergfa1d31d2012-03-20 10:38:07 -0400171 virtual bool GetLinkName(const DBusPropertiesMap &modem_properties,
172 std::string *name) const;
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400173 virtual std::string GetModemInterface(void) const;
David Rochbergfa1d31d2012-03-20 10:38:07 -0400174
175 private:
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400176 friend class Modem1Test;
177
178 FilePath netfiles_path_; // Used for testing
179
David Rochbergfa1d31d2012-03-20 10:38:07 -0400180 DISALLOW_COPY_AND_ASSIGN(Modem1);
181};
182
Darin Petkov5c97ac52011-07-19 16:30:49 -0700183} // namespace shill
184
185#endif // SHILL_MODEM_