]> git.sur5r.net Git - i3/i3/blob - include/util.h
df0e306557dac7e994c2e252a2c5299fbc2d4765
[i3/i3] / include / util.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <err.h>
12
13 #include "data.h"
14
15 #ifndef _UTIL_H
16 #define _UTIL_H
17
18 #define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
19 #define exit_if_null(pointer, ...) { if (pointer == NULL) die(__VA_ARGS__); }
20 #define STARTS_WITH(string, needle) (strncasecmp(string, needle, strlen(needle)) == 0)
21 #define CIRCLEQ_NEXT_OR_NULL(head, elm, field) (CIRCLEQ_NEXT(elm, field) != CIRCLEQ_END(head) ? \
22                                                 CIRCLEQ_NEXT(elm, field) : NULL)
23 #define CIRCLEQ_PREV_OR_NULL(head, elm, field) (CIRCLEQ_PREV(elm, field) != CIRCLEQ_END(head) ? \
24                                                 CIRCLEQ_PREV(elm, field) : NULL)
25 #define FOR_TABLE(workspace) \
26                         for (int cols = 0; cols < (workspace)->cols; cols++) \
27                                 for (int rows = 0; rows < (workspace)->rows; rows++)
28
29 #define NODES_FOREACH(head) \
30     for (Con *child = (Con*)-1; (child == (Con*)-1) && ((child = 0), true);) \
31         TAILQ_FOREACH(child, &((head)->nodes_head), nodes)
32
33 /* greps the ->nodes of the given head and returns the first node that matches the given condition */
34 #define GREP_FIRST(dest, head, condition) \
35     NODES_FOREACH(head) { \
36         if (!(condition)) \
37             continue; \
38         \
39         (dest) = child; \
40         break; \
41     }
42
43 #define FREE(pointer) do { \
44         if (pointer != NULL) { \
45                 free(pointer); \
46                 pointer = NULL; \
47         } \
48 } \
49 while (0)
50
51 #define CALL(obj, member, ...) obj->member(obj, ## __VA_ARGS__)
52
53 int min(int a, int b);
54 int max(int a, int b);
55 bool rect_contains(Rect rect, uint32_t x, uint32_t y);
56 Rect rect_add(Rect a, Rect b);
57
58 /**
59  * Updates *destination with new_value and returns true if it was changed or false
60  * if it was the same
61  *
62  */
63 bool update_if_necessary(uint32_t *destination, const uint32_t new_value);
64
65 /**
66  * Safe-wrapper around malloc which exits if malloc returns NULL (meaning that
67  * there is no more memory available)
68  *
69  */
70 void *smalloc(size_t size);
71
72 /**
73  * Safe-wrapper around calloc which exits if malloc returns NULL (meaning that
74  * there is no more memory available)
75  *
76  */
77 void *scalloc(size_t size);
78
79 /**
80  * Safe-wrapper around realloc which exits if realloc returns NULL (meaning
81  * that there is no more memory available).
82  *
83  */
84 void *srealloc(void *ptr, size_t size);
85
86 /**
87  * Safe-wrapper around strdup which exits if malloc returns NULL (meaning that
88  * there is no more memory available)
89  *
90  */
91 char *sstrdup(const char *str);
92
93 /**
94  * Starts the given application by passing it through a shell. We use double
95  * fork to avoid zombie processes. As the started application’s parent exits
96  * (immediately), the application is reparented to init (process-id 1), which
97  * correctly handles childs, so we don’t have to do it :-).
98  *
99  * The shell is determined by looking for the SHELL environment variable. If
100  * it does not exist, /bin/sh is used.
101  *
102  */
103 void start_application(const char *command);
104
105 /**
106  * Checks a generic cookie for errors and quits with the given message if
107  * there was an error.
108  *
109  */
110 void check_error(xcb_connection_t *conn, xcb_void_cookie_t cookie,
111                  char *err_message);
112
113 /**
114  * Converts the given string to UCS-2 big endian for use with
115  * xcb_image_text_16(). The amount of real glyphs is stored in real_strlen, a
116  * buffer containing the UCS-2 encoded string (16 bit per glyph) is
117  * returned. It has to be freed when done.
118  *
119  */
120 char *convert_utf8_to_ucs2(char *input, int *real_strlen);
121
122 /**
123  * This function resolves ~ in pathnames.
124  * It may resolve wildcards in the first part of the path, but if no match
125  * or multiple matches are found, it just returns a copy of path as given.
126  *
127  */
128 char *resolve_tilde(const char *path);
129
130 /**
131  * Checks if the given path exists by calling stat().
132  *
133  */
134 bool path_exists(const char *path);
135
136
137 /**
138  * Returns the name of a temporary file with the specified prefix.
139  *
140  */
141 char *get_process_filename(const char *prefix);
142
143 /**
144  * Restart i3 in-place
145  * appends -a to argument list to disable autostart
146  *
147  */
148 void i3_restart(bool forget_layout);
149
150 #endif