When virDBusMessageRead() and virDBusMessageDecode were first added in
commit
834c9c94, they were identical except that virDBusMessageRead()
would unref the message after decoding it.
This difference was eliminated later in commit
dc7f3ffc after it
became apparent that unref-ing the message so soon was never the right
thing to do. The two identical functions remained though, with the
tests and virDBus library itself calling the Decode variant, and all
other users calling the Read variant.
This patch eliminates the duplication, switching all users to
virDBusMessageDecode (and moving the nice API documentation comment
from the Read function up to the Decode function).
Signed-off-by: Laine Stump <laine@laine.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
virDBusHasSystemBus;
virDBusMessageDecode;
virDBusMessageEncode;
-virDBusMessageRead;
virDBusMessageUnref;
virDBusSetSharedBus;
}
-int virDBusMessageDecode(DBusMessage* msg,
- const char *types,
- ...)
+/**
+ * virDBusMessageDecode:
+ * @msg: the reply to decode
+ * @types: type signature for following return values
+ * @...: pointers in which to store return values
+ *
+ * The @types type signature is the same format as
+ * that used for the virDBusCallMethod. The difference
+ * is that each variadic parameter must be a pointer to
+ * be filled with the values. eg instead of passing an
+ * 'int', pass an 'int *'.
+ *
+ */
+int
+virDBusMessageDecode(DBusMessage* msg,
+ const char *types,
+ ...)
{
int ret;
va_list args;
}
-/**
- * virDBusMessageRead:
- * @msg: the reply to decode
- * @types: type signature for following return values
- * @...: pointers in which to store return values
- *
- * The @types type signature is the same format as
- * that used for the virDBusCallMethod. The difference
- * is that each variadic parameter must be a pointer to
- * be filled with the values. eg instead of passing an
- * 'int', pass an 'int *'.
- *
- */
-int virDBusMessageRead(DBusMessage *msg,
- const char *types, ...)
-{
- va_list args;
- int ret;
-
- va_start(args, types);
- ret = virDBusMessageDecodeArgs(msg, types, args);
- va_end(args);
-
- return ret;
-}
-
static int virDBusIsServiceInList(const char *listMethod, const char *name)
{
DBusConnection *conn;
return -1;
}
-int virDBusMessageRead(DBusMessage *msg ATTRIBUTE_UNUSED,
- const char *types ATTRIBUTE_UNUSED, ...)
-{
- virReportError(VIR_ERR_INTERNAL_ERROR,
- "%s", _("DBus support not compiled into this binary"));
- return -1;
-}
int virDBusMessageEncode(DBusMessage* msg ATTRIBUTE_UNUSED,
const char *types ATTRIBUTE_UNUSED,
const char *iface,
const char *member,
const char *types, ...);
-int virDBusMessageRead(DBusMessage *msg,
- const char *types, ...);
+int virDBusMessageDecode(DBusMessage *msg,
+ const char *types, ...);
void virDBusMessageUnref(DBusMessage *msg);
int virDBusIsServiceEnabled(const char *name);
const char *types,
...);
-int virDBusMessageDecode(DBusMessage* msg,
- const char *types,
- ...);
-
#endif /* LIBVIRT_VIRDBUSPRIV_H */
"version") < 0)
goto cleanup;
- if (virDBusMessageRead(reply, "v", "s", &versionStr) < 0)
+ if (virDBusMessageDecode(reply, "v", "s", &versionStr) < 0)
goto cleanup;
if (virParseVersionString(versionStr, version, false) < 0) {
goto cleanup;
}
- if (virDBusMessageRead(reply, "v", "s", &backendStr) < 0)
+ if (virDBusMessageDecode(reply, "v", "s", &backendStr) < 0)
goto cleanup;
VIR_DEBUG("FirewallD backend: %s", backendStr);
NULL) < 0)
goto cleanup;
- if (virDBusMessageRead(reply, "a&s", nzones, zones) < 0)
+ if (virDBusMessageDecode(reply, "a&s", nzones, zones) < 0)
goto cleanup;
ret = 0;
goto cleanup;
}
} else {
- if (virDBusMessageRead(reply, "s", output) < 0)
+ if (virDBusMessageDecode(reply, "s", output) < 0)
goto cleanup;
}
"" /* cancellation ID */) < 0)
goto cleanup;
- if (virDBusMessageRead(reply,
- "(bba&{ss})",
- &is_authorized,
- &is_challenge,
- &nretdetails,
- &retdetails) < 0)
+ if (virDBusMessageDecode(reply,
+ "(bba&{ss})",
+ &is_authorized,
+ &is_challenge,
+ &nretdetails,
+ &retdetails) < 0)
goto cleanup;
for (i = 0; i < (nretdetails / 2); i++) {
"u", pid) < 0)
goto cleanup;
- if (virDBusMessageRead(reply, "o", &object) < 0)
+ if (virDBusMessageDecode(reply, "o", &object) < 0)
goto cleanup;
virDBusMessageUnref(reply);
"Name") < 0)
goto cleanup;
- if (virDBusMessageRead(reply, "v", "s", &name) < 0)
+ if (virDBusMessageDecode(reply, "v", "s", &name) < 0)
goto cleanup;
VIR_DEBUG("Domain with pid %lld has machine name '%s'",
NULL) < 0)
return ret;
- if ((ret = virDBusMessageRead(message, "s", &response)) < 0)
+ if ((ret = virDBusMessageDecode(message, "s", &response)) < 0)
goto cleanup;
*result = STREQ("yes", response) || STREQ("challenge", response);
int is_authorized = 1;
int is_challenge = 0;
- if (virDBusMessageRead(message,
- "(sa{sv})sa&{ss}us",
- &type,
- 3,
- &pidkey, "u", &pidval,
- &timekey, "t", &timeval,
- &uidkey, "i", &uidval,
- &actionid,
- &detailslen,
- &details,
- &allowInteraction,
- &cancellationId) < 0)
+ if (virDBusMessageDecode(message,
+ "(sa{sv})sa&{ss}us",
+ &type,
+ 3,
+ &pidkey, "u", &pidval,
+ &timekey, "t", &timeval,
+ &uidkey, "i", &uidval,
+ &actionid,
+ &detailslen,
+ &details,
+ &allowInteraction,
+ &cancellationId) < 0)
goto error;
if (STREQ(actionid, "org.libvirt.test.success")) {