Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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 | |
| 5 #include "chromeos/dbus/privet_daemon_manager_client.h" | |
| 6 | |
| 7 #include "base/bind.h" | |
| 8 #include "base/logging.h" | |
| 9 #include "base/memory/weak_ptr.h" | |
| 10 #include "base/message_loop/message_loop.h" | |
| 11 #include "base/observer_list.h" | |
| 12 #include "dbus/bus.h" | |
| 13 #include "dbus/message.h" | |
| 14 #include "dbus/object_manager.h" | |
| 15 #include "dbus/object_proxy.h" | |
| 16 | |
| 17 namespace chromeos { | |
| 18 | |
| 19 namespace { | |
| 20 | |
| 21 // TODO(benchan): Move these constants to system_api. | |
| 22 const char kManagerInterfaceName[] = "org.chromium.privetd.Manager"; | |
| 23 const char kPrivetdManagerPath[] = "/org/chromium/privetd/Manager"; | |
| 24 const char kPrivetdServiceName[] = "org.chromium.privetd"; | |
| 25 const char kPrivetdServicePath[] = "/org/chromium/privetd"; | |
| 26 const char kSetDescriptionMethod[] = "SetDescription"; | |
| 27 | |
| 28 const char kDescriptionProperty[] = "Description"; | |
| 29 const char kGCDBootstrapStateProperty[] = "GCDBootstrapState"; | |
| 30 const char kNameProperty[] = "Name"; | |
| 31 const char kPairingInfoCodeProperty[] = "code"; | |
| 32 const char kPairingInfoModeProperty[] = "mode"; | |
| 33 const char kPairingInfoProperty[] = "PairingInfo"; | |
| 34 const char kPairingInfoSessionIdProperty[] = "sessionId"; | |
| 35 const char kWiFiBootstrapStateProperty[] = "WiFiBootstrapState"; | |
| 36 | |
| 37 // The PrivetDaemonManagerClient implementation used in production. | |
| 38 class PrivetDaemonManagerClientImpl : public PrivetDaemonManagerClient, | |
| 39 public dbus::ObjectManager::Interface { | |
| 40 public: | |
| 41 PrivetDaemonManagerClientImpl(); | |
| 42 ~PrivetDaemonManagerClientImpl() override; | |
| 43 | |
| 44 // PrivetDaemonManagerClient overrides. | |
| 45 void AddObserver(Observer* observer) override; | |
| 46 void RemoveObserver(Observer* observer) override; | |
| 47 void SetDescription(const std::string& description, | |
| 48 const VoidDBusMethodCallback& callback) override; | |
| 49 const Properties* GetProperties() override; | |
| 50 | |
| 51 // DBusClient overrides. | |
| 52 void Init(dbus::Bus* bus) override; | |
| 53 | |
| 54 // dbus::ObjectManager::Interface overrides. | |
| 55 dbus::PropertySet* CreateProperties( | |
| 56 dbus::ObjectProxy* object_proxy, | |
| 57 const dbus::ObjectPath& object_path, | |
| 58 const std::string& interface_name) override; | |
| 59 void ObjectAdded(const dbus::ObjectPath& object_path, | |
| 60 const std::string& interface_name) override; | |
| 61 void ObjectRemoved(const dbus::ObjectPath& object_path, | |
| 62 const std::string& interface_name) override; | |
| 63 | |
| 64 private: | |
| 65 // Called by dbus::PropertySet when a property value is changed, | |
| 66 // either by result of a signal or response to a GetAll() or Get() | |
| 67 // call. Informs observers. | |
| 68 void OnManagerPropertyChanged(const std::string& property_name); | |
| 69 void OnVoidDBusMethod(const VoidDBusMethodCallback& callback, | |
| 70 dbus::Response* response); | |
| 71 | |
| 72 // List of observers interested in event notifications from us. | |
| 73 ObserverList<Observer> observers_; | |
| 74 dbus::ObjectManager* object_manager_; | |
| 75 base::WeakPtrFactory<PrivetDaemonManagerClientImpl> weak_ptr_factory_; | |
| 76 | |
| 77 DISALLOW_COPY_AND_ASSIGN(PrivetDaemonManagerClientImpl); | |
| 78 }; | |
| 79 | |
| 80 PrivetDaemonManagerClientImpl::PrivetDaemonManagerClientImpl() | |
| 81 : object_manager_(nullptr), weak_ptr_factory_(this) { | |
| 82 } | |
| 83 | |
| 84 PrivetDaemonManagerClientImpl::~PrivetDaemonManagerClientImpl() { | |
| 85 if (object_manager_) { | |
| 86 object_manager_->UnregisterInterface(kManagerInterfaceName); | |
| 87 } | |
| 88 } | |
| 89 | |
| 90 void PrivetDaemonManagerClientImpl::AddObserver(Observer* observer) { | |
| 91 DCHECK(observer); | |
| 92 observers_.AddObserver(observer); | |
| 93 } | |
| 94 | |
| 95 void PrivetDaemonManagerClientImpl::RemoveObserver(Observer* observer) { | |
| 96 DCHECK(observer); | |
| 97 observers_.RemoveObserver(observer); | |
| 98 } | |
| 99 | |
| 100 void PrivetDaemonManagerClientImpl::SetDescription( | |
| 101 const std::string& description, | |
| 102 const VoidDBusMethodCallback& callback) { | |
| 103 dbus::ObjectProxy* object_proxy = | |
| 104 object_manager_->GetObjectProxy(dbus::ObjectPath(kPrivetdManagerPath)); | |
| 105 if (!object_proxy) { | |
| 106 base::MessageLoop::current()->PostTask( | |
| 107 FROM_HERE, | |
| 108 base::Bind(&PrivetDaemonManagerClientImpl::OnVoidDBusMethod, | |
| 109 weak_ptr_factory_.GetWeakPtr(), callback, nullptr)); | |
| 110 return; | |
| 111 } | |
| 112 | |
| 113 dbus::MethodCall method_call(kManagerInterfaceName, kSetDescriptionMethod); | |
| 114 dbus::MessageWriter writer(&method_call); | |
| 115 writer.AppendString(description); | |
| 116 object_proxy->CallMethod( | |
| 117 &method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT, | |
| 118 base::Bind(&PrivetDaemonManagerClientImpl::OnVoidDBusMethod, | |
| 119 weak_ptr_factory_.GetWeakPtr(), callback)); | |
| 120 } | |
| 121 | |
| 122 const PrivetDaemonManagerClient::Properties* | |
| 123 PrivetDaemonManagerClientImpl::GetProperties() { | |
| 124 return static_cast<Properties*>(object_manager_->GetProperties( | |
| 125 dbus::ObjectPath(kPrivetdManagerPath), kManagerInterfaceName)); | |
| 126 } | |
| 127 | |
| 128 void PrivetDaemonManagerClientImpl::Init(dbus::Bus* bus) { | |
| 129 object_manager_ = bus->GetObjectManager( | |
| 130 kPrivetdServiceName, dbus::ObjectPath(kPrivetdServicePath)); | |
| 131 object_manager_->RegisterInterface(kManagerInterfaceName, this); | |
| 132 } | |
| 133 | |
| 134 dbus::PropertySet* PrivetDaemonManagerClientImpl::CreateProperties( | |
| 135 dbus::ObjectProxy* object_proxy, | |
| 136 const dbus::ObjectPath& object_path, | |
| 137 const std::string& interface_name) { | |
| 138 dbus::PropertySet* properties = nullptr; | |
| 139 if (interface_name == kManagerInterfaceName) { | |
| 140 properties = new Properties( | |
| 141 object_proxy, interface_name, | |
| 142 base::Bind(&PrivetDaemonManagerClientImpl::OnManagerPropertyChanged, | |
| 143 weak_ptr_factory_.GetWeakPtr())); | |
| 144 } else { | |
| 145 NOTREACHED() << "Unhandled interface name " << interface_name; | |
| 146 } | |
| 147 return properties; | |
| 148 } | |
| 149 | |
| 150 void PrivetDaemonManagerClientImpl::ObjectAdded( | |
| 151 const dbus::ObjectPath& object_path, | |
| 152 const std::string& interface_name) { | |
| 153 if (interface_name == kManagerInterfaceName) { | |
| 154 FOR_EACH_OBSERVER(Observer, observers_, ManagerAdded()); | |
| 155 } else { | |
| 156 NOTREACHED() << "Unhandled interface name " << interface_name; | |
| 157 } | |
| 158 } | |
| 159 | |
| 160 void PrivetDaemonManagerClientImpl::ObjectRemoved( | |
| 161 const dbus::ObjectPath& object_path, | |
| 162 const std::string& interface_name) { | |
| 163 if (interface_name == kManagerInterfaceName) { | |
| 164 FOR_EACH_OBSERVER(Observer, observers_, ManagerRemoved()); | |
| 165 } else { | |
| 166 NOTREACHED() << "Unhandled interface name " << interface_name; | |
| 167 } | |
| 168 } | |
| 169 | |
| 170 void PrivetDaemonManagerClientImpl::OnManagerPropertyChanged( | |
| 171 const std::string& property_name) { | |
| 172 FOR_EACH_OBSERVER(Observer, observers_, | |
| 173 ManagerPropertyChanged(property_name)); | |
| 174 } | |
| 175 | |
| 176 void PrivetDaemonManagerClientImpl::OnVoidDBusMethod( | |
| 177 const VoidDBusMethodCallback& callback, | |
| 178 dbus::Response* response) { | |
| 179 callback.Run(response ? DBUS_METHOD_CALL_SUCCESS : DBUS_METHOD_CALL_FAILURE); | |
| 180 } | |
| 181 | |
| 182 } // namespace | |
| 183 | |
| 184 void PrivetDaemonManagerClient::PairingInfo::Clear() { | |
| 185 code_.clear(); | |
| 186 mode_.clear(); | |
| 187 session_id_.clear(); | |
| 188 } | |
| 189 | |
| 190 bool PrivetDaemonManagerClient::PairingInfoProperty::PopValueFromReader( | |
| 191 dbus::MessageReader* reader) { | |
| 192 dbus::MessageReader variant_reader(NULL); | |
|
hashimoto
2015/03/20 15:22:57
nit: Please prefer nullptr to NULL.
The same goes
dtapuska
2015/03/20 15:38:34
Done.
| |
| 193 dbus::MessageReader array_reader(NULL); | |
| 194 if (!reader->PopVariant(&variant_reader) || | |
| 195 !variant_reader.PopArray(&array_reader)) { | |
| 196 return false; | |
| 197 } | |
| 198 value_.Clear(); | |
|
hashimoto
2015/03/20 15:22:57
suggestion: How about clearing |value_| at the beg
dtapuska
2015/03/20 15:38:34
Done.
| |
| 199 while (array_reader.HasMoreData()) { | |
| 200 dbus::MessageReader dict_entry_reader(NULL); | |
| 201 if (!array_reader.PopDictEntry(&dict_entry_reader)) | |
| 202 return false; | |
| 203 std::string key; | |
| 204 if (!dict_entry_reader.PopString(&key)) | |
| 205 return false; | |
| 206 | |
| 207 dbus::MessageReader field_reader(NULL); | |
| 208 if (!dict_entry_reader.PopVariant(&field_reader)) | |
| 209 return false; | |
| 210 | |
| 211 if (field_reader.GetDataSignature() == "s") { | |
| 212 std::string string_value; | |
| 213 if (!field_reader.PopString(&string_value)) | |
| 214 return false; | |
| 215 if (key == kPairingInfoSessionIdProperty) { | |
| 216 value_.set_session_id(string_value); | |
| 217 } else if (key == kPairingInfoModeProperty) { | |
| 218 value_.set_mode(string_value); | |
| 219 } | |
| 220 } else if (field_reader.GetDataSignature() == "ay") { | |
| 221 const uint8* bytes = NULL; | |
| 222 size_t length = 0; | |
| 223 if (!field_reader.PopArrayOfBytes(&bytes, &length)) | |
| 224 return false; | |
| 225 if (key == kPairingInfoCodeProperty) | |
| 226 value_.set_code(bytes, length); | |
| 227 } | |
| 228 } | |
| 229 return true; | |
| 230 } | |
| 231 | |
| 232 void PrivetDaemonManagerClient::PairingInfoProperty::AppendSetValueToWriter( | |
| 233 dbus::MessageWriter* writer) { | |
| 234 NOTIMPLEMENTED(); | |
| 235 } | |
| 236 | |
| 237 void PrivetDaemonManagerClient::PairingInfoProperty:: | |
| 238 ReplaceValueWithSetValue() { | |
| 239 NOTIMPLEMENTED(); | |
| 240 } | |
| 241 | |
| 242 PrivetDaemonManagerClient::Properties::Properties( | |
| 243 dbus::ObjectProxy* object_proxy, | |
| 244 const std::string& interface_name, | |
| 245 const PropertyChangedCallback& callback) | |
| 246 : dbus::PropertySet(object_proxy, interface_name, callback) { | |
| 247 RegisterProperty(kWiFiBootstrapStateProperty, &wifi_bootstrap_state_); | |
| 248 RegisterProperty(kGCDBootstrapStateProperty, &gcd_bootstrap_state_); | |
| 249 RegisterProperty(kPairingInfoProperty, &pairing_info_); | |
| 250 RegisterProperty(kDescriptionProperty, &description_); | |
| 251 RegisterProperty(kNameProperty, &name_); | |
| 252 } | |
| 253 | |
| 254 PrivetDaemonManagerClient::Properties::~Properties() { | |
| 255 } | |
| 256 | |
| 257 PrivetDaemonManagerClient::Observer::~Observer() { | |
| 258 } | |
| 259 | |
| 260 PrivetDaemonManagerClient::PrivetDaemonManagerClient() { | |
| 261 } | |
| 262 | |
| 263 PrivetDaemonManagerClient::~PrivetDaemonManagerClient() { | |
| 264 } | |
| 265 | |
| 266 // static | |
| 267 PrivetDaemonManagerClient* PrivetDaemonManagerClient::Create() { | |
| 268 return new PrivetDaemonManagerClientImpl(); | |
| 269 } | |
| 270 | |
| 271 } // namespace chromeos | |
| OLD | NEW |