2011-07-09 09:42:33 +00:00
|
|
|
/* $Id$ */
|
2009-12-02 15:10:44 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 Jonathan Alvarado <radobobo@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-12-30 22:39:49 +00:00
|
|
|
#include <stdlib.h>
|
2009-12-02 15:10:44 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2013-02-15 09:31:45 +00:00
|
|
|
* Write the entire contents of a pane to a buffer or stdout.
|
2009-12-02 15:10:44 +00:00
|
|
|
*/
|
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
enum cmd_retval cmd_capture_pane_exec(struct cmd *, struct cmd_q *);
|
2009-12-02 15:10:44 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_capture_pane_entry = {
|
|
|
|
"capture-pane", "capturep",
|
2013-02-21 09:35:01 +00:00
|
|
|
"b:CeE:JpS:t:", 0, 0,
|
|
|
|
"[-CeJp] [-b buffer-index] [-E end-line] [-S start-line]"
|
2012-12-09 23:17:35 +00:00
|
|
|
CMD_TARGET_PANE_USAGE,
|
2011-01-07 14:45:34 +00:00
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
cmd_capture_pane_exec
|
2009-12-02 15:10:44 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
enum cmd_retval
|
2013-02-23 22:25:58 +00:00
|
|
|
cmd_capture_pane_exec(struct cmd *self, struct cmd_q *cmdq)
|
2009-12-02 15:10:44 +00:00
|
|
|
{
|
2011-01-07 14:45:34 +00:00
|
|
|
struct args *args = self->args;
|
2013-02-20 09:32:52 +00:00
|
|
|
struct client *c;
|
2011-01-07 14:45:34 +00:00
|
|
|
struct window_pane *wp;
|
2013-02-19 09:55:02 +00:00
|
|
|
char *buf, *line, *cause;
|
2011-01-07 14:45:34 +00:00
|
|
|
struct screen *s;
|
2011-04-06 22:19:42 +00:00
|
|
|
struct grid *gd;
|
2013-02-21 09:35:01 +00:00
|
|
|
int buffer, n, with_codes, escape_c0, join_lines;
|
2011-04-06 22:19:42 +00:00
|
|
|
u_int i, limit, top, bottom, tmp;
|
2013-02-19 09:55:02 +00:00
|
|
|
size_t len, linelen;
|
|
|
|
struct grid_cell *gc;
|
2013-02-21 09:35:01 +00:00
|
|
|
const struct grid_line *gl;
|
2011-01-07 14:45:34 +00:00
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
if (cmd_find_pane(cmdq, args_get(args, 't'), NULL, &wp) == NULL)
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-12-02 15:10:44 +00:00
|
|
|
s = &wp->base;
|
2011-04-06 22:19:42 +00:00
|
|
|
gd = s->grid;
|
2009-12-02 15:10:44 +00:00
|
|
|
|
|
|
|
buf = NULL;
|
|
|
|
len = 0;
|
|
|
|
|
2011-12-30 14:16:44 +00:00
|
|
|
n = args_strtonum(args, 'S', INT_MIN, SHRT_MAX, &cause);
|
2011-05-18 20:31:00 +00:00
|
|
|
if (cause != NULL) {
|
2011-04-06 22:19:42 +00:00
|
|
|
top = gd->hsize;
|
2012-07-11 19:34:16 +00:00
|
|
|
free(cause);
|
2011-05-18 20:31:00 +00:00
|
|
|
} else if (n < 0 && (u_int) -n > gd->hsize)
|
2011-04-06 22:19:42 +00:00
|
|
|
top = 0;
|
|
|
|
else
|
|
|
|
top = gd->hsize + n;
|
|
|
|
if (top > gd->hsize + gd->sy - 1)
|
|
|
|
top = gd->hsize + gd->sy - 1;
|
|
|
|
|
2011-12-30 14:16:44 +00:00
|
|
|
n = args_strtonum(args, 'E', INT_MIN, SHRT_MAX, &cause);
|
2011-05-18 20:31:00 +00:00
|
|
|
if (cause != NULL) {
|
2011-04-06 22:19:42 +00:00
|
|
|
bottom = gd->hsize + gd->sy - 1;
|
2012-07-11 19:34:16 +00:00
|
|
|
free(cause);
|
2011-05-18 20:31:00 +00:00
|
|
|
} else if (n < 0 && (u_int) -n > gd->hsize)
|
2011-04-06 22:19:42 +00:00
|
|
|
bottom = 0;
|
|
|
|
else
|
|
|
|
bottom = gd->hsize + n;
|
|
|
|
if (bottom > gd->hsize + gd->sy - 1)
|
|
|
|
bottom = gd->hsize + gd->sy - 1;
|
|
|
|
|
|
|
|
if (bottom < top) {
|
|
|
|
tmp = bottom;
|
|
|
|
bottom = top;
|
|
|
|
top = tmp;
|
|
|
|
}
|
|
|
|
|
2013-02-19 09:55:02 +00:00
|
|
|
with_codes = args_has(args, 'e');
|
2013-02-21 09:35:01 +00:00
|
|
|
escape_c0 = args_has(args, 'C');
|
|
|
|
join_lines = args_has(args, 'J');
|
|
|
|
|
|
|
|
gc = NULL;
|
2011-04-06 22:19:42 +00:00
|
|
|
for (i = top; i <= bottom; i++) {
|
2013-02-19 09:55:02 +00:00
|
|
|
line = grid_string_cells(s->grid, 0, i, screen_size_x(s),
|
2013-02-21 09:35:01 +00:00
|
|
|
&gc, with_codes, escape_c0);
|
2013-02-19 09:55:02 +00:00
|
|
|
linelen = strlen(line);
|
2009-12-02 15:10:44 +00:00
|
|
|
|
2013-02-19 09:55:02 +00:00
|
|
|
buf = xrealloc(buf, 1, len + linelen + 1);
|
|
|
|
memcpy(buf + len, line, linelen);
|
|
|
|
len += linelen;
|
2013-02-21 09:35:01 +00:00
|
|
|
|
|
|
|
gl = grid_peek_line(s->grid, i);
|
|
|
|
if (!join_lines || !(gl->flags & GRID_LINE_WRAPPED))
|
|
|
|
buf[len++] = '\n';
|
2010-01-22 17:29:19 +00:00
|
|
|
|
2013-02-19 09:55:02 +00:00
|
|
|
free(line);
|
2009-12-02 15:10:44 +00:00
|
|
|
}
|
|
|
|
|
2013-02-15 09:31:45 +00:00
|
|
|
if (args_has(args, 'p')) {
|
2013-02-23 22:25:58 +00:00
|
|
|
c = cmdq->client;
|
|
|
|
if (c == NULL ||
|
|
|
|
(c->session != NULL && !(c->flags & CLIENT_CONTROL))) {
|
|
|
|
cmdq_error(cmdq, "can't write to stdout");
|
2013-02-15 09:31:45 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
evbuffer_add(c->stdout_data, buf, len);
|
|
|
|
server_push_stdout(c);
|
|
|
|
} else {
|
|
|
|
limit = options_get_number(&global_options, "buffer-limit");
|
|
|
|
if (!args_has(args, 'b')) {
|
|
|
|
paste_add(&global_buffers, buf, len, limit);
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer = args_strtonum(args, 'b', 0, INT_MAX, &cause);
|
|
|
|
if (cause != NULL) {
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq_error(cmdq, "buffer %s", cause);
|
2013-02-15 09:31:45 +00:00
|
|
|
free(buf);
|
|
|
|
free(cause);
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (paste_replace(&global_buffers, buffer, buf, len) != 0) {
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq_error(cmdq, "no buffer %d", buffer);
|
2013-02-15 09:31:45 +00:00
|
|
|
free(buf);
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2011-01-07 14:45:34 +00:00
|
|
|
}
|
2010-12-30 22:39:49 +00:00
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2010-12-30 22:39:49 +00:00
|
|
|
}
|