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

Unified Diff: chromeos/dbus/console_service_client.cc

Issue 697493002: Support transition between chrome and user mode console (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DBUS API to support transition between chrome and console Created 6 years, 2 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
Index: chromeos/dbus/console_service_client.cc
diff --git a/chromeos/dbus/console_service_client.cc b/chromeos/dbus/console_service_client.cc
new file mode 100644
index 0000000000000000000000000000000000000000..759c90f4389dac0bb0cc7868019d6a5971d8daad
--- /dev/null
+++ b/chromeos/dbus/console_service_client.cc
@@ -0,0 +1,161 @@
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/bind.h"
+#include "chromeos/dbus/console_service_client.h"
+#include "chromeos/dbus/dbus_thread_manager.h"
+#include "dbus/bus.h"
+#include "dbus/exported_object.h"
+#include "dbus/message.h"
+#include "third_party/cros_system_api/dbus/service_constants.h"
+
+namespace dbus {
+class Bus;
+class MethodCall;
+class ExportedObject;
+}
+
+static chromeos::ConsoleServiceClient* s_console_service_client = NULL;
+
+class ConsoleServiceClientImpl : public chromeos::ConsoleServiceClient {
+ public:
+ ConsoleServiceClientImpl();
+ ~ConsoleServiceClientImpl();
Daniel Erat 2014/10/31 18:15:02 add override
dsodman 2014/10/31 18:43:25 Done.
+
+ void AddObserver(Observer* observer) override;
+ void RemoveObserver(Observer* observer) override;
+ bool HasObserver(Observer* observer) override;
+
+ void OnOwnership(const std::string& service_name, bool success);
Daniel Erat 2014/10/31 18:15:02 these three methods seem like they should all be p
dsodman 2014/10/31 18:43:25 Done.
+
+ void OnExported(const std::string& interface_name,
+ const std::string& method_name,
+ bool success);
+
+ void ActivateConsole(dbus::MethodCall* method_call,
+ dbus::ExportedObject::ResponseSender response_sender);
+
+ protected:
+ void Init(dbus::Bus* bus) override;
+
+ private:
+ dbus::Bus* bus_;
+ ObserverList<Observer> observers_;
+ scoped_refptr<dbus::ExportedObject> exported_object_;
+ base::WeakPtrFactory<ConsoleServiceClientImpl> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(ConsoleServiceClientImpl);
+};
+
+ConsoleServiceClientImpl::ConsoleServiceClientImpl()
+ : bus_(NULL), weak_ptr_factory_(this) {
+}
+
+ConsoleServiceClientImpl::~ConsoleServiceClientImpl() {
+ s_console_service_client = NULL;
+}
+
+void ConsoleServiceClientImpl::AddObserver(Observer* observer) {
+ observers_.AddObserver(observer);
+}
+
+void ConsoleServiceClientImpl::RemoveObserver(Observer* observer) {
+ observers_.RemoveObserver(observer);
+}
+
+bool ConsoleServiceClientImpl::HasObserver(Observer* observer) {
+ return observers_.HasObserver(observer);
+}
+
+// OnOwnership
Daniel Erat 2014/10/31 18:15:02 please delete these method names in comments; i ha
dsodman 2014/10/31 18:43:25 Done.
+// This method will be called when the class receives ownership of the bus.
+// |success| will be true if ownership succeeded and false otherwise.
Daniel Erat 2014/10/31 18:15:02 these comments should live above the corresponding
dsodman 2014/10/31 18:43:25 Done.
+void ConsoleServiceClientImpl::OnOwnership(const std::string& service_name,
+ bool success) {
+ LOG_IF(FATAL, !success) << "failed to own: " << service_name;
+}
+
+// OnExported
+// This method will be called when a dbus method is exported. The |success|
+// parameter will be true if the export is successful. It will be false
+// otherwise.
+void ConsoleServiceClientImpl::OnExported(const std::string& interface_name,
+ const std::string& method_name,
+ bool success) {
+ if (!success) {
+ LOG(ERROR) << "failed to export " << interface_name << "." << method_name;
+ }
+}
+
+// ActivateConsole
+// This method will get called when a external process sends the dbus
+// method ConsoleServiceInterface.ActivateConsole. The method receives
+// a single integer parameter |console_id| which indicates the console id.
+// Chrome will take ownership of the display service when the console
+// id is 0 or 1. It will relinquish control when the console_id is 2 or more
+// to allow other entities (such as the console) to take control of the
+// display.
+void ConsoleServiceClientImpl::ActivateConsole(
+ dbus::MethodCall* method_call,
+ dbus::ExportedObject::ResponseSender response_sender) {
+ dbus::MessageReader reader(method_call);
+ int console_id = 0;
+ if (reader.PopInt32(&console_id)) {
+ FOR_EACH_OBSERVER(Observer, observers_, OnActivateConsole(console_id));
+ } else {
+ LOG(ERROR) << "Unable to parse " << chromeos::kActivateConsole
+ << " request";
+ }
+ response_sender.Run(dbus::Response::FromMethodCall(method_call));
+}
+
+// Init
+// This will be called to initialize the class after the dbus system is
+// operational. This cannot be in the constructor because there is no
+// guarantee that the constructor will be called after the dbus service is
+// running.
+void ConsoleServiceClientImpl::Init(dbus::Bus* bus) {
+ bus_ = chromeos::DBusThreadManager::Get()->GetSystemBus();
+
+ if (!bus_) {
+ LOG(ERROR) << "Unable to get system d-bus for the ConsoleServiceClient";
Daniel Erat 2014/10/31 18:15:02 any reason that this shouldn't just be CHECK(bus_)
dsodman 2014/10/31 18:43:24 Done.
+ return;
+ }
+
+ bus_->RequestOwnership(chromeos::kConsoleServiceName,
Daniel Erat 2014/10/31 18:15:02 it seems a bit strange to use a new service here i
dsodman 2014/10/31 18:43:25 That was what was done initially. This console se
+ dbus::Bus::REQUIRE_PRIMARY_ALLOW_REPLACEMENT,
+ base::Bind(&ConsoleServiceClientImpl::OnOwnership,
+ base::Unretained(this)));
+
+ exported_object_ = bus_->GetExportedObject(
+ dbus::ObjectPath(dbus::ObjectPath(chromeos::kConsoleServicePath)));
+
+ exported_object_->ExportMethod(
+ chromeos::kConsoleServiceInterface,
+ chromeos::kActivateConsole,
+ base::Bind(&ConsoleServiceClientImpl::ActivateConsole,
+ weak_ptr_factory_.GetWeakPtr()),
+ base::Bind(&ConsoleServiceClientImpl::OnExported,
+ weak_ptr_factory_.GetWeakPtr()));
+}
+
+namespace chromeos {
+
+ConsoleServiceClient::ConsoleServiceClient() {
+}
+
+ConsoleServiceClient::~ConsoleServiceClient() {
+}
+
+ConsoleServiceClient* ConsoleServiceClient::Create() {
+ s_console_service_client = new ConsoleServiceClientImpl();
+ CHECK_EQ(NULL, s_console_service_client);
Daniel Erat 2014/10/31 18:15:02 this check is wrong. i think that steven meant tha
dsodman 2014/10/31 18:43:25 I see. Fixed.
+ return s_console_service_client;
+}
+
+ConsoleServiceClient* ConsoleServiceClient::GetInstance() {
+ return s_console_service_client;
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698