tmux/cmd-set-option.c

334 lines
8.3 KiB
C
Raw Normal View History

2008-06-05 17:12:11 +00:00
/* $Id: cmd-set-option.c,v 1.24 2008-06-05 17:12:11 nicm Exp $ */
2007-10-04 10:11:32 +00:00
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <getopt.h>
#include <stdlib.h>
#include <string.h>
#include "tmux.h"
/*
* Set an option.
*/
int cmd_set_option_parse(struct cmd *, int, char **, char **);
void cmd_set_option_exec(struct cmd *, struct cmd_ctx *);
void cmd_set_option_send(struct cmd *, struct buffer *);
void cmd_set_option_recv(struct cmd *, struct buffer *);
void cmd_set_option_free(struct cmd *);
2008-06-05 17:12:11 +00:00
void cmd_set_option_print(struct cmd *, char *, size_t);
2007-10-04 10:11:32 +00:00
struct cmd_set_option_data {
2008-06-03 21:42:37 +00:00
char *cname;
char *sname;
int flag_global;
2007-10-04 10:11:32 +00:00
char *option;
char *value;
};
const struct cmd_entry cmd_set_option_entry = {
"set-option", "set",
2008-06-03 21:42:37 +00:00
"[-c client-tty|-s session-name] option value",
0,
2007-10-04 10:11:32 +00:00
cmd_set_option_parse,
cmd_set_option_exec,
2007-10-04 10:11:32 +00:00
cmd_set_option_send,
cmd_set_option_recv,
cmd_set_option_free,
NULL,
2008-06-05 17:12:11 +00:00
cmd_set_option_print
2007-10-04 10:11:32 +00:00
};
int
cmd_set_option_parse(struct cmd *self, int argc, char **argv, char **cause)
2007-10-04 10:11:32 +00:00
{
struct cmd_set_option_data *data;
int opt;
self->data = data = xmalloc(sizeof *data);
2008-06-03 21:42:37 +00:00
data->cname = NULL;
data->sname = NULL;
data->flag_global = 1;
2007-10-04 10:11:32 +00:00
data->option = NULL;
data->value = NULL;
2008-06-03 21:42:37 +00:00
while ((opt = getopt(argc, argv, "c:s:")) != EOF) {
2007-10-04 10:11:32 +00:00
switch (opt) {
2008-06-03 21:42:37 +00:00
case 'c':
if (data->sname != NULL)
goto usage;
if (data->cname == NULL)
data->cname = xstrdup(optarg);
data->flag_global = 0;
break;
case 's':
if (data->cname != NULL)
goto usage;
if (data->sname == NULL)
data->sname = xstrdup(optarg);
data->flag_global = 0;
break;
2007-10-04 10:11:32 +00:00
default:
goto usage;
}
}
2007-10-04 10:11:32 +00:00
argc -= optind;
argv += optind;
if (argc != 1 && argc != 2)
goto usage;
data->option = xstrdup(argv[0]);
if (argc == 2)
data->value = xstrdup(argv[1]);
return (0);
usage:
xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
2007-10-04 10:11:32 +00:00
self->entry->free(self);
2007-10-04 10:11:32 +00:00
return (-1);
}
void
cmd_set_option_exec(struct cmd *self, unused struct cmd_ctx *ctx)
2007-10-04 10:11:32 +00:00
{
struct cmd_set_option_data *data = self->data;
struct client *c;
2008-06-03 21:42:37 +00:00
struct session *s;
struct options *oo;
2007-10-04 10:11:32 +00:00
const char *errstr;
2007-10-30 10:59:43 +00:00
u_int i;
int number, bool, key;
2008-06-03 21:42:37 +00:00
u_char colour;
2007-10-04 10:11:32 +00:00
if (data == NULL)
return;
2008-06-03 21:42:37 +00:00
if (data->flag_global ||
((s = cmd_find_session(ctx, data->cname, data->sname))) == NULL)
oo = &global_options;
else
oo = &s->options;
2007-10-04 10:11:32 +00:00
if (*data->option == '\0') {
ctx->error(ctx, "invalid option");
return;
}
2007-10-12 12:08:51 +00:00
number = -1;
2007-10-04 22:18:48 +00:00
if (data->value != NULL) {
2007-10-30 10:59:43 +00:00
number = strtonum(data->value, 0, INT_MAX, &errstr);
2007-10-04 22:18:48 +00:00
bool = -1;
2007-10-12 12:11:40 +00:00
if (number == 1 || strcasecmp(data->value, "on") == 0 ||
strcasecmp(data->value, "yes") == 0)
2007-10-04 22:18:48 +00:00
bool = 1;
2007-10-12 12:11:40 +00:00
else if (number == 0 || strcasecmp(data->value, "off") == 0 ||
strcasecmp(data->value, "no") == 0)
2007-10-04 22:18:48 +00:00
bool = 0;
} else
2008-06-04 18:34:56 +00:00
bool = -2;
2007-10-04 22:18:48 +00:00
2007-10-04 10:11:32 +00:00
if (strcmp(data->option, "prefix") == 0) {
2007-10-04 22:18:48 +00:00
if (data->value == NULL) {
ctx->error(ctx, "invalid value");
return;
}
2007-10-04 10:11:32 +00:00
key = key_string_lookup_string(data->value);
if (key == KEYC_NONE) {
ctx->error(ctx, "unknown key: %s", data->value);
return;
}
2008-06-03 21:42:37 +00:00
options_set_number(oo, "prefix-key", key);
2007-10-12 12:08:51 +00:00
} else if (strcmp(data->option, "status") == 0) {
if (bool == -1) {
ctx->error(ctx, "bad value: %s", data->value);
return;
}
2008-06-04 18:34:56 +00:00
if (bool == -2)
bool = !options_get_number(oo, "status-lines");
2008-06-03 21:42:37 +00:00
options_set_number(oo, "status-lines", bool);
2007-10-12 12:08:51 +00:00
recalculate_sizes();
} else if (strcmp(data->option, "status-fg") == 0) {
if (data->value == NULL) {
ctx->error(ctx, "invalid value");
return;
}
2007-10-12 13:51:44 +00:00
number = screen_stringcolour(data->value);
if (number > 8) {
2007-10-12 12:08:51 +00:00
ctx->error(ctx, "bad colour: %s", data->value);
return;
}
2008-06-03 21:42:37 +00:00
colour = options_get_number(oo, "status-colour");
colour &= 0x0f;
colour |= number << 4;
options_set_number(oo, "status-colour", colour);
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
c = ARRAY_ITEM(&clients, i);
if (c != NULL && c->session != NULL)
server_redraw_client(c);
2007-10-12 12:08:51 +00:00
}
} else if (strcmp(data->option, "status-bg") == 0) {
if (data->value == NULL) {
ctx->error(ctx, "invalid value");
return;
}
2007-10-12 13:51:44 +00:00
number = screen_stringcolour(data->value);
if (number > 8) {
2007-10-12 12:08:51 +00:00
ctx->error(ctx, "bad colour: %s", data->value);
return;
}
2008-06-03 21:42:37 +00:00
colour = options_get_number(oo, "status-colour");
colour &= 0xf0;
colour |= number;
options_set_number(oo, "status-colour", colour);
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
c = ARRAY_ITEM(&clients, i);
if (c != NULL && c->session != NULL)
server_redraw_client(c);
2007-10-12 12:08:51 +00:00
}
} else if (strcmp(data->option, "bell-action") == 0) {
2007-10-19 10:21:36 +00:00
if (data->value == NULL) {
ctx->error(ctx, "invalid value");
return;
2007-10-19 10:21:36 +00:00
}
if (strcmp(data->value, "any") == 0)
2008-06-03 21:42:37 +00:00
number = BELL_ANY;
2007-10-19 10:21:36 +00:00
else if (strcmp(data->value, "none") == 0)
2008-06-03 21:42:37 +00:00
number = BELL_NONE;
2007-10-19 10:21:36 +00:00
else if (strcmp(data->value, "current") == 0)
2008-06-03 21:42:37 +00:00
number = BELL_CURRENT;
2007-10-19 10:21:36 +00:00
else {
ctx->error(ctx, "unknown bell-action: %s", data->value);
return;
}
2008-06-03 21:42:37 +00:00
options_set_number(oo, "bell-action", number);
} else if (strcmp(data->option, "default-command") == 0) {
if (data->value == NULL) {
ctx->error(ctx, "invalid value");
return;
}
2008-06-03 21:42:37 +00:00
options_set_string(oo, "default-command", "%s", data->value);
2007-11-23 12:48:20 +00:00
} else if (strcmp(data->option, "history-limit") == 0) {
if (data->value == NULL) {
ctx->error(ctx, "invalid value");
return;
}
if (number > SHRT_MAX) {
ctx->error(ctx, "history-limit too big: %u", number);
return;
}
2008-06-03 21:42:37 +00:00
options_set_number(oo, "history-limit", number);
} else if (strcmp(data->option, "status-left") == 0) {
if (data->value == NULL) {
ctx->error(ctx, "invalid value");
return;
}
options_set_string(oo, "status-left", "%s", data->value);
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
c = ARRAY_ITEM(&clients, i);
if (c != NULL && c->session != NULL)
server_redraw_client(c);
}
} else if (strcmp(data->option, "status-right") == 0) {
if (data->value == NULL) {
ctx->error(ctx, "invalid value");
return;
}
options_set_string(oo, "status-right", "%s", data->value);
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
c = ARRAY_ITEM(&clients, i);
if (c != NULL && c->session != NULL)
server_redraw_client(c);
}
2007-10-04 10:11:32 +00:00
} else {
ctx->error(ctx, "unknown option: %s", data->option);
return;
}
if (ctx->cmdclient != NULL)
server_write_client(ctx->cmdclient, MSG_EXIT, NULL, 0);
2007-10-04 10:11:32 +00:00
}
void
cmd_set_option_send(struct cmd *self, struct buffer *b)
2007-10-04 10:11:32 +00:00
{
struct cmd_set_option_data *data = self->data;
2007-10-04 10:11:32 +00:00
2008-06-03 21:42:37 +00:00
buffer_write(b, data, sizeof *data);
cmd_send_string(b, data->cname);
cmd_send_string(b, data->sname);
2007-10-04 10:11:32 +00:00
cmd_send_string(b, data->option);
cmd_send_string(b, data->value);
}
void
cmd_set_option_recv(struct cmd *self, struct buffer *b)
2007-10-04 10:11:32 +00:00
{
struct cmd_set_option_data *data;
self->data = data = xmalloc(sizeof *data);
2008-06-03 21:42:37 +00:00
buffer_read(b, data, sizeof *data);
data->cname = cmd_recv_string(b);
data->sname = cmd_recv_string(b);
2007-10-04 10:11:32 +00:00
data->option = cmd_recv_string(b);
data->value = cmd_recv_string(b);
}
void
cmd_set_option_free(struct cmd *self)
2007-10-04 10:11:32 +00:00
{
struct cmd_set_option_data *data = self->data;
2007-10-04 10:11:32 +00:00
2008-06-03 21:42:37 +00:00
if (data->cname != NULL)
xfree(data->cname);
if (data->sname != NULL)
xfree(data->sname);
2007-10-04 10:11:32 +00:00
if (data->option != NULL)
xfree(data->option);
if (data->value != NULL)
xfree(data->value);
xfree(data);
}
2008-06-05 17:12:11 +00:00
void
cmd_set_option_print(struct cmd *self, char *buf, size_t len)
{
struct cmd_set_option_data *data = self->data;
size_t off = 0;
off += xsnprintf(buf, len, "%s", self->entry->name);
if (data == NULL)
return;
if (off < len && data->option != NULL)
off += xsnprintf(buf + off, len - off, " %s", data->option);
if (off < len && data->value != NULL)
off += xsnprintf(buf + off, len - off, " %s", data->value);
}