|
|
@ -11,435 +11,501 @@
|
|
|
|
#include "list.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
|
|
|
|
enum criteria_type { // *must* keep in sync with criteria_strings[]
|
|
|
|
bool criteria_is_empty(struct criteria *criteria) {
|
|
|
|
CRIT_APP_ID,
|
|
|
|
return !criteria->title
|
|
|
|
CRIT_CLASS,
|
|
|
|
&& !criteria->app_id
|
|
|
|
CRIT_CON_ID,
|
|
|
|
&& !criteria->class
|
|
|
|
CRIT_CON_MARK,
|
|
|
|
&& !criteria->instance
|
|
|
|
CRIT_FLOATING,
|
|
|
|
&& !criteria->con_mark
|
|
|
|
CRIT_ID,
|
|
|
|
&& !criteria->con_id
|
|
|
|
CRIT_INSTANCE,
|
|
|
|
&& !criteria->id
|
|
|
|
CRIT_TILING,
|
|
|
|
&& !criteria->window_role
|
|
|
|
CRIT_TITLE,
|
|
|
|
&& !criteria->window_type
|
|
|
|
CRIT_URGENT,
|
|
|
|
&& !criteria->floating
|
|
|
|
CRIT_WINDOW_ROLE,
|
|
|
|
&& !criteria->tiling
|
|
|
|
CRIT_WINDOW_TYPE,
|
|
|
|
&& !criteria->urgent
|
|
|
|
CRIT_WORKSPACE,
|
|
|
|
&& !criteria->workspace;
|
|
|
|
CRIT_LAST
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void criteria_destroy(struct criteria *criteria) {
|
|
|
|
|
|
|
|
pcre_free(criteria->title);
|
|
|
|
|
|
|
|
pcre_free(criteria->app_id);
|
|
|
|
|
|
|
|
pcre_free(criteria->class);
|
|
|
|
|
|
|
|
pcre_free(criteria->instance);
|
|
|
|
|
|
|
|
pcre_free(criteria->con_mark);
|
|
|
|
|
|
|
|
pcre_free(criteria->window_role);
|
|
|
|
|
|
|
|
free(criteria->workspace);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
free(criteria->raw);
|
|
|
|
|
|
|
|
free(criteria);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const char * const criteria_strings[CRIT_LAST] = {
|
|
|
|
static int regex_cmp(const char *item, const pcre *regex) {
|
|
|
|
[CRIT_APP_ID] = "app_id",
|
|
|
|
return pcre_exec(regex, NULL, item, strlen(item), 0, 0, NULL, 0);
|
|
|
|
[CRIT_CLASS] = "class",
|
|
|
|
}
|
|
|
|
[CRIT_CON_ID] = "con_id",
|
|
|
|
|
|
|
|
[CRIT_CON_MARK] = "con_mark",
|
|
|
|
|
|
|
|
[CRIT_FLOATING] = "floating",
|
|
|
|
|
|
|
|
[CRIT_ID] = "id",
|
|
|
|
|
|
|
|
[CRIT_INSTANCE] = "instance",
|
|
|
|
|
|
|
|
[CRIT_TILING] = "tiling",
|
|
|
|
|
|
|
|
[CRIT_TITLE] = "title",
|
|
|
|
|
|
|
|
[CRIT_URGENT] = "urgent", // either "latest" or "oldest" ...
|
|
|
|
|
|
|
|
[CRIT_WINDOW_ROLE] = "window_role",
|
|
|
|
|
|
|
|
[CRIT_WINDOW_TYPE] = "window_type",
|
|
|
|
|
|
|
|
[CRIT_WORKSPACE] = "workspace"
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
static bool criteria_matches_view(struct criteria *criteria,
|
|
|
|
* A single criteria token (ie. value/regex pair),
|
|
|
|
struct sway_view *view) {
|
|
|
|
* e.g. 'class="some class regex"'.
|
|
|
|
if (criteria->title) {
|
|
|
|
*/
|
|
|
|
const char *title = view_get_title(view);
|
|
|
|
struct crit_token {
|
|
|
|
if (!title || regex_cmp(title, criteria->title) != 0) {
|
|
|
|
enum criteria_type type;
|
|
|
|
return false;
|
|
|
|
pcre *regex;
|
|
|
|
}
|
|
|
|
char *raw;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void free_crit_token(struct crit_token *crit) {
|
|
|
|
if (criteria->app_id) {
|
|
|
|
pcre_free(crit->regex);
|
|
|
|
const char *app_id = view_get_app_id(view);
|
|
|
|
free(crit->raw);
|
|
|
|
if (!app_id || regex_cmp(app_id, criteria->app_id) != 0) {
|
|
|
|
free(crit);
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void free_crit_tokens(list_t *crit_tokens) {
|
|
|
|
if (criteria->class) {
|
|
|
|
for (int i = 0; i < crit_tokens->length; i++) {
|
|
|
|
const char *class = view_get_class(view);
|
|
|
|
free_crit_token(crit_tokens->items[i]);
|
|
|
|
if (!class || regex_cmp(class, criteria->class) != 0) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
list_free(crit_tokens);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Extracts criteria string from its brackets. Returns new (duplicate)
|
|
|
|
if (criteria->instance) {
|
|
|
|
// substring.
|
|
|
|
const char *instance = view_get_instance(view);
|
|
|
|
static char *criteria_from(const char *arg) {
|
|
|
|
if (!instance || regex_cmp(instance, criteria->instance) != 0) {
|
|
|
|
char *criteria = NULL;
|
|
|
|
return false;
|
|
|
|
if (*arg == '[') {
|
|
|
|
}
|
|
|
|
criteria = strdup(arg + 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
criteria = strdup(arg);
|
|
|
|
if (criteria->con_mark) {
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int last = strlen(criteria) - 1;
|
|
|
|
if (criteria->con_id) { // Internal ID
|
|
|
|
if (criteria[last] == ']') {
|
|
|
|
if (!view->swayc || view->swayc->id != criteria->con_id) {
|
|
|
|
criteria[last] = '\0';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return criteria;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Return instances of c found in str.
|
|
|
|
if (criteria->id) { // X11 window ID
|
|
|
|
static int countchr(char *str, char c) {
|
|
|
|
uint32_t x11_window_id = view_get_x11_window_id(view);
|
|
|
|
int found = 0;
|
|
|
|
if (!x11_window_id || x11_window_id != criteria->id) {
|
|
|
|
for (int i = 0; str[i]; i++) {
|
|
|
|
return false;
|
|
|
|
if (str[i] == c) {
|
|
|
|
|
|
|
|
++found;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return found;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// criteria_str is e.g. '[class="some class regex" instance="instance name"]'.
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// Will create array of pointers in buf, where first is duplicate of given
|
|
|
|
|
|
|
|
// string (must be freed) and the rest are pointers to names and values in the
|
|
|
|
|
|
|
|
// base string (every other, naturally). argc will be populated with the length
|
|
|
|
|
|
|
|
// of buf.
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// Returns error string or NULL if successful.
|
|
|
|
|
|
|
|
static char *crit_tokens(int *argc, char ***buf,
|
|
|
|
|
|
|
|
const char * const criteria_str) {
|
|
|
|
|
|
|
|
wlr_log(L_DEBUG, "Parsing criteria: '%s'", criteria_str);
|
|
|
|
|
|
|
|
char *base = criteria_from(criteria_str);
|
|
|
|
|
|
|
|
char *head = base;
|
|
|
|
|
|
|
|
char *namep = head; // start of criteria name
|
|
|
|
|
|
|
|
char *valp = NULL; // start of value
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// We're going to place EOS markers where we need to and fill up an array
|
|
|
|
|
|
|
|
// of pointers to the start of each token (either name or value).
|
|
|
|
|
|
|
|
int pairs = countchr(base, '=');
|
|
|
|
|
|
|
|
int max_tokens = pairs * 2 + 1; // this gives us at least enough slots
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char **argv = *buf = calloc(max_tokens, sizeof(char*));
|
|
|
|
|
|
|
|
argv[0] = base; // this needs to be freed by caller
|
|
|
|
|
|
|
|
bool quoted = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*argc = 1; // uneven = name, even = value
|
|
|
|
|
|
|
|
while (*head && *argc < max_tokens) {
|
|
|
|
|
|
|
|
if (namep != head && *(head - 1) == '\\') {
|
|
|
|
|
|
|
|
// escaped character: don't try to parse this
|
|
|
|
|
|
|
|
} else if (*head == '=' && namep != head) {
|
|
|
|
|
|
|
|
if (*argc % 2 != 1) {
|
|
|
|
|
|
|
|
// we're not expecting a name
|
|
|
|
|
|
|
|
return strdup("Unable to parse criteria: "
|
|
|
|
|
|
|
|
"Found out of place equal sign");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// name ends here
|
|
|
|
|
|
|
|
char *end = head; // don't want to rewind the head
|
|
|
|
|
|
|
|
while (*(end - 1) == ' ') {
|
|
|
|
|
|
|
|
--end;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
*end = '\0';
|
|
|
|
|
|
|
|
if (*(namep) == ' ') {
|
|
|
|
|
|
|
|
namep = strrchr(namep, ' ') + 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
argv[*argc] = namep;
|
|
|
|
|
|
|
|
*argc += 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (*head == '"') {
|
|
|
|
|
|
|
|
if (*argc % 2 != 0) {
|
|
|
|
|
|
|
|
// we're not expecting a value
|
|
|
|
|
|
|
|
return strdup("Unable to parse criteria: "
|
|
|
|
|
|
|
|
"Found quoted value where it was not expected");
|
|
|
|
|
|
|
|
} else if (!valp) { // value starts here
|
|
|
|
|
|
|
|
valp = head + 1;
|
|
|
|
|
|
|
|
quoted = true;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// value ends here
|
|
|
|
|
|
|
|
argv[*argc] = valp;
|
|
|
|
|
|
|
|
*argc += 1;
|
|
|
|
|
|
|
|
*head = '\0';
|
|
|
|
|
|
|
|
valp = NULL;
|
|
|
|
|
|
|
|
namep = head + 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (*argc % 2 == 0 && *head != ' ') {
|
|
|
|
|
|
|
|
// parse unquoted values
|
|
|
|
|
|
|
|
if (!valp) {
|
|
|
|
|
|
|
|
quoted = false;
|
|
|
|
|
|
|
|
valp = head; // value starts here
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (valp && !quoted && *head == ' ') {
|
|
|
|
|
|
|
|
// value ends here
|
|
|
|
if (criteria->window_role) {
|
|
|
|
argv[*argc] = valp;
|
|
|
|
// TODO
|
|
|
|
*argc += 1;
|
|
|
|
}
|
|
|
|
*head = '\0';
|
|
|
|
|
|
|
|
valp = NULL;
|
|
|
|
if (criteria->window_type) {
|
|
|
|
namep = head + 1;
|
|
|
|
uint32_t type = view_get_window_type(view);
|
|
|
|
|
|
|
|
if (!type || type != criteria->window_type) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
head++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// catch last unquoted value if needed
|
|
|
|
if (criteria->floating) {
|
|
|
|
if (valp && !quoted && !*head) {
|
|
|
|
// TODO
|
|
|
|
argv[*argc] = valp;
|
|
|
|
return false;
|
|
|
|
*argc += 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
if (criteria->tiling) {
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns error string on failure or NULL otherwise.
|
|
|
|
if (criteria->urgent) {
|
|
|
|
static char *parse_criteria_name(enum criteria_type *type, char *name) {
|
|
|
|
// TODO
|
|
|
|
*type = CRIT_LAST;
|
|
|
|
return false;
|
|
|
|
for (int i = 0; i < CRIT_LAST; i++) {
|
|
|
|
|
|
|
|
if (strcmp(criteria_strings[i], name) == 0) {
|
|
|
|
|
|
|
|
*type = (enum criteria_type) i;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (criteria->workspace) {
|
|
|
|
|
|
|
|
if (!view->swayc) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*type == CRIT_LAST) {
|
|
|
|
struct sway_container *ws = container_parent(view->swayc, C_WORKSPACE);
|
|
|
|
const char *fmt = "Criteria type '%s' is invalid or unsupported.";
|
|
|
|
if (!ws || strcmp(ws->name, criteria->workspace) != 0) {
|
|
|
|
int len = strlen(name) + strlen(fmt) - 1;
|
|
|
|
return false;
|
|
|
|
char *error = malloc(len);
|
|
|
|
|
|
|
|
snprintf(error, len, fmt, name);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
|
|
|
} else if (*type == CRIT_URGENT || *type == CRIT_WINDOW_ROLE ||
|
|
|
|
|
|
|
|
*type == CRIT_WINDOW_TYPE) {
|
|
|
|
|
|
|
|
// (we're just being helpful here)
|
|
|
|
|
|
|
|
const char *fmt = "\"%s\" criteria currently unsupported, "
|
|
|
|
|
|
|
|
"no window will match this";
|
|
|
|
|
|
|
|
int len = strlen(fmt) + strlen(name) - 1;
|
|
|
|
|
|
|
|
char *error = malloc(len);
|
|
|
|
|
|
|
|
snprintf(error, len, fmt, name);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
list_t *criteria_for_view(struct sway_view *view, enum criteria_type types) {
|
|
|
|
|
|
|
|
list_t *criterias = config->criteria;
|
|
|
|
|
|
|
|
list_t *matches = create_list();
|
|
|
|
|
|
|
|
for (int i = 0; i < criterias->length; ++i) {
|
|
|
|
|
|
|
|
struct criteria *criteria = criterias->items[i];
|
|
|
|
|
|
|
|
if ((criteria->type & types) && criteria_matches_view(criteria, view)) {
|
|
|
|
|
|
|
|
list_add(matches, criteria);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return matches;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct match_data {
|
|
|
|
|
|
|
|
struct criteria *criteria;
|
|
|
|
|
|
|
|
list_t *matches;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void criteria_get_views_iterator(struct sway_container *container,
|
|
|
|
|
|
|
|
void *data) {
|
|
|
|
|
|
|
|
struct match_data *match_data = data;
|
|
|
|
|
|
|
|
if (container->type == C_VIEW) {
|
|
|
|
|
|
|
|
if (criteria_matches_view(match_data->criteria, container->sway_view)) {
|
|
|
|
|
|
|
|
list_add(match_data->matches, container->sway_view);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
list_t *criteria_get_views(struct criteria *criteria) {
|
|
|
|
|
|
|
|
list_t *matches = create_list();
|
|
|
|
|
|
|
|
struct match_data data = {
|
|
|
|
|
|
|
|
.criteria = criteria,
|
|
|
|
|
|
|
|
.matches = matches,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
container_for_each_descendant_dfs(&root_container,
|
|
|
|
|
|
|
|
criteria_get_views_iterator, &data);
|
|
|
|
|
|
|
|
return matches;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// The error pointer is used for parsing functions, and saves having to pass it
|
|
|
|
|
|
|
|
// as an argument in several places.
|
|
|
|
|
|
|
|
char *error = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
// Returns error string on failure or NULL otherwise.
|
|
|
|
// Returns error string on failure or NULL otherwise.
|
|
|
|
static char *generate_regex(pcre **regex, char *value) {
|
|
|
|
static bool generate_regex(pcre **regex, char *value) {
|
|
|
|
const char *reg_err;
|
|
|
|
const char *reg_err;
|
|
|
|
int offset;
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
|
|
|
|
*regex = pcre_compile(value, PCRE_UTF8 | PCRE_UCP, ®_err, &offset, NULL);
|
|
|
|
*regex = pcre_compile(value, PCRE_UTF8 | PCRE_UCP, ®_err, &offset, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
if (!*regex) {
|
|
|
|
if (!*regex) {
|
|
|
|
const char *fmt = "Regex compilation (for '%s') failed: %s";
|
|
|
|
const char *fmt = "Regex compilation for '%s' failed: %s";
|
|
|
|
int len = strlen(fmt) + strlen(value) + strlen(reg_err) - 3;
|
|
|
|
int len = strlen(fmt) + strlen(value) + strlen(reg_err) - 3;
|
|
|
|
char *error = malloc(len);
|
|
|
|
error = malloc(len);
|
|
|
|
snprintf(error, len, fmt, value, reg_err);
|
|
|
|
snprintf(error, len, fmt, value, reg_err);
|
|
|
|
return error;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test whether the criterion corresponds to the currently focused window
|
|
|
|
return true;
|
|
|
|
static bool crit_is_focused(const char *value) {
|
|
|
|
|
|
|
|
return !strcmp(value, "focused") || !strcmp(value, "__focused__");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Populate list with crit_tokens extracted from criteria string, returns error
|
|
|
|
|
|
|
|
// string or NULL if successful.
|
|
|
|
|
|
|
|
char *extract_crit_tokens(list_t *tokens, const char * const criteria) {
|
|
|
|
|
|
|
|
int argc;
|
|
|
|
|
|
|
|
char **argv = NULL, *error = NULL;
|
|
|
|
|
|
|
|
if ((error = crit_tokens(&argc, &argv, criteria))) {
|
|
|
|
|
|
|
|
goto ect_cleanup;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 1; i + 1 < argc; i += 2) {
|
|
|
|
|
|
|
|
char* name = argv[i], *value = argv[i + 1];
|
|
|
|
|
|
|
|
struct crit_token *token = calloc(1, sizeof(struct crit_token));
|
|
|
|
|
|
|
|
token->raw = strdup(value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((error = parse_criteria_name(&token->type, name))) {
|
|
|
|
|
|
|
|
free_crit_token(token);
|
|
|
|
|
|
|
|
goto ect_cleanup;
|
|
|
|
|
|
|
|
} else if (token->type == CRIT_URGENT || crit_is_focused(value)) {
|
|
|
|
|
|
|
|
wlr_log(L_DEBUG, "%s -> \"%s\"", name, value);
|
|
|
|
|
|
|
|
list_add(tokens, token);
|
|
|
|
|
|
|
|
} else if((error = generate_regex(&token->regex, value))) {
|
|
|
|
|
|
|
|
free_crit_token(token);
|
|
|
|
|
|
|
|
goto ect_cleanup;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
wlr_log(L_DEBUG, "%s -> /%s/", name, value);
|
|
|
|
|
|
|
|
list_add(tokens, token);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ect_cleanup:
|
|
|
|
|
|
|
|
free(argv[0]); // base string
|
|
|
|
|
|
|
|
free(argv);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int regex_cmp(const char *item, const pcre *regex) {
|
|
|
|
enum criteria_token {
|
|
|
|
return pcre_exec(regex, NULL, item, strlen(item), 0, 0, NULL, 0);
|
|
|
|
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,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// test a single view if it matches list of criteria tokens (all of them).
|
|
|
|
static enum criteria_token token_from_name(char *name) {
|
|
|
|
static bool criteria_test(struct sway_container *cont, list_t *tokens) {
|
|
|
|
if (strcmp(name, "app_id") == 0) {
|
|
|
|
if (cont->type != C_CONTAINER && cont->type != C_VIEW) {
|
|
|
|
return T_APP_ID;
|
|
|
|
return false;
|
|
|
|
} else if (strcmp(name, "class") == 0) {
|
|
|
|
}
|
|
|
|
return T_CLASS;
|
|
|
|
int matches = 0;
|
|
|
|
} else if (strcmp(name, "con_id") == 0) {
|
|
|
|
for (int i = 0; i < tokens->length; i++) {
|
|
|
|
return T_CON_ID;
|
|
|
|
struct crit_token *crit = tokens->items[i];
|
|
|
|
} else if (strcmp(name, "con_mark") == 0) {
|
|
|
|
switch (crit->type) {
|
|
|
|
return T_CON_MARK;
|
|
|
|
case CRIT_CLASS:
|
|
|
|
} else if (strcmp(name, "id") == 0) {
|
|
|
|
{
|
|
|
|
return T_ID;
|
|
|
|
const char *class = view_get_class(cont->sway_view);
|
|
|
|
} else if (strcmp(name, "instance") == 0) {
|
|
|
|
if (!class) {
|
|
|
|
return T_INSTANCE;
|
|
|
|
break;
|
|
|
|
} else if (strcmp(name, "title") == 0) {
|
|
|
|
}
|
|
|
|
return T_TITLE;
|
|
|
|
if (crit->regex && regex_cmp(class, crit->regex) == 0) {
|
|
|
|
} else if (strcmp(name, "urgent") == 0) {
|
|
|
|
matches++;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
case CRIT_CON_ID:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
char *endptr;
|
|
|
|
|
|
|
|
size_t crit_id = strtoul(crit->raw, &endptr, 10);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (*endptr == 0 && cont->id == crit_id) {
|
|
|
|
/**
|
|
|
|
++matches;
|
|
|
|
* 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;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case T_CLASS:
|
|
|
|
case CRIT_CON_MARK:
|
|
|
|
value = view_get_class(view);
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case CRIT_FLOATING:
|
|
|
|
case T_INSTANCE:
|
|
|
|
// TODO
|
|
|
|
value = view_get_instance(view);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case CRIT_ID:
|
|
|
|
case T_TITLE:
|
|
|
|
// TODO
|
|
|
|
value = view_get_class(view);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case CRIT_APP_ID:
|
|
|
|
case T_WINDOW_ROLE:
|
|
|
|
{
|
|
|
|
value = view_get_class(view);
|
|
|
|
const char *app_id = view_get_app_id(cont->sway_view);
|
|
|
|
|
|
|
|
if (!app_id) {
|
|
|
|
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_WORKSPACE:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
struct sway_container *ws = container_parent(focus, C_WORKSPACE);
|
|
|
|
|
|
|
|
if (ws) {
|
|
|
|
|
|
|
|
value = ws->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (crit->regex && regex_cmp(app_id, crit->regex) == 0) {
|
|
|
|
|
|
|
|
matches++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case T_CON_ID: // These do not support __focused__
|
|
|
|
case CRIT_INSTANCE:
|
|
|
|
case T_CON_MARK:
|
|
|
|
{
|
|
|
|
case T_FLOATING:
|
|
|
|
const char *instance = view_get_instance(cont->sway_view);
|
|
|
|
case T_ID:
|
|
|
|
if (!instance) {
|
|
|
|
case T_TILING:
|
|
|
|
|
|
|
|
case T_URGENT:
|
|
|
|
|
|
|
|
case T_WINDOW_TYPE:
|
|
|
|
|
|
|
|
case T_INVALID:
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value) {
|
|
|
|
if (crit->regex && regex_cmp(instance, crit->regex) == 0) {
|
|
|
|
return strdup(value);
|
|
|
|
matches++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case CRIT_TILING:
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
static bool parse_token(struct criteria *criteria, char *name, char *value) {
|
|
|
|
break;
|
|
|
|
enum criteria_token token = token_from_name(name);
|
|
|
|
case CRIT_TITLE:
|
|
|
|
if (token == T_INVALID) {
|
|
|
|
{
|
|
|
|
const char *fmt = "Token '%s' is not recognized";
|
|
|
|
const char *title = view_get_title(cont->sway_view);
|
|
|
|
int len = strlen(fmt) + strlen(name) - 1;
|
|
|
|
if (!title) {
|
|
|
|
error = malloc(len);
|
|
|
|
break;
|
|
|
|
snprintf(error, len, fmt, name);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (crit->regex && regex_cmp(title, crit->regex) == 0) {
|
|
|
|
char *effective_value = NULL;
|
|
|
|
matches++;
|
|
|
|
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
|
|
|
|
|
|
|
|
if (!effective_value && token != T_FLOATING && token != T_TILING) {
|
|
|
|
|
|
|
|
const char *fmt = "Token '%s' requires a value";
|
|
|
|
|
|
|
|
int len = strlen(fmt) + strlen(name) - 1;
|
|
|
|
|
|
|
|
error = malloc(len);
|
|
|
|
|
|
|
|
snprintf(error, len, fmt, name);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char *endptr = NULL;
|
|
|
|
|
|
|
|
switch (token) {
|
|
|
|
|
|
|
|
case T_TITLE:
|
|
|
|
|
|
|
|
generate_regex(&criteria->title, effective_value);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_APP_ID:
|
|
|
|
|
|
|
|
generate_regex(&criteria->app_id, effective_value);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_CLASS:
|
|
|
|
|
|
|
|
generate_regex(&criteria->class, effective_value);
|
|
|
|
break;
|
|
|
|
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) {
|
|
|
|
|
|
|
|
error = strdup("The value for 'con_id' should be numeric");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case CRIT_URGENT:
|
|
|
|
|
|
|
|
// TODO "latest" or "oldest"
|
|
|
|
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case CRIT_WINDOW_ROLE:
|
|
|
|
case T_CON_MARK:
|
|
|
|
// TODO
|
|
|
|
generate_regex(&criteria->con_mark, effective_value);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case CRIT_WINDOW_TYPE:
|
|
|
|
case T_WINDOW_ROLE:
|
|
|
|
// TODO
|
|
|
|
generate_regex(&criteria->window_role, effective_value);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case CRIT_WORKSPACE:
|
|
|
|
case T_WINDOW_TYPE:
|
|
|
|
// TODO
|
|
|
|
// TODO: This is a string but will be stored as an enum or integer
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case T_ID:
|
|
|
|
sway_abort("Invalid criteria type (%i)", crit->type);
|
|
|
|
criteria->id = strtoul(effective_value, &endptr, 10);
|
|
|
|
|
|
|
|
if (*endptr != 0) {
|
|
|
|
|
|
|
|
error = strdup("The value for 'id' should be numeric");
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_FLOATING:
|
|
|
|
|
|
|
|
criteria->floating = true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_TILING:
|
|
|
|
|
|
|
|
criteria->tiling = true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_URGENT:
|
|
|
|
|
|
|
|
if (strcmp(effective_value, "latest") == 0) {
|
|
|
|
|
|
|
|
criteria->urgent = 'l';
|
|
|
|
|
|
|
|
} else if (strcmp(effective_value, "oldest") == 0) {
|
|
|
|
|
|
|
|
criteria->urgent = 'o';
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
error =
|
|
|
|
|
|
|
|
strdup("The value for 'urgent' must be 'latest' or 'oldest'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_WORKSPACE:
|
|
|
|
|
|
|
|
criteria->workspace = strdup(effective_value);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_INVALID:
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return matches == tokens->length;
|
|
|
|
free(effective_value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int criteria_cmp(const void *a, const void *b) {
|
|
|
|
return true;
|
|
|
|
if (a == b) {
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
} else if (!a) {
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
} else if (!b) {
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const struct criteria *crit_a = a, *crit_b = b;
|
|
|
|
|
|
|
|
int cmp = lenient_strcmp(crit_a->cmdlist, crit_b->cmdlist);
|
|
|
|
static void skip_spaces(char **head) {
|
|
|
|
if (cmp != 0) {
|
|
|
|
while (**head == ' ') {
|
|
|
|
return cmp;
|
|
|
|
++*head;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return lenient_strcmp(crit_a->crit_raw, crit_b->crit_raw);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void free_criteria(struct criteria *crit) {
|
|
|
|
// Remove escaping slashes from value
|
|
|
|
if (crit->tokens) {
|
|
|
|
static void unescape(char *value) {
|
|
|
|
free_crit_tokens(crit->tokens);
|
|
|
|
if (!strchr(value, '\\')) {
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (crit->cmdlist) {
|
|
|
|
char *copy = calloc(strlen(value) + 1, 1);
|
|
|
|
free(crit->cmdlist);
|
|
|
|
char *readhead = value;
|
|
|
|
|
|
|
|
char *writehead = copy;
|
|
|
|
|
|
|
|
while (*readhead) {
|
|
|
|
|
|
|
|
if (*readhead == '\\' && *(readhead + 1) == '"') {
|
|
|
|
|
|
|
|
// skip the slash
|
|
|
|
|
|
|
|
++readhead;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (crit->crit_raw) {
|
|
|
|
*writehead = *readhead;
|
|
|
|
free(crit->crit_raw);
|
|
|
|
++writehead;
|
|
|
|
|
|
|
|
++readhead;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(crit);
|
|
|
|
strcpy(value, copy);
|
|
|
|
|
|
|
|
free(copy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool criteria_any(struct sway_container *cont, list_t *criteria) {
|
|
|
|
/**
|
|
|
|
for (int i = 0; i < criteria->length; i++) {
|
|
|
|
* Parse a raw criteria string such as [class="foo" instance="bar"] into a
|
|
|
|
struct criteria *bc = criteria->items[i];
|
|
|
|
* criteria struct.
|
|
|
|
if (criteria_test(cont, bc->tokens)) {
|
|
|
|
*
|
|
|
|
return true;
|
|
|
|
* If errors are found, NULL will be returned and the error argument will be
|
|
|
|
|
|
|
|
* populated with an error string.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct criteria *criteria_parse(char *raw, char **error_arg) {
|
|
|
|
|
|
|
|
free(error);
|
|
|
|
|
|
|
|
error = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char *head = raw;
|
|
|
|
|
|
|
|
skip_spaces(&head);
|
|
|
|
|
|
|
|
if (*head != '[') {
|
|
|
|
|
|
|
|
*error_arg = strdup("No criteria");
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
++head;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct criteria *criteria = calloc(sizeof(struct criteria), 1);
|
|
|
|
|
|
|
|
char *name = NULL, *value = NULL;
|
|
|
|
|
|
|
|
bool in_quotes = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
while (*head && *head != ']') {
|
|
|
|
|
|
|
|
skip_spaces(&head);
|
|
|
|
|
|
|
|
// Parse token name
|
|
|
|
|
|
|
|
char *namestart = head;
|
|
|
|
|
|
|
|
while ((*head >= 'a' && *head <= 'z') || *head == '_') {
|
|
|
|
|
|
|
|
++head;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
name = calloc(head - namestart + 1, 1);
|
|
|
|
|
|
|
|
strncpy(name, namestart, head - namestart);
|
|
|
|
|
|
|
|
// Parse token value
|
|
|
|
|
|
|
|
skip_spaces(&head);
|
|
|
|
|
|
|
|
value = NULL;
|
|
|
|
|
|
|
|
if (*head == '=') {
|
|
|
|
|
|
|
|
++head;
|
|
|
|
|
|
|
|
skip_spaces(&head);
|
|
|
|
|
|
|
|
if (*head == '"') {
|
|
|
|
|
|
|
|
in_quotes = true;
|
|
|
|
|
|
|
|
++head;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
char *valuestart = head;
|
|
|
|
|
|
|
|
if (in_quotes) {
|
|
|
|
|
|
|
|
while (*head && (*head != '"' || *(head - 1) == '\\')) {
|
|
|
|
|
|
|
|
++head;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*head) {
|
|
|
|
|
|
|
|
*error_arg = strdup("Quote mismatch in criteria");
|
|
|
|
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
while (*head && *head != ' ' && *head != ']') {
|
|
|
|
|
|
|
|
++head;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
list_t *criteria_for(struct sway_container *cont) {
|
|
|
|
|
|
|
|
list_t *criteria = config->criteria, *matches = create_list();
|
|
|
|
|
|
|
|
for (int i = 0; i < criteria->length; i++) {
|
|
|
|
|
|
|
|
struct criteria *bc = criteria->items[i];
|
|
|
|
|
|
|
|
if (criteria_test(cont, bc->tokens)) {
|
|
|
|
|
|
|
|
list_add(matches, bc);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
value = calloc(head - valuestart + 1, 1);
|
|
|
|
|
|
|
|
strncpy(value, valuestart, head - valuestart);
|
|
|
|
|
|
|
|
if (in_quotes) {
|
|
|
|
|
|
|
|
++head;
|
|
|
|
|
|
|
|
in_quotes = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return matches;
|
|
|
|
unescape(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wlr_log(L_DEBUG, "Found pair: %s=%s", name, value);
|
|
|
|
struct list_tokens {
|
|
|
|
if (!parse_token(criteria, name, value)) {
|
|
|
|
list_t *list;
|
|
|
|
*error_arg = error;
|
|
|
|
list_t *tokens;
|
|
|
|
goto cleanup;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void container_match_add(struct sway_container *container,
|
|
|
|
|
|
|
|
struct list_tokens *list_tokens) {
|
|
|
|
|
|
|
|
if (criteria_test(container, list_tokens->tokens)) {
|
|
|
|
|
|
|
|
list_add(list_tokens->list, container);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_spaces(&head);
|
|
|
|
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
free(value);
|
|
|
|
|
|
|
|
name = NULL;
|
|
|
|
|
|
|
|
value = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*head != ']') {
|
|
|
|
|
|
|
|
*error_arg = strdup("No closing brace found in criteria");
|
|
|
|
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
list_t *container_for_crit_tokens(list_t *tokens) {
|
|
|
|
if (criteria_is_empty(criteria)) {
|
|
|
|
struct list_tokens list_tokens =
|
|
|
|
*error_arg = strdup("Criteria is empty");
|
|
|
|
(struct list_tokens){create_list(), tokens};
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
}
|
|
|
|
container_for_each_descendant_dfs(&root_container,
|
|
|
|
|
|
|
|
(void (*)(struct sway_container *, void *))container_match_add,
|
|
|
|
|
|
|
|
&list_tokens);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO look in the scratchpad
|
|
|
|
++head;
|
|
|
|
|
|
|
|
int len = head - raw;
|
|
|
|
|
|
|
|
criteria->raw = calloc(len + 1, 1);
|
|
|
|
|
|
|
|
strncpy(criteria->raw, raw, len);
|
|
|
|
|
|
|
|
return criteria;
|
|
|
|
|
|
|
|
|
|
|
|
return list_tokens.list;
|
|
|
|
cleanup:
|
|
|
|
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
free(value);
|
|
|
|
|
|
|
|
criteria_destroy(criteria);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|