<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Wed, Sep 27, 2017 at 1:54 PM Frediano Ziglio <<a href="mailto:fziglio@redhat.com">fziglio@redhat.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">><br>
> Hi,<br>
><br>
> On Wed, Sep 27, 2017 at 10:33:33AM +0000, Frediano Ziglio wrote:<br>
> > ><br>
> > > From: Victor Toso <<a href="mailto:me@victortoso.com" target="_blank">me@victortoso.com</a>><br>
> > ><br>
> > > As we already depend on glib, let's remove code that glib can take<br>
> > > care of. In this case, we don't need to handle commandline parsing<br>
> > > ourselves.<br>
> > ><br>
> > > In regard the global variables:<br>
> > ><br>
> > > * static const char * -> static gchar * [only paths]<br>
> > >   path variables: portdev, fx_dir, vdagentd_socket<br>
> > ><br>
> > > * static int -> static gboolean<br>
> > >   flags: debug, do_daemonize, x11_sync, fx_open_dir<br>
> > ><br>
> > > Since fx_open_dir is gboolean, the dir is by default not opened,<br>
> > > using option "-o" forces it to open.<br>
> > ><br>
> ><br>
> > This -o change breaks compatibility with former versions.<br>
><br>
> Well, it was -o 0|1 which is basically boolean too. </blockquote><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
> Another mention-before-release or do you think we need to keep it?<br>
><br>
<br>
As any deprecation one release announcement, 2 removal.<br>
I would avoid adding the long option (--file-xfer-open-dir) with 0/1,<br>
keep the argument for "-o" only and then remove the "-o" as deprecated.<br>
<br></blockquote><div>Agreed, I'll add the optional argument 0|1 back and use the short version "-o" only.</div><div><br></div><div>Jakub</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
> ><br>
> > > Signed-off-by: Victor Toso <<a href="mailto:victortoso@redhat.com" target="_blank">victortoso@redhat.com</a>><br>
> > > ---<br>
> > >  src/vdagent/vdagent.c | 122<br>
> > >  +++++++++++++++++++++++++-------------------------<br>
> > >  1 file changed, 62 insertions(+), 60 deletions(-)<br>
> > ><br>
> > > diff --git a/src/vdagent/vdagent.c b/src/vdagent/vdagent.c<br>
> > > index cc4dac1..51a7618 100644<br>
> > > --- a/src/vdagent/vdagent.c<br>
> > > +++ b/src/vdagent/vdagent.c<br>
> > > @@ -44,17 +44,46 @@<br>
> > >  #include "x11.h"<br>
> > >  #include "file-xfers.h"<br>
> > ><br>
> > > -static const char *portdev = DEFAULT_VIRTIO_PORT_PATH;<br>
> > > -static const char *vdagentd_socket = VDAGENTD_SOCKET;<br>
> > > -static int debug = 0;<br>
> > > -static const char *fx_dir = NULL;<br>
> > > -static int fx_open_dir = -1;<br>
> > >  static struct vdagent_x11 *x11 = NULL;<br>
> > >  static struct vdagent_file_xfers *vdagent_file_xfers = NULL;<br>
> > >  static struct udscs_connection *client = NULL;<br>
> > >  static int quit = 0;<br>
> > >  static int version_mismatch = 0;<br>
> > ><br>
> > > +/* Command line options */<br>
> > > +static gboolean debug = FALSE;<br>
> > > +static gboolean x11_sync = FALSE;<br>
> > > +static gboolean fx_open_dir = FALSE;<br>
> > > +static gboolean do_daemonize = TRUE;<br>
> > > +static gchar *fx_dir = NULL;<br>
> > > +static gchar *portdev = NULL;<br>
> > > +static gchar *vdagentd_socket = NULL;<br>
> > > +<br>
> > > +static GOptionEntry entries[] = {<br>
> > > +    { "debug", 'd', 0,<br>
> > > +       G_OPTION_ARG_NONE, &debug,<br>
> > > +       "Enable debug", NULL },<br>
> > > +    { "virtio-serial-port-path", 's', 0,<br>
> > > +      G_OPTION_ARG_STRING, &portdev,<br>
> > > +      "Set virtio-serial path ("  DEFAULT_VIRTIO_PORT_PATH ")", NULL },<br>
> > > +    { "vdagentd-socket", 'S', 0, G_OPTION_ARG_STRING,<br>
> > > +       &vdagentd_socket,<br>
> > > +       "Set spice-vdagentd socket (" VDAGENTD_SOCKET ")", NULL },<br>
> > > +    { "foreground", 'x', G_OPTION_FLAG_REVERSE,<br>
> > > +       G_OPTION_ARG_NONE, &do_daemonize,<br>
> > > +       "Do not daemonize the agent", NULL },<br>
> > > +    { "file-xfer-save-dir", 'f', 0,<br>
> > > +      G_OPTION_ARG_STRING, &fx_dir,<br>
> > > +      "Set directory to file transfers files", NULL},<br>
> > > +    { "file-xfer-open-dir", 'o', 0,<br>
> > > +       G_OPTION_ARG_NONE, &fx_open_dir,<br>
> > > +       "Open directory after completing file transfer", NULL },<br>
> > > +    { "x11-abort-on-error", 'y', 0,<br>
> > > +      G_OPTION_ARG_NONE, &x11_sync,<br>
> > > +      "Aborts on errors from X11", NULL },<br>
> > > +    { NULL }<br>
> > > +};<br>
> > > +<br>
> > >  /**<br>
> > >   * xfer_get_download_directory<br>
> > >   *<br>
> > > @@ -96,9 +125,6 @@ static gboolean vdagent_init_file_xfer(void)<br>
> > >          return FALSE;<br>
> > >      }<br>
> > ><br>
> > > -    if (fx_open_dir == -1)<br>
> > > -        fx_open_dir = !vdagent_x11_has_icons_on_desktop(x11);<br>
> > > -<br>
> > >      vdagent_file_xfers = vdagent_file_xfers_create(client, xfer_dir,<br>
> > >                                                     fx_open_dir, debug);<br>
> > >      return (vdagent_file_xfers != NULL);<br>
> > > @@ -210,22 +236,6 @@ static int client_setup(int reconnect)<br>
> > >      return client == NULL;<br>
> > >  }<br>
> > ><br>
> > > -static void usage(FILE *fp)<br>
> > > -{<br>
> > > -    fprintf(fp,<br>
> > > -      "Usage: spice-vdagent [OPTIONS]\n\n"<br>
> > > -      "Spice guest agent X11 session agent, version %s.\n\n"<br>
> > > -      "Options:\n"<br>
> > > -      "  -h                                print this text\n"<br>
> > > -      "  -d                                log debug messages\n"<br>
> > > -      "  -s <port>                         set virtio serial port\n"<br>
> > > -      "  -S <filename>                     set udcs socket\n"<br>
> > > -      "  -x                                don't daemonize\n"<br>
> > > -      "  -f <dir>                          file xfer save dir\n"<br>
> > > -      "  -o <0|1>                          open dir on file xfer<br>
> > > completion\n",<br>
> > > -      VERSION);<br>
> > > -}<br>
> > > -<br>
> > >  static void quit_handler(int sig)<br>
> > >  {<br>
> > >      quit = 1;<br>
> > > @@ -289,45 +299,33 @@ static int file_test(const char *path)<br>
> > >  int main(int argc, char *argv[])<br>
> > >  {<br>
> > >      fd_set readfds, writefds;<br>
> > > -    int c, n, nfds, x11_fd;<br>
> > > -    int do_daemonize = 1;<br>
> > > +    int n, nfds, x11_fd;<br>
> > >      int parent_socket = 0;<br>
> > > -    int x11_sync = 0;<br>
> > >      struct sigaction act;<br>
> > > +    GOptionContext *context;<br>
> > > +    GError *error = NULL;<br>
> > > +<br>
> > > +    context = g_option_context_new(NULL);<br>
> > > +    g_option_context_add_main_entries(context, entries, NULL);<br>
> > > +    g_option_context_set_summary(context,<br>
> > > +                                 "\tSpice session guest agent: X11\n"<br>
> > > +                                 "\tVersion: " VERSION);<br>
> > > +    g_option_context_parse(context, &argc, &argv, &error);<br>
> > > +    g_option_context_free(context);<br>
> > > +<br>
> > > +    if (error != NULL) {<br>
> > > +        g_printerr("Invalid arguments, %s\n", error->message);<br>
> > > +        g_clear_error(&error);<br>
> > > +        return -1;<br>
> > > +    }<br>
> > ><br>
> > > -    for (;;) {<br>
> > > -        if (-1 == (c = getopt(argc, argv, "-dxhys:f:o:S:")))<br>
> > > -            break;<br>
> > > -        switch (c) {<br>
> > > -        case 'd':<br>
> > > -            debug++;<br>
> > > -            break;<br>
> > > -        case 's':<br>
> > > -            portdev = optarg;<br>
> > > -            break;<br>
> > > -        case 'x':<br>
> > > -            do_daemonize = 0;<br>
> > > -            break;<br>
> > > -        case 'y':<br>
> > > -            x11_sync = 1;<br>
> > > -            break;<br>
> > > -        case 'h':<br>
> > > -            usage(stdout);<br>
> > > -            return 0;<br>
> > > -        case 'f':<br>
> > > -            fx_dir = optarg;<br>
> > > -            break;<br>
> > > -        case 'o':<br>
> > > -            fx_open_dir = atoi(optarg);<br>
> > > -            break;<br>
> > > -        case 'S':<br>
> > > -            vdagentd_socket = optarg;<br>
> > > -            break;<br>
> > > -        default:<br>
> > > -            fputs("\n", stderr);<br>
> > > -            usage(stderr);<br>
> > > -            return 1;<br>
> > > -        }<br>
> > > +    /* Set default path value if none was set */<br>
> > > +    if (portdev == NULL) {<br>
> > > +        portdev = g_strdup(DEFAULT_VIRTIO_PORT_PATH);<br>
> > > +    }<br>
> > > +<br>
> > > +    if (vdagentd_socket == NULL) {<br>
> > > +        vdagentd_socket = g_strdup(VDAGENTD_SOCKET);<br>
> > >      }<br>
> > ><br>
> > >      memset(&act, 0, sizeof(act));<br>
> > > @@ -405,5 +403,9 @@ reconnect:<br>
> > >      if (!quit && do_daemonize)<br>
> > >          goto reconnect;<br>
> > ><br>
> > > +    g_free(fx_dir);<br>
> > > +    g_free(portdev);<br>
> > > +    g_free(vdagentd_socket);<br>
> > > +<br>
> > >      return 0;<br>
> > >  }<br>
> ><br>
> > Frediano<br>
<br>
</blockquote></div></div>