5d602edcc335823c6d6926c4d37cb659a9249e50
[staging/windowmanager.git] / src / util.hpp
1 /*
2  * Copyright (C) 2017 Mentor Graphics Development (Deutschland) GmbH
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef WM_UTIL_HPP
18 #define WM_UTIL_HPP
19
20 #include <functional>
21 #include <thread>
22 #include <vector>
23
24 #include <sys/poll.h>
25
26 extern "C" {
27 #include <afb/afb-binding.h>
28 };
29
30 #define CONCAT_(X, Y) X##Y
31 #define CONCAT(X, Y) CONCAT_(X, Y)
32
33 #ifdef __GNUC__
34 #define ATTR_FORMAT(stringindex, firsttocheck) \
35    __attribute__((format(printf, stringindex, firsttocheck)))
36 #define ATTR_NORETURN __attribute__((noreturn))
37 #else
38 #define ATTR_FORMAT(stringindex, firsttocheck)
39 #define ATTR_NORETURN
40 #endif
41
42 #define lognotice(...) AFB_NOTICE(__VA_ARGS__)
43 #define logerror(...) AFB_ERROR(__VA_ARGS__)
44 #define fatal(...)            \
45    do {                       \
46       AFB_ERROR(__VA_ARGS__); \
47       abort();                \
48    } while (0)
49
50 #ifdef DEBUG_OUTPUT
51 #define logdebug(...) AFB_DEBUG(__VA_ARGS__)
52 #else
53 #define logdebug(...)
54 #endif
55
56 #ifndef SCOPE_TRACING
57 #define ST()
58 #define STN(N)
59 #else
60 #define ST() \
61     ScopeTrace __attribute__((unused)) CONCAT(trace_scope_, __LINE__)(__func__)
62 #define STN(N) \
63     ScopeTrace __attribute__((unused)) CONCAT(named_trace_scope_, __LINE__)(#N)
64
65 struct ScopeTrace {
66    thread_local static int indent;
67    char const *f{};
68    explicit ScopeTrace(char const *func);
69    ~ScopeTrace();
70 };
71 #endif
72
73 //      _                   _                 _                       __     _
74 //  ___| |_ _ __ _   _  ___| |_   _   _ _ __ (_) __ _ _   _  ___     / _| __| |
75 // / __| __| '__| | | |/ __| __| | | | | '_ \| |/ _` | | | |/ _ \   | |_ / _` |
76 // \__ \ |_| |  | |_| | (__| |_  | |_| | | | | | (_| | |_| |  __/   |  _| (_| |
77 // |___/\__|_|   \__,_|\___|\__|  \__,_|_| |_|_|\__, |\__,_|\___|___|_|  \__,_|
78 //                                                 |_|         |_____|
79 struct unique_fd {
80    int fd{-1};
81    unique_fd() = default;
82    explicit unique_fd(int f) : fd{f} {}
83    operator int() const { return fd; }
84    ~unique_fd();
85    unique_fd(unique_fd const &) = delete;
86    unique_fd &operator=(unique_fd const &) = delete;
87    unique_fd(unique_fd &&o) : fd(o.fd) { o.fd = -1; }
88    unique_fd &operator=(unique_fd &&o) {
89       std::swap(this->fd, o.fd);
90       return *this;
91    }
92 };
93
94 #endif  // !WM_UTIL_HPP