blob: 5f74dc2b1e4e68654079ee146299b30abc94004e [file] [log] [blame]
keybuk@google.combf4649a2012-02-15 06:29:06 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
satorux@chromium.org163f1cb2011-08-18 05:58:12 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef DBUS_EXPORTED_OBJECT_H_
6#define DBUS_EXPORTED_OBJECT_H_
satorux@chromium.org163f1cb2011-08-18 05:58:12 +09007
satorux@chromium.org163f1cb2011-08-18 05:58:12 +09008#include <dbus/dbus.h>
9
thestig@chromium.org519c9ac2011-11-15 09:29:48 +090010#include <map>
11#include <string>
12#include <utility>
13
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090014#include "base/callback.h"
15#include "base/memory/ref_counted.h"
satorux@chromium.org01fbb892011-08-20 10:07:17 +090016#include "base/synchronization/waitable_event.h"
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090017#include "base/threading/platform_thread.h"
avi@chromium.org78a7e7b2013-06-29 00:20:02 +090018#include "base/time/time.h"
tfarina@chromium.org7928ea22012-11-05 10:56:14 +090019#include "dbus/dbus_export.h"
keybuk@google.combf4649a2012-02-15 06:29:06 +090020#include "dbus/object_path.h"
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090021
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090022namespace dbus {
23
24class Bus;
25class MethodCall;
26class Response;
satorux@chromium.org7f0c4512011-08-23 16:29:21 +090027class Signal;
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090028
29// ExportedObject is used to export objects and methods to other D-Bus
30// clients.
31//
32// ExportedObject is a ref counted object, to ensure that |this| of the
33// object is alive when callbacks referencing |this| are called.
tfarina@chromium.org7928ea22012-11-05 10:56:14 +090034class CHROME_DBUS_EXPORT ExportedObject
35 : public base::RefCountedThreadSafe<ExportedObject> {
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090036 public:
37 // Client code should use Bus::GetExportedObject() instead of this
38 // constructor.
keybuk@chromium.org9cb73f02012-03-10 10:12:52 +090039 ExportedObject(Bus* bus, const ObjectPath& object_path);
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090040
satorux@chromium.orgf7fc5652012-11-29 10:52:21 +090041 // Called to send a response from an exported method. |response| is the
42 // response message. Callers should pass NULL in the event of an error that
43 // prevents the sending of a response.
yuki@chromium.orgd4eedf82013-02-07 18:46:24 +090044 typedef base::Callback<void (scoped_ptr<Response> response)> ResponseSender;
vlaviano@chromium.org241215d2011-11-30 13:57:42 +090045
satorux@chromium.orgf7fc5652012-11-29 10:52:21 +090046 // Called when an exported method is called. |method_call| is the request
47 // message. |sender| is the callback that's used to send a response.
48 //
49 // |method_call| is owned by ExportedObject, hence client code should not
50 // delete |method_call|.
51 typedef base::Callback<void (MethodCall* method_call, ResponseSender sender)>
52 MethodCallCallback;
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090053
54 // Called when method exporting is done.
satorux@chromium.orgf7fc5652012-11-29 10:52:21 +090055 // |success| indicates whether exporting was successful or not.
56 typedef base::Callback<void (const std::string& interface_name,
57 const std::string& method_name,
58 bool success)>
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090059 OnExportedCallback;
60
61 // Exports the method specified by |interface_name| and |method_name|,
62 // and blocks until exporting is done. Returns true on success.
63 //
64 // |method_call_callback| will be called in the origin thread, when the
65 // exported method is called. As it's called in the origin thread,
satorux@chromium.org7f0c4512011-08-23 16:29:21 +090066 // |method_callback| can safely reference objects in the origin thread
67 // (i.e. UI thread in most cases).
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090068 //
satorux@chromium.org49e0bc72014-01-09 13:39:17 +090069 // IMPORTANT NOTE: You should export all methods before requesting a
70 // service name by Bus::RequestOwnership/AndBlock(). If you do it in the
71 // wrong order (i.e. request a service name then export methods), there
72 // will be a short time period where your service is unable to respond to
73 // method calls because these methods aren't yet exposed. This race is a
74 // real problem as clients may start calling methods of your service as
75 // soon as you acquire a service name, by watching the name owner change.
76 //
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090077 // BLOCKING CALL.
78 virtual bool ExportMethodAndBlock(const std::string& interface_name,
79 const std::string& method_name,
80 MethodCallCallback method_call_callback);
81
82 // Requests to export the method specified by |interface_name| and
83 // |method_name|. See Also ExportMethodAndBlock().
84 //
85 // |on_exported_callback| is called when the method is exported or
86 // failed to be exported, in the origin thread.
87 //
88 // Must be called in the origin thread.
89 virtual void ExportMethod(const std::string& interface_name,
90 const std::string& method_name,
91 MethodCallCallback method_call_callback,
92 OnExportedCallback on_exported_callback);
93
satorux@chromium.org7f0c4512011-08-23 16:29:21 +090094 // Requests to send the signal from this object. The signal will be sent
95 // asynchronously from the message loop in the D-Bus thread.
96 virtual void SendSignal(Signal* signal);
97
satorux@chromium.org163f1cb2011-08-18 05:58:12 +090098 // Unregisters the object from the bus. The Bus object will take care of
99 // unregistering so you don't have to do this manually.
100 //
101 // BLOCKING CALL.
102 virtual void Unregister();
103
satorux@chromium.orgf77861f2011-08-25 14:18:29 +0900104 protected:
105 // This is protected, so we can define sub classes.
106 virtual ~ExportedObject();
107
satorux@chromium.org163f1cb2011-08-18 05:58:12 +0900108 private:
109 friend class base::RefCountedThreadSafe<ExportedObject>;
satorux@chromium.org163f1cb2011-08-18 05:58:12 +0900110
111 // Helper function for ExportMethod().
112 void ExportMethodInternal(const std::string& interface_name,
113 const std::string& method_name,
114 MethodCallCallback method_call_callback,
115 OnExportedCallback exported_callback);
116
117 // Called when the object is exported.
118 void OnExported(OnExportedCallback on_exported_callback,
119 const std::string& interface_name,
120 const std::string& method_name,
121 bool success);
122
satorux@chromium.org7f0c4512011-08-23 16:29:21 +0900123 // Helper function for SendSignal().
satorux@chromium.org5a92cf32011-09-07 05:53:30 +0900124 void SendSignalInternal(base::TimeTicks start_time,
satorux@chromium.org47d706b2011-10-04 22:47:21 +0900125 DBusMessage* signal_message);
satorux@chromium.org7f0c4512011-08-23 16:29:21 +0900126
satorux@chromium.org163f1cb2011-08-18 05:58:12 +0900127 // Registers this object to the bus.
128 // Returns true on success, or the object is already registered.
129 //
130 // BLOCKING CALL.
131 bool Register();
132
133 // Handles the incoming request messages and dispatches to the exported
134 // methods.
135 DBusHandlerResult HandleMessage(DBusConnection* connection,
136 DBusMessage* raw_message);
137
138 // Runs the method. Helper function for HandleMessage().
139 void RunMethod(MethodCallCallback method_call_callback,
yuki@chromium.orgd4eedf82013-02-07 18:46:24 +0900140 scoped_ptr<MethodCall> method_call,
satorux@chromium.orgc9ebea22011-10-08 01:26:30 +0900141 base::TimeTicks start_time);
142
vlaviano@chromium.org241215d2011-11-30 13:57:42 +0900143 // Callback invoked by service provider to send a response to a method call.
144 // Can be called immediately from a MethodCallCallback to implement a
145 // synchronous service or called later to implement an asynchronous service.
146 void SendResponse(base::TimeTicks start_time,
yuki@chromium.orgd4eedf82013-02-07 18:46:24 +0900147 scoped_ptr<MethodCall> method_call,
148 scoped_ptr<Response> response);
vlaviano@chromium.org241215d2011-11-30 13:57:42 +0900149
150 // Called on completion of the method run from SendResponse().
satorux@chromium.orgc9ebea22011-10-08 01:26:30 +0900151 // Takes ownership of |method_call| and |response|.
yuki@chromium.orgd4eedf82013-02-07 18:46:24 +0900152 void OnMethodCompleted(scoped_ptr<MethodCall> method_call,
153 scoped_ptr<Response> response,
satorux@chromium.orgc9ebea22011-10-08 01:26:30 +0900154 base::TimeTicks start_time);
satorux@chromium.org163f1cb2011-08-18 05:58:12 +0900155
156 // Called when the object is unregistered.
157 void OnUnregistered(DBusConnection* connection);
158
159 // Redirects the function call to HandleMessage().
160 static DBusHandlerResult HandleMessageThunk(DBusConnection* connection,
161 DBusMessage* raw_message,
162 void* user_data);
163
164 // Redirects the function call to OnUnregistered().
165 static void OnUnregisteredThunk(DBusConnection* connection,
166 void* user_data);
167
satorux@chromium.orgf06eb892011-10-13 09:45:26 +0900168 scoped_refptr<Bus> bus_;
keybuk@google.combf4649a2012-02-15 06:29:06 +0900169 ObjectPath object_path_;
satorux@chromium.org163f1cb2011-08-18 05:58:12 +0900170 bool object_is_registered_;
satorux@chromium.org163f1cb2011-08-18 05:58:12 +0900171
172 // The method table where keys are absolute method names (i.e. interface
173 // name + method name), and values are the corresponding callbacks.
174 typedef std::map<std::string, MethodCallCallback> MethodTable;
175 MethodTable method_table_;
176};
177
178} // namespace dbus
179
180#endif // DBUS_EXPORTED_OBJECT_H_