2009-11-08 23:02:56 +00:00
|
|
|
/* $Id: cmd-paste-buffer.c,v 1.21 2009-11-08 23:02:56 tcunha Exp $ */
|
2007-11-23 17:52:54 +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 <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Paste paste buffer if present.
|
|
|
|
*/
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int cmd_paste_buffer_exec(struct cmd *, struct cmd_ctx *);
|
2009-11-08 23:02:56 +00:00
|
|
|
void cmd_paste_buffer_lf2cr(struct window_pane *, const char *, size_t);
|
2007-11-23 17:52:54 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_paste_buffer_entry = {
|
2008-06-20 17:31:48 +00:00
|
|
|
"paste-buffer", "pasteb",
|
2009-07-12 17:11:39 +00:00
|
|
|
"[-dr] " CMD_BUFFER_WINDOW_USAGE,
|
2009-07-14 06:43:33 +00:00
|
|
|
0, CMD_CHFLAG('d')|CMD_CHFLAG('r'),
|
2008-06-20 17:31:48 +00:00
|
|
|
cmd_buffer_init,
|
|
|
|
cmd_buffer_parse,
|
2007-12-06 09:46:23 +00:00
|
|
|
cmd_paste_buffer_exec,
|
2008-06-20 17:31:48 +00:00
|
|
|
cmd_buffer_free,
|
|
|
|
cmd_buffer_print
|
2007-11-23 17:52:54 +00:00
|
|
|
};
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_paste_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
|
2007-11-23 17:52:54 +00:00
|
|
|
{
|
2008-06-20 17:31:48 +00:00
|
|
|
struct cmd_buffer_data *data = self->data;
|
2008-06-05 21:25:00 +00:00
|
|
|
struct winlink *wl;
|
2009-09-07 23:48:54 +00:00
|
|
|
struct window_pane *wp;
|
2008-06-20 17:31:48 +00:00
|
|
|
struct session *s;
|
|
|
|
struct paste_buffer *pb;
|
2008-06-20 18:58:13 +00:00
|
|
|
|
2008-06-20 17:31:48 +00:00
|
|
|
if ((wl = cmd_find_window(ctx, data->target, &s)) == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2009-09-07 23:48:54 +00:00
|
|
|
wp = wl->window->active;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-20 17:31:48 +00:00
|
|
|
if (data->buffer == -1)
|
|
|
|
pb = paste_get_top(&s->buffers);
|
|
|
|
else {
|
2009-01-19 18:23:40 +00:00
|
|
|
if ((pb = paste_get_index(&s->buffers, data->buffer)) == NULL) {
|
2008-06-20 17:31:48 +00:00
|
|
|
ctx->error(ctx, "no buffer %d", data->buffer);
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2008-06-20 17:31:48 +00:00
|
|
|
}
|
2008-06-20 18:58:13 +00:00
|
|
|
|
2009-07-12 17:11:39 +00:00
|
|
|
if (pb != NULL && *pb->data != '\0') {
|
|
|
|
/* -r means raw data without LF->CR conversion. */
|
2009-09-07 23:48:54 +00:00
|
|
|
if (data->chflags & CMD_CHFLAG('r'))
|
2009-11-08 23:02:56 +00:00
|
|
|
bufferevent_write(wp->event, pb->data, pb->size);
|
2009-09-07 23:48:54 +00:00
|
|
|
else
|
2009-11-08 23:02:56 +00:00
|
|
|
cmd_paste_buffer_lf2cr(wp, pb->data, pb->size);
|
2009-07-12 17:11:39 +00:00
|
|
|
}
|
2008-06-20 17:31:48 +00:00
|
|
|
|
|
|
|
/* Delete the buffer if -d. */
|
2009-07-14 06:43:33 +00:00
|
|
|
if (data->chflags & CMD_CHFLAG('d')) {
|
2008-06-20 17:31:48 +00:00
|
|
|
if (data->buffer == -1)
|
|
|
|
paste_free_top(&s->buffers);
|
|
|
|
else
|
|
|
|
paste_free_index(&s->buffers, data->buffer);
|
2008-06-02 22:09:49 +00:00
|
|
|
}
|
2007-11-23 17:52:54 +00:00
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2007-11-23 17:52:54 +00:00
|
|
|
}
|
2009-07-12 17:11:39 +00:00
|
|
|
|
|
|
|
/* Add bytes to a buffer but change every '\n' to '\r'. */
|
|
|
|
void
|
2009-11-08 23:02:56 +00:00
|
|
|
cmd_paste_buffer_lf2cr(struct window_pane *wp, const char *data, size_t size)
|
2009-07-12 17:11:39 +00:00
|
|
|
{
|
|
|
|
const char *end = data + size;
|
|
|
|
const char *lf;
|
|
|
|
|
|
|
|
while ((lf = memchr(data, '\n', end - data)) != NULL) {
|
|
|
|
if (lf != data)
|
2009-11-08 23:02:56 +00:00
|
|
|
bufferevent_write(wp->event, data, lf - data);
|
|
|
|
bufferevent_write(wp->event, "\r", 1);
|
2009-07-12 17:11:39 +00:00
|
|
|
data = lf + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end != data)
|
2009-11-08 23:02:56 +00:00
|
|
|
bufferevent_write(wp->event, data, end - data);
|
2009-07-12 17:11:39 +00:00
|
|
|
}
|