aboutsummaryrefslogtreecommitdiff
path: root/cmd-capture-pane.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd-capture-pane.c')
-rw-r--r--cmd-capture-pane.c177
1 files changed, 135 insertions, 42 deletions
diff --git a/cmd-capture-pane.c b/cmd-capture-pane.c
index adb827bb..f59dc2d6 100644
--- a/cmd-capture-pane.c
+++ b/cmd-capture-pane.c
@@ -24,15 +24,21 @@
#include "tmux.h"
/*
- * Write the entire contents of a pane to a buffer.
+ * Write the entire contents of a pane to a buffer or stdout.
*/
-enum cmd_retval cmd_capture_pane_exec(struct cmd *, struct cmd_ctx *);
+enum cmd_retval cmd_capture_pane_exec(struct cmd *, struct cmd_q *);
+
+char *cmd_capture_pane_append(char *, size_t *, char *, size_t);
+char *cmd_capture_pane_pending(struct args *, struct window_pane *,
+ size_t *);
+char *cmd_capture_pane_history(struct args *, struct cmd_q *,
+ struct window_pane *, size_t *);
const struct cmd_entry cmd_capture_pane_entry = {
"capture-pane", "capturep",
- "b:E:S:t:", 0, 0,
- "[-b buffer-index] [-E end-line] [-S start-line] "
+ "ab:CeE:JpPqS:t:", 0, 0,
+ "[-aCeJpPq] [-b buffer-index] [-E end-line] [-S start-line]"
CMD_TARGET_PANE_USAGE,
0,
NULL,
@@ -40,25 +46,69 @@ const struct cmd_entry cmd_capture_pane_entry = {
cmd_capture_pane_exec
};
-enum cmd_retval
-cmd_capture_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
+char *
+cmd_capture_pane_append(char *buf, size_t *len, char *line, size_t linelen)
{
- struct args *args = self->args;
- struct window_pane *wp;
- char *buf, *line, *cause;
- struct screen *s;
- struct grid *gd;
- int buffer, n;
- u_int i, limit, top, bottom, tmp;
- size_t len, linelen;
+ buf = xrealloc(buf, 1, *len + linelen + 1);
+ memcpy(buf + *len, line, linelen);
+ *len += linelen;
+ return (buf);
+}
- if (cmd_find_pane(ctx, args_get(args, 't'), NULL, &wp) == NULL)
- return (CMD_RETURN_ERROR);
- s = &wp->base;
- gd = s->grid;
+char *
+cmd_capture_pane_pending(struct args *args, struct window_pane *wp,
+ size_t *len)
+{
+ char *buf, *line, tmp[5];
+ size_t linelen;
+ u_int i;
+
+ if (wp->ictx.since_ground == NULL)
+ return (xstrdup(""));
+
+ line = EVBUFFER_DATA(wp->ictx.since_ground);
+ linelen = EVBUFFER_LENGTH(wp->ictx.since_ground);
+
+ buf = xstrdup("");
+ if (args_has(args, 'C')) {
+ for (i = 0; i < linelen; i++) {
+ if (line[i] >= ' ') {
+ tmp[0] = line[i];
+ tmp[1] = '\0';
+ } else
+ xsnprintf(tmp, sizeof tmp, "\\%03o", line[i]);
+ buf = cmd_capture_pane_append(buf, len, tmp,
+ strlen(tmp));
+ }
+ } else
+ buf = cmd_capture_pane_append(buf, len, line, linelen);
+ return (buf);
+}
- buf = NULL;
- len = 0;
+char *
+cmd_capture_pane_history(struct args *args, struct cmd_q *cmdq,
+ struct window_pane *wp, size_t *len)
+{
+ struct grid *gd;
+ const struct grid_line *gl;
+ struct grid_cell *gc = NULL;
+ int n, with_codes, escape_c0, join_lines;
+ u_int i, sx, top, bottom, tmp;
+ char *cause, *buf, *line;
+ size_t linelen;
+
+ sx = screen_size_x(&wp->base);
+ if (args_has(args, 'a')) {
+ gd = wp->saved_grid;
+ if (gd == NULL) {
+ if (!args_has(args, 'q')) {
+ cmdq_error(cmdq, "no alternate screen");
+ return (NULL);
+ }
+ return (xstrdup(""));
+ }
+ } else
+ gd = wp->base.grid;
n = args_strtonum(args, 'S', INT_MIN, SHRT_MAX, &cause);
if (cause != NULL) {
@@ -88,37 +138,80 @@ cmd_capture_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
top = tmp;
}
- for (i = top; i <= bottom; i++) {
- line = grid_string_cells(s->grid, 0, i, screen_size_x(s));
- linelen = strlen(line);
+ with_codes = args_has(args, 'e');
+ escape_c0 = args_has(args, 'C');
+ join_lines = args_has(args, 'J');
- buf = xrealloc(buf, 1, len + linelen + 1);
- memcpy(buf + len, line, linelen);
- len += linelen;
- buf[len++] = '\n';
+ buf = NULL;
+ for (i = top; i <= bottom; i++) {
+ line = grid_string_cells(gd, 0, i, sx, &gc, with_codes,
+ escape_c0, !join_lines);
+ linelen = strlen(line);
- free(line);
- }
+ buf = cmd_capture_pane_append(buf, len, line, linelen);
- limit = options_get_number(&global_options, "buffer-limit");
+ gl = grid_peek_line(gd, i);
+ if (!join_lines || !(gl->flags & GRID_LINE_WRAPPED))
+ buf[(*len)++] = '\n';
- if (!args_has(args, 'b')) {
- paste_add(&global_buffers, buf, len, limit);
- return (CMD_RETURN_NORMAL);
+ free(line);
}
+ return (buf);
+}
- buffer = args_strtonum(args, 'b', 0, INT_MAX, &cause);
- if (cause != NULL) {
- ctx->error(ctx, "buffer %s", cause);
- free(buf);
- free(cause);
+enum cmd_retval
+cmd_capture_pane_exec(struct cmd *self, struct cmd_q *cmdq)
+{
+ struct args *args = self->args;
+ struct client *c;
+ struct window_pane *wp;
+ char *buf, *cause;
+ int buffer;
+ u_int limit;
+ size_t len;
+
+ if (cmd_find_pane(cmdq, args_get(args, 't'), NULL, &wp) == NULL)
return (CMD_RETURN_ERROR);
- }
- if (paste_replace(&global_buffers, buffer, buf, len) != 0) {
- ctx->error(ctx, "no buffer %d", buffer);
- free(buf);
+ len = 0;
+ if (args_has(args, 'P'))
+ buf = cmd_capture_pane_pending(args, wp, &len);
+ else
+ buf = cmd_capture_pane_history(args, cmdq, wp, &len);
+ if (buf == NULL)
return (CMD_RETURN_ERROR);
+
+ if (args_has(args, 'p')) {
+ c = cmdq->client;
+ if (c == NULL ||
+ (c->session != NULL && !(c->flags & CLIENT_CONTROL))) {
+ cmdq_error(cmdq, "can't write to stdout");
+ return (CMD_RETURN_ERROR);
+ }
+ evbuffer_add(c->stdout_data, buf, len);
+ if (args_has(args, 'P') && len > 0)
+ evbuffer_add(c->stdout_data, "\n", 1);
+ 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) {
+ cmdq_error(cmdq, "buffer %s", cause);
+ free(buf);
+ free(cause);
+ return (CMD_RETURN_ERROR);
+ }
+
+ if (paste_replace(&global_buffers, buffer, buf, len) != 0) {
+ cmdq_error(cmdq, "no buffer %d", buffer);
+ free(buf);
+ return (CMD_RETURN_ERROR);
+ }
}
return (CMD_RETURN_NORMAL);