blob: 654b649be0f95774184eed5f3164e8dd985a5b7b [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>
12#include <base/memory/scoped_ptr.h>
Darin Petkov67d8ecf2011-07-26 16:03:30 -070013#include <base/task.h>
Darin Petkove0a312e2011-07-20 13:45:28 -070014#include <gtest/gtest_prod.h> // for FRIEND_TEST
15
16#include "shill/dbus_properties_proxy_interface.h"
17#include "shill/refptr_types.h"
Darin Petkov5c97ac52011-07-19 16:30:49 -070018
Darin Petkov137884a2011-10-26 18:52:47 +020019struct mobile_provider_db;
20
Darin Petkov5c97ac52011-07-19 16:30:49 -070021namespace shill {
22
23class ControlInterface;
Darin Petkov5c97ac52011-07-19 16:30:49 -070024class EventDispatcher;
25class Manager;
Darin Petkovab565bb2011-10-06 02:55:51 -070026class ProxyFactory;
Darin Petkov5c97ac52011-07-19 16:30:49 -070027
Darin Petkove0a312e2011-07-20 13:45:28 -070028// Handles an instance of ModemManager.Modem and an instance of a Cellular
29// device.
Darin Petkov580c7af2011-10-24 12:32:50 +020030class Modem : public DBusPropertiesProxyDelegate {
Darin Petkov5c97ac52011-07-19 16:30:49 -070031 public:
Darin Petkove0a312e2011-07-20 13:45:28 -070032 // |owner| is the ModemManager DBus service owner (e.g., ":1.17"). |path| is
33 // the ModemManager.Modem DBus object path (e.g.,
34 // "/org/chromium/ModemManager/Gobi/0").
Darin Petkov5c97ac52011-07-19 16:30:49 -070035 Modem(const std::string &owner,
36 const std::string &path,
37 ControlInterface *control_interface,
38 EventDispatcher *dispatcher,
Darin Petkov137884a2011-10-26 18:52:47 +020039 Manager *manager,
40 mobile_provider_db *provider_db);
Darin Petkov5c97ac52011-07-19 16:30:49 -070041 ~Modem();
42
Darin Petkovc5f56562011-08-06 16:40:05 -070043 // Asynchronously initializes support for the modem, possibly constructing a
44 // Cellular device.
Darin Petkove0a312e2011-07-20 13:45:28 -070045 void Init();
46
Darin Petkov41c0e0a2012-01-09 16:38:53 +010047 void OnDeviceInfoAvailable(const std::string &link_name);
48
Darin Petkov5c97ac52011-07-19 16:30:49 -070049 private:
Darin Petkove0a312e2011-07-20 13:45:28 -070050 friend class ModemManagerTest;
51 friend class ModemTest;
Darin Petkova7b89492011-07-27 12:48:17 -070052 FRIEND_TEST(ModemManagerTest, Connect);
53 FRIEND_TEST(ModemManagerTest, AddRemoveModem);
Darin Petkov41c0e0a2012-01-09 16:38:53 +010054 FRIEND_TEST(ModemTest, CreateDeviceFromProperties);
Darin Petkove0a312e2011-07-20 13:45:28 -070055 FRIEND_TEST(ModemTest, Init);
56
57 static const char kPropertyLinkName[];
58 static const char kPropertyIPMethod[];
Darin Petkovbac96002011-08-09 13:22:00 -070059 static const char kPropertyState[];
Darin Petkove0a312e2011-07-20 13:45:28 -070060 static const char kPropertyType[];
Darin Petkove0a312e2011-07-20 13:45:28 -070061
Darin Petkova7b89492011-07-27 12:48:17 -070062 void InitTask();
63
Darin Petkov67d8ecf2011-07-26 16:03:30 -070064 // Creates and registers a Cellular device in |device_| based on
65 // ModemManager.Modem's |properties|. The device may not be created if the
66 // properties are invalid.
Darin Petkov41c0e0a2012-01-09 16:38:53 +010067 void CreateDeviceFromProperties(const DBusPropertiesMap &properties);
68 void CreateDevice();
Darin Petkove0a312e2011-07-20 13:45:28 -070069
Darin Petkov580c7af2011-10-24 12:32:50 +020070 // Signal callbacks inherited from DBusPropertiesProxyDelegate.
Darin Petkovc5f56562011-08-06 16:40:05 -070071 virtual void OnDBusPropertiesChanged(
72 const std::string &interface,
73 const DBusPropertiesMap &changed_properties,
74 const std::vector<std::string> &invalidated_properties);
75 virtual void OnModemManagerPropertiesChanged(
76 const std::string &interface,
77 const DBusPropertiesMap &properties);
78
Darin Petkovab565bb2011-10-06 02:55:51 -070079 // Store cached copies of singletons for speed/ease of testing.
80 ProxyFactory *proxy_factory_;
81
Darin Petkove0a312e2011-07-20 13:45:28 -070082 // A proxy to the org.freedesktop.DBus.Properties interface used to obtain
83 // ModemManager.Modem properties and watch for property changes.
Darin Petkov5c97ac52011-07-19 16:30:49 -070084 scoped_ptr<DBusPropertiesProxyInterface> dbus_properties_proxy_;
85
Darin Petkove0a312e2011-07-20 13:45:28 -070086 const std::string owner_;
87 const std::string path_;
88
89 CellularRefPtr device_;
90
Darin Petkov67d8ecf2011-07-26 16:03:30 -070091 ScopedRunnableMethodFactory<Modem> task_factory_;
Darin Petkov5c97ac52011-07-19 16:30:49 -070092 ControlInterface *control_interface_;
93 EventDispatcher *dispatcher_;
94 Manager *manager_;
Darin Petkov137884a2011-10-26 18:52:47 +020095 mobile_provider_db *provider_db_;
Darin Petkov41c0e0a2012-01-09 16:38:53 +010096 std::string link_name_;
97 bool pending_device_info_;
Darin Petkov5c97ac52011-07-19 16:30:49 -070098
99 DISALLOW_COPY_AND_ASSIGN(Modem);
100};
101
102} // namespace shill
103
104#endif // SHILL_MODEM_