From 0794731455fbf919882c8a9cc03dd42c66117a93 Mon Sep 17 00:00:00 2001 From: Marcus Fritzsch Date: Mon, 26 Jun 2017 12:18:31 +0200 Subject: [PATCH] wayland: one less level of unique_ptr Display now holds struct registry by value, as holding it through a unique_ptr was rather unnecessary. Signed-off-by: Marcus Fritzsch --- src/main.cpp | 4 ++-- src/wayland.cpp | 2 +- src/wayland.hpp | 42 ++++++++++++++++++++---------------------- 3 files changed, 23 insertions(+), 25 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 9b2f48a..146020e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -127,12 +127,12 @@ int main(int argc, char **argv) { struct conn c{}; - d->r->add_global_handler( + d->r.add_global_handler( "ivi_controller", [&c](wl_registry *r, uint32_t name, uint32_t v) { c.c = std::make_unique(r, name, v); }); - d->r->add_global_handler( + d->r.add_global_handler( "wl_output", [&c](wl_registry *r, uint32_t name, uint32_t v) { c.outputs.emplace_back(std::make_unique(r, name, v)); }); diff --git a/src/wayland.cpp b/src/wayland.cpp index 0862475..baf1aaa 100644 --- a/src/wayland.cpp +++ b/src/wayland.cpp @@ -22,7 +22,7 @@ display::display() logdebug("wl::display ~display @ %p", d); wl_display_disconnect(d); })), - r(!d ? nullptr : std::make_unique(d.get())) {} + r(d.get()) {} display::~display() {} diff --git a/src/wayland.hpp b/src/wayland.hpp index df9b68e..dc1d729 100644 --- a/src/wayland.hpp +++ b/src/wayland.hpp @@ -39,7 +39,25 @@ struct wayland_proxy { // |_| |_|\__,_|_| |_| |_|\___||___/ .__/ \__,_|\___\___| \_/\_/ |_| // |_| namespace wl { -struct registry; +// _ _ +// _ __ ___ __ _(_)___| |_ _ __ _ _ +// | '__/ _ \/ _` | / __| __| '__| | | | +// | | | __/ (_| | \__ \ |_| | | |_| | +// |_| \___|\__, |_|___/\__|_| \__, | +// |___/ |___/ +struct registry : public wayland_proxy { + typedef std::function binder; + std::unordered_map bindings; + + registry(struct wl_display *d); + ~registry(); + + void add_global_handler(char const *iface, binder bind); + + // Events + void global(uint32_t name, char const *iface, uint32_t v); + void global_remove(uint32_t name); +}; // _ _ _ // __| (_)___ _ __ | | __ _ _ _ @@ -50,7 +68,7 @@ struct registry; struct display { std::unique_ptr> d; - std::unique_ptr r; + struct registry r; display(); ~display(); @@ -61,26 +79,6 @@ struct display { int get_fd() const; }; -// _ _ -// _ __ ___ __ _(_)___| |_ _ __ _ _ -// | '__/ _ \/ _` | / __| __| '__| | | | -// | | | __/ (_| | \__ \ |_| | | |_| | -// |_| \___|\__, |_|___/\__|_| \__, | -// |___/ |___/ -struct registry : public wayland_proxy { - typedef std::function binder; - std::unordered_map bindings; - - registry(struct wl_display *d); - ~registry(); - - void add_global_handler(char const *iface, binder bind); - - // Events - void global(uint32_t name, char const *iface, uint32_t v); - void global_remove(uint32_t name); -}; - // _ _ // ___ _ _| |_ _ __ _ _| |_ // / _ \| | | | __| '_ \| | | | __| -- 2.16.6