OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 #include "chromeos/dbus/modem_messaging_client.h" |
| 5 |
| 6 #include <map> |
| 7 #include <utility> |
| 8 |
| 9 #include "base/bind.h" |
| 10 #include "base/memory/weak_ptr.h" |
| 11 #include "base/message_loop.h" |
| 12 #include "base/stl_util.h" |
| 13 #include "base/values.h" |
| 14 #include "dbus/bus.h" |
| 15 #include "dbus/message.h" |
| 16 #include "dbus/object_proxy.h" |
| 17 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 18 |
| 19 namespace chromeos { |
| 20 |
| 21 namespace { |
| 22 |
| 23 // A class which makes method calls for SMS services via the |
| 24 // org.freedesktop.ModemManager1.Messaging object. |
| 25 class ModemMessagingProxy { |
| 26 public: |
| 27 typedef ModemMessagingClient::SmsReceivedHandler SmsReceivedHandler; |
| 28 typedef ModemMessagingClient::ListCallback ListCallback; |
| 29 typedef ModemMessagingClient::DeleteCallback DeleteCallback; |
| 30 |
| 31 ModemMessagingProxy(dbus::Bus* bus, |
| 32 const std::string& service_name, |
| 33 const dbus::ObjectPath& object_path) |
| 34 : bus_(bus), |
| 35 proxy_(bus->GetObjectProxy(service_name, object_path)), |
| 36 weak_ptr_factory_(this), |
| 37 service_name_(service_name) { |
| 38 proxy_->ConnectToSignal( |
| 39 modemmanager::kModemManager1MessagingInterface, |
| 40 modemmanager::kSMSAddedSignal, |
| 41 base::Bind(&ModemMessagingProxy::OnSmsAdded, |
| 42 weak_ptr_factory_.GetWeakPtr()), |
| 43 base::Bind(&ModemMessagingProxy::OnSignalConnected, |
| 44 weak_ptr_factory_.GetWeakPtr())); |
| 45 } |
| 46 virtual ~ModemMessagingProxy() {} |
| 47 |
| 48 // Sets SmsReceived signal handler. |
| 49 void SetSmsReceivedHandler(const SmsReceivedHandler& handler) { |
| 50 DCHECK(sms_received_handler_.is_null()); |
| 51 sms_received_handler_ = handler; |
| 52 } |
| 53 |
| 54 // Resets SmsReceived signal handler. |
| 55 void ResetSmsReceivedHandler() { |
| 56 sms_received_handler_.Reset(); |
| 57 } |
| 58 |
| 59 // Calls Delete method. |
| 60 void Delete(const dbus::ObjectPath& message_path, |
| 61 const DeleteCallback& callback) { |
| 62 dbus::MethodCall method_call(modemmanager::kModemManager1MessagingInterface, |
| 63 modemmanager::kSMSDeleteFunction); |
| 64 dbus::MessageWriter writer(&method_call); |
| 65 writer.AppendObjectPath(message_path); |
| 66 proxy_->CallMethod(&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT, |
| 67 base::Bind(&ModemMessagingProxy::OnDelete, |
| 68 weak_ptr_factory_.GetWeakPtr(), |
| 69 callback)); |
| 70 } |
| 71 |
| 72 // Calls List method. |
| 73 virtual void List(const ListCallback& callback) { |
| 74 dbus::MethodCall method_call(modemmanager::kModemManager1MessagingInterface, |
| 75 modemmanager::kSMSListFunction); |
| 76 proxy_->CallMethod(&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT, |
| 77 base::Bind(&ModemMessagingProxy::OnList, |
| 78 weak_ptr_factory_.GetWeakPtr(), |
| 79 callback)); |
| 80 } |
| 81 |
| 82 private: |
| 83 // Handles SmsAdded signal. |
| 84 void OnSmsAdded(dbus::Signal* signal) { |
| 85 dbus::ObjectPath message_path; |
| 86 bool complete = false; |
| 87 dbus::MessageReader reader(signal); |
| 88 if (!reader.PopObjectPath(&message_path) || |
| 89 !reader.PopBool(&complete)) { |
| 90 LOG(ERROR) << "Invalid signal: " << signal->ToString(); |
| 91 return; |
| 92 } |
| 93 if (!sms_received_handler_.is_null()) { |
| 94 sms_received_handler_.Run(message_path, complete); |
| 95 } |
| 96 } |
| 97 |
| 98 // Handles responses of Delete method calls. |
| 99 void OnDelete(const DeleteCallback& callback, dbus::Response* response) { |
| 100 if (!response) |
| 101 return; |
| 102 callback.Run(); |
| 103 } |
| 104 |
| 105 // Handles responses of List method calls. |
| 106 void OnList(const ListCallback& callback, dbus::Response* response) { |
| 107 if (!response) |
| 108 return; |
| 109 dbus::MessageReader reader(response); |
| 110 std::vector<dbus::ObjectPath> sms_paths; |
| 111 if (!reader.PopArrayOfObjectPaths(&sms_paths)) |
| 112 LOG(WARNING) << "Invalid response: " << response->ToString(); |
| 113 callback.Run(sms_paths); |
| 114 } |
| 115 |
| 116 // Handles the result of signal connection setup. |
| 117 void OnSignalConnected(const std::string& interface, |
| 118 const std::string& signal, |
| 119 bool successed) { |
| 120 LOG_IF(ERROR, !successed) << "Connect to " << interface << " " |
| 121 << signal << " failed."; |
| 122 } |
| 123 |
| 124 dbus::Bus* bus_; |
| 125 dbus::ObjectProxy* proxy_; |
| 126 base::WeakPtrFactory<ModemMessagingProxy> weak_ptr_factory_; |
| 127 std::string service_name_; |
| 128 SmsReceivedHandler sms_received_handler_; |
| 129 |
| 130 DISALLOW_COPY_AND_ASSIGN(ModemMessagingProxy); |
| 131 }; |
| 132 |
| 133 class CHROMEOS_EXPORT ModemMessagingClientImpl : public ModemMessagingClient { |
| 134 public: |
| 135 explicit ModemMessagingClientImpl(dbus::Bus *bus) |
| 136 : bus_(bus), |
| 137 proxies_deleter_(&proxies_) { |
| 138 } |
| 139 |
| 140 // ModemMessagingClient override. |
| 141 virtual void SetSmsReceivedHandler( |
| 142 const std::string& service_name, |
| 143 const dbus::ObjectPath& object_path, |
| 144 const SmsReceivedHandler& handler) OVERRIDE { |
| 145 GetProxy(service_name, object_path)->SetSmsReceivedHandler(handler); |
| 146 } |
| 147 |
| 148 // ModemMessagingClient override. |
| 149 virtual void ResetSmsReceivedHandler( |
| 150 const std::string& service_name, |
| 151 const dbus::ObjectPath& object_path) OVERRIDE { |
| 152 GetProxy(service_name, object_path)->ResetSmsReceivedHandler(); |
| 153 } |
| 154 |
| 155 // ModemMessagingClient override. |
| 156 virtual void Delete(const std::string& service_name, |
| 157 const dbus::ObjectPath& object_path, |
| 158 const dbus::ObjectPath& sms_path, |
| 159 const DeleteCallback& callback) OVERRIDE { |
| 160 GetProxy(service_name, object_path)->Delete(sms_path, callback); |
| 161 } |
| 162 |
| 163 // ModemMessagingClient override. |
| 164 virtual void List(const std::string& service_name, |
| 165 const dbus::ObjectPath& object_path, |
| 166 const ListCallback& callback) OVERRIDE { |
| 167 GetProxy(service_name, object_path)->List(callback); |
| 168 } |
| 169 |
| 170 private: |
| 171 typedef std::map<std::pair<std::string, std::string>, ModemMessagingProxy*> |
| 172 ProxyMap; |
| 173 |
| 174 // Returns a SMSProxy for the given service name and object path. |
| 175 ModemMessagingProxy* GetProxy(const std::string& service_name, |
| 176 const dbus::ObjectPath& object_path) { |
| 177 const ProxyMap::key_type key(service_name, object_path.value()); |
| 178 ProxyMap::iterator it = proxies_.find(key); |
| 179 if (it != proxies_.end()) |
| 180 return it->second; |
| 181 |
| 182 // There is no proxy for the service_name and object_path, create it. |
| 183 ModemMessagingProxy* proxy |
| 184 = new ModemMessagingProxy(bus_, service_name, object_path); |
| 185 proxies_.insert(ProxyMap::value_type(key, proxy)); |
| 186 return proxy; |
| 187 } |
| 188 |
| 189 dbus::Bus* bus_; |
| 190 ProxyMap proxies_; |
| 191 STLValueDeleter<ProxyMap> proxies_deleter_; |
| 192 |
| 193 DISALLOW_COPY_AND_ASSIGN(ModemMessagingClientImpl); |
| 194 }; |
| 195 |
| 196 class CHROMEOS_EXPORT ModemMessagingClientStubImpl |
| 197 : public ModemMessagingClient { |
| 198 public: |
| 199 ModemMessagingClientStubImpl() {} |
| 200 virtual ~ModemMessagingClientStubImpl() {} |
| 201 |
| 202 // ModemMessagingClient override. |
| 203 virtual void SetSmsReceivedHandler( |
| 204 const std::string& service_name, |
| 205 const dbus::ObjectPath& object_path, |
| 206 const SmsReceivedHandler& handler) OVERRIDE { |
| 207 DCHECK(sms_received_handler_.is_null()); |
| 208 sms_received_handler_ = handler; |
| 209 } |
| 210 |
| 211 // ModemMessagingClient override. |
| 212 virtual void ResetSmsReceivedHandler( |
| 213 const std::string& service_name, |
| 214 const dbus::ObjectPath& object_path) OVERRIDE { |
| 215 sms_received_handler_.Reset(); |
| 216 } |
| 217 |
| 218 // ModemMessagingClient override. |
| 219 virtual void Delete(const std::string& service_name, |
| 220 const dbus::ObjectPath& object_path, |
| 221 const dbus::ObjectPath& sms_path, |
| 222 const DeleteCallback& callback) OVERRIDE { |
| 223 std::vector<dbus::ObjectPath>::iterator it( |
| 224 find(message_paths_.begin(), message_paths_.end(), sms_path)); |
| 225 if (it != message_paths_.end()) |
| 226 message_paths_.erase(it); |
| 227 callback.Run(); |
| 228 } |
| 229 |
| 230 // ModemMessagingClient override. |
| 231 virtual void List(const std::string& service_name, |
| 232 const dbus::ObjectPath& object_path, |
| 233 const ListCallback& callback) OVERRIDE { |
| 234 // This entire ModemMessagingClientStubImpl is for testing. |
| 235 // Calling List with |service_name| equal to "AddSMS" allows unit |
| 236 // tests to confirm that the sms_received_handler is functioning. |
| 237 if (service_name == "AddSMS") { |
| 238 std::vector<dbus::ObjectPath> no_paths; |
| 239 const dbus::ObjectPath kSmsPath("/SMS/0"); |
| 240 message_paths_.push_back(kSmsPath); |
| 241 if (!sms_received_handler_.is_null()) |
| 242 sms_received_handler_.Run(kSmsPath, true); |
| 243 callback.Run(no_paths); |
| 244 } else { |
| 245 callback.Run(message_paths_); |
| 246 } |
| 247 } |
| 248 |
| 249 private: |
| 250 SmsReceivedHandler sms_received_handler_; |
| 251 std::vector<dbus::ObjectPath> message_paths_; |
| 252 |
| 253 DISALLOW_COPY_AND_ASSIGN(ModemMessagingClientStubImpl); |
| 254 }; |
| 255 |
| 256 } // namespace |
| 257 |
| 258 //////////////////////////////////////////////////////////////////////////////// |
| 259 // ModemMessagingClient |
| 260 |
| 261 ModemMessagingClient::ModemMessagingClient() {} |
| 262 |
| 263 ModemMessagingClient::~ModemMessagingClient() {} |
| 264 |
| 265 |
| 266 // static |
| 267 ModemMessagingClient* ModemMessagingClient::Create( |
| 268 DBusClientImplementationType type, |
| 269 dbus::Bus* bus) { |
| 270 if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) { |
| 271 return new ModemMessagingClientImpl(bus); |
| 272 } |
| 273 DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type); |
| 274 return new ModemMessagingClientStubImpl(); |
| 275 } |
| 276 |
| 277 |
| 278 } // namespace chromeos |
OLD | NEW |