blob: 2a265b39093f4877ebea22230f512ab1f983a786 [file] [log] [blame]
Avi Drissmanf75e37f2022-09-13 19:40:311// Copyright 2012 The Chromium Authors
[email protected]a9e91492011-07-30 19:13:312// 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_MESSAGE_H_
6#define DBUS_MESSAGE_H_
[email protected]a9e91492011-07-30 19:13:317
avi22437c692015-12-22 18:12:458#include <dbus/dbus.h>
9#include <stddef.h>
10#include <stdint.h>
dcheng2a193282016-04-08 22:55:0411
12#include <memory>
[email protected]a9e91492011-07-30 19:13:3113#include <string>
14#include <vector>
[email protected]a9e91492011-07-30 19:13:3115
hashimoto89822572016-08-24 16:51:3816#include "base/files/scoped_file.h"
Keishi Hattorif28f4f82022-06-21 11:32:1517#include "base/memory/raw_ptr.h"
Nan Lin49d6dae842022-08-03 21:47:4618#include "base/strings/string_piece.h"
[email protected]e3024462012-11-05 01:56:1419#include "dbus/dbus_export.h"
[email protected]216ed0b2012-02-14 21:29:0620#include "dbus/object_path.h"
[email protected]a9e91492011-07-30 19:13:3121
[email protected]c033c5082012-02-09 18:14:0822namespace google {
23namespace protobuf {
24
25class MessageLite;
26
27} // namespace protobuf
28} // namespace google
29
[email protected]a9e91492011-07-30 19:13:3130namespace dbus {
31
32class MessageWriter;
33class MessageReader;
34
[email protected]e146bfc2012-03-30 06:46:2035// DBUS_TYPE_UNIX_FD was added in D-Bus version 1.4
[email protected]73c71512012-07-25 19:29:5736#if !defined(DBUS_TYPE_UNIX_FD)
Abhishek Bhardwaj34928ece2018-05-23 07:22:1937#define DBUS_TYPE_UNIX_FD ((int)'h')
[email protected]e146bfc2012-03-30 06:46:2038#endif
39
[email protected]73c71512012-07-25 19:29:5740// Returns true if Unix FD passing is supported in libdbus.
41// The check is done runtime rather than compile time as the libdbus
42// version used at runtime may be different from the one used at compile time.
[email protected]e3024462012-11-05 01:56:1443CHROME_DBUS_EXPORT bool IsDBusTypeUnixFdSupported();
[email protected]73c71512012-07-25 19:29:5744
[email protected]06ead872011-08-24 03:32:0645// Message is the base class of D-Bus message types. Client code must use
46// sub classes such as MethodCall and Response instead.
[email protected]a9e91492011-07-30 19:13:3147//
48// The class name Message is very generic, but there should be no problem
49// as the class is inside 'dbus' namespace. We chose to name this way, as
50// libdbus defines lots of types starting with DBus, such as
51// DBusMessage. We should avoid confusion and conflict with these types.
[email protected]e3024462012-11-05 01:56:1452class CHROME_DBUS_EXPORT Message {
[email protected]a9e91492011-07-30 19:13:3153 public:
54 // The message type used in D-Bus. Redefined here so client code
55 // doesn't need to use raw D-Bus macros. DBUS_MESSAGE_TYPE_INVALID
56 // etc. are #define macros. Having an enum type here makes code a bit
57 // more type-safe.
58 enum MessageType {
59 MESSAGE_INVALID = DBUS_MESSAGE_TYPE_INVALID,
60 MESSAGE_METHOD_CALL = DBUS_MESSAGE_TYPE_METHOD_CALL,
61 MESSAGE_METHOD_RETURN = DBUS_MESSAGE_TYPE_METHOD_RETURN,
62 MESSAGE_SIGNAL = DBUS_MESSAGE_TYPE_SIGNAL,
63 MESSAGE_ERROR = DBUS_MESSAGE_TYPE_ERROR,
Abhishek Bhardwaj34928ece2018-05-23 07:22:1964 };
[email protected]a9e91492011-07-30 19:13:3165
66 // The data type used in the D-Bus type system. See the comment at
67 // MessageType for why we are redefining data types here.
68 enum DataType {
69 INVALID_DATA = DBUS_TYPE_INVALID,
70 BYTE = DBUS_TYPE_BYTE,
71 BOOL = DBUS_TYPE_BOOLEAN,
72 INT16 = DBUS_TYPE_INT16,
73 UINT16 = DBUS_TYPE_UINT16,
74 INT32 = DBUS_TYPE_INT32,
75 UINT32 = DBUS_TYPE_UINT32,
76 INT64 = DBUS_TYPE_INT64,
77 UINT64 = DBUS_TYPE_UINT64,
78 DOUBLE = DBUS_TYPE_DOUBLE,
79 STRING = DBUS_TYPE_STRING,
80 OBJECT_PATH = DBUS_TYPE_OBJECT_PATH,
81 ARRAY = DBUS_TYPE_ARRAY,
82 STRUCT = DBUS_TYPE_STRUCT,
83 DICT_ENTRY = DBUS_TYPE_DICT_ENTRY,
84 VARIANT = DBUS_TYPE_VARIANT,
[email protected]e146bfc2012-03-30 06:46:2085 UNIX_FD = DBUS_TYPE_UNIX_FD,
[email protected]a9e91492011-07-30 19:13:3186 };
87
Peter Boström896f1372021-11-05 01:12:3088 Message(const Message&) = delete;
89 Message& operator=(const Message&) = delete;
90
[email protected]a9e91492011-07-30 19:13:3191 // Returns the type of the message. Returns MESSAGE_INVALID if
92 // raw_message_ is NULL.
93 MessageType GetMessageType();
94
[email protected]06ead872011-08-24 03:32:0695 // Returns the type of the message as string like "MESSAGE_METHOD_CALL"
96 // for instance.
97 std::string GetMessageTypeAsString();
[email protected]a9e91492011-07-30 19:13:3198
[email protected]06ead872011-08-24 03:32:0699 DBusMessage* raw_message() { return raw_message_; }
[email protected]a9e91492011-07-30 19:13:31100
[email protected]9cce2d32011-08-10 22:34:02101 // Sets the destination, the path, the interface, the member, etc.
[email protected]ca72ff22012-05-23 06:55:22102 bool SetDestination(const std::string& destination);
103 bool SetPath(const ObjectPath& path);
104 bool SetInterface(const std::string& interface);
105 bool SetMember(const std::string& member);
106 bool SetErrorName(const std::string& error_name);
107 bool SetSender(const std::string& sender);
avi22437c692015-12-22 18:12:45108 void SetSerial(uint32_t serial);
109 void SetReplySerial(uint32_t reply_serial);
[email protected]9cce2d32011-08-10 22:34:02110 // SetSignature() does not exist as we cannot do it.
111
112 // Gets the destination, the path, the interface, the member, etc.
113 // If not set, an empty string is returned.
114 std::string GetDestination();
[email protected]216ed0b2012-02-14 21:29:06115 ObjectPath GetPath();
[email protected]9cce2d32011-08-10 22:34:02116 std::string GetInterface();
117 std::string GetMember();
118 std::string GetErrorName();
119 std::string GetSender();
benchan5d15ab582014-08-25 11:16:56120 std::string GetSignature();
[email protected]9cce2d32011-08-10 22:34:02121 // Gets the serial and reply serial numbers. Returns 0 if not set.
avi22437c692015-12-22 18:12:45122 uint32_t GetSerial();
123 uint32_t GetReplySerial();
[email protected]9cce2d32011-08-10 22:34:02124
[email protected]a9e91492011-07-30 19:13:31125 // Returns the string representation of this message. Useful for
[email protected]6df1b9592012-06-07 16:41:26126 // debugging. The output is truncated as needed (ex. strings are truncated
127 // if longer than a certain limit defined in the .cc file).
[email protected]a9e91492011-07-30 19:13:31128 std::string ToString();
129
[email protected]06ead872011-08-24 03:32:06130 protected:
131 // This class cannot be instantiated. Use sub classes instead.
132 Message();
133 virtual ~Message();
134
135 // Initializes the message with the given raw message.
136 void Init(DBusMessage* raw_message);
137
[email protected]a9e91492011-07-30 19:13:31138 private:
139 // Helper function used in ToString().
140 std::string ToStringInternal(const std::string& indent,
141 MessageReader* reader);
142
Arthur Sonzognib99722f2022-06-27 09:38:01143 raw_ptr<DBusMessage, DanglingUntriaged> raw_message_;
[email protected]a9e91492011-07-30 19:13:31144};
145
146// MessageCall is a type of message used for calling a method via D-Bus.
[email protected]e3024462012-11-05 01:56:14147class CHROME_DBUS_EXPORT MethodCall : public Message {
[email protected]a9e91492011-07-30 19:13:31148 public:
149 // Creates a method call message for the specified interface name and
150 // the method name.
151 //
152 // For instance, to call "Get" method of DBUS_INTERFACE_INTROSPECTABLE
153 // interface ("org.freedesktop.DBus.Introspectable"), create a method
154 // call like this:
155 //
156 // MethodCall method_call(DBUS_INTERFACE_INTROSPECTABLE, "Get");
157 //
[email protected]06ead872011-08-24 03:32:06158 // The constructor creates the internal raw message.
Abhishek Bhardwaj34928ece2018-05-23 07:22:19159 MethodCall(const std::string& interface_name, const std::string& method_name);
[email protected]a9e91492011-07-30 19:13:31160
Peter Boström896f1372021-11-05 01:12:30161 MethodCall(const MethodCall&) = delete;
162 MethodCall& operator=(const MethodCall&) = delete;
163
[email protected]9cce2d32011-08-10 22:34:02164 // Returns a newly created MethodCall from the given raw message of the
Hidehiko Abe1156b452017-09-12 03:55:06165 // type DBUS_MESSAGE_TYPE_METHOD_CALL. Takes the ownership of |raw_message|.
166 static std::unique_ptr<MethodCall> FromRawMessage(DBusMessage* raw_message);
[email protected]a9e91492011-07-30 19:13:31167
[email protected]06ead872011-08-24 03:32:06168 private:
169 // Creates a method call message. The internal raw message is NULL.
170 // Only used internally.
171 MethodCall();
[email protected]a9e91492011-07-30 19:13:31172};
173
[email protected]3beaaa4e2011-08-23 07:29:21174// Signal is a type of message used to send a signal.
[email protected]e3024462012-11-05 01:56:14175class CHROME_DBUS_EXPORT Signal : public Message {
[email protected]3beaaa4e2011-08-23 07:29:21176 public:
177 // Creates a signal message for the specified interface name and the
178 // method name.
179 //
180 // For instance, to send "PropertiesChanged" signal of
181 // DBUS_INTERFACE_INTROSPECTABLE interface
182 // ("org.freedesktop.DBus.Introspectable"), create a signal like this:
183 //
184 // Signal signal(DBUS_INTERFACE_INTROSPECTABLE, "PropertiesChanged");
185 //
[email protected]06ead872011-08-24 03:32:06186 // The constructor creates the internal raw_message_.
Abhishek Bhardwaj34928ece2018-05-23 07:22:19187 Signal(const std::string& interface_name, const std::string& method_name);
[email protected]3beaaa4e2011-08-23 07:29:21188
Peter Boström896f1372021-11-05 01:12:30189 Signal(const Signal&) = delete;
190 Signal& operator=(const Signal&) = delete;
191
[email protected]3beaaa4e2011-08-23 07:29:21192 // Returns a newly created SIGNAL from the given raw message of the type
Hidehiko Abe1156b452017-09-12 03:55:06193 // DBUS_MESSAGE_TYPE_SIGNAL. Takes the ownership of |raw_message|.
194 static std::unique_ptr<Signal> FromRawMessage(DBusMessage* raw_message);
[email protected]06ead872011-08-24 03:32:06195
196 private:
197 // Creates a signal message. The internal raw message is NULL.
198 // Only used internally.
199 Signal();
[email protected]3beaaa4e2011-08-23 07:29:21200};
201
[email protected]a9e91492011-07-30 19:13:31202// Response is a type of message used for receiving a response from a
203// method via D-Bus.
[email protected]e3024462012-11-05 01:56:14204class CHROME_DBUS_EXPORT Response : public Message {
[email protected]a9e91492011-07-30 19:13:31205 public:
[email protected]06ead872011-08-24 03:32:06206 // Returns a newly created Response from the given raw message of the
[email protected]9b25d452013-02-07 09:46:24207 // type DBUS_MESSAGE_TYPE_METHOD_RETURN. Takes the ownership of |raw_message|.
dcheng2a193282016-04-08 22:55:04208 static std::unique_ptr<Response> FromRawMessage(DBusMessage* raw_message);
[email protected]a9e91492011-07-30 19:13:31209
[email protected]9b25d452013-02-07 09:46:24210 // Returns a newly created Response from the given method call.
211 // Used for implementing exported methods. Does NOT take the ownership of
212 // |method_call|.
dcheng2a193282016-04-08 22:55:04213 static std::unique_ptr<Response> FromMethodCall(MethodCall* method_call);
[email protected]9cce2d32011-08-10 22:34:02214
[email protected]9b25d452013-02-07 09:46:24215 // Returns a newly created Response with an empty payload.
216 // Useful for testing.
dcheng2a193282016-04-08 22:55:04217 static std::unique_ptr<Response> CreateEmpty();
[email protected]06ead872011-08-24 03:32:06218
Peter Boström896f1372021-11-05 01:12:30219 Response(const Response&) = delete;
220 Response& operator=(const Response&) = delete;
221
[email protected]7533518e2012-03-11 01:12:00222 protected:
[email protected]06ead872011-08-24 03:32:06223 // Creates a Response message. The internal raw message is NULL.
224 Response();
[email protected]a9e91492011-07-30 19:13:31225};
226
[email protected]9cce2d32011-08-10 22:34:02227// ErrorResponse is a type of message used to return an error to the
228// caller of a method.
Abhishek Bhardwaj34928ece2018-05-23 07:22:19229class CHROME_DBUS_EXPORT ErrorResponse : public Response {
[email protected]9cce2d32011-08-10 22:34:02230 public:
[email protected]06ead872011-08-24 03:32:06231 // Returns a newly created Response from the given raw message of the
[email protected]9b25d452013-02-07 09:46:24232 // type DBUS_MESSAGE_TYPE_METHOD_RETURN. Takes the ownership of |raw_message|.
dcheng2a193282016-04-08 22:55:04233 static std::unique_ptr<ErrorResponse> FromRawMessage(
234 DBusMessage* raw_message);
[email protected]9cce2d32011-08-10 22:34:02235
236 // Returns a newly created ErrorResponse from the given method call, the
237 // error name, and the error message. The error name looks like
238 // "org.freedesktop.DBus.Error.Failed". Used for returning an error to a
[email protected]9b25d452013-02-07 09:46:24239 // failed method call. Does NOT take the ownership of |method_call|.
dcheng2a193282016-04-08 22:55:04240 static std::unique_ptr<ErrorResponse> FromMethodCall(
[email protected]9b25d452013-02-07 09:46:24241 MethodCall* method_call,
242 const std::string& error_name,
243 const std::string& error_message);
[email protected]9cce2d32011-08-10 22:34:02244
Peter Boström896f1372021-11-05 01:12:30245 ErrorResponse(const ErrorResponse&) = delete;
246 ErrorResponse& operator=(const ErrorResponse&) = delete;
247
[email protected]9cce2d32011-08-10 22:34:02248 private:
[email protected]06ead872011-08-24 03:32:06249 // Creates an ErrorResponse message. The internal raw message is NULL.
250 ErrorResponse();
[email protected]9cce2d32011-08-10 22:34:02251};
252
[email protected]a9e91492011-07-30 19:13:31253// MessageWriter is used to write outgoing messages for calling methods
254// and sending signals.
255//
256// The main design goal of MessageReader and MessageWriter classes is to
257// provide a type safe API. In the past, there was a Chrome OS blocker
258// bug, that took days to fix, that would have been prevented if the API
259// was type-safe.
260//
261// For instance, instead of doing something like:
262//
263// // We shouldn't add '&' to str here, but it compiles with '&' added.
264// dbus_g_proxy_call(..., G_TYPE_STRING, str, G_TYPE_INVALID, ...)
265//
266// We want to do something like:
267//
268// writer.AppendString(str);
269//
[email protected]e3024462012-11-05 01:56:14270class CHROME_DBUS_EXPORT MessageWriter {
[email protected]a9e91492011-07-30 19:13:31271 public:
[email protected]9400ff82012-02-07 23:48:35272 // Data added with Append* will be written to |message|, which may be NULL
273 // to create a sub-writer for passing to OpenArray, etc.
274 explicit MessageWriter(Message* message);
Peter Boströmc68c5aa2021-09-28 00:28:00275
276 MessageWriter(const MessageWriter&) = delete;
277 MessageWriter& operator=(const MessageWriter&) = delete;
278
[email protected]a9e91492011-07-30 19:13:31279 ~MessageWriter();
280
281 // Appends a byte to the message.
avi22437c692015-12-22 18:12:45282 void AppendByte(uint8_t value);
[email protected]a9e91492011-07-30 19:13:31283 void AppendBool(bool value);
avi22437c692015-12-22 18:12:45284 void AppendInt16(int16_t value);
285 void AppendUint16(uint16_t value);
286 void AppendInt32(int32_t value);
287 void AppendUint32(uint32_t value);
288 void AppendInt64(int64_t value);
289 void AppendUint64(uint64_t value);
[email protected]a9e91492011-07-30 19:13:31290 void AppendDouble(double value);
Nan Lin49d6dae842022-08-03 21:47:46291 void AppendString(base::StringPiece value);
[email protected]216ed0b2012-02-14 21:29:06292 void AppendObjectPath(const ObjectPath& value);
hashimoto89822572016-08-24 16:51:38293
294 // Appends a file descriptor to the message.
295 // The FD will be duplicated so you still have to close the original FD.
296 void AppendFileDescriptor(int value);
297
[email protected]a9e91492011-07-30 19:13:31298 // Opens an array. The array contents can be added to the array with
299 // |sub_writer|. The client code must close the array with
300 // CloseContainer(), once all contents are added.
301 //
302 // |signature| parameter is used to supply the D-Bus type signature of
303 // the array contents. For instance, if you want an array of strings,
304 // then you pass "s" as the signature.
305 //
306 // See the spec for details about the type signatures.
307 // http://dbus.freedesktop.org/doc/dbus-specification.html
308 // #message-protocol-signatures
309 //
310 void OpenArray(const std::string& signature, MessageWriter* sub_writer);
311 // Do the same for a variant.
312 void OpenVariant(const std::string& signature, MessageWriter* sub_writer);
313 // Do the same for Struct and dict entry. They don't need the signature.
314 void OpenStruct(MessageWriter* sub_writer);
315 void OpenDictEntry(MessageWriter* sub_writer);
316
317 // Close the container for a array/variant/struct/dict entry.
318 void CloseContainer(MessageWriter* sub_writer);
319
320 // Appends the array of bytes. Arrays of bytes are often used for
321 // exchanging binary blobs hence it's worth having a specialized
322 // function.
avi22437c692015-12-22 18:12:45323 void AppendArrayOfBytes(const uint8_t* values, size_t length);
[email protected]a9e91492011-07-30 19:13:31324
Abhishek Bhardwajb460dff2018-06-04 19:27:37325 // Appends array of int32_ts.
326 void AppendArrayOfInt32s(const int32_t* values, size_t length);
327
328 // Appends array of uint32_ts.
329 void AppendArrayOfUint32s(const uint32_t* values, size_t length);
330
warxa377c042016-03-30 21:27:41331 // Appends the array of doubles. Used for audio mixer matrix doubles.
332 void AppendArrayOfDoubles(const double* values, size_t length);
333
[email protected]8bc83fd2011-09-19 18:22:14334 // Appends the array of strings. Arrays of strings are often used for
335 // exchanging lists of names hence it's worth having a specialized
336 // function.
337 void AppendArrayOfStrings(const std::vector<std::string>& strings);
338
[email protected]090d8e512011-08-22 18:28:42339 // Appends the array of object paths. Arrays of object paths are often
[email protected]8bc83fd2011-09-19 18:22:14340 // used when exchanging object paths, hence it's worth having a
[email protected]090d8e512011-08-22 18:28:42341 // specialized function.
[email protected]216ed0b2012-02-14 21:29:06342 void AppendArrayOfObjectPaths(const std::vector<ObjectPath>& object_paths);
[email protected]090d8e512011-08-22 18:28:42343
[email protected]c033c5082012-02-09 18:14:08344 // Appends the protocol buffer as an array of bytes. The buffer is serialized
345 // into an array of bytes before communication, since protocol buffers are not
346 // a native dbus type. On the receiving size the array of bytes needs to be
347 // read and deserialized into a protocol buffer of the correct type. There are
thestig144c0c92017-05-18 05:58:02348 // methods in MessageReader to assist in this. Return true on success and
349 // false when serialization fails.
[email protected]c033c5082012-02-09 18:14:08350 bool AppendProtoAsArrayOfBytes(const google::protobuf::MessageLite& protobuf);
351
[email protected]a9e91492011-07-30 19:13:31352 // Appends the byte wrapped in a variant data container. Variants are
353 // widely used in D-Bus services so it's worth having a specialized
354 // function. For instance, The third parameter of
355 // "org.freedesktop.DBus.Properties.Set" is a variant.
avi22437c692015-12-22 18:12:45356 void AppendVariantOfByte(uint8_t value);
[email protected]a9e91492011-07-30 19:13:31357 void AppendVariantOfBool(bool value);
avi22437c692015-12-22 18:12:45358 void AppendVariantOfInt16(int16_t value);
359 void AppendVariantOfUint16(uint16_t value);
360 void AppendVariantOfInt32(int32_t value);
361 void AppendVariantOfUint32(uint32_t value);
362 void AppendVariantOfInt64(int64_t value);
363 void AppendVariantOfUint64(uint64_t value);
[email protected]a9e91492011-07-30 19:13:31364 void AppendVariantOfDouble(double value);
365 void AppendVariantOfString(const std::string& value);
[email protected]216ed0b2012-02-14 21:29:06366 void AppendVariantOfObjectPath(const ObjectPath& value);
[email protected]a9e91492011-07-30 19:13:31367
368 private:
369 // Helper function used to implement AppendByte etc.
370 void AppendBasic(int dbus_type, const void* value);
371
372 // Helper function used to implement AppendVariantOfByte() etc.
373 void AppendVariantOfBasic(int dbus_type, const void* value);
374
Arthur Sonzognib99722f2022-06-27 09:38:01375 raw_ptr<Message, DanglingUntriaged> message_;
[email protected]a9e91492011-07-30 19:13:31376 DBusMessageIter raw_message_iter_;
377 bool container_is_open_;
[email protected]a9e91492011-07-30 19:13:31378};
379
380// MessageReader is used to read incoming messages such as responses for
381// method calls.
382//
383// MessageReader manages an internal iterator to read data. All functions
384// starting with Pop advance the iterator on success.
[email protected]e3024462012-11-05 01:56:14385class CHROME_DBUS_EXPORT MessageReader {
[email protected]a9e91492011-07-30 19:13:31386 public:
[email protected]9400ff82012-02-07 23:48:35387 // The data will be read from the given |message|, which may be NULL to
388 // create a sub-reader for passing to PopArray, etc.
389 explicit MessageReader(Message* message);
Peter Boströmc68c5aa2021-09-28 00:28:00390
391 MessageReader(const MessageReader&) = delete;
392 MessageReader& operator=(const MessageReader&) = delete;
393
[email protected]a9e91492011-07-30 19:13:31394 ~MessageReader();
395
396 // Returns true if the reader has more data to read. The function is
397 // used to iterate contents in a container like:
398 //
399 // while (reader.HasMoreData())
400 // reader.PopString(&value);
401 bool HasMoreData();
402
403 // Gets the byte at the current iterator position.
404 // Returns true and advances the iterator on success.
405 // Returns false if the data type is not a byte.
avi22437c692015-12-22 18:12:45406 bool PopByte(uint8_t* value);
[email protected]a9e91492011-07-30 19:13:31407 bool PopBool(bool* value);
avi22437c692015-12-22 18:12:45408 bool PopInt16(int16_t* value);
409 bool PopUint16(uint16_t* value);
410 bool PopInt32(int32_t* value);
411 bool PopUint32(uint32_t* value);
412 bool PopInt64(int64_t* value);
413 bool PopUint64(uint64_t* value);
[email protected]a9e91492011-07-30 19:13:31414 bool PopDouble(double* value);
415 bool PopString(std::string* value);
[email protected]216ed0b2012-02-14 21:29:06416 bool PopObjectPath(ObjectPath* value);
hashimoto89822572016-08-24 16:51:38417 bool PopFileDescriptor(base::ScopedFD* value);
418
[email protected]a9e91492011-07-30 19:13:31419 // Sets up the given message reader to read an array at the current
420 // iterator position.
421 // Returns true and advances the iterator on success.
422 // Returns false if the data type is not an array
423 bool PopArray(MessageReader* sub_reader);
424 bool PopStruct(MessageReader* sub_reader);
425 bool PopDictEntry(MessageReader* sub_reader);
426 bool PopVariant(MessageReader* sub_reader);
427
428 // Gets the array of bytes at the current iterator position.
429 // Returns true and advances the iterator on success.
430 //
431 // Arrays of bytes are often used for exchanging binary blobs hence it's
432 // worth having a specialized function.
433 //
[email protected]38715910e2014-02-24 15:59:40434 // Ownership of the memory pointed to by |bytes| remains with the
435 // MessageReader; |bytes| must be copied if the contents will be referenced
436 // after the MessageReader is destroyed.
avi22437c692015-12-22 18:12:45437 bool PopArrayOfBytes(const uint8_t** bytes, size_t* length);
[email protected]a9e91492011-07-30 19:13:31438
Abhishek Bhardwajb460dff2018-06-04 19:27:37439 // Gets the array of int32_ts at the current iterator position.
440 bool PopArrayOfInt32s(const int32_t** signed_ints, size_t* length);
441
442 // Gets the array of uint32_ts at the current iterator position.
443 bool PopArrayOfUint32s(const uint32_t** unsigned_ints, size_t* length);
444
warxa377c042016-03-30 21:27:41445 // Gets the array of doubles at the current iterator position.
446 bool PopArrayOfDoubles(const double** doubles, size_t* length);
447
[email protected]38715910e2014-02-24 15:59:40448 // Gets the array of strings at the current iterator position. |strings| is
449 // cleared before being modified. Returns true and advances the iterator on
450 // success.
[email protected]8bc83fd2011-09-19 18:22:14451 //
452 // Arrays of strings are often used to communicate with D-Bus
453 // services like KWallet, hence it's worth having a specialized
454 // function.
455 bool PopArrayOfStrings(std::vector<std::string>* strings);
456
[email protected]a9e91492011-07-30 19:13:31457 // Gets the array of object paths at the current iterator position.
[email protected]38715910e2014-02-24 15:59:40458 // |object_paths| is cleared before being modified. Returns true and advances
459 // the iterator on success.
[email protected]a9e91492011-07-30 19:13:31460 //
461 // Arrays of object paths are often used to communicate with D-Bus
462 // services like NetworkManager, hence it's worth having a specialized
463 // function.
[email protected]216ed0b2012-02-14 21:29:06464 bool PopArrayOfObjectPaths(std::vector<ObjectPath>* object_paths);
[email protected]a9e91492011-07-30 19:13:31465
[email protected]c033c5082012-02-09 18:14:08466 // Gets the array of bytes at the current iterator position. It then parses
467 // this binary blob into the protocol buffer supplied.
468 // Returns true and advances the iterator on success. On failure returns false
469 // and emits an error message on the source of the failure. The two most
470 // common errors come from the iterator not currently being at a byte array or
471 // the wrong type of protocol buffer is passed in and the parse fails.
472 bool PopArrayOfBytesAsProto(google::protobuf::MessageLite* protobuf);
473
[email protected]a9e91492011-07-30 19:13:31474 // Gets the byte from the variant data container at the current iterator
475 // position.
476 // Returns true and advances the iterator on success.
477 //
478 // Variants are widely used in D-Bus services so it's worth having a
479 // specialized function. For instance, The return value type of
480 // "org.freedesktop.DBus.Properties.Get" is a variant.
avi22437c692015-12-22 18:12:45481 bool PopVariantOfByte(uint8_t* value);
[email protected]a9e91492011-07-30 19:13:31482 bool PopVariantOfBool(bool* value);
avi22437c692015-12-22 18:12:45483 bool PopVariantOfInt16(int16_t* value);
484 bool PopVariantOfUint16(uint16_t* value);
485 bool PopVariantOfInt32(int32_t* value);
486 bool PopVariantOfUint32(uint32_t* value);
487 bool PopVariantOfInt64(int64_t* value);
488 bool PopVariantOfUint64(uint64_t* value);
[email protected]a9e91492011-07-30 19:13:31489 bool PopVariantOfDouble(double* value);
490 bool PopVariantOfString(std::string* value);
[email protected]216ed0b2012-02-14 21:29:06491 bool PopVariantOfObjectPath(ObjectPath* value);
[email protected]a9e91492011-07-30 19:13:31492
493 // Get the data type of the value at the current iterator
494 // position. INVALID_DATA will be returned if the iterator points to the
495 // end of the message.
496 Message::DataType GetDataType();
497
benchand2c6ebe2014-08-25 06:50:29498 // Get the DBus signature of the value at the current iterator position.
499 // An empty string will be returned if the iterator points to the end of
500 // the message.
501 std::string GetDataSignature();
502
[email protected]a9e91492011-07-30 19:13:31503 private:
504 // Returns true if the data type at the current iterator position
505 // matches the given D-Bus type, such as DBUS_TYPE_BYTE.
506 bool CheckDataType(int dbus_type);
507
508 // Helper function used to implement PopByte() etc.
Abhishek Bhardwaj34928ece2018-05-23 07:22:19509 bool PopBasic(int dbus_type, void* value);
[email protected]a9e91492011-07-30 19:13:31510
511 // Helper function used to implement PopArray() etc.
512 bool PopContainer(int dbus_type, MessageReader* sub_reader);
513
514 // Helper function used to implement PopVariantOfByte() etc.
515 bool PopVariantOfBasic(int dbus_type, void* value);
516
Arthur Sonzognib99722f2022-06-27 09:38:01517 raw_ptr<Message, DanglingUntriaged> message_;
[email protected]a9e91492011-07-30 19:13:31518 DBusMessageIter raw_message_iter_;
[email protected]a9e91492011-07-30 19:13:31519};
520
521} // namespace dbus
522
523#endif // DBUS_MESSAGE_H_