2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org>
|
|
|
|
*
|
|
|
|
* 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 <sys/stat.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
2013-10-10 12:26:34 +00:00
|
|
|
#include <fcntl.h>
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <string.h>
|
2013-10-10 12:26:34 +00:00
|
|
|
#include <unistd.h>
|
2013-03-24 09:54:10 +00:00
|
|
|
#include <vis.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2011-10-23 00:49:25 +00:00
|
|
|
* Saves a paste buffer to a file.
|
2009-06-01 22:58:49 +00:00
|
|
|
*/
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
enum cmd_retval cmd_save_buffer_exec(struct cmd *, struct cmd_q *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_save_buffer_entry = {
|
|
|
|
"save-buffer", "saveb",
|
2011-01-04 00:42:46 +00:00
|
|
|
"ab:", 1, 1,
|
2012-03-21 19:16:07 +00:00
|
|
|
"[-a] " CMD_BUFFER_USAGE " path",
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
cmd_save_buffer_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
const struct cmd_entry cmd_show_buffer_entry = {
|
|
|
|
"show-buffer", "showb",
|
|
|
|
"b:", 0, 0,
|
|
|
|
CMD_BUFFER_USAGE,
|
|
|
|
0,
|
|
|
|
cmd_save_buffer_exec
|
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_save_buffer_exec(struct cmd *self, struct cmd_q *cmdq)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
2013-10-10 12:26:34 +00:00
|
|
|
struct client *c = cmdq->client;
|
2011-10-23 08:34:01 +00:00
|
|
|
struct session *s;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct paste_buffer *pb;
|
2014-05-13 07:34:35 +00:00
|
|
|
const char *path, *bufname;
|
|
|
|
char *start, *end, *msg;
|
2013-10-10 12:26:34 +00:00
|
|
|
size_t size, used, msglen;
|
2014-05-13 07:34:35 +00:00
|
|
|
int cwd, fd;
|
2010-07-24 20:11:59 +00:00
|
|
|
FILE *f;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (!args_has(args, 'b')) {
|
2014-04-24 09:14:43 +00:00
|
|
|
if ((pb = paste_get_top()) == NULL) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "no buffers");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-05-13 07:34:35 +00:00
|
|
|
bufname = args_get(args, 'b');
|
|
|
|
pb = paste_get_name(bufname);
|
2010-12-30 23:16:18 +00:00
|
|
|
if (pb == NULL) {
|
2014-05-13 07:34:35 +00:00
|
|
|
cmdq_error(cmdq, "no buffer %s", bufname);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
if (self->entry == &cmd_show_buffer_entry)
|
|
|
|
path = "-";
|
|
|
|
else
|
|
|
|
path = args->argv[0];
|
2011-01-04 00:42:46 +00:00
|
|
|
if (strcmp(path, "-") == 0) {
|
|
|
|
if (c == NULL) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "can't write to stdout");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-06-28 22:10:42 +00:00
|
|
|
}
|
2013-03-24 09:54:10 +00:00
|
|
|
if (c->session == NULL || (c->flags & CLIENT_CONTROL))
|
|
|
|
goto do_stdout;
|
|
|
|
goto do_print;
|
|
|
|
}
|
2011-10-23 08:34:01 +00:00
|
|
|
|
2013-10-10 12:26:34 +00:00
|
|
|
if (c != NULL && c->session == NULL)
|
|
|
|
cwd = c->cwd;
|
2015-04-27 16:25:57 +00:00
|
|
|
else if ((s = cmd_find_current(cmdq)) != NULL)
|
2013-10-10 12:26:34 +00:00
|
|
|
cwd = s->cwd;
|
2013-03-24 09:54:10 +00:00
|
|
|
else
|
2013-10-10 12:26:34 +00:00
|
|
|
cwd = AT_FDCWD;
|
|
|
|
|
|
|
|
f = NULL;
|
|
|
|
if (args_has(self->args, 'a')) {
|
|
|
|
fd = openat(cwd, path, O_CREAT|O_RDWR|O_APPEND, 0600);
|
|
|
|
if (fd != -1)
|
|
|
|
f = fdopen(fd, "ab");
|
|
|
|
} else {
|
2014-04-07 10:32:16 +00:00
|
|
|
fd = openat(cwd, path, O_CREAT|O_RDWR|O_TRUNC, 0600);
|
2013-10-10 12:26:34 +00:00
|
|
|
if (fd != -1)
|
|
|
|
f = fdopen(fd, "wb");
|
|
|
|
}
|
2013-03-24 09:54:10 +00:00
|
|
|
if (f == NULL) {
|
2013-10-10 12:26:34 +00:00
|
|
|
if (fd != -1)
|
|
|
|
close(fd);
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "%s: %s", path, strerror(errno));
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
if (fwrite(pb->data, 1, pb->size, f) != pb->size) {
|
|
|
|
cmdq_error(cmdq, "%s: fwrite error", path);
|
2010-07-24 20:11:59 +00:00
|
|
|
fclose(f);
|
2013-03-24 09:54:10 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
|
|
|
|
do_stdout:
|
|
|
|
evbuffer_add(c->stdout_data, pb->data, pb->size);
|
|
|
|
server_push_stdout(c);
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
|
|
|
|
do_print:
|
|
|
|
if (pb->size > (INT_MAX / 4) - 1) {
|
|
|
|
cmdq_error(cmdq, "buffer too big");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
msg = NULL;
|
|
|
|
|
|
|
|
used = 0;
|
|
|
|
while (used != pb->size) {
|
|
|
|
start = pb->data + used;
|
|
|
|
end = memchr(start, '\n', pb->size - used);
|
|
|
|
if (end != NULL)
|
|
|
|
size = end - start;
|
|
|
|
else
|
|
|
|
size = pb->size - used;
|
|
|
|
|
|
|
|
msglen = size * 4 + 1;
|
2014-10-08 17:35:58 +00:00
|
|
|
msg = xrealloc(msg, msglen);
|
2013-03-24 09:54:10 +00:00
|
|
|
|
|
|
|
strvisx(msg, start, size, VIS_OCTAL|VIS_TAB);
|
|
|
|
cmdq_print(cmdq, "%s", msg);
|
|
|
|
|
|
|
|
used += size + (end != NULL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
free(msg);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|