[libvirt] [RFC][PATCH 5/7] interface: expose to virsh

Daniel P. Berrange berrange at redhat.com
Tue May 10 09:40:25 UTC 2011


On Mon, May 09, 2011 at 09:28:51PM +0200, Michal Privoznik wrote:
> ---
>  tools/virsh.c |   59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  1 files changed, 59 insertions(+), 0 deletions(-)
> 
> diff --git a/tools/virsh.c b/tools/virsh.c
> index 2b16714..60efa10 100644
> --- a/tools/virsh.c
> +++ b/tools/virsh.c
> @@ -5048,6 +5048,64 @@ cmdInterfaceDestroy(vshControl *ctl, const vshCmd *cmd)
>      return ret;
>  }
>  
> +/*
> + * "iface-change" command
> + */
> +static const vshCmdInfo info_interface_change[] = {
> +    {"help", N_("manage interface changes by creating a restore point, "
> +                "rollback to previous configuration, or removing restore "
> +                "point")},
> +    {"desc", N_("manage physical host interface changes")},
> +    {NULL, NULL}
> +};
> +
> +static const vshCmdOptDef opts_interface_change[] = {
> +    {"start", VSH_OT_BOOL, 0, N_("create a restore point")},
> +    {"commit", VSH_OT_BOOL, 0, N_("commit changes to interface")},
> +    {"rollback", VSH_OT_BOOL, 0, N_("cancel all changes and roll back to "
> +                                    "known good configuration")},
> +    {NULL, 0, 0, NULL}
> +};
> +
> +static bool
> +cmdInterfaceChnage(vshControl *ctl, const vshCmd *cmd)
> +{
> +    bool ret = false;
> +    bool start = vshCommandOptBool(cmd, "start");
> +    bool commit = vshCommandOptBool(cmd, "commit");
> +    bool rollback = vshCommandOptBool(cmd, "rollback");
> +    int num_opts = 0;
> +    int func_ret = -1;
> +
> +    if (start)
> +        num_opts++;
> +    if (commit)
> +        num_opts++;
> +    if (rollback)
> +        num_opts++;
> +    if (num_opts != 1) {
> +        vshError(ctl, _("Please specify exactly one option"));
> +        goto end;
> +    }
> +
> +    if (!vshConnectionUsability(ctl, ctl->conn))
> +        goto end;
> +
> +    if (start)
> +        func_ret = virInterfaceChangeStart(ctl->conn, 0);
> +    else if (commit)
> +        func_ret = virInterfaceChangeCommit(ctl->conn, 0);
> +    else if (rollback)
> +        func_ret = virInterfaceChangeRollback(ctl->conn, 0);
> +    else {
> +        /* This should really never happen */
> +    }
> +
> +    ret = func_ret == 0 ? true : false;
> +
> +end:
> +    return ret;
> +}
>  
>  /*
>   * "nwfilter-define" command
> @@ -10826,6 +10884,7 @@ static const vshCmdDef ifaceCmds[] = {
>      {"iface-name", cmdInterfaceName, opts_interface_name, info_interface_name},
>      {"iface-start", cmdInterfaceStart, opts_interface_start, info_interface_start},
>      {"iface-undefine", cmdInterfaceUndefine, opts_interface_undefine, info_interface_undefine},
> +    {"iface-change", cmdInterfaceChnage, opts_interface_change, info_interface_change},
>      {NULL, NULL, NULL, NULL}
>  };

Do we really want to overload a single method with 3 different functions ?
It isn't very clear that 'iface-change' is the transaction handling
method. Could we justdo  'iface-begin', 'iface-commit' ' iface-rollback'
or maybe even 'iface-txn-begin' 'iface-txn-commit' 'iface-txn-rollback' ?

Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|




More information about the libvir-list mailing list