mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	This commit mostly duplicates the wlr_log functions, although with a sway_* prefix. (This is very similar to PR #2009.) However, the logging function no longer needs to be replaceable, so sway_log_init's second argument is used to set the exit callback for sway_abort. wlr_log_init is still invoked in sway/main.c This commit makes it easier to remove the wlroots dependency for the helper programs swaymsg, swaybg, swaybar, and swaynag.
		
			
				
	
	
		
			119 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "log.h"
 | 
						|
#include "sway/commands.h"
 | 
						|
#include "sway/config.h"
 | 
						|
#include "sway/output.h"
 | 
						|
#include "sway/tree/container.h"
 | 
						|
 | 
						|
static void rebuild_textures_iterator(struct sway_container *con, void *data) {
 | 
						|
	container_update_marks_textures(con);
 | 
						|
	container_update_title_textures(con);
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Parse the hex string into an integer.
 | 
						|
 */
 | 
						|
static bool parse_color_int(char *hexstring, uint32_t *dest) {
 | 
						|
	if (hexstring[0] != '#') {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
 | 
						|
	if (strlen(hexstring) != 7 && strlen(hexstring) != 9) {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
 | 
						|
	++hexstring;
 | 
						|
	char *end;
 | 
						|
	uint32_t decimal = strtol(hexstring, &end, 16);
 | 
						|
 | 
						|
	if (*end != '\0') {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
 | 
						|
	if (strlen(hexstring) == 6) {
 | 
						|
		// Add alpha
 | 
						|
		decimal = (decimal << 8) | 0xff;
 | 
						|
	}
 | 
						|
 | 
						|
	*dest = decimal;
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Parse the hex string into a float value.
 | 
						|
 */
 | 
						|
static bool parse_color_float(char *hexstring, float dest[static 4]) {
 | 
						|
	uint32_t decimal;
 | 
						|
	if (!parse_color_int(hexstring, &decimal)) {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
	dest[0] = ((decimal >> 24) & 0xff) / 255.0;
 | 
						|
	dest[1] = ((decimal >> 16) & 0xff) / 255.0;
 | 
						|
	dest[2] = ((decimal >> 8) & 0xff) / 255.0;
 | 
						|
	dest[3] = (decimal & 0xff) / 255.0;
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
static struct cmd_results *handle_command(int argc, char **argv,
 | 
						|
		struct border_colors *class, char *cmd_name) {
 | 
						|
	struct cmd_results *error = NULL;
 | 
						|
	if ((error = checkarg(argc, cmd_name, EXPECTED_EQUAL_TO, 5))) {
 | 
						|
		return error;
 | 
						|
	}
 | 
						|
 | 
						|
	if (!parse_color_float(argv[0], class->border)) {
 | 
						|
		return cmd_results_new(CMD_INVALID,
 | 
						|
				"Unable to parse border color '%s'", argv[0]);
 | 
						|
	}
 | 
						|
 | 
						|
	if (!parse_color_float(argv[1], class->background)) {
 | 
						|
		return cmd_results_new(CMD_INVALID,
 | 
						|
				"Unable to parse background color '%s'", argv[1]);
 | 
						|
	}
 | 
						|
 | 
						|
	if (!parse_color_float(argv[2], class->text)) {
 | 
						|
		return cmd_results_new(CMD_INVALID,
 | 
						|
				"Unable to parse text color '%s'", argv[2]);
 | 
						|
	}
 | 
						|
 | 
						|
	if (!parse_color_float(argv[3], class->indicator)) {
 | 
						|
		return cmd_results_new(CMD_INVALID,
 | 
						|
				"Unable to parse indicator color '%s'", argv[3]);
 | 
						|
	}
 | 
						|
 | 
						|
	if (!parse_color_float(argv[4], class->child_border)) {
 | 
						|
		return cmd_results_new(CMD_INVALID,
 | 
						|
				"Unable to parse child border color '%s'", argv[4]);
 | 
						|
	}
 | 
						|
 | 
						|
	if (config->active) {
 | 
						|
		root_for_each_container(rebuild_textures_iterator, NULL);
 | 
						|
 | 
						|
		for (int i = 0; i < root->outputs->length; ++i) {
 | 
						|
			struct sway_output *output = root->outputs->items[i];
 | 
						|
			output_damage_whole(output);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return cmd_results_new(CMD_SUCCESS, NULL);
 | 
						|
}
 | 
						|
 | 
						|
struct cmd_results *cmd_client_focused(int argc, char **argv) {
 | 
						|
	return handle_command(argc, argv, &config->border_colors.focused, "client.focused");
 | 
						|
}
 | 
						|
 | 
						|
struct cmd_results *cmd_client_focused_inactive(int argc, char **argv) {
 | 
						|
	return handle_command(argc, argv, &config->border_colors.focused_inactive, "client.focused_inactive");
 | 
						|
}
 | 
						|
 | 
						|
struct cmd_results *cmd_client_unfocused(int argc, char **argv) {
 | 
						|
	return handle_command(argc, argv, &config->border_colors.unfocused, "client.unfocused");
 | 
						|
}
 | 
						|
 | 
						|
struct cmd_results *cmd_client_urgent(int argc, char **argv) {
 | 
						|
	return handle_command(argc, argv, &config->border_colors.urgent, "client.urgent");
 | 
						|
}
 | 
						|
 | 
						|
struct cmd_results *cmd_client_noop(int argc, char **argv) {
 | 
						|
	sway_log(SWAY_INFO, "Warning: %s is ignored by sway", argv[-1]);
 | 
						|
	return cmd_results_new(CMD_SUCCESS, NULL);
 | 
						|
}
 |