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
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_save_buffer_exec(struct cmd *, struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_save_buffer_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "save-buffer",
|
|
|
|
.alias = "saveb",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "ab:", 1, 1, NULL },
|
2015-12-13 21:53:57 +00:00
|
|
|
.usage = "[-a] " CMD_BUFFER_USAGE " path",
|
|
|
|
|
2016-10-14 22:14:22 +00:00
|
|
|
.flags = CMD_AFTERHOOK,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = 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 = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "show-buffer",
|
|
|
|
.alias = "showb",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "b:", 0, 0, NULL },
|
2015-12-13 21:53:57 +00:00
|
|
|
.usage = CMD_BUFFER_USAGE,
|
|
|
|
|
2016-10-14 22:14:22 +00:00
|
|
|
.flags = CMD_AFTERHOOK,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_save_buffer_exec
|
2013-03-24 09:54:10 +00:00
|
|
|
};
|
|
|
|
|
2019-12-12 11:39:56 +00:00
|
|
|
static void
|
|
|
|
cmd_save_buffer_done(__unused struct client *c, const char *path, int error,
|
|
|
|
__unused int closed, __unused struct evbuffer *buffer, void *data)
|
|
|
|
{
|
|
|
|
struct cmdq_item *item = data;
|
|
|
|
|
|
|
|
if (!closed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (error != 0)
|
|
|
|
cmdq_error(item, "%s: %s", path, strerror(error));
|
|
|
|
cmdq_continue(item);
|
|
|
|
}
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_save_buffer_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2020-04-13 08:26:27 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
2020-07-21 05:24:33 +00:00
|
|
|
struct client *c = cmdq_get_client(item);
|
2009-06-01 22:58:49 +00:00
|
|
|
struct paste_buffer *pb;
|
2019-12-12 11:39:56 +00:00
|
|
|
int flags;
|
|
|
|
const char *bufname = args_get(args, 'b'), *bufdata;
|
|
|
|
size_t bufsize;
|
2020-07-21 05:24:33 +00:00
|
|
|
char *path, *tmp;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2019-12-12 11:39:56 +00:00
|
|
|
if (bufname == NULL) {
|
2015-08-29 09:25:00 +00:00
|
|
|
if ((pb = paste_get_top(NULL)) == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "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
|
|
|
pb = paste_get_name(bufname);
|
2010-12-30 23:16:18 +00:00
|
|
|
if (pb == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "no buffer %s", bufname);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-29 09:25:00 +00:00
|
|
|
bufdata = paste_buffer_data(pb, &bufsize);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2020-07-21 05:24:33 +00:00
|
|
|
if (cmd_get_entry(self) == &cmd_show_buffer_entry) {
|
|
|
|
if (c->session != NULL || (c->flags & CLIENT_CONTROL)) {
|
|
|
|
utf8_stravisx(&tmp, bufdata, bufsize,
|
|
|
|
VIS_OCTAL|VIS_CSTYLE|VIS_TAB);
|
|
|
|
cmdq_print(item, "%s", tmp);
|
|
|
|
free(tmp);
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
2018-07-11 08:29:21 +00:00
|
|
|
path = xstrdup("-");
|
2020-07-21 05:24:33 +00:00
|
|
|
} else
|
2021-08-20 19:50:16 +00:00
|
|
|
path = format_single_from_target(item, args_string(args, 0));
|
2020-04-13 08:26:27 +00:00
|
|
|
if (args_has(args, 'a'))
|
2019-12-12 11:39:56 +00:00
|
|
|
flags = O_APPEND;
|
|
|
|
else
|
2021-02-11 09:03:38 +00:00
|
|
|
flags = O_TRUNC;
|
2020-04-13 10:59:58 +00:00
|
|
|
file_write(cmdq_get_client(item), path, flags, bufdata, bufsize,
|
2019-12-12 11:39:56 +00:00
|
|
|
cmd_save_buffer_done, item);
|
2018-07-31 13:06:44 +00:00
|
|
|
free(path);
|
|
|
|
|
2019-12-12 11:39:56 +00:00
|
|
|
return (CMD_RETURN_WAIT);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|