sway/sway/commands/output.c

106 lines
3.1 KiB
C
Raw Normal View History

2017-12-06 11:36:06 +00:00
#include "sway/commands.h"
#include "sway/config.h"
#include "list.h"
#include "log.h"
// must be in order for the bsearch
static struct cmd_handler output_handlers[] = {
{ "background", output_cmd_background },
{ "bg", output_cmd_background },
{ "disable", output_cmd_disable },
{ "dpms", output_cmd_dpms },
{ "enable", output_cmd_enable },
{ "mode", output_cmd_mode },
{ "pos", output_cmd_position },
{ "position", output_cmd_position },
{ "res", output_cmd_mode },
{ "resolution", output_cmd_mode },
{ "scale", output_cmd_scale },
{ "transform", output_cmd_transform },
2017-12-06 11:36:06 +00:00
};
struct cmd_results *cmd_output(int argc, char **argv) {
struct cmd_results *error = checkarg(argc, "output", EXPECTED_AT_LEAST, 1);
if (error != NULL) {
2017-12-06 11:36:06 +00:00
return error;
}
struct output_config *output = new_output_config(argv[0]);
2017-12-06 11:36:06 +00:00
if (!output) {
2018-01-05 21:32:51 +00:00
wlr_log(L_ERROR, "Failed to allocate output config");
return NULL;
2017-12-06 11:36:06 +00:00
}
argc--; argv++;
2017-12-06 11:36:06 +00:00
config->handler_context.output_config = output;
2017-12-06 11:36:06 +00:00
while (argc > 0) {
if (find_handler(*argv, output_handlers, sizeof(output_handlers))) {
error = config_subcommand(argv, argc, output_handlers,
sizeof(output_handlers));
2017-12-13 23:50:01 +00:00
} else {
error = cmd_results_new(CMD_INVALID, "output",
"Invalid output subcommand: %s.", *argv);
}
if (error != NULL) {
2017-12-13 23:50:01 +00:00
goto fail;
2017-12-06 11:36:06 +00:00
}
argc = config->handler_context.leftovers.argc;
argv = config->handler_context.leftovers.argv;
2017-12-06 11:36:06 +00:00
}
config->handler_context.output_config = NULL;
config->handler_context.leftovers.argc = 0;
config->handler_context.leftovers.argv = NULL;
int i = list_seq_find(config->output_configs, output_name_cmp, output->name);
2017-12-06 11:36:06 +00:00
if (i >= 0) {
// Merge existing config
struct output_config *current = config->output_configs->items[i];
merge_output_config(current, output);
2017-12-06 11:36:06 +00:00
free_output_config(output);
output = current;
2017-12-06 11:36:06 +00:00
} else {
list_add(config->output_configs, output);
}
2018-01-05 21:32:51 +00:00
wlr_log(L_DEBUG, "Config stored for output %s (enabled: %d) (%dx%d@%fHz "
"position %d,%d scale %f transform %d) (bg %s %s) (dpms %d)",
output->name, output->enabled, output->width, output->height,
output->refresh_rate, output->x, output->y, output->scale,
output->transform, output->background, output->background_option, output->dpms_state);
2017-12-06 11:36:06 +00:00
// Try to find the output container and apply configuration now. If
// this is during startup then there will be no container and config
// will be applied during normal "new output" event from wlroots.
char identifier[128];
bool all = strcmp(output->name, "*") == 0;
for (int i = 0; i < root_container.children->length; ++i) {
struct sway_container *cont = root_container.children->items[i];
if (cont->type != C_OUTPUT) {
continue;
}
2017-12-06 11:36:06 +00:00
output_get_identifier(identifier, sizeof(identifier), cont->sway_output);
if (all || strcmp(cont->name, output->name) == 0 ||
strcmp(identifier, output->name) == 0) {
apply_output_config(output, cont);
if (!all) {
// Stop looking if the output config isn't applicable to all
// outputs
break;
2017-12-06 11:36:06 +00:00
}
}
}
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
fail:
config->handler_context.output_config = NULL;
2017-12-06 11:36:06 +00:00
free_output_config(output);
return error;
}