]> git.proxmox.com Git - librados2-perl.git/commitdiff
mon_command: refactor to pass all data to perl
authorAaron Lauterer <a.lauterer@proxmox.com>
Fri, 25 Mar 2022 10:55:04 +0000 (11:55 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 17 Nov 2022 13:04:02 +0000 (14:04 +0100)
By passing back all return values from the Ceph API (RADOS.xs) to Perl
we are more flexible to make more than just the data available further
up the stack. These values are:

* return code
* status message (can contain useful information)
* data

The Ceph API interaction happens in a child process. We need to en- and
decode the returned hash in JSON to pass it between the child and parent
process.

RADOS.pm::mon_command now returns not just the data, but all information
as a hash ref.  Therefore dependent packages (pve-manager, pve-storage)
need to adapt.

Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com>
PVE/RADOS.pm
RADOS.xs

index 463abc785398ffabd33e0c62b2111418d790f143..bec502812e98843fcf2ac03174f0ad954a63fa8f 100644 (file)
@@ -201,7 +201,7 @@ sub new {
            my $res;
            eval {
                if ($cmd eq 'M') { # rados monitor commands
-                   $res = pve_rados_mon_command($self->{conn}, [ $data ]);
+                   $res = encode_json(pve_rados_mon_command($self->{conn}, [ $data ]));
                } elsif ($cmd eq 'C') { # class methods
                    my $aref = decode_json($data);
                    my $method = shift @$aref;
@@ -265,13 +265,25 @@ sub mon_command {
 
     my $json = encode_json($cmd);
 
-    my $raw = eval { $sendcmd->($self, 'M', $json) };
+    my $ret = $sendcmd->($self, 'M', $json);
     die "error with '$cmd->{prefix}': $@" if $@;
 
+    my $raw = decode_json($ret);
+
+    die "error with '$cmd->{prefix}': mon_command failed - $raw->{status_message}\n"
+       if $raw->{return_code} < 0;
+
+    my $data = '';
     if ($cmd->{format} && $cmd->{format} eq 'json') {
-       return length($raw) ? decode_json($raw) : undef;
+       $data = length($raw->{data}) ? decode_json($raw->{data}) : undef;
+    } else {
+       $data = $raw->{data};
     }
-    return $raw;
+    return {
+       return_code => $raw->{return_code},
+       status_message => $raw->{status_message},
+       data => $data,
+    };
 }
 
 
index 9afba1c06377285329578791490e9003f6959ade..45f634c3f3bfc4c87aa7b98733f2b78965a9176c 100644 (file)
--- a/RADOS.xs
+++ b/RADOS.xs
@@ -98,7 +98,7 @@ CODE:
     rados_shutdown(cluster);
 }
 
-SV *
+HV *
 pve_rados_mon_command(cluster, cmds)
 rados_t cluster
 AV *cmds
@@ -136,18 +136,12 @@ CODE:
         &outslen
     );
 
-    if (ret < 0) {
-        char msg[4096];
-        if (outslen > sizeof(msg)) {
-            outslen = sizeof(msg);
-        }
-        snprintf(msg, sizeof(msg), "mon_command failed - %.*s\n", (int)outslen, outs);
-        rados_buffer_free(outs);
-        rados_buffer_free(outbuf);
-        die(msg);
-    }
+    HV * rh = (HV *)sv_2mortal((SV *)newHV());
 
-    RETVAL = newSVpv(outbuf, outbuflen);
+    (void)hv_store(rh, "return_code", 11, newSViv(ret), 0);
+    (void)hv_store(rh, "status_message", 14, newSVpv(outs, outslen), 0);
+    (void)hv_store(rh, "data", 4, newSVpv(outbuf, outbuflen), 0);
+    RETVAL = rh;
 
     rados_buffer_free(outbuf);
     rados_buffer_free(outs);