2009-02-14 02:33:31 +01:00
|
|
|
/*
|
2011-10-25 22:19:38 +02:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2009-02-14 02:33:31 +01:00
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2009-02-14 02:33:31 +01:00
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
* util.c: Utility functions, which can be useful everywhere within i3 (see
|
|
|
|
* also libi3).
|
2009-02-14 02:33:31 +01:00
|
|
|
*
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
#pragma once
|
2011-10-25 22:19:38 +02:00
|
|
|
|
2016-10-11 09:13:35 +02:00
|
|
|
#include <config.h>
|
|
|
|
|
2009-07-28 14:03:50 +02:00
|
|
|
#include <err.h>
|
2009-02-14 20:12:50 +01:00
|
|
|
|
|
|
|
#include "data.h"
|
|
|
|
|
2009-07-28 14:03:50 +02:00
|
|
|
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
2014-06-19 11:20:32 +02:00
|
|
|
#define exit_if_null(pointer, ...) \
|
|
|
|
{ \
|
|
|
|
if (pointer == NULL) \
|
|
|
|
die(__VA_ARGS__); \
|
|
|
|
}
|
2015-12-29 18:01:51 +01:00
|
|
|
#define STARTS_WITH(string, needle) (strncasecmp((string), (needle), strlen((needle))) == 0)
|
2014-06-19 11:20:32 +02:00
|
|
|
#define CIRCLEQ_NEXT_OR_NULL(head, elm, field) (CIRCLEQ_NEXT(elm, field) != CIRCLEQ_END(head) ? CIRCLEQ_NEXT(elm, field) : NULL)
|
|
|
|
#define CIRCLEQ_PREV_OR_NULL(head, elm, field) (CIRCLEQ_PREV(elm, field) != CIRCLEQ_END(head) ? CIRCLEQ_PREV(elm, field) : NULL)
|
|
|
|
#define FOR_TABLE(workspace) \
|
|
|
|
for (int cols = 0; cols < (workspace)->cols; cols++) \
|
|
|
|
for (int rows = 0; rows < (workspace)->rows; rows++)
|
2011-05-14 22:11:09 +02:00
|
|
|
|
2014-06-19 11:20:32 +02:00
|
|
|
#define NODES_FOREACH(head) \
|
|
|
|
for (Con *child = (Con *)-1; (child == (Con *)-1) && ((child = 0), true);) \
|
|
|
|
TAILQ_FOREACH(child, &((head)->nodes_head), nodes)
|
2011-05-14 22:11:09 +02:00
|
|
|
|
2014-06-19 11:20:32 +02:00
|
|
|
#define NODES_FOREACH_REVERSE(head) \
|
|
|
|
for (Con *child = (Con *)-1; (child == (Con *)-1) && ((child = 0), true);) \
|
|
|
|
TAILQ_FOREACH_REVERSE(child, &((head)->nodes_head), nodes_head, nodes)
|
Modify workspace next/prev to account for workspaces on all outputs.
Generally, the traversal goes: numbered workspaces in order, and then
named workspaces in the order in which they appear in the tree.
Example:
Output 1: Output 2:
1 3 D C 2 4 B A
Traversal: 1, 2, 3, 4, D, C, B, A, 1, ...
Note, after the numbered workspaces, we traverse the named workspaces
from output 1, and then output 2, etc.
2011-08-03 23:41:40 +02:00
|
|
|
|
2011-05-14 22:11:09 +02:00
|
|
|
/* greps the ->nodes of the given head and returns the first node that matches the given condition */
|
|
|
|
#define GREP_FIRST(dest, head, condition) \
|
2014-06-19 11:20:32 +02:00
|
|
|
NODES_FOREACH(head) { \
|
|
|
|
if (!(condition)) \
|
|
|
|
continue; \
|
|
|
|
\
|
|
|
|
(dest) = child; \
|
|
|
|
break; \
|
2011-05-14 22:11:09 +02:00
|
|
|
}
|
|
|
|
|
2014-06-19 11:20:32 +02:00
|
|
|
#define FREE(pointer) \
|
|
|
|
do { \
|
2009-06-21 13:44:14 +02:00
|
|
|
if (pointer != NULL) { \
|
2014-06-19 11:20:32 +02:00
|
|
|
free(pointer); \
|
|
|
|
pointer = NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2009-03-11 00:20:56 +01:00
|
|
|
|
2014-06-19 11:20:32 +02:00
|
|
|
#define CALL(obj, member, ...) obj->member(obj, ##__VA_ARGS__)
|
2011-02-14 18:08:36 +01:00
|
|
|
|
2009-02-15 01:58:09 +01:00
|
|
|
int min(int a, int b);
|
|
|
|
int max(int a, int b);
|
2010-04-13 18:43:37 +02:00
|
|
|
bool rect_contains(Rect rect, uint32_t x, uint32_t y);
|
2010-11-12 21:41:10 +01:00
|
|
|
Rect rect_add(Rect a, Rect b);
|
2014-06-13 22:18:36 +02:00
|
|
|
Rect rect_sub(Rect a, Rect b);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
2014-05-18 05:36:58 +02:00
|
|
|
/**
|
|
|
|
* Returns true if the name consists of only digits.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
__attribute__((pure)) bool name_is_digits(const char *name);
|
|
|
|
|
2017-02-21 02:12:39 +01:00
|
|
|
/**
|
|
|
|
* Set 'out' to the layout_t value for the given layout. The function
|
|
|
|
* returns true on success or false if the passed string is not a valid
|
|
|
|
* layout name.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
bool layout_from_name(const char *layout_str, layout_t *out);
|
|
|
|
|
2014-05-18 05:36:58 +02:00
|
|
|
/**
|
|
|
|
* Parses the workspace name as a number. Returns -1 if the workspace should be
|
|
|
|
* interpreted as a "named workspace".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
long ws_name_to_number(const char *name);
|
|
|
|
|
2010-02-28 18:39:11 +01:00
|
|
|
/**
|
|
|
|
* Updates *destination with new_value and returns true if it was changed or false
|
|
|
|
* if it was the same
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
bool update_if_necessary(uint32_t *destination, const uint32_t new_value);
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
/**
|
|
|
|
* exec()s an i3 utility, for example the config file migration script or
|
|
|
|
* i3-nagbar. This function first searches $PATH for the given utility named,
|
|
|
|
* then falls back to the dirname() of the i3 executable path and then falls
|
|
|
|
* back to the dirname() of the target of /proc/self/exe (on linux).
|
|
|
|
*
|
|
|
|
* This function should be called after fork()ing.
|
|
|
|
*
|
|
|
|
* The first argument of the given argv vector will be overwritten with the
|
|
|
|
* executable name, so pass NULL.
|
|
|
|
*
|
|
|
|
* If the utility cannot be found in any of these locations, it exits with
|
|
|
|
* return code 2.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void exec_i3_utility(char *name, char *argv[]);
|
|
|
|
|
2011-03-21 23:54:13 +01:00
|
|
|
/**
|
2010-12-01 01:47:16 +01:00
|
|
|
* Checks if the given path exists by calling stat().
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
bool path_exists(const char *path);
|
|
|
|
|
2011-03-21 23:54:13 +01:00
|
|
|
/**
|
2010-01-03 14:52:38 +01:00
|
|
|
* Restart i3 in-place
|
|
|
|
* appends -a to argument list to disable autostart
|
|
|
|
*
|
|
|
|
*/
|
2010-12-30 21:43:34 +01:00
|
|
|
void i3_restart(bool forget_layout);
|
2010-01-03 14:52:38 +01:00
|
|
|
|
2011-07-17 15:18:45 +02:00
|
|
|
#if defined(__OpenBSD__) || defined(__APPLE__)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Taken from FreeBSD
|
|
|
|
* Find the first occurrence of the byte string s in byte string l.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void *memmem(const void *l, size_t l_len, const void *s, size_t s_len);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-01-05 00:39:40 +01:00
|
|
|
/**
|
|
|
|
* Escapes the given string if a pango font is currently used.
|
|
|
|
* If the string has to be escaped, the input string will be free'd.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
char *pango_escape_markup(char *input);
|
|
|
|
|
2012-12-24 16:53:20 +01:00
|
|
|
/**
|
|
|
|
* Starts an i3-nagbar instance with the given parameters. Takes care of
|
|
|
|
* handling SIGCHLD and killing i3-nagbar when i3 exits.
|
|
|
|
*
|
|
|
|
* The resulting PID will be stored in *nagbar_pid and can be used with
|
|
|
|
* kill_nagbar() to kill the bar later on.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void start_nagbar(pid_t *nagbar_pid, char *argv[]);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Kills the i3-nagbar process, if *nagbar_pid != -1.
|
|
|
|
*
|
|
|
|
* If wait_for_it is set (restarting i3), this function will waitpid(),
|
|
|
|
* otherwise, ev is assumed to handle it (reloading).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void kill_nagbar(pid_t *nagbar_pid, bool wait_for_it);
|
2016-02-26 22:39:44 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a string into a long using strtol().
|
|
|
|
* This is a convenience wrapper checking the parsing result. It returns true
|
|
|
|
* if the number could be parsed.
|
|
|
|
*/
|
|
|
|
bool parse_long(const char *str, long *out, int base);
|
2017-09-13 17:14:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Slurp reads path in its entirety into buf, returning the length of the file
|
|
|
|
* or -1 if the file could not be read. buf is set to a buffer of appropriate
|
|
|
|
* size, or NULL if -1 is returned.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
ssize_t slurp(const char *path, char **buf);
|