sway/sway/commands.c

430 lines
12 KiB
C
Raw Normal View History

2015-08-06 02:40:38 +00:00
#include <xkbcommon/xkbcommon.h>
#include <xkbcommon/xkbcommon-names.h>
2015-08-08 23:24:18 +00:00
#include <wlc/wlc.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2015-08-09 16:26:32 +00:00
#include <unistd.h>
#include <ctype.h>
#include "stringop.h"
#include "layout.h"
2015-08-10 00:10:26 +00:00
#include "movement.h"
#include "log.h"
2015-08-10 20:31:23 +00:00
#include "workspace.h"
#include "commands.h"
2015-08-08 23:24:18 +00:00
struct modifier_key {
char *name;
uint32_t mod;
};
2015-08-13 07:24:03 +00:00
static struct modifier_key modifiers[] = {
2015-08-08 23:24:18 +00:00
{ XKB_MOD_NAME_SHIFT, WLC_BIT_MOD_SHIFT },
{ XKB_MOD_NAME_CAPS, WLC_BIT_MOD_CAPS },
{ XKB_MOD_NAME_CTRL, WLC_BIT_MOD_CTRL },
{ XKB_MOD_NAME_ALT, WLC_BIT_MOD_ALT },
{ XKB_MOD_NAME_NUM, WLC_BIT_MOD_MOD2 },
{ "Mod3", WLC_BIT_MOD_MOD3 },
{ XKB_MOD_NAME_LOGO, WLC_BIT_MOD_LOGO },
{ "Mod5", WLC_BIT_MOD_MOD5 },
};
2015-08-13 04:51:38 +00:00
enum expected_args {
2015-08-13 14:48:03 +00:00
EXPECTED_MORE_THAN,
EXPECTED_LESS_THAN,
2015-08-13 14:50:46 +00:00
EXPECTED_EQUAL_TO
2015-08-13 04:51:38 +00:00
};
2015-08-13 04:51:38 +00:00
static bool checkarg(int argc, char *name, enum expected_args type, int val) {
2015-08-13 07:24:03 +00:00
switch (type) {
2015-08-13 14:48:03 +00:00
case EXPECTED_MORE_THAN:
2015-08-13 04:51:38 +00:00
if (argc > val) {
return true;
}
sway_log(L_ERROR, "Invalid %s command."
2015-08-13 07:24:03 +00:00
"(expected more then %d argument%s, got %d",
name, val, (char*[2]){"s", ""}[argc==1], argc);
2015-08-13 04:51:38 +00:00
break;
2015-08-13 14:48:03 +00:00
case EXPECTED_LESS_THAN:
2015-08-13 04:51:38 +00:00
if (argc < val) {
return true;
};
sway_log(L_ERROR, "Invalid %s command."
2015-08-13 07:24:03 +00:00
"(expected less then %d argument%s, got %d",
name, val, (char*[2]){"s", ""}[argc==1], argc);
2015-08-13 04:51:38 +00:00
break;
2015-08-13 14:50:46 +00:00
case EXPECTED_EQUAL_TO:
2015-08-13 04:51:38 +00:00
if (argc == val) {
return true;
};
sway_log(L_ERROR, "Invalid %s command."
"(expected %d arguments, got %d", name, val, argc);
break;
}
return false;
}
2015-08-13 04:51:38 +00:00
static bool cmd_bindsym(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:48:03 +00:00
if (!checkarg(argc, "bindsym", EXPECTED_MORE_THAN, 1)) {
return false;
2015-08-13 04:51:38 +00:00
};
2015-08-06 02:40:38 +00:00
struct sway_binding *binding = malloc(sizeof(struct sway_binding));
binding->keys = create_list();
binding->modifiers = 0;
binding->command = join_args(argv + 1, argc - 1);
2015-08-06 02:40:38 +00:00
list_t *split = split_string(argv[0], "+");
int i;
for (i = 0; i < split->length; ++i) {
2015-08-08 23:24:18 +00:00
// Check for a modifier key
int j;
bool is_mod = false;
for (j = 0; j < sizeof(modifiers) / sizeof(struct modifier_key); ++j) {
if (strcasecmp(modifiers[j].name, split->items[i]) == 0) {
binding->modifiers |= modifiers[j].mod;
is_mod = true;
break;
}
}
if (is_mod) continue;
// Check for xkb key
2015-08-06 02:40:38 +00:00
xkb_keysym_t sym = xkb_keysym_from_name(split->items[i], XKB_KEYSYM_CASE_INSENSITIVE);
if (!sym) {
sway_log(L_ERROR, "bindsym - unknown key %s", (char *)split->items[i]);
return false;
2015-08-06 02:40:38 +00:00
}
xkb_keysym_t *key = malloc(sizeof(xkb_keysym_t));
*key = sym;
list_add(binding->keys, key);
2015-08-06 02:40:38 +00:00
}
list_free(split);
2015-08-06 02:55:51 +00:00
// TODO: Check if there are other commands with this key binding
2015-08-06 02:40:38 +00:00
list_add(config->current_mode->bindings, binding);
sway_log(L_DEBUG, "bindsym - Bound %s to command %s", argv[0], binding->command);
return true;
}
static bool cmd_exec_always(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:48:03 +00:00
if (!checkarg(argc, "exec_always", EXPECTED_MORE_THAN, 0)) {
return false;
2015-08-09 16:26:32 +00:00
}
pid_t pid = fork();
/* Failed to fork */
if (pid < 0) {
sway_log(L_ERROR, "exec command failed, sway did not fork");
return false;
2015-08-10 19:09:51 +00:00
}
/* Child process */
if (pid == 0) {
char *args = join_args(argv, argc);
sway_log(L_DEBUG, "Executing %s", args);
execl("/bin/sh", "sh", "-c", args, (char *)NULL);
/* Execl doesnt return unless failure */
sway_log(L_ERROR, "could not find /bin/sh");
free(args);
exit(-1);
}
/* Parent */
return true;
}
static bool cmd_exec(struct sway_config *config, int argc, char **argv) {
if (config->reloading) {
2015-08-09 16:26:32 +00:00
char *args = join_args(argv, argc);
sway_log(L_DEBUG, "Ignoring exec %s due to reload", args);
2015-08-09 16:26:32 +00:00
free(args);
return true;
2015-08-09 16:26:32 +00:00
}
return cmd_exec_always(config, argc, argv);
2015-08-09 16:26:32 +00:00
}
static bool cmd_exit(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, "exit", EXPECTED_EQUAL_TO, 0)) {
return false;
2015-08-09 13:23:10 +00:00
}
// TODO: Some kind of clean up is probably in order
exit(0);
return true;
2015-08-09 13:23:10 +00:00
}
static bool cmd_focus(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, "focus", EXPECTED_EQUAL_TO, 1)) {
return false;
2015-08-10 00:10:26 +00:00
}
if (strcasecmp(argv[0], "left") == 0) {
2015-08-10 03:04:37 +00:00
return move_focus(MOVE_LEFT);
2015-08-10 00:10:26 +00:00
} else if (strcasecmp(argv[0], "right") == 0) {
2015-08-10 03:04:37 +00:00
return move_focus(MOVE_RIGHT);
2015-08-10 00:10:26 +00:00
} else if (strcasecmp(argv[0], "up") == 0) {
2015-08-10 03:04:37 +00:00
return move_focus(MOVE_UP);
2015-08-10 00:10:26 +00:00
} else if (strcasecmp(argv[0], "down") == 0) {
2015-08-10 03:04:37 +00:00
return move_focus(MOVE_DOWN);
2015-08-10 00:20:53 +00:00
} else if (strcasecmp(argv[0], "parent") == 0) {
return move_focus(MOVE_PARENT);
2015-08-10 00:10:26 +00:00
}
return true;
2015-08-10 00:10:26 +00:00
}
static bool cmd_focus_follows_mouse(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, "focus_follows_mouse", EXPECTED_EQUAL_TO, 1)) {
return false;
2015-08-09 13:23:10 +00:00
}
config->focus_follows_mouse = !strcasecmp(argv[0], "yes");
return true;
2015-08-09 13:23:10 +00:00
}
static bool cmd_layout(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:48:03 +00:00
if (!checkarg(argc, "layout", EXPECTED_MORE_THAN, 0)) {
return false;
}
swayc_t *parent = get_focused_container(&root_container);
while (parent->type == C_VIEW) {
parent = parent->parent;
}
if (strcasecmp(argv[0], "splith") == 0) {
parent->layout = L_HORIZ;
} else if (strcasecmp(argv[0], "splitv") == 0) {
parent->layout = L_VERT;
} else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) {
if (parent->layout == L_VERT) {
parent->layout = L_HORIZ;
} else {
parent->layout = L_VERT;
}
}
arrange_windows(parent, parent->width, parent->height);
return true;
}
static bool cmd_reload(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, "reload", EXPECTED_EQUAL_TO, 0)) {
return false;
}
2015-08-10 19:24:31 +00:00
if (!load_config()) {
return false;
2015-08-10 19:22:22 +00:00
}
arrange_windows(&root_container, -1, -1);
return true;
}
static bool cmd_set(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, "set", EXPECTED_EQUAL_TO, 2)) {
return false;
2015-08-09 13:23:10 +00:00
}
struct sway_variable *var = malloc(sizeof(struct sway_variable));
var->name = malloc(strlen(argv[0]) + 1);
strcpy(var->name, argv[0]);
var->value = malloc(strlen(argv[1]) + 1);
strcpy(var->value, argv[1]);
list_add(config->symbols, var);
return true;
2015-08-09 13:23:10 +00:00
}
static bool _do_split(struct sway_config *config, int argc, char **argv, int layout) {
char *name = layout == L_VERT ? "splitv" :
layout == L_HORIZ ? "splith" : "split";
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, name, EXPECTED_EQUAL_TO, 0)) {
return false;
2015-08-09 18:35:56 +00:00
}
2015-08-09 23:27:25 +00:00
swayc_t *focused = get_focused_container(&root_container);
2015-08-15 18:19:44 +00:00
/* Case that focus is on an workspace with 0/1 children.change its layout */
if (focused->type == C_WORKSPACE && focused->children->length <= 1) {
sway_log(L_DEBUG, "changing workspace layout");
focused->layout = layout;
}
/* Case of no siblings. change parent layout */
2015-08-15 18:19:44 +00:00
else if (focused->type != C_WORKSPACE && focused->parent->children->length == 1) {
sway_log(L_DEBUG, "changing container layout");
focused->parent->layout = layout;
2015-08-13 19:02:56 +00:00
}
2015-08-15 18:19:44 +00:00
/* regular case where new split container is build around focused container
* or in case of workspace, container inherits its children */
else {
sway_log(L_DEBUG, "Adding new container around current focused container");
swayc_t *parent = new_container(focused, layout);
focus_view(focused);
arrange_windows(parent, -1, -1);
}
2015-08-15 19:26:05 +00:00
return true;
2015-08-09 18:35:56 +00:00
}
static bool cmd_splitv(struct sway_config *config, int argc, char **argv) {
2015-08-09 23:27:25 +00:00
return _do_split(config, argc, argv, L_VERT);
}
static bool cmd_splith(struct sway_config *config, int argc, char **argv) {
2015-08-09 23:27:25 +00:00
return _do_split(config, argc, argv, L_HORIZ);
}
2015-08-09 18:35:56 +00:00
static bool cmd_log_colors(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, "log_colors", EXPECTED_EQUAL_TO, 1)) {
return false;
2015-08-10 00:20:40 +00:00
}
if (strcasecmp(argv[0], "no") != 0 && strcasecmp(argv[0], "yes") != 0) {
sway_log(L_ERROR, "Invalid log_colors command (expected `yes` or `no`, got '%s')", argv[0]);
return false;
2015-08-10 00:20:40 +00:00
}
sway_log_colors(!strcasecmp(argv[0], "yes"));
return true;
2015-08-10 00:20:40 +00:00
}
static bool cmd_fullscreen(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, "fullscreen", EXPECTED_EQUAL_TO, 0)) {
return false;
2015-08-10 00:23:56 +00:00
}
swayc_t *container = get_focused_container(&root_container);
2015-08-10 00:49:19 +00:00
bool current = (wlc_view_get_state(container->handle) & WLC_BIT_FULLSCREEN) > 0;
wlc_view_set_state(container->handle, WLC_BIT_FULLSCREEN, !current);
2015-08-10 00:23:56 +00:00
arrange_windows(container, -1, -1);
return true;
2015-08-10 00:23:56 +00:00
}
static bool cmd_workspace(struct sway_config *config, int argc, char **argv) {
2015-08-13 14:50:46 +00:00
if (!checkarg(argc, "workspace", EXPECTED_EQUAL_TO, 1)) {
return false;
2015-08-10 20:31:23 +00:00
}
swayc_t *workspace = workspace_find_by_name(argv[0]);
if (!workspace) {
workspace = workspace_create(argv[0]);
}
2015-08-10 20:31:23 +00:00
workspace_switch(workspace);
return true;
2015-08-10 20:31:23 +00:00
}
/* Keep alphabetized */
2015-08-13 04:51:38 +00:00
static struct cmd_handler handlers[] = {
2015-08-06 02:40:38 +00:00
{ "bindsym", cmd_bindsym },
2015-08-09 16:26:32 +00:00
{ "exec", cmd_exec },
{ "exec_always", cmd_exec_always },
2015-08-08 23:24:18 +00:00
{ "exit", cmd_exit },
2015-08-10 00:10:26 +00:00
{ "focus", cmd_focus },
2015-08-09 13:23:10 +00:00
{ "focus_follows_mouse", cmd_focus_follows_mouse },
2015-08-10 00:23:56 +00:00
{ "fullscreen", cmd_fullscreen },
{ "layout", cmd_layout },
2015-08-10 00:20:40 +00:00
{ "log_colors", cmd_log_colors },
{ "reload", cmd_reload },
2015-08-08 23:24:18 +00:00
{ "set", cmd_set },
2015-08-09 23:27:25 +00:00
{ "splith", cmd_splith },
2015-08-10 20:31:23 +00:00
{ "splitv", cmd_splitv },
{ "workspace", cmd_workspace }
};
2015-08-13 04:51:38 +00:00
static char **split_directive(char *line, int *argc) {
const char *delimiters = " ";
*argc = 0;
while (isspace(*line) && *line) ++line;
int capacity = 10;
char **parts = malloc(sizeof(char *) * capacity);
if (!*line) return parts;
int in_string = 0, in_character = 0;
int i, j, _;
for (i = 0, j = 0; line[i]; ++i) {
if (line[i] == '\\') {
++i;
} else if (line[i] == '"' && !in_character) {
in_string = !in_string;
} else if (line[i] == '\'' && !in_string) {
in_character = !in_character;
} else if (!in_character && !in_string) {
if (strchr(delimiters, line[i]) != NULL) {
char *item = malloc(i - j + 1);
strncpy(item, line + j, i - j);
item[i - j] = '\0';
item = strip_whitespace(item, &_);
if (item[0] == '\0') {
free(item);
} else {
if (*argc == capacity) {
capacity *= 2;
parts = realloc(parts, sizeof(char *) * capacity);
}
parts[*argc] = item;
j = i + 1;
++*argc;
}
}
}
}
char *item = malloc(i - j + 1);
strncpy(item, line + j, i - j);
item[i - j] = '\0';
item = strip_whitespace(item, &_);
if (*argc == capacity) {
capacity++;
parts = realloc(parts, sizeof(char *) * capacity);
}
parts[*argc] = item;
++*argc;
return parts;
}
2015-08-13 04:51:38 +00:00
static int handler_compare(const void *_a, const void *_b) {
const struct cmd_handler *a = _a;
const struct cmd_handler *b = _b;
return strcasecmp(a->command, b->command);
}
2015-08-13 04:51:38 +00:00
static struct cmd_handler *find_handler(struct cmd_handler handlers[], int l, char *line) {
struct cmd_handler d = { .command=line };
struct cmd_handler *res = bsearch(&d, handlers, l, sizeof(struct cmd_handler), handler_compare);
return res;
}
bool handle_command(struct sway_config *config, char *exec) {
2015-08-08 23:24:18 +00:00
sway_log(L_INFO, "Handling command '%s'", exec);
char *ptr, *cmd;
bool exec_success;
2015-08-10 20:16:38 +00:00
if ((ptr = strchr(exec, ' ')) == NULL) {
2015-08-10 20:16:38 +00:00
cmd = exec;
} else {
int index = ptr - exec;
cmd = malloc(index + 1);
strncpy(cmd, exec, index);
cmd[index] = '\0';
}
struct cmd_handler *handler = find_handler(handlers, sizeof(handlers) / sizeof(struct cmd_handler), cmd);
if (handler == NULL) {
sway_log(L_ERROR, "Unknown command '%s'", cmd);
exec_success = false; // TODO: return error, probably
2015-08-10 20:16:38 +00:00
} else {
int argc;
char **argv = split_directive(exec + strlen(handler->command), &argc);
int i;
//Perform var subs on all parts of the command
for (i = 0; i < argc; ++i) {
argv[i] = do_var_replacement(config, argv[i]);
}
exec_success = handler->handle(config, argc, argv);
2015-08-10 20:16:38 +00:00
for (i = 0; i < argc; ++i) {
free(argv[i]);
}
free(argv);
if (!exec_success) {
2015-08-10 20:16:38 +00:00
sway_log(L_ERROR, "Command failed: %s", cmd);
}
}
2015-08-13 07:24:03 +00:00
if (ptr) {
2015-08-10 20:16:38 +00:00
free(cmd);
2015-08-10 19:45:36 +00:00
}
return exec_success;
}