| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | #define _POSIX_C_SOURCE 200809L
 | 
					
						
							| 
									
										
										
										
											2019-01-23 18:00:14 +00:00
										 |  |  | #include <json.h>
 | 
					
						
							| 
									
										
										
										
											2018-07-15 20:16:37 -04:00
										 |  |  | #include <linux/input-event-codes.h>
 | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | #include <ctype.h>
 | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | #include "log.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-24 21:56:35 +01:00
										 |  |  | #include "swaybar/bar.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | #include "swaybar/config.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-24 21:56:35 +01:00
										 |  |  | #include "swaybar/i3bar.h"
 | 
					
						
							| 
									
										
										
										
											2018-10-17 20:21:27 +01:00
										 |  |  | #include "swaybar/input.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | #include "swaybar/status_line.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-14 21:04:43 +01:00
										 |  |  | void i3bar_block_unref(struct i3bar_block *block) { | 
					
						
							|  |  |  | 	if (block == NULL) { | 
					
						
							| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-12 08:28:28 +01:00
										 |  |  | 	if (--block->ref_count == 0) { | 
					
						
							| 
									
										
										
										
											2018-09-14 21:04:43 +01:00
										 |  |  | 		free(block->full_text); | 
					
						
							|  |  |  | 		free(block->short_text); | 
					
						
							|  |  |  | 		free(block->align); | 
					
						
							| 
									
										
										
										
											2019-01-31 10:45:12 +01:00
										 |  |  | 		free(block->min_width_str); | 
					
						
							| 
									
										
										
										
											2018-09-14 21:04:43 +01:00
										 |  |  | 		free(block->name); | 
					
						
							|  |  |  | 		free(block->instance); | 
					
						
							|  |  |  | 		free(block->color); | 
					
						
							|  |  |  | 		free(block); | 
					
						
							| 
									
										
										
										
											2018-09-12 08:28:28 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | static void i3bar_parse_json(struct status_line *status, | 
					
						
							|  |  |  | 		struct json_object *json_array) { | 
					
						
							| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | 	struct i3bar_block *block, *tmp; | 
					
						
							|  |  |  | 	wl_list_for_each_safe(block, tmp, &status->blocks, link) { | 
					
						
							| 
									
										
										
										
											2018-09-12 08:28:28 +01:00
										 |  |  | 		wl_list_remove(&block->link); | 
					
						
							|  |  |  | 		i3bar_block_unref(block); | 
					
						
							| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 	for (size_t i = 0; i < json_object_array_length(json_array); ++i) { | 
					
						
							| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | 		json_object *full_text, *short_text, *color, *min_width, *align, *urgent; | 
					
						
							|  |  |  | 		json_object *name, *instance, *separator, *separator_block_width; | 
					
						
							|  |  |  | 		json_object *background, *border, *border_top, *border_bottom; | 
					
						
							|  |  |  | 		json_object *border_left, *border_right, *markup; | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 		json_object *json = json_object_array_get_idx(json_array, i); | 
					
						
							| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | 		if (!json) { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "full_text", &full_text); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "short_text", &short_text); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "color", &color); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "min_width", &min_width); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "align", &align); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "urgent", &urgent); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "name", &name); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "instance", &instance); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "markup", &markup); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "separator", &separator); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "separator_block_width", &separator_block_width); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "background", &background); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "border", &border); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "border_top", &border_top); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "border_bottom", &border_bottom); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "border_left", &border_left); | 
					
						
							|  |  |  | 		json_object_object_get_ex(json, "border_right", &border_right); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		struct i3bar_block *block = calloc(1, sizeof(struct i3bar_block)); | 
					
						
							| 
									
										
										
										
											2018-09-12 08:28:28 +01:00
										 |  |  | 		block->ref_count = 1; | 
					
						
							| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | 		block->full_text = full_text ? | 
					
						
							|  |  |  | 			strdup(json_object_get_string(full_text)) : NULL; | 
					
						
							|  |  |  | 		block->short_text = short_text ? | 
					
						
							|  |  |  | 			strdup(json_object_get_string(short_text)) : NULL; | 
					
						
							|  |  |  | 		if (color) { | 
					
						
							|  |  |  | 			block->color = malloc(sizeof(uint32_t)); | 
					
						
							|  |  |  | 			*block->color = parse_color(json_object_get_string(color)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (min_width) { | 
					
						
							|  |  |  | 			json_type type = json_object_get_type(min_width); | 
					
						
							|  |  |  | 			if (type == json_type_int) { | 
					
						
							|  |  |  | 				block->min_width = json_object_get_int(min_width); | 
					
						
							|  |  |  | 			} else if (type == json_type_string) { | 
					
						
							|  |  |  | 				/* the width will be calculated when rendering */ | 
					
						
							| 
									
										
										
										
											2019-01-31 10:45:12 +01:00
										 |  |  | 				block->min_width_str = strdup(json_object_get_string(min_width)); | 
					
						
							| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		block->align = strdup(align ? json_object_get_string(align) : "left"); | 
					
						
							|  |  |  | 		block->urgent = urgent ? json_object_get_int(urgent) : false; | 
					
						
							|  |  |  | 		block->name = name ? strdup(json_object_get_string(name)) : NULL; | 
					
						
							|  |  |  | 		block->instance = instance ? | 
					
						
							|  |  |  | 			strdup(json_object_get_string(instance)) : NULL; | 
					
						
							|  |  |  | 		if (markup) { | 
					
						
							|  |  |  | 			block->markup = false; | 
					
						
							|  |  |  | 			const char *markup_str = json_object_get_string(markup); | 
					
						
							|  |  |  | 			if (strcmp(markup_str, "pango") == 0) { | 
					
						
							|  |  |  | 				block->markup = true; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		block->separator = separator ? json_object_get_int(separator) : true; | 
					
						
							|  |  |  | 		block->separator_block_width = separator_block_width ? | 
					
						
							|  |  |  | 			json_object_get_int(separator_block_width) : 9; | 
					
						
							|  |  |  | 		// Airblader features
 | 
					
						
							|  |  |  | 		block->background = background ? | 
					
						
							|  |  |  | 			parse_color(json_object_get_string(background)) : 0; | 
					
						
							|  |  |  | 		block->border = border ?  | 
					
						
							|  |  |  | 			parse_color(json_object_get_string(border)) : 0; | 
					
						
							|  |  |  | 		block->border_top = border_top ? json_object_get_int(border_top) : 1; | 
					
						
							|  |  |  | 		block->border_bottom = border_bottom ? | 
					
						
							|  |  |  | 			json_object_get_int(border_bottom) : 1; | 
					
						
							|  |  |  | 		block->border_left = border_left ? json_object_get_int(border_left) : 1; | 
					
						
							|  |  |  | 		block->border_right = border_right ? | 
					
						
							|  |  |  | 			json_object_get_int(border_right) : 1; | 
					
						
							|  |  |  | 		wl_list_insert(&status->blocks, &block->link); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-31 14:39:18 -04:00
										 |  |  | bool i3bar_handle_readable(struct status_line *status) { | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 	while (!status->started) { // look for opening bracket
 | 
					
						
							|  |  |  | 		for (size_t c = 0; c < status->buffer_index; ++c) { | 
					
						
							|  |  |  | 			if (status->buffer[c] == '[') { | 
					
						
							|  |  |  | 				status->started = true; | 
					
						
							|  |  |  | 				status->buffer_index -= ++c; | 
					
						
							|  |  |  | 				memmove(status->buffer, &status->buffer[c], status->buffer_index); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} else if (!isspace(status->buffer[c])) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 				sway_log(SWAY_DEBUG, "Invalid i3bar json: expected '[' but encountered '%c'", | 
					
						
							| 
									
										
										
										
											2018-09-21 12:06:25 +01:00
										 |  |  | 						status->buffer[c]); | 
					
						
							|  |  |  | 				status_error(status, "[invalid i3bar json]"); | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 				return true; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (status->started) { | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 		errno = 0; | 
					
						
							|  |  |  | 		ssize_t read_bytes = read(status->read_fd, status->buffer, status->buffer_size); | 
					
						
							|  |  |  | 		if (read_bytes > -1) { | 
					
						
							|  |  |  | 			status->buffer_index = read_bytes; | 
					
						
							|  |  |  | 		} else if (errno == EAGAIN) { | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			status_error(status, "[error reading from status command]"); | 
					
						
							| 
									
										
										
										
											2018-04-09 08:07:54 -04:00
										 |  |  | 			return true; | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 	struct json_object *last_object = NULL; | 
					
						
							|  |  |  | 	struct json_object *test_object; | 
					
						
							|  |  |  | 	size_t buffer_pos = 0; | 
					
						
							|  |  |  | 	while (true) { | 
					
						
							|  |  |  | 		// since the incoming stream is an infinite array
 | 
					
						
							|  |  |  | 		// parsing is split into two parts
 | 
					
						
							|  |  |  | 		// first, attempt to parse the current object, reading more if the
 | 
					
						
							|  |  |  | 		// parser indicates that the current object is incomplete, and failing
 | 
					
						
							|  |  |  | 		// if the parser fails
 | 
					
						
							|  |  |  | 		// second, look for separating comma, ignoring whitespace, failing if
 | 
					
						
							|  |  |  | 		// any other characters are encountered
 | 
					
						
							|  |  |  | 		if (status->expecting_comma) { | 
					
						
							|  |  |  | 			for (; buffer_pos < status->buffer_index; ++buffer_pos) { | 
					
						
							|  |  |  | 				if (status->buffer[buffer_pos] == ',') { | 
					
						
							|  |  |  | 					status->expecting_comma = false; | 
					
						
							|  |  |  | 					++buffer_pos; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} else if (!isspace(status->buffer[buffer_pos])) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 					sway_log(SWAY_DEBUG, "Invalid i3bar json: expected ',' but encountered '%c'", | 
					
						
							| 
									
										
										
										
											2018-09-21 12:06:25 +01:00
										 |  |  | 							status->buffer[buffer_pos]); | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 					status_error(status, "[invalid i3bar json]"); | 
					
						
							|  |  |  | 					return true; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (buffer_pos < status->buffer_index) { | 
					
						
							|  |  |  | 				continue; // look for new object without reading more input
 | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 			buffer_pos = status->buffer_index = 0; | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 			test_object = json_tokener_parse_ex(status->tokener, | 
					
						
							|  |  |  | 					&status->buffer[buffer_pos], status->buffer_index - buffer_pos); | 
					
						
							| 
									
										
										
										
											2018-09-21 12:06:25 +01:00
										 |  |  | 			enum json_tokener_error err = json_tokener_get_error(status->tokener); | 
					
						
							|  |  |  | 			if (err == json_tokener_success) { | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 				if (json_object_get_type(test_object) == json_type_array) { | 
					
						
							|  |  |  | 					if (last_object) { | 
					
						
							|  |  |  | 						json_object_put(last_object); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					last_object = test_object; | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					json_object_put(test_object); | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 14:21:14 +01:00
										 |  |  | 				// in order to print the json for debugging purposes
 | 
					
						
							|  |  |  | 				// the last character is temporarily replaced with a null character
 | 
					
						
							|  |  |  | 				// (the last character is used in case the buffer is full)
 | 
					
						
							|  |  |  | 				char *last_char_pos = | 
					
						
							|  |  |  | 					&status->buffer[buffer_pos + status->tokener->char_offset - 1]; | 
					
						
							|  |  |  | 				char last_char = *last_char_pos; | 
					
						
							|  |  |  | 				while (isspace(last_char)) { | 
					
						
							|  |  |  | 					last_char = *--last_char_pos; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				*last_char_pos = '\0'; | 
					
						
							|  |  |  | 				size_t offset = strspn(&status->buffer[buffer_pos], " \f\n\r\t\v"); | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 				sway_log(SWAY_DEBUG, "Received i3bar json: '%s%c'", | 
					
						
							| 
									
										
										
										
											2018-09-17 14:21:14 +01:00
										 |  |  | 						&status->buffer[buffer_pos + offset], last_char); | 
					
						
							|  |  |  | 				*last_char_pos = last_char; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 				buffer_pos += status->tokener->char_offset; | 
					
						
							|  |  |  | 				status->expecting_comma = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (buffer_pos < status->buffer_index) { | 
					
						
							|  |  |  | 					continue; // look for comma without reading more input
 | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 				buffer_pos = status->buffer_index = 0; | 
					
						
							| 
									
										
										
										
											2018-09-21 12:06:25 +01:00
										 |  |  | 			} else if (err == json_tokener_continue) { | 
					
						
							| 
									
										
										
										
											2018-09-21 14:59:01 +01:00
										 |  |  | 				json_tokener_reset(status->tokener); | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 				if (status->buffer_index < status->buffer_size) { | 
					
						
							|  |  |  | 					// move the object to the start of the buffer
 | 
					
						
							|  |  |  | 					status->buffer_index -= buffer_pos; | 
					
						
							|  |  |  | 					memmove(status->buffer, &status->buffer[buffer_pos], | 
					
						
							|  |  |  | 							status->buffer_index); | 
					
						
							| 
									
										
										
										
											2018-09-19 15:16:19 +01:00
										 |  |  | 					buffer_pos = 0; | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					// expand buffer
 | 
					
						
							|  |  |  | 					status->buffer_size *= 2; | 
					
						
							|  |  |  | 					char *new_buffer = realloc(status->buffer, status->buffer_size); | 
					
						
							|  |  |  | 					if (new_buffer) { | 
					
						
							|  |  |  | 						status->buffer = new_buffer; | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						free(status->buffer); | 
					
						
							|  |  |  | 						status_error(status, "[failed to allocate buffer]"); | 
					
						
							|  |  |  | 						return true; | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2018-09-21 12:06:25 +01:00
										 |  |  | 				char last_char = status->buffer[status->buffer_index - 1]; | 
					
						
							|  |  |  | 				status->buffer[status->buffer_index - 1] = '\0'; | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 				sway_log(SWAY_DEBUG, "Failed to parse i3bar json - %s: '%s%c'", | 
					
						
							| 
									
										
										
										
											2018-09-21 12:06:25 +01:00
										 |  |  | 						json_tokener_error_desc(err), &status->buffer[buffer_pos], last_char); | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 				status_error(status, "[failed to parse i3bar json]"); | 
					
						
							|  |  |  | 				return true; | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		errno = 0; | 
					
						
							|  |  |  | 		ssize_t read_bytes = read(status->read_fd, &status->buffer[status->buffer_index], | 
					
						
							|  |  |  | 				status->buffer_size - status->buffer_index); | 
					
						
							|  |  |  | 		if (read_bytes > -1) { | 
					
						
							|  |  |  | 			status->buffer_index += read_bytes; | 
					
						
							|  |  |  | 		} else if (errno == EAGAIN) { | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			status_error(status, "[error reading from status command]"); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (last_object) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 		sway_log(SWAY_DEBUG, "Rendering last received json"); | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 		i3bar_parse_json(status, last_object); | 
					
						
							|  |  |  | 		json_object_put(last_object); | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2018-03-31 13:07:22 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-31 14:58:30 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 21:15:01 +02:00
										 |  |  | enum hotspot_event_handling i3bar_block_send_click(struct status_line *status, | 
					
						
							| 
									
										
										
										
											2018-12-04 12:47:59 +02:00
										 |  |  | 		struct i3bar_block *block, int x, int y, int rx, int ry, int w, int h, | 
					
						
							| 
									
										
										
										
											2019-01-10 12:43:10 -05:00
										 |  |  | 		uint32_t button) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 	sway_log(SWAY_DEBUG, "block %s clicked", block->name); | 
					
						
							| 
									
										
										
										
											2018-09-17 14:10:57 +01:00
										 |  |  | 	if (!block->name || !status->click_events) { | 
					
						
							| 
									
										
										
										
											2018-07-19 21:15:01 +02:00
										 |  |  | 		return HOTSPOT_PROCESS; | 
					
						
							| 
									
										
										
										
											2018-03-31 14:58:30 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct json_object *event_json = json_object_new_object(); | 
					
						
							|  |  |  | 	json_object_object_add(event_json, "name", | 
					
						
							|  |  |  | 			json_object_new_string(block->name)); | 
					
						
							|  |  |  | 	if (block->instance) { | 
					
						
							|  |  |  | 		json_object_object_add(event_json, "instance", | 
					
						
							|  |  |  | 				json_object_new_string(block->instance)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-10 12:43:10 -05:00
										 |  |  | 	json_object_object_add(event_json, "button", | 
					
						
							|  |  |  | 			json_object_new_int(event_to_x11_button(button))); | 
					
						
							|  |  |  | 	json_object_object_add(event_json, "event", json_object_new_int(button)); | 
					
						
							| 
									
										
										
										
											2018-03-31 14:58:30 -04:00
										 |  |  | 	json_object_object_add(event_json, "x", json_object_new_int(x)); | 
					
						
							|  |  |  | 	json_object_object_add(event_json, "y", json_object_new_int(y)); | 
					
						
							| 
									
										
										
										
											2018-12-04 12:47:59 +02:00
										 |  |  | 	json_object_object_add(event_json, "relative_x", json_object_new_int(rx)); | 
					
						
							|  |  |  | 	json_object_object_add(event_json, "relative_y", json_object_new_int(ry)); | 
					
						
							|  |  |  | 	json_object_object_add(event_json, "width", json_object_new_int(w)); | 
					
						
							|  |  |  | 	json_object_object_add(event_json, "height", json_object_new_int(h)); | 
					
						
							| 
									
										
										
										
											2018-10-02 14:04:48 +01:00
										 |  |  | 	if (dprintf(status->write_fd, "%s%s\n", status->clicked ? "," : "", | 
					
						
							| 
									
										
										
										
											2018-04-03 11:17:34 -04:00
										 |  |  | 				json_object_to_json_string(event_json)) < 0) { | 
					
						
							|  |  |  | 		status_error(status, "[failed to write click event]"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-02 14:04:48 +01:00
										 |  |  | 	status->clicked = true; | 
					
						
							| 
									
										
										
										
											2018-03-31 14:58:30 -04:00
										 |  |  | 	json_object_put(event_json); | 
					
						
							| 
									
										
										
										
											2018-07-19 21:15:01 +02:00
										 |  |  | 	return HOTSPOT_IGNORE; | 
					
						
							| 
									
										
										
										
											2018-03-31 14:58:30 -04:00
										 |  |  | } |