2008-06-05 17:12:11 +00:00
|
|
|
/* $Id: cmd-generic.c,v 1.7 2008-06-05 17:12:10 nicm Exp $ */
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 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>
|
2008-06-02 22:09:49 +00:00
|
|
|
#include <stdlib.h>
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_clientonly_parse(struct cmd *self, int argc, char **argv, char **cause)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
|
|
|
struct cmd_clientonly_data *data;
|
|
|
|
int opt;
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2008-06-02 18:08:17 +00:00
|
|
|
data->cname = NULL;
|
|
|
|
|
|
|
|
while ((opt = getopt(argc, argv, "c:")) != EOF) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'c':
|
2008-06-03 16:55:09 +00:00
|
|
|
if (data->cname == NULL)
|
|
|
|
data->cname = xstrdup(optarg);
|
2008-06-02 18:08:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argc != 0)
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
usage:
|
2008-06-02 21:08:36 +00:00
|
|
|
xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->entry->free(self);
|
2008-06-02 18:08:17 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_clientonly_send(struct cmd *self, struct buffer *b)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_clientonly_data *data = self->data;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
buffer_write(b, data, sizeof *data);
|
|
|
|
cmd_send_string(b, data->cname);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_clientonly_recv(struct cmd *self, struct buffer *b)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
|
|
|
struct cmd_clientonly_data *data;
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2008-06-02 18:08:17 +00:00
|
|
|
buffer_read(b, data, sizeof *data);
|
|
|
|
data->cname = cmd_recv_string(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_clientonly_free(struct cmd *self)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_clientonly_data *data = self->data;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
if (data->cname != NULL)
|
|
|
|
xfree(data->cname);
|
|
|
|
xfree(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct client *
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_clientonly_get(struct cmd *self, struct cmd_ctx *ctx)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_clientonly_data *data = self->data;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
if (data != NULL)
|
|
|
|
return (cmd_find_client(ctx, data->cname));
|
|
|
|
return (cmd_find_client(ctx, NULL));
|
|
|
|
}
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
void
|
|
|
|
cmd_clientonly_print(struct cmd *self, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct cmd_clientonly_data *data = self->data;
|
|
|
|
size_t off = 0;
|
|
|
|
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf, len, "%s", self->entry->name);
|
2008-06-05 16:35:32 +00:00
|
|
|
if (data == NULL)
|
|
|
|
return;
|
|
|
|
if (off < len && data->cname != NULL)
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf + off, len - off, " -c %s", data->cname);
|
2008-06-05 16:35:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-02 18:08:17 +00:00
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_sessiononly_parse(struct cmd *self, int argc, char **argv, char **cause)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
|
|
|
struct cmd_sessiononly_data *data;
|
|
|
|
int opt;
|
2008-06-05 16:35:32 +00:00
|
|
|
|
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2008-06-03 16:55:09 +00:00
|
|
|
data->cname = NULL;
|
2008-06-02 18:08:17 +00:00
|
|
|
data->sname = NULL;
|
|
|
|
|
2008-06-03 16:55:09 +00:00
|
|
|
while ((opt = getopt(argc, argv, "c:s:")) != EOF) {
|
2008-06-02 18:08:17 +00:00
|
|
|
switch (opt) {
|
2008-06-03 16:55:09 +00:00
|
|
|
case 'c':
|
|
|
|
if (data->sname != NULL)
|
|
|
|
goto usage;
|
|
|
|
if (data->cname == NULL)
|
|
|
|
data->cname = xstrdup(optarg);
|
|
|
|
break;
|
2008-06-02 18:08:17 +00:00
|
|
|
case 's':
|
2008-06-03 16:55:09 +00:00
|
|
|
if (data->cname != NULL)
|
|
|
|
goto usage;
|
|
|
|
if (data->sname == NULL)
|
|
|
|
data->sname = xstrdup(optarg);
|
2008-06-02 18:08:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argc != 0)
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
usage:
|
2008-06-02 21:08:36 +00:00
|
|
|
xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->entry->free(self);
|
2008-06-02 18:08:17 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_sessiononly_send(struct cmd *self, struct buffer *b)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_sessiononly_data *data = self->data;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
buffer_write(b, data, sizeof *data);
|
2008-06-03 16:55:09 +00:00
|
|
|
cmd_send_string(b, data->cname);
|
2008-06-02 18:08:17 +00:00
|
|
|
cmd_send_string(b, data->sname);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_sessiononly_recv(struct cmd *self, struct buffer *b)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
|
|
|
struct cmd_sessiononly_data *data;
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2008-06-02 18:08:17 +00:00
|
|
|
buffer_read(b, data, sizeof *data);
|
2008-06-03 16:55:09 +00:00
|
|
|
data->cname = cmd_recv_string(b);
|
2008-06-02 18:08:17 +00:00
|
|
|
data->sname = cmd_recv_string(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_sessiononly_free(struct cmd *self)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_sessiononly_data *data = self->data;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-03 16:55:09 +00:00
|
|
|
if (data->cname != NULL)
|
|
|
|
xfree(data->cname);
|
2008-06-02 18:08:17 +00:00
|
|
|
if (data->sname != NULL)
|
|
|
|
xfree(data->sname);
|
|
|
|
xfree(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct session *
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_sessiononly_get(struct cmd *self, struct cmd_ctx *ctx)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_sessiononly_data *data = self->data;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
if (data != NULL)
|
2008-06-03 16:55:09 +00:00
|
|
|
return (cmd_find_session(ctx, data->cname, data->sname));
|
|
|
|
return (cmd_find_session(ctx, NULL, NULL));
|
2008-06-02 18:08:17 +00:00
|
|
|
}
|
2008-06-02 22:09:49 +00:00
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
void
|
|
|
|
cmd_sessiononly_print(struct cmd *self, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct cmd_sessiononly_data *data = self->data;
|
|
|
|
size_t off = 0;
|
|
|
|
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf, len, "%s", self->entry->name);
|
2008-06-05 16:35:32 +00:00
|
|
|
if (data == NULL)
|
|
|
|
return;
|
|
|
|
if (off < len && data->cname != NULL)
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf + off, len - off, " -c %s", data->cname);
|
2008-06-05 16:35:32 +00:00
|
|
|
if (off < len && data->sname != NULL)
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf + off, len - off, " -s %s", data->sname);
|
2008-06-05 16:35:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-02 22:09:49 +00:00
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_windowonly_parse(struct cmd *self, int argc, char **argv, char **cause)
|
2008-06-02 22:09:49 +00:00
|
|
|
{
|
|
|
|
struct cmd_windowonly_data *data;
|
|
|
|
int opt;
|
|
|
|
const char *errstr;
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2008-06-03 16:55:09 +00:00
|
|
|
data->cname = NULL;
|
2008-06-02 22:09:49 +00:00
|
|
|
data->sname = NULL;
|
|
|
|
data->idx = -1;
|
|
|
|
|
2008-06-03 16:55:09 +00:00
|
|
|
while ((opt = getopt(argc, argv, "c:i:s:")) != EOF) {
|
2008-06-02 22:09:49 +00:00
|
|
|
switch (opt) {
|
2008-06-03 16:55:09 +00:00
|
|
|
case 'c':
|
|
|
|
if (data->sname != NULL)
|
|
|
|
goto usage;
|
|
|
|
if (data->cname == NULL)
|
|
|
|
data->cname = xstrdup(optarg);
|
|
|
|
break;
|
2008-06-02 22:09:49 +00:00
|
|
|
case 'i':
|
|
|
|
data->idx = strtonum(optarg, 0, INT_MAX, &errstr);
|
|
|
|
if (errstr != NULL) {
|
|
|
|
xasprintf(cause, "index %s", errstr);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 's':
|
2008-06-03 16:55:09 +00:00
|
|
|
if (data->cname != NULL)
|
|
|
|
goto usage;
|
|
|
|
if (data->sname == NULL)
|
|
|
|
data->sname = xstrdup(optarg);
|
2008-06-02 22:09:49 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argc != 0)
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
usage:
|
|
|
|
xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
|
|
|
|
|
|
|
|
error:
|
2008-06-05 16:35:32 +00:00
|
|
|
self->entry->free(self);
|
2008-06-02 22:09:49 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_windowonly_send(struct cmd *self, struct buffer *b)
|
2008-06-02 22:09:49 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_windowonly_data *data = self->data;
|
2008-06-02 22:09:49 +00:00
|
|
|
|
|
|
|
buffer_write(b, data, sizeof *data);
|
2008-06-03 16:55:09 +00:00
|
|
|
cmd_send_string(b, data->cname);
|
2008-06-02 22:09:49 +00:00
|
|
|
cmd_send_string(b, data->sname);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_windowonly_recv(struct cmd *self, struct buffer *b)
|
2008-06-02 22:09:49 +00:00
|
|
|
{
|
|
|
|
struct cmd_windowonly_data *data;
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2008-06-02 22:09:49 +00:00
|
|
|
buffer_read(b, data, sizeof *data);
|
2008-06-03 16:55:09 +00:00
|
|
|
data->cname = cmd_recv_string(b);
|
2008-06-02 22:09:49 +00:00
|
|
|
data->sname = cmd_recv_string(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_windowonly_free(struct cmd *self)
|
2008-06-02 22:09:49 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_windowonly_data *data = self->data;
|
2008-06-02 22:09:49 +00:00
|
|
|
|
2008-06-03 16:55:09 +00:00
|
|
|
if (data->cname != NULL)
|
|
|
|
xfree(data->cname);
|
2008-06-02 22:09:49 +00:00
|
|
|
if (data->sname != NULL)
|
|
|
|
xfree(data->sname);
|
|
|
|
xfree(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct winlink *
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_windowonly_get(struct cmd *self, struct cmd_ctx *ctx, struct session **sp)
|
2008-06-02 22:09:49 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_windowonly_data *data = self->data;
|
2008-06-02 22:09:49 +00:00
|
|
|
struct winlink *wl;
|
|
|
|
|
2008-06-03 16:55:09 +00:00
|
|
|
if (data == NULL) {
|
|
|
|
wl = cmd_find_window(ctx, NULL, NULL, -1, sp);
|
|
|
|
return (wl);
|
2008-06-02 22:09:49 +00:00
|
|
|
}
|
2008-06-05 16:35:32 +00:00
|
|
|
|
2008-06-03 16:55:09 +00:00
|
|
|
return (cmd_find_window(ctx, data->cname, data->sname, data->idx, sp));
|
2008-06-02 22:09:49 +00:00
|
|
|
}
|
2008-06-05 16:35:32 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
cmd_windowonly_print(struct cmd *self, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct cmd_windowonly_data *data = self->data;
|
|
|
|
size_t off = 0;
|
|
|
|
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf, len, "%s", self->entry->name);
|
2008-06-05 16:35:32 +00:00
|
|
|
if (data == NULL)
|
|
|
|
return;
|
|
|
|
if (off < len && data->cname != NULL)
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf + off, len - off, " -c %s", data->cname);
|
2008-06-05 16:35:32 +00:00
|
|
|
if (off < len && data->sname != NULL)
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf + off, len - off, " -s %s", data->sname);
|
2008-06-05 16:35:32 +00:00
|
|
|
if (off < len && data->idx != -1)
|
2008-06-05 17:12:11 +00:00
|
|
|
off += xsnprintf(buf + off, len - off, " -i %d", data->idx);
|
2008-06-05 16:35:32 +00:00
|
|
|
}
|