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

Unified Diff: dbus/message.h

Issue 7492029: Implement classes used for manipulating D-Bus messages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add more headers Created 9 years, 5 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/dbus.gyp ('k') | dbus/message.cc » ('j') | dbus/message.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/message.h
diff --git a/dbus/message.h b/dbus/message.h
new file mode 100644
index 0000000000000000000000000000000000000000..b7b77cd295a0f1df9a4b4b6ffc1c17b1c584d9de
--- /dev/null
+++ b/dbus/message.h
@@ -0,0 +1,343 @@
+// Copyright (c) 2011 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.
+
+#ifndef DBUS_MESSAGE_H_
+#define DBUS_MESSAGE_H_
+#pragma once
+
+#include <string>
+#include <vector>
+#include <dbus/dbus.h>
+
+#include "base/basictypes.h"
+
+namespace dbus {
+
+class MessageWriter;
+class MessageReader;
+
+// Message is the base class of D-Bus message types. Client code should
+// usually use sub classes such as MethodCall and Response instead.
+//
+// The class name Message is very generic, but there should be no problem
+// as the class is inside 'dbus' namespace. We chose to name this way, as
+// libdbus defines lots of types starting with DBus, such as
+// DBusMessage. We should avoid confusion and conflict with these types.
+class Message {
+ public:
+ // The message type used in D-Bus. Redefined here so client code
+ // doesn't need to use raw D-Bus macros. DBUS_MESSAGE_TYPE_INVALID
+ // etc. are #define macros. Having an enum type here makes code a bit
+ // more type-safe:
+ //
+ // MessageType GetMessageType() vs. int GetMessageType()
+ //
stevenjb 2011/07/29 20:27:12 nit: vs. expample probably unnecessary; hopefully
satorux1 2011/07/29 22:08:20 Done.
+ enum MessageType {
+ MESSAGE_INVALID = DBUS_MESSAGE_TYPE_INVALID,
+ MESSAGE_METHOD_CALL = DBUS_MESSAGE_TYPE_METHOD_CALL,
+ MESSAGE_METHOD_RETURN = DBUS_MESSAGE_TYPE_METHOD_RETURN,
+ MESSAGE_SIGNAL = DBUS_MESSAGE_TYPE_SIGNAL,
+ MESSAGE_ERROR = DBUS_MESSAGE_TYPE_ERROR,
+ };
+
+ // The data type used in the D-Bus type system. See the comment at
+ // MessageType for why we are redefined data types here.
stevenjb 2011/07/29 20:27:12 nit: s/redefined/redefining
satorux1 2011/07/29 22:08:20 Done.
+ enum DataType {
+ INVALID_DATA = DBUS_TYPE_INVALID,
+ BYTE = DBUS_TYPE_BYTE,
+ BOOL = DBUS_TYPE_BOOLEAN,
+ INT16 = DBUS_TYPE_INT16,
+ UINT16 = DBUS_TYPE_UINT16,
+ INT32 = DBUS_TYPE_INT32,
+ UINT32 = DBUS_TYPE_UINT32,
+ INT64 = DBUS_TYPE_INT64,
+ UINT64 = DBUS_TYPE_UINT64,
+ DOUBLE = DBUS_TYPE_DOUBLE,
+ STRING = DBUS_TYPE_STRING,
+ OBJECT_PATH = DBUS_TYPE_OBJECT_PATH,
+ ARRAY = DBUS_TYPE_ARRAY,
+ STRUCT = DBUS_TYPE_STRUCT,
+ DICT_ENTRY = DBUS_TYPE_DICT_ENTRY,
+ VARIANT = DBUS_TYPE_VARIANT,
+ };
+
+ // Creates a Message. The internal raw message is NULL until it's set
+ // from outside by reset_raw_message().
+ Message();
+ virtual ~Message();
+
+ // Returns the type of the message. Returns MESSAGE_INVALID if
+ // raw_message_ is NULL.
+ MessageType GetMessageType();
+
+ DBusMessage* raw_message() { return raw_message_; }
+
+ // Resets raw_message_ with the given raw message. Takes the ownership
+ // of raw_message. raw_message_ will be unref'ed in the destructor.
+ void reset_raw_message(DBusMessage* raw_message);
+
+ // Returns the string representation of this message. Useful for
+ // debugging. The returned string consists of message headers such as
+ // destination if any, followed by a blank line, and the message
+ // payload. For example, a MethodCall's ToString() will look like:
+ //
+ // destination: com.example.Service
+ // path: /com/example/Object
+ // interface: com.example.Interface
+ // member: SomeMethod
+ //
+ // string \"payload\"
+ // ...
stevenjb 2011/07/29 20:27:12 nit: Probably don't need this much detail for a de
satorux1 2011/07/29 22:08:20 Done.
+ std::string ToString();
+
+ private:
+ // Helper function used in ToString().
+ std::string ToStringInternal(const std::string& indent,
+ MessageReader* reader);
+
+ DBusMessage* raw_message_;
+ DISALLOW_COPY_AND_ASSIGN(Message);
+};
+
+// MessageCall is a type of message used for calling a method via D-Bus.
+class MethodCall : public Message {
+ public:
+ // Creates a method call message for the specified interface name and
+ // the method name.
+ //
+ // For instance, to call "Get" method of DBUS_INTERFACE_INTROSPECTABLE
+ // interface ("org.freedesktop.DBus.Introspectable"), create a method
+ // call like this:
+ //
+ // MethodCall method_call(DBUS_INTERFACE_INTROSPECTABLE, "Get");
+ //
+ // The constructor creates the internal raw_message_, so the client
+ // doesn't need to set this by reset_raw_message().
stevenjb 2011/07/29 20:27:12 not: s/by/with
satorux1 2011/07/29 22:08:20 Done.
+ MethodCall(const std::string& interface_name,
+ const std::string& method_name);
+
+ const std::string& interface_name() { return interface_name_; }
+ const std::string& method_name() { return method_name_; }
+
+ // Sets the service name. This will be handled by the object proxy.
+ void SetServiceName(const std::string& service_name);
+ // Sets the object path. This will be handled by the object proxy.
+ void SetObjectPath(const std::string& object_path);
+
+ std::string interface_name_;
+ std::string method_name_;
+
+ DISALLOW_COPY_AND_ASSIGN(MethodCall);
+};
+
+// Response is a type of message used for receiving a response from a
+// method via D-Bus.
+class Response : public Message {
+ public:
+ // Creates a Response message. The internal raw message is
+ // NULL. ObjectProxy will set it properly once it gets a response from
stevenjb 2011/07/29 20:27:12 This is the only reference here to 'ObjectProxy'.
satorux1 2011/07/29 22:08:20 Done.
+ // the server.
+ Response();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(Response);
+};
+
+// MessageWriter is used to write outgoing messages for calling methods
+// and sending signals.
+class MessageWriter {
+ public:
+ // The data will be written into the given message.
stevenjb 2011/07/29 20:27:12 'The data' is unclear. Maybe something like "Data
satorux1 2011/07/29 22:08:20 Done.
+ MessageWriter(Message* message);
+ ~MessageWriter();
+
+ // Appends a byte to the message.
+ void AppendByte(uint8 value);
+ void AppendBool(bool value);
+ void AppendInt16(int16 value);
+ void AppendUint16(uint16 value);
+ void AppendInt32(int32 value);
+ void AppendUint32(uint32 value);
+ void AppendInt64(int64 value);
+ void AppendUint64(uint64 value);
+ void AppendDouble(double value);
+ void AppendString(const std::string& value);
+ void AppendObjectPath(const std::string& value);
+
+ // Opens an array. The array contents can be added to the array with
+ // |sub_writer|. The client code should close the array with
stevenjb 2011/07/29 20:27:12 s/should/must
satorux1 2011/07/29 22:08:20 Done.
+ // CloseContainer(), once all contents are added.
+ //
+ // |signature| parameter is used to supply the D-Bus type signature of
+ // the array contents. For instance, if you want an array of strings,
+ // then you pass "s" as the signature.
+ //
+ // See the spec for details about the type signatures.
+ // http://dbus.freedesktop.org/doc/dbus-specification.html
+ // #message-protocol-signatures
+ //
+ void OpenArray(const std::string& signature, MessageWriter* sub_writer);
+ // Do the same for a variant.
+ void OpenVariant(const std::string& signature, MessageWriter* sub_writer);
+ // Do the same for Struct and dict entry. They don't need the signature.
+ void OpenStruct(MessageWriter* sub_writer);
+ void OpenDictEntry(MessageWriter* sub_writer);
+
+ // Close the container for a array/variant/struct/dict entry.
+ void CloseContainer(MessageWriter* sub_writer);
+
+ // Appends the array of bytes. Arrays of bytes are often used for
+ // exchanging binary blobs hence it's worth having a specialized
+ // function.
+ void AppendArrayOfBytes(const uint8* values, size_t length);
+
+ // Appends the byte wrapped in a variant data container. Variants are
+ // widely used in D-Bus services so it's worth having a specialized
+ // function. For instance, The third parameter of
+ // "org.freedesktop.DBus.Properties.Set" is a variant.
+ void AppendVariantOfByte(uint8 value);
+ void AppendVariantOfBool(bool value);
+ void AppendVariantOfInt16(int16 value);
+ void AppendVariantOfUint16(uint16 value);
+ void AppendVariantOfInt32(int32 value);
+ void AppendVariantOfUint32(uint32 value);
+ void AppendVariantOfInt64(int64 value);
+ void AppendVariantOfUint64(uint64 value);
+ void AppendVariantOfDouble(double value);
+ void AppendVariantOfString(const std::string& value);
+ void AppendVariantOfObjectPath(const std::string& value);
+
+ private:
+ // Helper function used to implement AppendByte etc.
+ void AppendBasic(int dbus_type, const void* value);
+
+ // Helper function used to implement AppendVariantOfByte() etc.
+ void AppendVariantOfBasic(int dbus_type, const void* value);
+
+ Message* message_;
+ DBusMessageIter raw_message_iter_;
+ bool container_is_open_;
+
+ DISALLOW_COPY_AND_ASSIGN(MessageWriter);
+};
+
+// MessageReader is used to read incoming messages such as responses for
+// method calls.
+//
+// MessageReader manages an internal iterator to read data. All functions
+// starting with Pop advance the iterator on success.
+//
+// The main design goal of MessageReader and MessageWriter classes is to
+// provide a type safe API. In the past, there was a Chrome OS blocker
+// bug, that took days to fix, that would have been prevented if the API
+// was type-safe.
+//
+// For instance, instead of doing something like:
+//
+// // We shouldn't add '&' to str here, but it compiles with '&' added.
+// dbus_g_proxy_call(..., G_TYPE_STRING, str, G_TYPE_INVALID, ...)
+//
+// We want to do something like:
+//
+// writer.AppendString(str);
stevenjb 2011/07/29 20:27:12 Move this comment (starting with 'The main design
satorux1 2011/07/29 22:08:20 Done.
+//
+class MessageReader {
+ public:
+ // The data will be read from the given message.
+ MessageReader(Message* message);
+ ~MessageReader();
+
+ // Returns true if the reader has more data to read. The function is
+ // used to iterate contents in a container like:
+ //
+ // while (reader.HasMoreData())
+ // reader.PopString(&value);
+ bool HasMoreData();
+
+ // Gets the byte at the current iterator position. On success, advances
+ // the iterator and returns true. It's an error if the actual data type
+ // is not a byte, so false will be returned in this case.
+ bool PopByte(uint8* value);
+ bool PopBool(bool* value);
+ bool PopInt16(int16* value);
+ bool PopUint16(uint16* value);
+ bool PopInt32(int32* value);
+ bool PopUint32(uint32* value);
+ bool PopInt64(int64* value);
+ bool PopUint64(uint64* value);
+ bool PopDouble(double* value);
+ bool PopString(std::string* value);
+ bool PopObjectPath(std::string* value);
+
+ // Sets up the given message reader to read an array at the current
+ // iterator position. On success, advances the iterator and returns
+ // true. It's an error if the actual data type is not an array, so false
+ // will be returned in this case.
stevenjb 2011/07/29 20:27:12 nit: separate line for return values: Returns tru
satorux1 2011/07/29 22:08:20 Done.
+ bool PopArray(MessageReader* sub_reader);
+ // The following functions do the same for other container types.
+ bool PopStruct(MessageReader* sub_reader);
+ bool PopDictEntry(MessageReader* sub_reader);
+ bool PopVariant(MessageReader* sub_reader);
+
+ // Gets the array of bytes at the current iterator position. On success,
+ // advances the iterator and returns true. Arrays of bytes are often
stevenjb 2011/07/29 20:27:12 nit: Separate line for return value: Returns true
+ // used for exchanging binary blobs hence it's worth having a
+ // specialized function.
+ //
+ // |bytes| will point to the beginning of the array in the underlying
+ // message. You should copy bytes to something like a vector, if you are
+ // going to use the data after the destruction of the message,
stevenjb 2011/07/29 20:27:12 Trailing comma. Maybe say something like '|bytes|
satorux1 2011/07/29 22:08:20 Done.
+ bool PopArrayOfBytes(uint8** bytes, size_t* length);
+
+ // Gets the array of object paths at the current iterator position. On
+ // success, advances the iterator and returns true. Arrays of object
stevenjb 2011/07/29 20:27:12 nit: separate line for return value.
satorux1 2011/07/29 22:08:20 Done.
+ // paths are often used to communicate with D-Bus services like
+ // NetworkManager, hence it's worth having a specialized function.
+ bool PopArrayOfObjectPaths(std::vector<std::string>* object_paths);
+
+ // Gets the byte from the variant data container at the current iterator
+ // position. On success, returns true and advances the
stevenjb 2011/07/29 20:27:12 nit: separate line for return value.
satorux1 2011/07/29 22:08:20 Done.
+ // iterator. Variants are widely used in D-Bus services so it's worth
+ // having a specialized function. For instance, The return value type of
+ // "org.freedesktop.DBus.Properties.Get" is a variant.
+ bool PopVariantOfByte(uint8* value);
+ bool PopVariantOfBool(bool* value);
+ bool PopVariantOfInt16(int16* value);
+ bool PopVariantOfUint16(uint16* value);
+ bool PopVariantOfInt32(int32* value);
+ bool PopVariantOfUint32(uint32* value);
+ bool PopVariantOfInt64(int64* value);
+ bool PopVariantOfUint64(uint64* value);
+ bool PopVariantOfDouble(double* value);
+ bool PopVariantOfString(std::string* value);
+ bool PopVariantOfObjectPath(std::string* value);
+
+ // Get the data type of the value at the current iterator
+ // position. INVALID_DATA will be returned if the iterator points to the
+ // end of the message.
+ Message::DataType GetDataType();
+
+ private:
+ // Returns true if the data type at the current iterator position
+ // matches the given D-Bus type, such as DBUS_TYPE_BYTE.
+ bool CheckDataType(int dbus_type);
+
+ // Helper function used to implement PopByte() etc.
+ bool PopBasic(int dbus_type, void *value);
+
+ // Helper function used to implement PopArray() etc.
+ bool PopContainer(int dbus_type, MessageReader* sub_reader);
+
+ // Helper function used to implement PopVariantOfByte() etc.
+ bool PopVariantOfBasic(int dbus_type, void* value);
+
+ Message* message_;
+ DBusMessageIter raw_message_iter_;
+
+ DISALLOW_COPY_AND_ASSIGN(MessageReader);
+};
+
+} // namespace dbus
+
+#endif // DBUS_MESSAGE_H_
« no previous file with comments | « dbus/dbus.gyp ('k') | dbus/message.cc » ('j') | dbus/message.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698