On Fri, Oct 03, 2014 at 01:13:42PM -0500, Derek Foreman wrote:
> For functions that test if something is true/valid and return a 1
> or 0, it makes sense to switch to bool.

I like it.  Probably many other places this shows up.

Only question I have is if bool can be used for WL_EXPORT functions?
bool isn't mentioned in the wire format docs[0], so I'm guessing that
might not be an allowed type for those routines?

Assuming that's fine,

Reviewed-by: Bryce Harrington <[email protected]>

0: http://wayland.freedesktop.org/docs/html/sect-Protocol-Wire-Format.html

> ---
>  src/cms-colord.c    | 10 +++++-----
>  src/compositor.c    | 20 ++++++++++----------
>  src/compositor.h    |  5 +++--
>  src/input.c         |  8 ++++----
>  src/weston-launch.c | 11 ++++++-----
>  5 files changed, 28 insertions(+), 26 deletions(-)
> 
> diff --git a/src/cms-colord.c b/src/cms-colord.c
> index 4ff3aac..c541a34 100644
> --- a/src/cms-colord.c
> +++ b/src/cms-colord.c
> @@ -83,16 +83,16 @@ colord_idle_cancel_for_output(struct cms_colord *cms, 
> struct weston_output *o)
>       g_mutex_unlock(&cms->pending_mutex);
>  }
>  
> -static int
> +static bool
>  edid_value_valid(const char *str)
>  {
>       if (str == NULL)
> -             return 0;
> +             return false;
>       if (str[0] == '\0')
> -             return 0;
> +             return false;
>       if (strcmp(str, "unknown") == 0)
> -             return 0;
> -     return 1;
> +             return false;
> +     return true;
>  }
>  
>  static gchar *
> diff --git a/src/compositor.c b/src/compositor.c
> index 29731c7..206b134 100644
> --- a/src/compositor.c
> +++ b/src/compositor.c
> @@ -1370,22 +1370,22 @@ weston_view_set_transform_parent(struct weston_view 
> *view,
>       weston_view_geometry_dirty(view);
>  }
>  
> -WL_EXPORT int
> +WL_EXPORT bool
>  weston_view_is_mapped(struct weston_view *view)
>  {
>       if (view->output)
> -             return 1;
> +             return true;
>       else
> -             return 0;
> +             return false;
>  }
>  
> -WL_EXPORT int
> +WL_EXPORT bool
>  weston_surface_is_mapped(struct weston_surface *surface)
>  {
>       if (surface->output)
> -             return 1;
> +             return true;
>       else
> -             return 0;
> +             return false;
>  }
>  
>  static void
> @@ -2626,20 +2626,20 @@ weston_subsurface_commit_to_cache(struct 
> weston_subsurface *sub)
>       sub->has_cached_data = 1;
>  }
>  
> -static int
> +static bool
>  weston_subsurface_is_synchronized(struct weston_subsurface *sub)
>  {
>       while (sub) {
>               if (sub->synchronized)
> -                     return 1;
> +                     return true;
>  
>               if (!sub->parent)
> -                     return 0;
> +                     return false;
>  
>               sub = weston_surface_to_subsurface(sub->parent);
>       }
>  
> -     return 0;
> +     return true;
>  }
>  
>  static void
> diff --git a/src/compositor.h b/src/compositor.h
> index 44379fe..7e27bbe 100644
> --- a/src/compositor.h
> +++ b/src/compositor.h
> @@ -28,6 +28,7 @@
>  extern "C" {
>  #endif
>  
> +#include <stdbool.h>
>  #include <time.h>
>  #include <pixman.h>
>  #include <xkbcommon/xkbcommon.h>
> @@ -1197,13 +1198,13 @@ void
>  weston_view_set_transform_parent(struct weston_view *view,
>                                struct weston_view *parent);
>  
> -int
> +bool
>  weston_view_is_mapped(struct weston_view *view);
>  
>  void
>  weston_view_schedule_repaint(struct weston_view *view);
>  
> -int
> +bool
>  weston_surface_is_mapped(struct weston_surface *surface);
>  
>  void
> diff --git a/src/input.c b/src/input.c
> index 530904d..38eb55d 100644
> --- a/src/input.c
> +++ b/src/input.c
> @@ -1735,7 +1735,7 @@ static const struct wl_keyboard_interface 
> keyboard_interface = {
>       keyboard_release
>  };
>  
> -static int
> +static bool
>  should_send_modifiers_to_client(struct weston_seat *seat,
>                               struct wl_client *client)
>  {
> @@ -1743,15 +1743,15 @@ should_send_modifiers_to_client(struct weston_seat 
> *seat,
>           seat->keyboard->focus &&
>           seat->keyboard->focus->resource &&
>           wl_resource_get_client(seat->keyboard->focus->resource) == client)
> -             return 1;
> +             return true;
>  
>       if (seat->pointer &&
>           seat->pointer->focus &&
>           seat->pointer->focus->surface->resource &&
>           wl_resource_get_client(seat->pointer->focus->surface->resource) == 
> client)
> -             return 1;
> +             return true;
>  
> -     return 0;
> +     return false;
>  }
>  
>  static void
> diff --git a/src/weston-launch.c b/src/weston-launch.c
> index 56e22b1..10c66de 100644
> --- a/src/weston-launch.c
> +++ b/src/weston-launch.c
> @@ -22,6 +22,7 @@
>  
>  #include "config.h"
>  
> +#include <stdbool.h>
>  #include <stdio.h>
>  #include <stdlib.h>
>  #include <string.h>
> @@ -133,7 +134,7 @@ read_groups(void)
>       return groups;
>  }
>  
> -static int
> +static bool
>  weston_launch_allowed(struct weston_launch *wl)
>  {
>       struct group *gr;
> @@ -145,7 +146,7 @@ weston_launch_allowed(struct weston_launch *wl)
>  #endif
>  
>       if (getuid() == 0)
> -             return 1;
> +             return true;
>  
>       gr = getgrnam("weston-launch");
>       if (gr) {
> @@ -154,7 +155,7 @@ weston_launch_allowed(struct weston_launch *wl)
>                       for (i = 0; groups[i]; ++i) {
>                               if (groups[i] == gr->gr_gid) {
>                                       free(groups);
> -                                     return 1;
> +                                     return true;
>                               }
>                       }
>                       free(groups);
> @@ -168,13 +169,13 @@ weston_launch_allowed(struct weston_launch *wl)
>                   sd_session_get_seat(session, &seat) == 0) {
>                       free(seat);
>                       free(session);
> -                     return 1;
> +                     return true;
>               }
>               free(session);
>       }
>  #endif
>       
> -     return 0;
> +     return false;
>  }
>  
>  static int
> -- 
> 2.1.0
> 
> _______________________________________________
> wayland-devel mailing list
> [email protected]
> http://lists.freedesktop.org/mailman/listinfo/wayland-devel
_______________________________________________
wayland-devel mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Reply via email to