diff mbox

[01/21] Monitor: Introduce cmd_new_ret()

Message ID 1265853007-27300-2-git-send-email-lcapitulino@redhat.com
State New
Headers show

Commit Message

Luiz Capitulino Feb. 11, 2010, 1:49 a.m. UTC
In order to implement the new error handling and debugging
mechanism for command handlers, we need to change the cmd_new()
callback to return a value.

This commit introduces cmd_new_ret(), which returns a value and
will be used only temporarily to handle the transition from
cmd_new().

That is, as soon as all command handlers are ported to cmd_new_ret(),
it will be renamed back to cmd_new() and the new error handling
and debugging mechanism will be added on top of it.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
---
 monitor.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

Comments

Anthony Liguori Feb. 19, 2010, 9:28 p.m. UTC | #1
On 02/10/2010 07:49 PM, Luiz Capitulino wrote:
> In order to implement the new error handling and debugging
> mechanism for command handlers, we need to change the cmd_new()
> callback to return a value.
>
> This commit introduces cmd_new_ret(), which returns a value and
> will be used only temporarily to handle the transition from
> cmd_new().
>
> That is, as soon as all command handlers are ported to cmd_new_ret(),
> it will be renamed back to cmd_new() and the new error handling
> and debugging mechanism will be added on top of it.
>
> Signed-off-by: Luiz Capitulino<lcapitulino@redhat.com>
>    

Applied all.  Thanks!

Regards,

Anthony Liguori
diff mbox

Patch

diff --git a/monitor.c b/monitor.c
index ae125b8..63c62fb 100644
--- a/monitor.c
+++ b/monitor.c
@@ -98,6 +98,7 @@  typedef struct mon_cmd_t {
     const char *params;
     const char *help;
     void (*user_print)(Monitor *mon, const QObject *data);
+    int (*cmd_new_ret)(Monitor *mon, const QDict *params, QObject **ret_data);
     union {
         void (*info)(Monitor *mon);
         void (*info_new)(Monitor *mon, QObject **ret_data);
@@ -3801,7 +3802,11 @@  static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
 {
     QObject *data = NULL;
 
-    cmd->mhandler.cmd_new(mon, params, &data);
+    if (cmd->cmd_new_ret) {
+        cmd->cmd_new_ret(mon, params, &data);
+    } else {
+        cmd->mhandler.cmd_new(mon, params, &data);
+    }
 
     if (is_async_return(data)) {
         /*