Add tizen platform in vulkan-wsi-layer
[platform/core/uifw/vulkan-wsi-tizen.git] / wsi / tizen / swapchain_wl_helpers.cpp
1 /*
2  * Copyright (c) 2017-2019, 2021 Arm Limited.
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to
8  * deal in the Software without restriction, including without limitation the
9  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10  * sell copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24
25 #include "swapchain_wl_helpers.hpp"
26
27 #include <wayland-client.h>
28 #include <linux-dmabuf-unstable-v1-client-protocol.h>
29 #include <string.h>
30 #include <assert.h>
31 #include <poll.h>
32 #include <errno.h>
33
34 extern "C" {
35
36    void registry_handler(void *data, struct wl_registry *wl_registry, uint32_t name, const char *interface,
37                          uint32_t version)
38    {
39       zwp_linux_dmabuf_v1 **dmabuf_interface = (zwp_linux_dmabuf_v1 **)data;
40
41       if (!strcmp(interface, "zwp_linux_dmabuf_v1"))
42       {
43          *dmabuf_interface =
44             (zwp_linux_dmabuf_v1 *)wl_registry_bind(wl_registry, name, &zwp_linux_dmabuf_v1_interface, version);
45          assert(*dmabuf_interface);
46       }
47    }
48
49    int dispatch_queue(struct wl_display *display, struct wl_event_queue *queue, int timeout)
50    {
51       int err;
52       struct pollfd pfd = {};
53       int retval;
54
55       /* Before we sleep, dispatch any pending events. prepare_read_queue will return 0 whilst there are pending
56        * events to dispatch on the queue. */
57       while (0 != wl_display_prepare_read_queue(display, queue))
58       {
59          /* dispatch_queue_pending returns -1 on error, or the number of events dispatched otherwise. If we
60           * already dispatched some events, then we might not need to sleep, as we might have just dispatched
61           * the event we want, so return immediately. */
62          err = wl_display_dispatch_queue_pending(display, queue);
63          if (err)
64          {
65             return (0 > err) ? -1 : 1;
66          }
67       }
68
69       /* wl_display_read_events performs a non-blocking read. */
70       pfd.fd = wl_display_get_fd(display);
71       pfd.events = POLLIN;
72       while (true)
73       {
74          /* Timeout is given in milliseconds. A return value of 0, or -1 with errno set to EINTR means that we
75           * should retry as the timeout was exceeded or we were interrupted by a signal, respectively. A
76           * return value of 1 means that something happened, and we should inspect the pollfd structure to see
77           * just what that was.
78           */
79          err = poll(&pfd, 1, timeout);
80          if (0 == err)
81          {
82             /* Timeout. */
83             wl_display_cancel_read(display);
84             return 0;
85          }
86          else if (-1 == err)
87          {
88             if (EINTR == errno)
89             {
90                /* Interrupted by a signal; restart. This resets the timeout. */
91                continue;
92             }
93             else
94             {
95                /* Something else bad happened; abort. */
96                wl_display_cancel_read(display);
97                return -1;
98             }
99          }
100          else
101          {
102             if (POLLIN == pfd.revents)
103             {
104                /* We have data to read, and no errors; proceed to read_events. */
105                break;
106             }
107             else
108             {
109                /* An error occurred, e.g. file descriptor was closed from underneath us. */
110                wl_display_cancel_read(display);
111                return -1;
112             }
113          }
114       }
115
116       /* Actually read the events from the display. A failure in read_events calls cancel_read internally for us,
117        * so we don't need to do that here. */
118       err = wl_display_read_events(display);
119       if (0 != err)
120       {
121          return -1;
122       }
123
124       /* Finally, if we read any events relevant to our queue, we can dispatch them. */
125       err = wl_display_dispatch_queue_pending(display, queue);
126       retval = err < 0 ? -1 : 1;
127
128       return retval;
129    }
130 }