2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2010-05-19 22:28:14 +00:00
|
|
|
#include <stdlib.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <string.h>
|
2010-05-19 22:28:14 +00:00
|
|
|
#include <vis.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Paste paste buffer if present.
|
|
|
|
*/
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval cmd_paste_buffer_exec(struct cmd *, struct cmd_ctx *);
|
2011-01-04 00:42:46 +00:00
|
|
|
|
2012-03-03 09:43:22 +00:00
|
|
|
void cmd_paste_buffer_filter(struct window_pane *,
|
|
|
|
const char *, size_t, const char *, int bracket);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_paste_buffer_entry = {
|
|
|
|
"paste-buffer", "pasteb",
|
2012-03-03 09:43:22 +00:00
|
|
|
"db:prs:t:", 0, 0,
|
|
|
|
"[-dpr] [-s separator] [-b buffer-index] [-t target-pane]",
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
cmd_paste_buffer_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2009-06-01 22:58:49 +00:00
|
|
|
cmd_paste_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
|
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct session *s;
|
|
|
|
struct paste_buffer *pb;
|
|
|
|
const char *sepstr;
|
|
|
|
char *cause;
|
|
|
|
int buffer;
|
2012-03-03 09:43:22 +00:00
|
|
|
int pflag;
|
2011-01-04 00:42:46 +00:00
|
|
|
|
|
|
|
if (cmd_find_pane(ctx, args_get(args, 't'), &s, &wp) == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (!args_has(args, 'b'))
|
|
|
|
buffer = -1;
|
|
|
|
else {
|
|
|
|
buffer = args_strtonum(args, 'b', 0, INT_MAX, &cause);
|
|
|
|
if (cause != NULL) {
|
|
|
|
ctx->error(ctx, "buffer %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-01-04 00:42:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer == -1)
|
2010-12-30 23:16:18 +00:00
|
|
|
pb = paste_get_top(&global_buffers);
|
2009-06-01 22:58:49 +00:00
|
|
|
else {
|
2011-01-04 00:42:46 +00:00
|
|
|
pb = paste_get_index(&global_buffers, buffer);
|
2010-12-30 23:16:18 +00:00
|
|
|
if (pb == NULL) {
|
2011-01-04 00:42:46 +00:00
|
|
|
ctx->error(ctx, "no buffer %d", buffer);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (pb != NULL) {
|
|
|
|
sepstr = args_get(args, 's');
|
|
|
|
if (sepstr == NULL) {
|
|
|
|
if (args_has(args, 'r'))
|
|
|
|
sepstr = "\n";
|
|
|
|
else
|
|
|
|
sepstr = "\r";
|
|
|
|
}
|
2012-03-03 09:43:22 +00:00
|
|
|
pflag = args_has(args, 'p') &&
|
|
|
|
(wp->screen->mode & MODE_BRACKETPASTE);
|
|
|
|
cmd_paste_buffer_filter(wp, pb->data, pb->size, sepstr, pflag);
|
2011-01-04 00:42:46 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
/* Delete the buffer if -d. */
|
2011-01-04 00:42:46 +00:00
|
|
|
if (args_has(args, 'd')) {
|
|
|
|
if (buffer == -1)
|
2010-12-30 23:16:18 +00:00
|
|
|
paste_free_top(&global_buffers);
|
2009-06-01 22:58:49 +00:00
|
|
|
else
|
2011-01-04 00:42:46 +00:00
|
|
|
paste_free_index(&global_buffers, buffer);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2009-07-11 19:14:56 +00:00
|
|
|
|
2010-05-19 22:28:14 +00:00
|
|
|
/* Add bytes to a buffer and filter '\n' according to separator. */
|
2009-07-11 19:14:56 +00:00
|
|
|
void
|
2012-03-03 09:43:22 +00:00
|
|
|
cmd_paste_buffer_filter(struct window_pane *wp,
|
|
|
|
const char *data, size_t size, const char *sep, int bracket)
|
2009-07-11 19:14:56 +00:00
|
|
|
{
|
|
|
|
const char *end = data + size;
|
|
|
|
const char *lf;
|
2010-05-19 22:28:14 +00:00
|
|
|
size_t seplen;
|
2009-07-11 19:14:56 +00:00
|
|
|
|
2012-03-03 09:43:22 +00:00
|
|
|
if (bracket)
|
|
|
|
bufferevent_write(wp->event, "\033[200~", 6);
|
|
|
|
|
2010-05-19 22:28:14 +00:00
|
|
|
seplen = strlen(sep);
|
2009-07-11 19:14:56 +00:00
|
|
|
while ((lf = memchr(data, '\n', end - data)) != NULL) {
|
|
|
|
if (lf != data)
|
2009-11-04 22:43:11 +00:00
|
|
|
bufferevent_write(wp->event, data, lf - data);
|
2010-05-19 22:28:14 +00:00
|
|
|
bufferevent_write(wp->event, sep, seplen);
|
2009-07-11 19:14:56 +00:00
|
|
|
data = lf + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end != data)
|
2009-11-04 22:43:11 +00:00
|
|
|
bufferevent_write(wp->event, data, end - data);
|
2012-03-03 09:43:22 +00:00
|
|
|
|
|
|
|
if (bracket)
|
|
|
|
bufferevent_write(wp->event, "\033[201~", 6);
|
2009-07-11 19:14:56 +00:00
|
|
|
}
|