summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-06-26 12:18:31 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit0794731455fbf919882c8a9cc03dd42c66117a93 (patch)
treec0117ef90dbed59d8297d72ebd89153d9cebe420 /src
parent02698c25c7c553b6293b42fc28753c7578745dcd (diff)
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 <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp4
-rw-r--r--src/wayland.cpp2
-rw-r--r--src/wayland.hpp42
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<genivi::controller>(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<wl::output>(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<struct registry>(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<struct wl_registry> {
+ typedef std::function<void(struct wl_registry *, uint32_t, uint32_t)> binder;
+ std::unordered_map<std::string, binder> 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<struct wl_display, std::function<void(struct wl_display *)>>
d;
- std::unique_ptr<struct registry> r;
+ struct registry r;
display();
~display();
@@ -61,26 +79,6 @@ struct display {
int get_fd() const;
};
-// _ _
-// _ __ ___ __ _(_)___| |_ _ __ _ _
-// | '__/ _ \/ _` | / __| __| '__| | | |
-// | | | __/ (_| | \__ \ |_| | | |_| |
-// |_| \___|\__, |_|___/\__|_| \__, |
-// |___/ |___/
-struct registry : public wayland_proxy<struct wl_registry> {
- typedef std::function<void(struct wl_registry *, uint32_t, uint32_t)> binder;
- std::unordered_map<std::string, binder> 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);
-};
-
// _ _
// ___ _ _| |_ _ __ _ _| |_
// / _ \| | | | __| '_ \| | | | __|