2015-08-25 17:53:59 +00:00
|
|
|
#ifndef _SWAY_UTIL_H
|
|
|
|
#define _SWAY_UTIL_H
|
|
|
|
|
2016-01-05 17:07:43 +00:00
|
|
|
#include <stdint.h>
|
2018-07-30 12:03:46 +00:00
|
|
|
#include <stdbool.h>
|
2016-06-10 11:08:59 +00:00
|
|
|
#include <unistd.h>
|
2018-08-26 02:05:16 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2016-01-05 17:07:43 +00:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
|
|
|
|
2018-08-26 02:05:16 +00:00
|
|
|
enum movement_direction {
|
|
|
|
MOVE_LEFT,
|
|
|
|
MOVE_RIGHT,
|
|
|
|
MOVE_UP,
|
|
|
|
MOVE_DOWN,
|
|
|
|
MOVE_PARENT,
|
|
|
|
MOVE_CHILD,
|
|
|
|
};
|
|
|
|
|
2015-08-25 13:17:18 +00:00
|
|
|
/**
|
|
|
|
* Wrap i into the range [0, max[
|
|
|
|
*/
|
|
|
|
int wrap(int i, int max);
|
2015-08-25 17:53:59 +00:00
|
|
|
|
2016-01-23 21:35:32 +00:00
|
|
|
/**
|
|
|
|
* Count number of digits in int
|
|
|
|
*/
|
|
|
|
int numlen(int n);
|
|
|
|
|
2016-01-05 17:07:43 +00:00
|
|
|
/**
|
|
|
|
* Get modifier mask from modifier name.
|
|
|
|
*
|
|
|
|
* Returns the modifer mask or 0 if the name isn't found.
|
|
|
|
*/
|
|
|
|
uint32_t get_modifier_mask_by_name(const char *name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get modifier name from modifier mask.
|
|
|
|
*
|
|
|
|
* Returns the modifier name or NULL if it isn't found.
|
|
|
|
*/
|
|
|
|
const char *get_modifier_name_by_mask(uint32_t modifier);
|
|
|
|
|
2016-01-06 15:59:54 +00:00
|
|
|
/**
|
|
|
|
* Get an array of modifier names from modifier_masks
|
|
|
|
*
|
|
|
|
* Populates the names array and return the number of names added.
|
|
|
|
*/
|
|
|
|
int get_modifier_names(const char **names, uint32_t modifier_masks);
|
|
|
|
|
2016-06-10 11:08:59 +00:00
|
|
|
/**
|
|
|
|
* Get the pid of a parent process given the pid of a child process.
|
|
|
|
*
|
|
|
|
* Returns the parent pid or NULL if the parent pid cannot be determined.
|
|
|
|
*/
|
|
|
|
pid_t get_parent_pid(pid_t pid);
|
|
|
|
|
2016-07-30 23:50:13 +00:00
|
|
|
/**
|
|
|
|
* Given a string that represents an RGB(A) color, return a uint32_t
|
|
|
|
* version of the color.
|
|
|
|
*/
|
|
|
|
uint32_t parse_color(const char *color);
|
|
|
|
|
2018-07-23 19:04:46 +00:00
|
|
|
/**
|
|
|
|
* Given a string that represents a boolean, return the boolean value. This
|
|
|
|
* function also takes in the current boolean value to support toggling. If
|
|
|
|
* toggling is not desired, pass in true for current so that toggling values
|
|
|
|
* get parsed as not true.
|
|
|
|
*/
|
2018-07-23 20:22:09 +00:00
|
|
|
bool parse_boolean(const char *boolean, bool current);
|
2018-07-23 19:04:46 +00:00
|
|
|
|
2017-04-14 20:37:43 +00:00
|
|
|
/**
|
|
|
|
* Given a path string, recurseively resolves any symlinks to their targets
|
|
|
|
* (which may be a file, directory) and returns the result.
|
|
|
|
* argument is returned. Caller must free the returned buffer.
|
|
|
|
* If an error occures, if the path does not exist or if the path corresponds
|
|
|
|
* to a dangling symlink, NULL is returned.
|
|
|
|
*/
|
|
|
|
char* resolve_path(const char* path);
|
2017-07-07 19:51:34 +00:00
|
|
|
|
|
|
|
char *b64_encode(const char* binaryData, size_t len, size_t *flen);
|
|
|
|
unsigned char *b64_decode(const char *ascii, size_t len, size_t *flen);
|
|
|
|
|
2018-08-26 02:05:16 +00:00
|
|
|
bool sway_dir_to_wlr(enum movement_direction dir, enum wlr_direction *out);
|
|
|
|
|
2015-08-25 17:53:59 +00:00
|
|
|
#endif
|