Darin Petkov | 63138a9 | 2012-02-06 14:09:15 +0100 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Chris Masone | d7732e4 | 2011-05-20 11:08:56 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef SHILL_DBUS_ADAPTOR_H_ |
| 6 | #define SHILL_DBUS_ADAPTOR_H_ |
| 7 | |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 8 | #include <map> |
Chris Masone | d7732e4 | 2011-05-20 11:08:56 -0700 | [diff] [blame] | 9 | #include <string> |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 10 | #include <vector> |
Chris Masone | d7732e4 | 2011-05-20 11:08:56 -0700 | [diff] [blame] | 11 | |
Chris Masone | d0ceb8c | 2011-06-02 10:05:39 -0700 | [diff] [blame] | 12 | #include <base/basictypes.h> |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 13 | #include <base/callback.h> |
| 14 | #include <base/memory/weak_ptr.h> |
Chris Masone | d7732e4 | 2011-05-20 11:08:56 -0700 | [diff] [blame] | 15 | #include <dbus-c++/dbus.h> |
| 16 | |
Chris Masone | 889666b | 2011-07-03 12:58:50 -0700 | [diff] [blame] | 17 | #include "shill/accessor_interface.h" |
Darin Petkov | e5bc2cb | 2011-12-07 14:47:32 +0100 | [diff] [blame] | 18 | #include "shill/adaptor_interfaces.h" |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 19 | #include "shill/callbacks.h" |
Darin Petkov | e5bc2cb | 2011-12-07 14:47:32 +0100 | [diff] [blame] | 20 | #include "shill/error.h" |
Chris Masone | 889666b | 2011-07-03 12:58:50 -0700 | [diff] [blame] | 21 | |
Chris Masone | d7732e4 | 2011-05-20 11:08:56 -0700 | [diff] [blame] | 22 | namespace shill { |
| 23 | |
| 24 | #define SHILL_INTERFACE "org.chromium.flimflam" |
| 25 | #define SHILL_PATH "/org/chromium/flimflam" |
| 26 | |
mukesh agrawal | 7a4e400 | 2011-09-06 11:26:05 -0700 | [diff] [blame] | 27 | class KeyValueStore; |
Chris Masone | b925cc8 | 2011-06-22 15:39:57 -0700 | [diff] [blame] | 28 | class PropertyStore; |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 29 | |
Chris Masone | d7732e4 | 2011-05-20 11:08:56 -0700 | [diff] [blame] | 30 | // Superclass for all DBus-backed Adaptor objects |
mukesh agrawal | f1f490c | 2011-09-06 15:20:22 -0700 | [diff] [blame] | 31 | class DBusAdaptor : public DBus::ObjectAdaptor, |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 32 | public DBus::IntrospectableAdaptor, |
| 33 | public base::SupportsWeakPtr<DBusAdaptor> { |
Chris Masone | d7732e4 | 2011-05-20 11:08:56 -0700 | [diff] [blame] | 34 | public: |
mukesh agrawal | cbfb34e | 2013-04-17 19:33:25 -0700 | [diff] [blame] | 35 | static const char kNullPath[]; |
| 36 | |
Chris Masone | b925cc8 | 2011-06-22 15:39:57 -0700 | [diff] [blame] | 37 | DBusAdaptor(DBus::Connection* conn, const std::string &object_path); |
Chris Masone | d0ceb8c | 2011-06-02 10:05:39 -0700 | [diff] [blame] | 38 | virtual ~DBusAdaptor(); |
| 39 | |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 40 | // Set the property with |name| through |store|. Returns true if and |
| 41 | // only if the property was changed. Updates |error| if a) an error |
| 42 | // was encountered, and b) |error| is non-NULL. Otherwise, |error| is |
| 43 | // unchanged. |
mukesh agrawal | 6bb9e7c | 2012-01-30 14:57:54 -0800 | [diff] [blame] | 44 | static bool SetProperty(PropertyStore *store, |
| 45 | const std::string &name, |
| 46 | const ::DBus::Variant &value, |
| 47 | ::DBus::Error *error); |
mukesh agrawal | de29fa8 | 2011-09-16 16:16:36 -0700 | [diff] [blame] | 48 | static bool GetProperties(const PropertyStore &store, |
Chris Masone | a8a2c25 | 2011-06-27 22:16:30 -0700 | [diff] [blame] | 49 | std::map<std::string, ::DBus::Variant> *out, |
| 50 | ::DBus::Error *error); |
mukesh agrawal | 8abd2f6 | 2012-01-30 14:56:14 -0800 | [diff] [blame] | 51 | // Look for a property with |name| in |store|. If found, reset the |
| 52 | // property to its "factory" value. If the property can not be |
| 53 | // found, or if it can not be cleared (e.g., because it is |
| 54 | // read-only), set |error| accordingly. |
| 55 | // |
| 56 | // Returns true if the property was found and cleared; returns false |
| 57 | // otherwise. |
| 58 | static bool ClearProperty(PropertyStore *store, |
| 59 | const std::string &name, |
| 60 | ::DBus::Error *error); |
mukesh agrawal | 7a4e400 | 2011-09-06 11:26:05 -0700 | [diff] [blame] | 61 | static void ArgsToKeyValueStore( |
| 62 | const std::map<std::string, ::DBus::Variant> &args, |
| 63 | KeyValueStore *out, |
| 64 | Error *error); |
Chris Masone | d0ceb8c | 2011-06-02 10:05:39 -0700 | [diff] [blame] | 65 | |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 66 | static ::DBus::Variant BoolToVariant(bool value); |
Paul Stewart | ced6a0b | 2011-11-08 15:32:04 -0800 | [diff] [blame] | 67 | static ::DBus::Variant ByteArraysToVariant(const ByteArrays &value); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 68 | static ::DBus::Variant ByteToVariant(uint8 value); |
| 69 | static ::DBus::Variant Int16ToVariant(int16 value); |
| 70 | static ::DBus::Variant Int32ToVariant(int32 value); |
Darin Petkov | 63138a9 | 2012-02-06 14:09:15 +0100 | [diff] [blame] | 71 | static ::DBus::Variant KeyValueStoreToVariant(const KeyValueStore &value); |
Chris Masone | b925cc8 | 2011-06-22 15:39:57 -0700 | [diff] [blame] | 72 | static ::DBus::Variant PathToVariant(const ::DBus::Path &value); |
mukesh agrawal | 2366eed | 2012-03-20 18:21:50 -0700 | [diff] [blame] | 73 | static ::DBus::Variant PathsToVariant( |
mukesh agrawal | 3239932 | 2011-09-01 10:53:43 -0700 | [diff] [blame] | 74 | const std::vector< ::DBus::Path> &value); |
Chris Masone | b925cc8 | 2011-06-22 15:39:57 -0700 | [diff] [blame] | 75 | static ::DBus::Variant StringToVariant(const std::string &value); |
Chris Masone | 889666b | 2011-07-03 12:58:50 -0700 | [diff] [blame] | 76 | static ::DBus::Variant StringmapToVariant(const Stringmap &value); |
| 77 | static ::DBus::Variant StringmapsToVariant(const Stringmaps &value); |
| 78 | static ::DBus::Variant StringsToVariant(const Strings &value); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 79 | static ::DBus::Variant Uint16ToVariant(uint16 value); |
mukesh agrawal | e7c7e65 | 2013-06-18 17:19:39 -0700 | [diff] [blame] | 80 | static ::DBus::Variant Uint16sToVariant(const Uint16s &value); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 81 | static ::DBus::Variant Uint32ToVariant(uint32 value); |
Paul Stewart | e18c33b | 2012-07-10 20:48:44 -0700 | [diff] [blame] | 82 | static ::DBus::Variant Uint64ToVariant(uint64 value); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 83 | |
| 84 | static bool IsBool(::DBus::Signature signature); |
| 85 | static bool IsByte(::DBus::Signature signature); |
Paul Stewart | ced6a0b | 2011-11-08 15:32:04 -0800 | [diff] [blame] | 86 | static bool IsByteArrays(::DBus::Signature signature); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 87 | static bool IsInt16(::DBus::Signature signature); |
| 88 | static bool IsInt32(::DBus::Signature signature); |
Chris Masone | 3bd3c8c | 2011-06-13 08:20:26 -0700 | [diff] [blame] | 89 | static bool IsPath(::DBus::Signature signature); |
mukesh agrawal | 2366eed | 2012-03-20 18:21:50 -0700 | [diff] [blame] | 90 | static bool IsPaths(::DBus::Signature signature); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 91 | static bool IsString(::DBus::Signature signature); |
| 92 | static bool IsStringmap(::DBus::Signature signature); |
Chris Masone | 27c4aa5 | 2011-07-02 13:10:14 -0700 | [diff] [blame] | 93 | static bool IsStringmaps(::DBus::Signature signature); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 94 | static bool IsStrings(::DBus::Signature signature); |
| 95 | static bool IsUint16(::DBus::Signature signature); |
mukesh agrawal | e7c7e65 | 2013-06-18 17:19:39 -0700 | [diff] [blame] | 96 | static bool IsUint16s(::DBus::Signature signature); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 97 | static bool IsUint32(::DBus::Signature signature); |
Paul Stewart | e18c33b | 2012-07-10 20:48:44 -0700 | [diff] [blame] | 98 | static bool IsUint64(::DBus::Signature signature); |
Eric Shienbrood | b23d4b9 | 2012-02-16 12:32:42 -0500 | [diff] [blame] | 99 | static bool IsKeyValueStore(::DBus::Signature signature); |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 100 | |
Darin Petkov | e5bc2cb | 2011-12-07 14:47:32 +0100 | [diff] [blame] | 101 | protected: |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 102 | ResultCallback GetMethodReplyCallback(const DBus::Tag *tag); |
Christopher Wiley | 0d9cf0c | 2013-02-19 19:24:57 -0800 | [diff] [blame] | 103 | // It would be nice if these two methods could be templated. Unfortunately, |
| 104 | // attempts to do so will trigger some fairly esoteric warnings from the |
| 105 | // base library. |
| 106 | ResultStringCallback GetStringMethodReplyCallback(const DBus::Tag *tag); |
| 107 | ResultBoolCallback GetBoolMethodReplyCallback(const DBus::Tag *tag); |
| 108 | |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 109 | // Adaptors call this method just before returning. If |error| |
| 110 | // indicates that the operation has completed, with no asynchronously |
| 111 | // delivered result expected, then a DBus method reply is immediately |
| 112 | // sent to the client that initiated the method invocation. Otherwise, |
| 113 | // the operation is ongoing, and the result will be sent to the client |
| 114 | // when the operation completes at some later time. |
| 115 | // |
| 116 | // Adaptors should always construct an Error initialized to the value |
| 117 | // Error::kOperationInitiated. A pointer to this Error is passed down |
| 118 | // through the call stack. Any layer that determines that the operation |
| 119 | // has completed, either because of a failure that prevents carrying it |
| 120 | // out, or because it was possible to complete it without sending a request |
| 121 | // to an external server, should call error.Reset() to indicate success, |
| 122 | // or to some error type to reflect the kind of failure that occurred. |
| 123 | // Otherwise, they should leave the Error alone. |
| 124 | // |
| 125 | // The general structure of an adaptor method is |
| 126 | // |
| 127 | // void XXXXDBusAdaptor::SomeMethod(<args...>, DBus::Error &error) { |
| 128 | // Error e(Error::kOperationInitiated); |
| 129 | // DBus::Tag *tag = new DBus::Tag(); |
| 130 | // xxxx_->SomeMethod(<args...>, &e, GetMethodReplyCallback(tag)); |
| 131 | // ReturnResultOrDefer(tag, e, &error); |
| 132 | // } |
| 133 | // |
| 134 | void ReturnResultOrDefer(const DBus::Tag *tag, |
| 135 | const Error &error, |
| 136 | DBus::Error *dberror); |
Darin Petkov | e5bc2cb | 2011-12-07 14:47:32 +0100 | [diff] [blame] | 137 | |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 138 | private: |
Paul Stewart | ced6a0b | 2011-11-08 15:32:04 -0800 | [diff] [blame] | 139 | static const char kByteArraysSig[]; |
mukesh agrawal | 2366eed | 2012-03-20 18:21:50 -0700 | [diff] [blame] | 140 | static const char kPathsSig[]; |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 141 | static const char kStringmapSig[]; |
Chris Masone | 27c4aa5 | 2011-07-02 13:10:14 -0700 | [diff] [blame] | 142 | static const char kStringmapsSig[]; |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 143 | static const char kStringsSig[]; |
mukesh agrawal | e7c7e65 | 2013-06-18 17:19:39 -0700 | [diff] [blame] | 144 | static const char kUint16sSig[]; |
Darin Petkov | e5bc2cb | 2011-12-07 14:47:32 +0100 | [diff] [blame] | 145 | |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 146 | void MethodReplyCallback(const DBus::Tag *tag, const Error &error); |
Christopher Wiley | 0d9cf0c | 2013-02-19 19:24:57 -0800 | [diff] [blame] | 147 | void StringMethodReplyCallback(const DBus::Tag *tag, const Error &error, |
| 148 | const std::string &returned); |
| 149 | void BoolMethodReplyCallback(const DBus::Tag *tag, const Error &error, |
| 150 | bool returned); |
| 151 | template<typename T> |
| 152 | void TypedMethodReplyCallback(const DBus::Tag *tag, const Error &error, |
| 153 | const T &returned); |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 154 | void DeferReply(const DBus::Tag *tag); |
| 155 | void ReplyNow(const DBus::Tag *tag); |
Christopher Wiley | 0d9cf0c | 2013-02-19 19:24:57 -0800 | [diff] [blame] | 156 | template <typename T> |
| 157 | void TypedReplyNow(const DBus::Tag *tag, const T &value); |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 158 | void ReplyNowWithError(const DBus::Tag *tag, const DBus::Error &error); |
| 159 | |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 160 | DISALLOW_COPY_AND_ASSIGN(DBusAdaptor); |
Chris Masone | d7732e4 | 2011-05-20 11:08:56 -0700 | [diff] [blame] | 161 | }; |
| 162 | |
| 163 | } // namespace shill |
| 164 | #endif // SHILL_DBUS_ADAPTOR_H_ |