2010-08-07 18:05:16 +02:00
|
|
|
/*
|
2011-10-25 22:19:38 +02:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-08-07 18:05:16 +02:00
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2010-08-07 18:05:16 +02:00
|
|
|
*
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
#pragma once
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2010-07-30 03:11:54 +02:00
|
|
|
#include "queue.h"
|
|
|
|
|
2010-09-17 01:16:53 +02:00
|
|
|
/* Get the maximum/minimum of x and y */
|
2012-08-05 21:36:49 +02:00
|
|
|
#undef MAX
|
2014-06-19 11:20:32 +02:00
|
|
|
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
2012-08-05 21:36:49 +02:00
|
|
|
#undef MIN
|
2014-06-19 11:20:32 +02:00
|
|
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
2010-09-17 01:16:53 +02:00
|
|
|
|
2015-12-29 18:01:51 +01:00
|
|
|
#define STARTS_WITH(string, len, needle) (((len) >= strlen((needle))) && strncasecmp((string), (needle), strlen((needle))) == 0)
|
2012-09-03 10:43:29 +02:00
|
|
|
|
2010-07-22 01:15:18 +02:00
|
|
|
/* Securely free p */
|
2014-06-19 11:20:32 +02:00
|
|
|
#define FREE(p) \
|
|
|
|
do { \
|
|
|
|
if (p != NULL) { \
|
|
|
|
free(p); \
|
|
|
|
p = NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2015-03-24 13:41:16 +01:00
|
|
|
/* Securely free single-linked list */
|
2014-06-19 11:20:32 +02:00
|
|
|
#define FREE_SLIST(l, type) \
|
|
|
|
do { \
|
|
|
|
type *walk = SLIST_FIRST(l); \
|
|
|
|
while (!SLIST_EMPTY(l)) { \
|
|
|
|
SLIST_REMOVE_HEAD(l, slist); \
|
|
|
|
FREE(walk); \
|
|
|
|
walk = SLIST_FIRST(l); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2015-03-24 13:41:16 +01:00
|
|
|
/* Securely free tail queue */
|
2014-06-19 11:20:32 +02:00
|
|
|
#define FREE_TAILQ(l, type) \
|
|
|
|
do { \
|
|
|
|
type *walk = TAILQ_FIRST(l); \
|
|
|
|
while (!TAILQ_EMPTY(l)) { \
|
|
|
|
TAILQ_REMOVE(l, TAILQ_FIRST(l), tailq); \
|
|
|
|
FREE(walk); \
|
|
|
|
walk = TAILQ_FIRST(l); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2010-09-17 06:49:28 +02:00
|
|
|
|
2013-12-24 10:35:56 +01:00
|
|
|
#if defined(DLOG)
|
|
|
|
#undef DLOG
|
|
|
|
#endif
|
2015-03-23 20:56:49 +01:00
|
|
|
/* Use cool logging macros */
|
2014-06-19 11:20:32 +02:00
|
|
|
#define DLOG(fmt, ...) \
|
|
|
|
do { \
|
|
|
|
if (config.verbose) { \
|
|
|
|
printf("[%s:%d] " fmt, __FILE__, __LINE__, ##__VA_ARGS__); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2010-09-17 06:49:28 +02:00
|
|
|
|
2012-08-10 15:39:50 +02:00
|
|
|
/* We will include libi3.h which define its own version of ELOG.
|
|
|
|
* We want *our* version, so we undef the libi3 one. */
|
|
|
|
#if defined(ELOG)
|
|
|
|
#undef ELOG
|
|
|
|
#endif
|
2014-06-19 11:20:32 +02:00
|
|
|
#define ELOG(fmt, ...) \
|
|
|
|
do { \
|
|
|
|
fprintf(stderr, "[%s:%d] ERROR: " fmt, __FILE__, __LINE__, ##__VA_ARGS__); \
|
|
|
|
} while (0)
|