mirror of
https://github.com/swaywm/sway.git
synced 2024-11-18 22:19:14 +00:00
Implement __focused__ criteria
This commit is contained in:
parent
3e1bf721c6
commit
94e42f9857
|
@ -176,6 +176,8 @@ const char *view_get_instance(struct sway_view *view);
|
||||||
|
|
||||||
uint32_t view_get_x11_window_id(struct sway_view *view);
|
uint32_t view_get_x11_window_id(struct sway_view *view);
|
||||||
|
|
||||||
|
const char *view_get_window_role(struct sway_view *view);
|
||||||
|
|
||||||
uint32_t view_get_window_type(struct sway_view *view);
|
uint32_t view_get_window_type(struct sway_view *view);
|
||||||
|
|
||||||
const char *view_get_type(struct sway_view *view);
|
const char *view_get_type(struct sway_view *view);
|
||||||
|
|
204
sway/criteria.c
204
sway/criteria.c
|
@ -190,19 +190,128 @@ static bool generate_regex(pcre **regex, char *value) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum criteria_token {
|
||||||
|
T_APP_ID,
|
||||||
|
T_CLASS,
|
||||||
|
T_CON_ID,
|
||||||
|
T_CON_MARK,
|
||||||
|
T_FLOATING,
|
||||||
|
T_ID,
|
||||||
|
T_INSTANCE,
|
||||||
|
T_TILING,
|
||||||
|
T_TITLE,
|
||||||
|
T_URGENT,
|
||||||
|
T_WINDOW_ROLE,
|
||||||
|
T_WINDOW_TYPE,
|
||||||
|
T_WORKSPACE,
|
||||||
|
|
||||||
|
T_INVALID,
|
||||||
|
};
|
||||||
|
|
||||||
|
static enum criteria_token token_from_name(char *name) {
|
||||||
|
if (strcmp(name, "app_id") == 0) {
|
||||||
|
return T_APP_ID;
|
||||||
|
} else if (strcmp(name, "class") == 0) {
|
||||||
|
return T_CLASS;
|
||||||
|
} else if (strcmp(name, "con_id") == 0) {
|
||||||
|
return T_CON_ID;
|
||||||
|
} else if (strcmp(name, "con_mark") == 0) {
|
||||||
|
return T_CON_MARK;
|
||||||
|
} else if (strcmp(name, "id") == 0) {
|
||||||
|
return T_ID;
|
||||||
|
} else if (strcmp(name, "instance") == 0) {
|
||||||
|
return T_INSTANCE;
|
||||||
|
} else if (strcmp(name, "title") == 0) {
|
||||||
|
return T_TITLE;
|
||||||
|
} else if (strcmp(name, "urgent") == 0) {
|
||||||
|
return T_URGENT;
|
||||||
|
} else if (strcmp(name, "window_role") == 0) {
|
||||||
|
return T_WINDOW_ROLE;
|
||||||
|
} else if (strcmp(name, "window_type") == 0) {
|
||||||
|
return T_WINDOW_TYPE;
|
||||||
|
} else if (strcmp(name, "workspace") == 0) {
|
||||||
|
return T_WORKSPACE;
|
||||||
|
}
|
||||||
|
return T_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a property of the focused view.
|
||||||
|
*
|
||||||
|
* Note that we are taking the focused view at the time of criteria parsing, not
|
||||||
|
* at the time of execution. This is because __focused__ only makes sense when
|
||||||
|
* using criteria via IPC. Using __focused__ in config is not useful because
|
||||||
|
* criteria is only executed once per view.
|
||||||
|
*/
|
||||||
|
static char *get_focused_prop(enum criteria_token token) {
|
||||||
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
||||||
|
struct sway_container *focus = seat_get_focus(seat);
|
||||||
|
|
||||||
|
if (!focus || focus->type != C_VIEW) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
struct sway_view *view = focus->sway_view;
|
||||||
|
const char *value = NULL;
|
||||||
|
|
||||||
|
switch (token) {
|
||||||
|
case T_APP_ID:
|
||||||
|
value = view_get_app_id(view);
|
||||||
|
break;
|
||||||
|
case T_CLASS:
|
||||||
|
value = view_get_class(view);
|
||||||
|
break;
|
||||||
|
case T_INSTANCE:
|
||||||
|
value = view_get_instance(view);
|
||||||
|
break;
|
||||||
|
case T_TITLE:
|
||||||
|
value = view_get_class(view);
|
||||||
|
break;
|
||||||
|
case T_WINDOW_ROLE:
|
||||||
|
value = view_get_class(view);
|
||||||
|
break;
|
||||||
|
case T_WORKSPACE:
|
||||||
|
{
|
||||||
|
struct sway_container *ws = container_parent(focus, C_WORKSPACE);
|
||||||
|
if (ws) {
|
||||||
|
value = ws->name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case T_CON_ID: // These do not support __focused__
|
||||||
|
case T_CON_MARK:
|
||||||
|
case T_FLOATING:
|
||||||
|
case T_ID:
|
||||||
|
case T_TILING:
|
||||||
|
case T_URGENT:
|
||||||
|
case T_WINDOW_TYPE:
|
||||||
|
case T_INVALID:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (value) {
|
||||||
|
return strdup(value);
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static bool parse_token(struct criteria *criteria, char *name, char *value) {
|
static bool parse_token(struct criteria *criteria, char *name, char *value) {
|
||||||
|
enum criteria_token token = token_from_name(name);
|
||||||
|
if (token == T_INVALID) {
|
||||||
|
const char *fmt = "Token '%s' is not recognized";
|
||||||
|
int len = strlen(fmt) + strlen(name) - 1;
|
||||||
|
error = malloc(len);
|
||||||
|
snprintf(error, len, fmt, name);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
char *effective_value = NULL;
|
||||||
|
if (value && strcmp(value, "__focused__") == 0) {
|
||||||
|
effective_value = get_focused_prop(token);
|
||||||
|
} else if (value) {
|
||||||
|
effective_value = strdup(value);
|
||||||
|
}
|
||||||
|
|
||||||
// Require value, unless token is floating or tiled
|
// Require value, unless token is floating or tiled
|
||||||
if (!value && (strcmp(name, "title") == 0
|
if (!effective_value && token != T_FLOATING && token != T_TILING) {
|
||||||
|| strcmp(name, "app_id") == 0
|
|
||||||
|| strcmp(name, "class") == 0
|
|
||||||
|| strcmp(name, "instance") == 0
|
|
||||||
|| strcmp(name, "con_id") == 0
|
|
||||||
|| strcmp(name, "con_mark") == 0
|
|
||||||
|| strcmp(name, "window_role") == 0
|
|
||||||
|| strcmp(name, "window_type") == 0
|
|
||||||
|| strcmp(name, "id") == 0
|
|
||||||
|| strcmp(name, "urgent") == 0
|
|
||||||
|| strcmp(name, "workspace") == 0)) {
|
|
||||||
const char *fmt = "Token '%s' requires a value";
|
const char *fmt = "Token '%s' requires a value";
|
||||||
int len = strlen(fmt) + strlen(name) - 1;
|
int len = strlen(fmt) + strlen(name) - 1;
|
||||||
error = malloc(len);
|
error = malloc(len);
|
||||||
|
@ -210,53 +319,64 @@ static bool parse_token(struct criteria *criteria, char *name, char *value) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(name, "title") == 0) {
|
char *endptr = NULL;
|
||||||
generate_regex(&criteria->title, value);
|
switch (token) {
|
||||||
} else if (strcmp(name, "app_id") == 0) {
|
case T_TITLE:
|
||||||
generate_regex(&criteria->app_id, value);
|
generate_regex(&criteria->title, effective_value);
|
||||||
} else if (strcmp(name, "class") == 0) {
|
break;
|
||||||
generate_regex(&criteria->class, value);
|
case T_APP_ID:
|
||||||
} else if (strcmp(name, "instance") == 0) {
|
generate_regex(&criteria->app_id, effective_value);
|
||||||
generate_regex(&criteria->instance, value);
|
break;
|
||||||
} else if (strcmp(name, "con_id") == 0) {
|
case T_CLASS:
|
||||||
char *endptr;
|
generate_regex(&criteria->class, effective_value);
|
||||||
criteria->con_id = strtoul(value, &endptr, 10);
|
break;
|
||||||
|
case T_INSTANCE:
|
||||||
|
generate_regex(&criteria->instance, effective_value);
|
||||||
|
break;
|
||||||
|
case T_CON_ID:
|
||||||
|
criteria->con_id = strtoul(effective_value, &endptr, 10);
|
||||||
if (*endptr != 0) {
|
if (*endptr != 0) {
|
||||||
error = strdup("The value for 'con_id' should be numeric");
|
error = strdup("The value for 'con_id' should be numeric");
|
||||||
}
|
}
|
||||||
} else if (strcmp(name, "con_mark") == 0) {
|
break;
|
||||||
generate_regex(&criteria->con_mark, value);
|
case T_CON_MARK:
|
||||||
} else if (strcmp(name, "window_role") == 0) {
|
generate_regex(&criteria->con_mark, effective_value);
|
||||||
generate_regex(&criteria->window_role, value);
|
break;
|
||||||
} else if (strcmp(name, "window_type") == 0) {
|
case T_WINDOW_ROLE:
|
||||||
|
generate_regex(&criteria->window_role, effective_value);
|
||||||
|
break;
|
||||||
|
case T_WINDOW_TYPE:
|
||||||
// TODO: This is a string but will be stored as an enum or integer
|
// TODO: This is a string but will be stored as an enum or integer
|
||||||
} else if (strcmp(name, "id") == 0) {
|
break;
|
||||||
char *endptr;
|
case T_ID:
|
||||||
criteria->id = strtoul(value, &endptr, 10);
|
criteria->id = strtoul(effective_value, &endptr, 10);
|
||||||
if (*endptr != 0) {
|
if (*endptr != 0) {
|
||||||
error = strdup("The value for 'id' should be numeric");
|
error = strdup("The value for 'id' should be numeric");
|
||||||
}
|
}
|
||||||
} else if (strcmp(name, "floating") == 0) {
|
break;
|
||||||
|
case T_FLOATING:
|
||||||
criteria->floating = true;
|
criteria->floating = true;
|
||||||
} else if (strcmp(name, "tiling") == 0) {
|
break;
|
||||||
|
case T_TILING:
|
||||||
criteria->tiling = true;
|
criteria->tiling = true;
|
||||||
} else if (strcmp(name, "urgent") == 0) {
|
break;
|
||||||
if (strcmp(value, "latest") == 0) {
|
case T_URGENT:
|
||||||
|
if (strcmp(effective_value, "latest") == 0) {
|
||||||
criteria->urgent = 'l';
|
criteria->urgent = 'l';
|
||||||
} else if (strcmp(value, "oldest") == 0) {
|
} else if (strcmp(effective_value, "oldest") == 0) {
|
||||||
criteria->urgent = 'o';
|
criteria->urgent = 'o';
|
||||||
} else {
|
} else {
|
||||||
error =
|
error =
|
||||||
strdup("The value for 'urgent' must be 'latest' or 'oldest'");
|
strdup("The value for 'urgent' must be 'latest' or 'oldest'");
|
||||||
}
|
}
|
||||||
} else if (strcmp(name, "workspace") == 0) {
|
break;
|
||||||
criteria->workspace = strdup(value);
|
case T_WORKSPACE:
|
||||||
} else {
|
criteria->workspace = strdup(effective_value);
|
||||||
const char *fmt = "Token '%s' is not recognized";
|
break;
|
||||||
int len = strlen(fmt) + strlen(name) - 1;
|
case T_INVALID:
|
||||||
error = malloc(len);
|
break;
|
||||||
snprintf(error, len, fmt, name);
|
|
||||||
}
|
}
|
||||||
|
free(effective_value);
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -79,6 +79,13 @@ uint32_t view_get_x11_window_id(struct sway_view *view) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *view_get_window_role(struct sway_view *view) {
|
||||||
|
if (view->impl->get_string_prop) {
|
||||||
|
return view->impl->get_string_prop(view, VIEW_PROP_WINDOW_ROLE);
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t view_get_window_type(struct sway_view *view) {
|
uint32_t view_get_window_type(struct sway_view *view) {
|
||||||
if (view->impl->get_int_prop) {
|
if (view->impl->get_int_prop) {
|
||||||
return view->impl->get_int_prop(view, VIEW_PROP_WINDOW_TYPE);
|
return view->impl->get_int_prop(view, VIEW_PROP_WINDOW_TYPE);
|
||||||
|
|
Loading…
Reference in a new issue