Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2002)

Unified Diff: dbus/object_manager.cc

Issue 510863002: dbus::ObjectManager: Add a match rule for properties before GetManagedObjects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased; updated BUILD.gn; fixed crash from latest RunLoop changes Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dbus/object_manager.h ('k') | dbus/object_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/object_manager.cc
diff --git a/dbus/object_manager.cc b/dbus/object_manager.cc
index d8eb569cf726ca61b114e95cb40b6115eddf2fff..f754bb693fd3d909648d978347aae94c27e06aea 100644
--- a/dbus/object_manager.cc
+++ b/dbus/object_manager.cc
@@ -5,11 +5,18 @@
#include "dbus/object_manager.h"
#include "base/bind.h"
+#include "base/location.h"
#include "base/logging.h"
+#include "base/metrics/histogram.h"
+#include "base/strings/stringprintf.h"
+#include "base/task_runner_util.h"
#include "dbus/bus.h"
+#include "dbus/dbus_statistics.h"
#include "dbus/message.h"
#include "dbus/object_proxy.h"
#include "dbus/property.h"
+#include "dbus/scoped_dbus_error.h"
+#include "dbus/util.h"
namespace dbus {
@@ -26,33 +33,27 @@ ObjectManager::ObjectManager(Bus* bus,
: bus_(bus),
service_name_(service_name),
object_path_(object_path),
+ setup_success_(false),
+ cleanup_called_(false),
weak_ptr_factory_(this) {
DVLOG(1) << "Creating ObjectManager for " << service_name_
<< " " << object_path_.value();
-
DCHECK(bus_);
+ bus_->AssertOnOriginThread();
object_proxy_ = bus_->GetObjectProxy(service_name_, object_path_);
object_proxy_->SetNameOwnerChangedCallback(
base::Bind(&ObjectManager::NameOwnerChanged,
weak_ptr_factory_.GetWeakPtr()));
- object_proxy_->ConnectToSignal(
- kObjectManagerInterface,
- kObjectManagerInterfacesAdded,
- base::Bind(&ObjectManager::InterfacesAddedReceived,
- weak_ptr_factory_.GetWeakPtr()),
- base::Bind(&ObjectManager::InterfacesAddedConnected,
- weak_ptr_factory_.GetWeakPtr()));
-
- object_proxy_->ConnectToSignal(
- kObjectManagerInterface,
- kObjectManagerInterfacesRemoved,
- base::Bind(&ObjectManager::InterfacesRemovedReceived,
- weak_ptr_factory_.GetWeakPtr()),
- base::Bind(&ObjectManager::InterfacesRemovedConnected,
- weak_ptr_factory_.GetWeakPtr()));
-
- GetManagedObjects();
+ // Set up a match rule and a filter function to handle PropertiesChanged
+ // signals from the service. This is important to avoid any race conditions
+ // that might cause us to miss PropertiesChanged signals once all objects are
+ // initialized via GetManagedObjects.
+ base::PostTaskAndReplyWithResult(
+ bus_->GetDBusTaskRunner(),
+ FROM_HERE,
+ base::Bind(&ObjectManager::SetupMatchRuleAndFilter, this),
+ base::Bind(&ObjectManager::OnSetupMatchRuleAndFilterComplete, this));
}
ObjectManager::~ObjectManager() {
@@ -144,6 +145,205 @@ void ObjectManager::GetManagedObjects() {
weak_ptr_factory_.GetWeakPtr()));
}
+void ObjectManager::CleanUp() {
+ DCHECK(bus_);
+ bus_->AssertOnDBusThread();
+ DCHECK(!cleanup_called_);
+
+ cleanup_called_ = true;
+
+ if (!setup_success_)
+ return;
+
+ if (!bus_->RemoveFilterFunction(&ObjectManager::HandleMessageThunk, this))
+ LOG(ERROR) << "Failed to remove filter function";
+
+ ScopedDBusError error;
+ bus_->RemoveMatch(match_rule_, error.get());
+ if (error.is_set())
+ LOG(ERROR) << "Failed to remove match rule: " << match_rule_;
+
+ match_rule_.clear();
+}
+
+void ObjectManager::InitializeObjects() {
+ DCHECK(bus_);
+ DCHECK(object_proxy_);
+ DCHECK(setup_success_);
+
+ // |object_proxy_| is no longer valid if the Bus was shut down before this
+ // call. Don't initiate any other action from the origin thread.
+ if (cleanup_called_)
+ return;
+
+ object_proxy_->ConnectToSignal(
+ kObjectManagerInterface,
+ kObjectManagerInterfacesAdded,
+ base::Bind(&ObjectManager::InterfacesAddedReceived,
+ weak_ptr_factory_.GetWeakPtr()),
+ base::Bind(&ObjectManager::InterfacesAddedConnected,
+ weak_ptr_factory_.GetWeakPtr()));
+
+ object_proxy_->ConnectToSignal(
+ kObjectManagerInterface,
+ kObjectManagerInterfacesRemoved,
+ base::Bind(&ObjectManager::InterfacesRemovedReceived,
+ weak_ptr_factory_.GetWeakPtr()),
+ base::Bind(&ObjectManager::InterfacesRemovedConnected,
+ weak_ptr_factory_.GetWeakPtr()));
+
+ GetManagedObjects();
+}
+
+bool ObjectManager::SetupMatchRuleAndFilter() {
+ DCHECK(bus_);
+ DCHECK(!setup_success_);
+ bus_->AssertOnDBusThread();
+
+ if (cleanup_called_)
+ return false;
+
+ if (!bus_->Connect() || !bus_->SetUpAsyncOperations())
+ return false;
+
+ service_name_owner_ =
+ bus_->GetServiceOwnerAndBlock(service_name_, Bus::SUPPRESS_ERRORS);
+
+ const std::string match_rule =
+ base::StringPrintf(
+ "type='signal', sender='%s', interface='%s', member='%s'",
+ service_name_.c_str(),
+ kPropertiesInterface,
+ kPropertiesChanged);
+
+ if (!bus_->AddFilterFunction(&ObjectManager::HandleMessageThunk, this)) {
+ LOG(ERROR) << "ObjectManager failed to add filter function";
+ return false;
+ }
+
+ ScopedDBusError error;
+ bus_->AddMatch(match_rule, error.get());
+ if (error.is_set()) {
+ LOG(ERROR) << "ObjectManager failed to add match rule \"" << match_rule
+ << "\". Got " << error.name() << ": " << error.message();
+ bus_->RemoveFilterFunction(&ObjectManager::HandleMessageThunk, this);
+ return false;
+ }
+
+ match_rule_ = match_rule;
+ setup_success_ = true;
+
+ return true;
+}
+
+void ObjectManager::OnSetupMatchRuleAndFilterComplete(bool success) {
+ LOG_IF(WARNING, !success) << service_name_ << " " << object_path_.value()
+ << ": Failed to set up match rule.";
+ if (success)
+ InitializeObjects();
+}
+
+// static
+DBusHandlerResult ObjectManager::HandleMessageThunk(DBusConnection* connection,
+ DBusMessage* raw_message,
+ void* user_data) {
+ ObjectManager* self = reinterpret_cast<ObjectManager*>(user_data);
+ return self->HandleMessage(connection, raw_message);
+}
+
+DBusHandlerResult ObjectManager::HandleMessage(DBusConnection* connection,
+ DBusMessage* raw_message) {
+ DCHECK(bus_);
+ bus_->AssertOnDBusThread();
+
+ if (dbus_message_get_type(raw_message) != DBUS_MESSAGE_TYPE_SIGNAL)
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
+
+ // raw_message will be unrefed on exit of the function. Increment the
+ // reference so we can use it in Signal.
+ dbus_message_ref(raw_message);
+ scoped_ptr<Signal> signal(
+ Signal::FromRawMessage(raw_message));
+
+ const std::string interface = signal->GetInterface();
+ const std::string member = signal->GetMember();
+
+ statistics::AddReceivedSignal(service_name_, interface, member);
+
+ // Only handle the PropertiesChanged signal.
+ const std::string absolute_signal_name =
+ GetAbsoluteMemberName(interface, member);
+ const std::string properties_changed_signal_name =
+ GetAbsoluteMemberName(kPropertiesInterface, kPropertiesChanged);
+ if (absolute_signal_name != properties_changed_signal_name)
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
+
+ VLOG(1) << "Signal received: " << signal->ToString();
+
+ // Make sure that the signal originated from the correct sender.
+ std::string sender = signal->GetSender();
+ if (service_name_owner_ != sender) {
+ LOG(ERROR) << "Rejecting a message from a wrong sender.";
+ UMA_HISTOGRAM_COUNTS("DBus.RejectedSignalCount", 1);
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
+ }
+
+ const ObjectPath path = signal->GetPath();
+
+ if (bus_->HasDBusThread()) {
+ // Post a task to run the method in the origin thread. Transfer ownership of
+ // |signal| to NotifyPropertiesChanged, which will handle the clean up.
+ Signal* released_signal = signal.release();
+ bus_->GetOriginTaskRunner()->PostTask(
+ FROM_HERE,
+ base::Bind(&ObjectManager::NotifyPropertiesChanged,
+ this, path,
+ released_signal));
+ } else {
+ // If the D-Bus thread is not used, just call the callback on the
+ // current thread. Transfer the ownership of |signal| to
+ // NotifyPropertiesChanged.
+ NotifyPropertiesChanged(path, signal.release());
+ }
+
+ // We don't return DBUS_HANDLER_RESULT_HANDLED for signals because other
+ // objects may be interested in them. (e.g. Signals from org.freedesktop.DBus)
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
+}
+
+void ObjectManager::NotifyPropertiesChanged(
+ const dbus::ObjectPath object_path,
+ Signal* signal) {
+ DCHECK(bus_);
+ bus_->AssertOnOriginThread();
+
+ NotifyPropertiesChangedHelper(object_path, signal);
+
+ // Delete the message on the D-Bus thread. See comments in HandleMessage.
+ bus_->GetDBusTaskRunner()->PostTask(
+ FROM_HERE,
+ base::Bind(&base::DeletePointer<Signal>, signal));
+}
+
+void ObjectManager::NotifyPropertiesChangedHelper(
+ const dbus::ObjectPath object_path,
+ Signal* signal) {
+ DCHECK(bus_);
+ bus_->AssertOnOriginThread();
+
+ MessageReader reader(signal);
+ std::string interface;
+ if (!reader.PopString(&interface)) {
+ LOG(WARNING) << "Property changed signal has wrong parameters: "
+ << "expected interface name: " << signal->ToString();
+ return;
+ }
+
+ PropertySet* properties = GetProperties(object_path, interface);
+ if (properties)
+ properties->ChangedReceived(signal);
+}
+
void ObjectManager::OnGetManagedObjects(Response* response) {
if (response != NULL) {
MessageReader reader(response);
@@ -257,7 +457,6 @@ void ObjectManager::AddInterface(const ObjectPath& object_path,
property_set = object->properties_map[interface_name] =
interface->CreateProperties(object->object_proxy,
object_path, interface_name);
- property_set->ConnectSignals();
} else
property_set = piter->second;
@@ -297,6 +496,8 @@ void ObjectManager::RemoveInterface(const ObjectPath& object_path,
void ObjectManager::NameOwnerChanged(const std::string& old_owner,
const std::string& new_owner) {
+ service_name_owner_ = new_owner;
+
if (!old_owner.empty()) {
ObjectMap::iterator iter = object_map_.begin();
while (iter != object_map_.end()) {
« no previous file with comments | « dbus/object_manager.h ('k') | dbus/object_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698