Eric Shienbrood | 5de44ab | 2011-12-05 10:46:27 -0500 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Darin Petkov | c90fe52 | 2011-07-15 13:59:47 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "shill/proxy_factory.h" |
| 6 | |
David Rochberg | 24c6c62 | 2012-03-05 11:30:44 -0500 | [diff] [blame] | 7 | #include "shill/dbus_objectmanager_proxy.h" |
Darin Petkov | 5c97ac5 | 2011-07-19 16:30:49 -0700 | [diff] [blame] | 8 | #include "shill/dbus_properties_proxy.h" |
Darin Petkov | 18fb2f7 | 2012-06-14 09:09:34 +0200 | [diff] [blame] | 9 | #include "shill/dbus_service_proxy.h" |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 10 | #include "shill/dhcpcd_proxy.h" |
Christopher Wiley | b691efd | 2012-08-09 13:51:51 -0700 | [diff] [blame] | 11 | #include "shill/logging.h" |
Arman Uguray | 6e5639f | 2012-11-15 20:30:19 -0800 | [diff] [blame] | 12 | #include "shill/mm1_bearer_proxy.h" |
Arman Uguray | 2c39fab | 2012-12-12 16:56:34 -0800 | [diff] [blame] | 13 | #include "shill/mm1_modem_location_proxy.h" |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 14 | #include "shill/mm1_modem_modem3gpp_proxy.h" |
| 15 | #include "shill/mm1_modem_modemcdma_proxy.h" |
| 16 | #include "shill/mm1_modem_proxy.h" |
| 17 | #include "shill/mm1_modem_simple_proxy.h" |
Arman Uguray | 618af2b | 2012-12-11 19:20:42 -0800 | [diff] [blame] | 18 | #include "shill/mm1_modem_time_proxy.h" |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 19 | #include "shill/mm1_sim_proxy.h" |
Darin Petkov | bec79a2 | 2011-08-01 14:47:17 -0700 | [diff] [blame] | 20 | #include "shill/modem_cdma_proxy.h" |
Darin Petkov | c37a9c4 | 2012-09-06 15:28:22 +0200 | [diff] [blame] | 21 | #include "shill/modem_gobi_proxy.h" |
Darin Petkov | 975b5e7 | 2011-08-30 11:48:08 -0700 | [diff] [blame] | 22 | #include "shill/modem_gsm_card_proxy.h" |
Darin Petkov | a1e0a1c | 2011-08-25 15:08:33 -0700 | [diff] [blame] | 23 | #include "shill/modem_gsm_network_proxy.h" |
Darin Petkov | c90fe52 | 2011-07-15 13:59:47 -0700 | [diff] [blame] | 24 | #include "shill/modem_manager_proxy.h" |
Darin Petkov | e9d12e0 | 2011-07-27 15:09:37 -0700 | [diff] [blame] | 25 | #include "shill/modem_proxy.h" |
Darin Petkov | e604f70 | 2011-07-28 15:51:17 -0700 | [diff] [blame] | 26 | #include "shill/modem_simple_proxy.h" |
Darin Petkov | 394b7d4 | 2011-11-03 15:48:02 +0100 | [diff] [blame] | 27 | #include "shill/power_manager_proxy.h" |
mukesh agrawal | b20776f | 2012-02-10 16:00:36 -0800 | [diff] [blame] | 28 | #include "shill/supplicant_bss_proxy.h" |
Darin Petkov | d196726 | 2011-07-18 14:55:18 -0700 | [diff] [blame] | 29 | #include "shill/supplicant_interface_proxy.h" |
Paul Stewart | 835934a | 2012-12-06 19:27:09 -0800 | [diff] [blame] | 30 | #include "shill/supplicant_network_proxy.h" |
Darin Petkov | d196726 | 2011-07-18 14:55:18 -0700 | [diff] [blame] | 31 | #include "shill/supplicant_process_proxy.h" |
Darin Petkov | 096b347 | 2012-05-15 10:26:22 +0200 | [diff] [blame] | 32 | #include "shill/wimax_device_proxy.h" |
| 33 | #include "shill/wimax_manager_proxy.h" |
Darin Petkov | 9893d9c | 2012-05-17 15:27:31 -0700 | [diff] [blame] | 34 | #include "shill/wimax_network_proxy.h" |
Darin Petkov | c90fe52 | 2011-07-15 13:59:47 -0700 | [diff] [blame] | 35 | |
Darin Petkov | 5c97ac5 | 2011-07-19 16:30:49 -0700 | [diff] [blame] | 36 | using std::string; |
| 37 | |
Darin Petkov | c90fe52 | 2011-07-15 13:59:47 -0700 | [diff] [blame] | 38 | namespace shill { |
| 39 | |
Ben Chan | bbdef5f | 2012-04-23 13:58:15 -0700 | [diff] [blame] | 40 | namespace { |
| 41 | base::LazyInstance<ProxyFactory> g_proxy_factory = LAZY_INSTANCE_INITIALIZER; |
| 42 | } // namespace |
Darin Petkov | c90fe52 | 2011-07-15 13:59:47 -0700 | [diff] [blame] | 43 | |
| 44 | ProxyFactory::ProxyFactory() {} |
| 45 | |
| 46 | ProxyFactory::~ProxyFactory() {} |
| 47 | |
Darin Petkov | ab565bb | 2011-10-06 02:55:51 -0700 | [diff] [blame] | 48 | ProxyFactory *ProxyFactory::GetInstance() { |
| 49 | return g_proxy_factory.Pointer(); |
| 50 | } |
| 51 | |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 52 | void ProxyFactory::Init() { |
| 53 | CHECK(DBus::default_dispatcher); // Initialized in DBusControl::Init. |
| 54 | CHECK(!connection_.get()); |
| 55 | connection_.reset(new DBus::Connection(DBus::Connection::SystemBus())); |
| 56 | } |
| 57 | |
David Rochberg | 24c6c62 | 2012-03-05 11:30:44 -0500 | [diff] [blame] | 58 | DBusObjectManagerProxyInterface *ProxyFactory::CreateDBusObjectManagerProxy( |
David Rochberg | 24c6c62 | 2012-03-05 11:30:44 -0500 | [diff] [blame] | 59 | const string &path, |
| 60 | const string &service) { |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 61 | return new DBusObjectManagerProxy(connection(), path, service); |
David Rochberg | 24c6c62 | 2012-03-05 11:30:44 -0500 | [diff] [blame] | 62 | } |
| 63 | |
Darin Petkov | 5c97ac5 | 2011-07-19 16:30:49 -0700 | [diff] [blame] | 64 | DBusPropertiesProxyInterface *ProxyFactory::CreateDBusPropertiesProxy( |
Darin Petkov | 5c97ac5 | 2011-07-19 16:30:49 -0700 | [diff] [blame] | 65 | const string &path, |
| 66 | const string &service) { |
Jason Glasgow | 9c09e36 | 2012-04-18 15:16:29 -0400 | [diff] [blame] | 67 | return new DBusPropertiesProxy(connection(), path, service); |
Darin Petkov | 5c97ac5 | 2011-07-19 16:30:49 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Darin Petkov | 18fb2f7 | 2012-06-14 09:09:34 +0200 | [diff] [blame] | 70 | DBusServiceProxyInterface *ProxyFactory::CreateDBusServiceProxy() { |
| 71 | return new DBusServiceProxy(connection()); |
| 72 | } |
| 73 | |
Darin Petkov | c90fe52 | 2011-07-15 13:59:47 -0700 | [diff] [blame] | 74 | ModemManagerProxyInterface *ProxyFactory::CreateModemManagerProxy( |
David Rochberg | 81030ea | 2012-03-02 15:44:25 -0500 | [diff] [blame] | 75 | ModemManagerClassic *manager, |
Darin Petkov | 5c97ac5 | 2011-07-19 16:30:49 -0700 | [diff] [blame] | 76 | const string &path, |
| 77 | const string &service) { |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 78 | return new ModemManagerProxy(connection(), manager, path, service); |
Darin Petkov | c90fe52 | 2011-07-15 13:59:47 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Darin Petkov | c5f5656 | 2011-08-06 16:40:05 -0700 | [diff] [blame] | 81 | ModemProxyInterface *ProxyFactory::CreateModemProxy( |
Darin Petkov | c5f5656 | 2011-08-06 16:40:05 -0700 | [diff] [blame] | 82 | const string &path, |
| 83 | const string &service) { |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 84 | return new ModemProxy(connection(), path, service); |
Darin Petkov | e9d12e0 | 2011-07-27 15:09:37 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Darin Petkov | e604f70 | 2011-07-28 15:51:17 -0700 | [diff] [blame] | 87 | ModemSimpleProxyInterface *ProxyFactory::CreateModemSimpleProxy( |
| 88 | const string &path, |
| 89 | const string &service) { |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 90 | return new ModemSimpleProxy(connection(), path, service); |
Darin Petkov | e604f70 | 2011-07-28 15:51:17 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Darin Petkov | bec79a2 | 2011-08-01 14:47:17 -0700 | [diff] [blame] | 93 | ModemCDMAProxyInterface *ProxyFactory::CreateModemCDMAProxy( |
| 94 | const string &path, |
| 95 | const string &service) { |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 96 | return new ModemCDMAProxy(connection(), path, service); |
Darin Petkov | bec79a2 | 2011-08-01 14:47:17 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Darin Petkov | 975b5e7 | 2011-08-30 11:48:08 -0700 | [diff] [blame] | 99 | ModemGSMCardProxyInterface *ProxyFactory::CreateModemGSMCardProxy( |
Darin Petkov | 975b5e7 | 2011-08-30 11:48:08 -0700 | [diff] [blame] | 100 | const string &path, |
| 101 | const string &service) { |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 102 | return new ModemGSMCardProxy(connection(), path, service); |
Darin Petkov | 975b5e7 | 2011-08-30 11:48:08 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Darin Petkov | a1e0a1c | 2011-08-25 15:08:33 -0700 | [diff] [blame] | 105 | ModemGSMNetworkProxyInterface *ProxyFactory::CreateModemGSMNetworkProxy( |
Darin Petkov | a1e0a1c | 2011-08-25 15:08:33 -0700 | [diff] [blame] | 106 | const string &path, |
| 107 | const string &service) { |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 108 | return new ModemGSMNetworkProxy(connection(), path, service); |
Darin Petkov | a1e0a1c | 2011-08-25 15:08:33 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Darin Petkov | c37a9c4 | 2012-09-06 15:28:22 +0200 | [diff] [blame] | 111 | ModemGobiProxyInterface *ProxyFactory::CreateModemGobiProxy( |
| 112 | const string &path, |
| 113 | const string &service) { |
| 114 | return new ModemGobiProxy(connection(), path, service); |
| 115 | } |
| 116 | |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 117 | // Proxies for ModemManager1 interfaces |
| 118 | mm1::ModemModem3gppProxyInterface *ProxyFactory::CreateMM1ModemModem3gppProxy( |
Darin Petkov | 096b347 | 2012-05-15 10:26:22 +0200 | [diff] [blame] | 119 | const string &path, |
| 120 | const string &service) { |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 121 | return new mm1::ModemModem3gppProxy(connection(), path, service); |
| 122 | } |
| 123 | |
| 124 | mm1::ModemModemCdmaProxyInterface *ProxyFactory::CreateMM1ModemModemCdmaProxy( |
Darin Petkov | 096b347 | 2012-05-15 10:26:22 +0200 | [diff] [blame] | 125 | const string &path, |
| 126 | const string &service) { |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 127 | return new mm1::ModemModemCdmaProxy(connection(), path, service); |
| 128 | } |
| 129 | |
| 130 | mm1::ModemProxyInterface *ProxyFactory::CreateMM1ModemProxy( |
Darin Petkov | 096b347 | 2012-05-15 10:26:22 +0200 | [diff] [blame] | 131 | const string &path, |
| 132 | const string &service) { |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 133 | return new mm1::ModemProxy(connection(), path, service); |
| 134 | } |
| 135 | |
| 136 | mm1::ModemSimpleProxyInterface *ProxyFactory::CreateMM1ModemSimpleProxy( |
Darin Petkov | 096b347 | 2012-05-15 10:26:22 +0200 | [diff] [blame] | 137 | const string &path, |
| 138 | const string &service) { |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 139 | return new mm1::ModemSimpleProxy(connection(), path, service); |
| 140 | } |
| 141 | |
Arman Uguray | 618af2b | 2012-12-11 19:20:42 -0800 | [diff] [blame] | 142 | mm1::ModemTimeProxyInterface *ProxyFactory::CreateMM1ModemTimeProxy( |
| 143 | const string &path, |
| 144 | const string &service) { |
| 145 | return new mm1::ModemTimeProxy(connection(), path, service); |
| 146 | } |
| 147 | |
Arman Uguray | 2c39fab | 2012-12-12 16:56:34 -0800 | [diff] [blame] | 148 | mm1::ModemLocationProxyInterface *ProxyFactory::CreateMM1ModemLocationProxy( |
| 149 | const string &path, |
| 150 | const string &service) { |
| 151 | return new mm1::ModemLocationProxy(connection(), path, service); |
| 152 | } |
| 153 | |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 154 | mm1::SimProxyInterface *ProxyFactory::CreateSimProxy( |
Darin Petkov | 096b347 | 2012-05-15 10:26:22 +0200 | [diff] [blame] | 155 | const string &path, |
| 156 | const string &service) { |
Jason Glasgow | 9a0be63 | 2012-03-30 08:53:35 -0400 | [diff] [blame] | 157 | return new mm1::SimProxy(connection(), path, service); |
| 158 | } |
| 159 | |
Arman Uguray | 6e5639f | 2012-11-15 20:30:19 -0800 | [diff] [blame] | 160 | mm1::BearerProxyInterface *ProxyFactory::CreateBearerProxy( |
| 161 | const string &path, |
| 162 | const string &service) { |
| 163 | return new mm1::BearerProxy(connection(), path, service); |
| 164 | } |
| 165 | |
Darin Petkov | 096b347 | 2012-05-15 10:26:22 +0200 | [diff] [blame] | 166 | WiMaxDeviceProxyInterface *ProxyFactory::CreateWiMaxDeviceProxy( |
| 167 | const string &path) { |
| 168 | return new WiMaxDeviceProxy(connection(), path); |
| 169 | } |
| 170 | |
| 171 | WiMaxManagerProxyInterface *ProxyFactory::CreateWiMaxManagerProxy() { |
| 172 | return new WiMaxManagerProxy(connection()); |
| 173 | } |
| 174 | |
Darin Petkov | 9893d9c | 2012-05-17 15:27:31 -0700 | [diff] [blame] | 175 | WiMaxNetworkProxyInterface *ProxyFactory::CreateWiMaxNetworkProxy( |
| 176 | const string &path) { |
| 177 | return new WiMaxNetworkProxy(connection(), path); |
| 178 | } |
| 179 | |
Darin Petkov | 394b7d4 | 2011-11-03 15:48:02 +0100 | [diff] [blame] | 180 | PowerManagerProxyInterface *ProxyFactory::CreatePowerManagerProxy( |
| 181 | PowerManagerProxyDelegate *delegate) { |
| 182 | return new PowerManagerProxy(delegate, connection()); |
| 183 | } |
| 184 | |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 185 | SupplicantProcessProxyInterface *ProxyFactory::CreateSupplicantProcessProxy( |
Darin Petkov | d196726 | 2011-07-18 14:55:18 -0700 | [diff] [blame] | 186 | const char *dbus_path, |
| 187 | const char *dbus_addr) { |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 188 | return new SupplicantProcessProxy(connection(), dbus_path, dbus_addr); |
Darin Petkov | d196726 | 2011-07-18 14:55:18 -0700 | [diff] [blame] | 189 | } |
| 190 | |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 191 | SupplicantInterfaceProxyInterface *ProxyFactory::CreateSupplicantInterfaceProxy( |
Darin Petkov | d196726 | 2011-07-18 14:55:18 -0700 | [diff] [blame] | 192 | const WiFiRefPtr &wifi, |
| 193 | const DBus::Path &object_path, |
| 194 | const char *dbus_addr) { |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 195 | return new SupplicantInterfaceProxy(wifi, |
| 196 | connection(), |
| 197 | object_path, |
| 198 | dbus_addr); |
| 199 | } |
| 200 | |
Paul Stewart | 835934a | 2012-12-06 19:27:09 -0800 | [diff] [blame] | 201 | SupplicantNetworkProxyInterface *ProxyFactory::CreateSupplicantNetworkProxy( |
| 202 | const DBus::Path &object_path, |
| 203 | const char *dbus_addr) { |
| 204 | return new SupplicantNetworkProxy(connection(), |
| 205 | object_path, |
| 206 | dbus_addr); |
| 207 | } |
| 208 | |
mukesh agrawal | b20776f | 2012-02-10 16:00:36 -0800 | [diff] [blame] | 209 | SupplicantBSSProxyInterface *ProxyFactory::CreateSupplicantBSSProxy( |
| 210 | WiFiEndpoint *wifi_endpoint, |
| 211 | const DBus::Path &object_path, |
| 212 | const char *dbus_addr) { |
| 213 | return new SupplicantBSSProxy( |
| 214 | wifi_endpoint, connection(), object_path, dbus_addr); |
| 215 | } |
| 216 | |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 217 | DHCPProxyInterface *ProxyFactory::CreateDHCPProxy(const string &service) { |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 218 | return new DHCPCDProxy(connection(), service); |
Darin Petkov | d196726 | 2011-07-18 14:55:18 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Darin Petkov | c90fe52 | 2011-07-15 13:59:47 -0700 | [diff] [blame] | 221 | } // namespace shill |