<br><br><div class="gmail_quote">On Fri, Aug 3, 2012 at 11:10 AM, Kristian Høgsberg <span dir="ltr"><<a href="mailto:hoegsberg@gmail.com" target="_blank">hoegsberg@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Thu, Aug 02, 2012 at 08:42:17PM -0600, Scott Moreau wrote:<br>
> This patch provides a way to define outputs for the x11 backend. It<br>
> parses [output] sections and checks for 'name', 'width' and 'height'<br>
> keys. The 'name' key must start with an 'X' to distinguish between<br>
> drm output names. Command line options --width and --height supersede<br>
> what is in the config file. When --output-count is passed, the number<br>
> of outputs are limited or additional outputs added with default<br>
> values.<br>
<br>
</div>Nice, that all sounds good.<br></blockquote><div><br>Hi Kristian, thanks for the review.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im"><br>
> ---<br>
>  src/compositor-x11.c | 136 +++++++++++++++++++++++++++++++++++++++++++++++----<br>
>  weston.ini           |   5 ++<br>
>  2 files changed, 132 insertions(+), 9 deletions(-)<br>
><br>
> diff --git a/src/compositor-x11.c b/src/compositor-x11.c<br>
> index 4507463..992b68f 100644<br>
> --- a/src/compositor-x11.c<br>
> +++ b/src/compositor-x11.c<br>
> @@ -50,6 +50,20 @@<br>
>  #include "compositor.h"<br>
>  #include "../shared/config-parser.h"<br>
><br>
> +static char *output_name;<br>
> +static char *output_width;<br>
> +static char *output_height;<br>
> +static int width_arg;<br>
> +static int height_arg;<br>
> +static int count_arg;<br>
<br>
</div>We're using option_* for globals that we parse from the command line options.<br></blockquote><div><br>Noted.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><div class="h5"><br>
> +static struct wl_list configured_output_list;<br>
> +<br>
> +struct x11_configured_output {<br>
> +     char *name;<br>
> +     int width, height;<br>
> +     struct wl_list link;<br>
> +};<br>
> +<br>
>  struct x11_compositor {<br>
>       struct weston_compositor         base;<br>
><br>
> @@ -1033,9 +1047,20 @@ x11_restore(struct weston_compositor *ec)<br>
>  }<br>
><br>
>  static void<br>
> +x11_free_configured_output(struct x11_configured_output *output)<br>
> +{<br>
> +     free(output->name);<br>
> +     free(output);<br>
> +}<br>
> +<br>
> +static void<br>
>  x11_destroy(struct weston_compositor *ec)<br>
>  {<br>
>       struct x11_compositor *compositor = (struct x11_compositor *)ec;<br>
> +     struct x11_configured_output *o, *n;<br>
> +<br>
> +     wl_list_for_each_safe(o, n, &configured_output_list, link)<br>
> +             x11_free_configured_output(o);<br>
><br>
>       wl_event_source_remove(compositor->xcb_source);<br>
>       x11_input_destroy(compositor);<br>
> @@ -1055,8 +1080,9 @@ x11_compositor_create(struct wl_display *display,<br>
>                     int argc, char *argv[], const char *config_file)<br>
>  {<br>
>       struct x11_compositor *c;<br>
> +     struct x11_configured_output *o;<br>
>       xcb_screen_iterator_t s;<br>
> -     int i, x;<br>
> +     int i, x = 0, output_count = 0;<br>
><br>
>       weston_log("initializing x11 backend\n");<br>
><br>
> @@ -1099,11 +1125,35 @@ x11_compositor_create(struct wl_display *display,<br>
>       if (x11_input_create(c, no_input) < 0)<br>
>               goto err_egl;<br>
><br>
> -     for (i = 0, x = 0; i < count; i++) {<br>
> -             if (x11_compositor_create_output(c, x, 0, width, height,<br>
> -                                              fullscreen, no_input) < 0)<br>
> -                     goto err_x11_input;<br>
> -             x += width;<br>
> +     if (wl_list_empty(&configured_output_list))<br>
<br>
</div></div>I don't think you need this special case, just let<br>
wl_list_for_each_reverse() run through the empty list and fall through<br>
to the output_count case below.<br></blockquote><div><br>Yep, makes sense.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im"><br>
> +             for (i = 0; i < count; i++) {<br>
> +                     if (x11_compositor_create_output(c, x, 0, width, height,<br>
> +                                                      fullscreen, no_input) < 0)<br>
> +                             goto err_x11_input;<br>
> +                     x += width;<br>
> +             }<br>
> +     else {<br>
> +             wl_list_for_each_reverse(o, &configured_output_list, link) {<br>
> +                     if (x11_compositor_create_output(c, x, 0,<br>
> +                                                     width_arg ? width_arg :<br>
> +                                                     o->width,<br>
> +                                                     height_arg ? height_arg :<br>
> +                                                     o->height,<br>
> +                                                     fullscreen, no_input) < 0)<br>
> +                             goto err_x11_input;<br>
> +                     x += width_arg ? width_arg : o->width;<br>
> +                     output_count++;<br>
> +                     if (count_arg && output_count >= count_arg)<br>
> +                             break;<br>
> +             }<br>
> +<br>
> +             if (count > output_count)<br>
<br>
</div>You also don't need this condition, if we've created enoguh outputs,<br>
the loop below wont run.<br>
<div class="im"><br>
> +                     for (i = output_count; i < count; i++) {<br>
> +                             if (x11_compositor_create_output(c, x, 0, width, height,<br>
> +                                                              fullscreen, no_input) < 0)<br></div></blockquote><div><br>Ah, yes.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">
<br>
</div>I think no_input and fullscreen is something we should just store in<br>
x11_compositor instead of passing it around everywhere.  But that's a<br>
different patch.<br></blockquote><div><br>For what it's worth, --fullscreen has no effect here.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><div class="h5"><br>
> +                                     goto err_x11_input;<br>
> +                             x += width;<br>
> +                     }<br>
>       }<br>
><br>
>       c->xcb_source =<br>
> @@ -1126,6 +1176,51 @@ err_free:<br>
>       return NULL;<br>
>  }<br>
><br>
> +static void<br>
> +output_section_done(void *data)<br>
> +{<br>
> +     struct x11_configured_output *output;<br>
> +     int error = 0;<br>
> +<br>
> +     output = malloc(sizeof *output);<br>
> +<br>
> +     if (!output || !output_name || !output_width || !output_height) {<br>
> +             free(output_name);<br>
> +             output_name = NULL;<br>
> +<br>
> +             goto err_free;<br>
> +     }<br>
> +<br>
> +     output->name = output_name;<br>
> +<br>
> +     if (sscanf(output_width, "%d", &output->width) != 1) {<br>
> +             weston_log("Invalid width \"%s\" for output %s\n",<br>
> +                                             output_width, output_name);<br>
> +             error = 1;<br>
> +     }<br>
> +<br>
> +     if (sscanf(output_height, "%d", &output->height) != 1) {<br>
> +             weston_log("Invalid height \"%s\" for output %s\n",<br>
> +                                             output_height, output_name);<br>
> +             error = 1;<br>
> +     }<br>
<br>
</div></div>I think we should just do<br>
<br>
        mode=600x400<br>
<br>
like we do for the drm backend (but not support the mode line syntax,<br>
of course).<br></blockquote><div><br>Ok.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im"><br>
<br>
> +     if (error) {<br>
> +             x11_free_configured_output(output);<br>
> +             goto err_free;<br>
> +     } else if (output_name[0] != 'X') {<br>
> +             weston_log("Invalid output name \"%s\"\n", output_name);<br>
> +             x11_free_configured_output(output);<br>
<br>
</div>Won't this generate a warning if I have an entry for my LVDS or such<br>
in the config file?  Maybe we should check for output_name[0] != 'X'<br>
early (in the top if-statement) and just silenty ignore it.<br></blockquote><div><br>Not as it stands currently, because the X output sections are expected to use width/height keys, and it will error before it hits this case. When it expects the same mode key as drm, this logic will be reworked.<br>
 </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im"><br>
> +     } else<br>
> +             wl_list_insert(&configured_output_list, &output->link);<br>
<br>
</div>Use<br>
<br>
  wl_list_insert(configured_output_list.prev, &output->link);<br>
<br>
to insert at the end of the list and avoid wl_list_for_each_reverse above.<br></blockquote><div><br>Yep.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><div class="h5"><br>
> +<br>
> +err_free:<br>
> +     free(output_width);<br>
> +     output_width = NULL;<br>
> +     free(output_height);<br>
> +     output_height = NULL;<br>
> +}<br>
> +<br>
>  WL_EXPORT struct weston_compositor *<br>
>  backend_init(struct wl_display *display, int argc, char *argv[],<br>
>            const char *config_file)<br>
> @@ -1134,15 +1229,38 @@ backend_init(struct wl_display *display, int argc, char *argv[],<br>
>       int no_input = 0;<br>
><br>
>       const struct weston_option x11_options[] = {<br>
> -             { WESTON_OPTION_INTEGER, "width", 0, &width },<br>
> -             { WESTON_OPTION_INTEGER, "height", 0, &height },<br>
> +             { WESTON_OPTION_INTEGER, "width", 0, &width_arg },<br>
> +             { WESTON_OPTION_INTEGER, "height", 0, &height_arg },<br>
>               { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen },<br>
> -             { WESTON_OPTION_INTEGER, "output-count", 0, &count },<br>
> +             { WESTON_OPTION_INTEGER, "output-count", 0, &count_arg },<br>
>               { WESTON_OPTION_BOOLEAN, "no-input", 0, &no_input },<br>
>       };<br>
><br>
>       parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv);<br>
><br>
> +     if (width_arg)<br>
> +             width = width_arg;<br>
> +     if (height_arg)<br>
> +             height = height_arg;<br>
> +     if (count_arg)<br>
> +             count = count_arg;<br>
<br>
</div></div>Just move the default values up to the global variables (eg, static<br>
int option_width = 1024;) and the just pass option_width to<br>
x11_compositor_create() below.<br></blockquote><div><br>I thought that would work at first, but it would break the ability to have --width/--height supersede what is in the config file. I'll try to rethink it and come up with something better than this though.<br>
 </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><div class="h5"><br>
> +     wl_list_init(&configured_output_list);<br>
> +<br>
> +     const struct config_key x11_config_keys[] = {<br>
> +             { "name", CONFIG_KEY_STRING, &output_name },<br>
> +             { "width", CONFIG_KEY_STRING, &output_width },<br>
> +             { "height", CONFIG_KEY_STRING, &output_height },<br>
> +     };<br>
> +<br>
> +     const struct config_section config_section[] = {<br>
> +             { "output", x11_config_keys,<br>
> +             ARRAY_LENGTH(x11_config_keys), output_section_done },<br>
> +     };<br>
> +<br>
> +     parse_config_file(config_file, config_section,<br>
> +                             ARRAY_LENGTH(config_section), NULL);<br>
> +<br>
>       return x11_compositor_create(display,<br>
>                                    width, height, count, fullscreen,<br>
>                                    no_input,<br>
> diff --git a/weston.ini b/weston.ini<br>
> index c2d6369..1de8e29 100644<br>
> --- a/weston.ini<br>
> +++ b/weston.ini<br>
> @@ -41,3 +41,8 @@ duration=600<br>
>  #[output]<br>
>  #name=VGA1<br>
>  #mode=173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync<br>
> +<br>
> +#[output]<br>
> +#name=X1<br>
> +#width=1024<br>
> +#height=768<br>
> --<br>
> 1.7.11.2<br>
><br>
</div></div>> _______________________________________________<br>
> wayland-devel mailing list<br>
> <a href="mailto:wayland-devel@lists.freedesktop.org">wayland-devel@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/wayland-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/wayland-devel</a><br>
</blockquote></div><br>