1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-10 02:58:50 +00:00

Tidy up various bits of the paste code, make the data buffer char * and add

comments.
This commit is contained in:
Nicholas Marriott 2009-11-26 22:28:24 +00:00
parent ba5404d93e
commit 8cb410c63c
7 changed files with 55 additions and 24 deletions

View File

@ -64,7 +64,7 @@ cmd_list_buffers_exec(struct cmd *self, struct cmd_ctx *ctx)
strvisx(tmp, pb->data, len, VIS_OCTAL|VIS_TAB|VIS_NL); strvisx(tmp, pb->data, len, VIS_OCTAL|VIS_TAB|VIS_NL);
/* /*
* If the first 50 characterswere encoded as a longer string, * If the first 50 characters were encoded as a longer string,
* or there is definitely more data, add "...". * or there is definitely more data, add "...".
*/ */
if (size > 50 || strlen(tmp) > 50) { if (size > 50 || strlen(tmp) > 50) {

View File

@ -50,7 +50,8 @@ cmd_load_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
struct session *s; struct session *s;
struct stat sb; struct stat sb;
FILE *f; FILE *f;
u_char *buf; char *pdata = NULL;
size_t psize;
u_int limit; u_int limit;
if ((s = cmd_find_session(ctx, data->target)) == NULL) if ((s = cmd_find_session(ctx, data->target)) == NULL)
@ -63,39 +64,45 @@ cmd_load_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
if (fstat(fileno(f), &sb) < 0) { if (fstat(fileno(f), &sb) < 0) {
ctx->error(ctx, "%s: %s", data->arg, strerror(errno)); ctx->error(ctx, "%s: %s", data->arg, strerror(errno));
fclose(f); goto error;
return (-1);
} }
if (sb.st_size > SIZE_MAX) {
ctx->error(ctx, "%s: file too large", data->arg);
goto error;
}
psize = (size_t) sb.st_size;
/* /*
* We don't want to die due to memory exhaustion, hence xmalloc can't * We don't want to die due to memory exhaustion, hence xmalloc can't
* be used here. * be used here.
*/ */
if ((buf = malloc(sb.st_size + 1)) == NULL) { if ((pdata = malloc(psize)) == NULL) {
ctx->error(ctx, "malloc error: %s", strerror(errno)); ctx->error(ctx, "malloc error: %s", strerror(errno));
fclose(f); goto error;
return (-1);
} }
if (fread(buf, 1, sb.st_size, f) != (size_t) sb.st_size) { if (fread(pdata, 1, psize, f) != psize) {
ctx->error(ctx, "%s: fread error", data->arg); ctx->error(ctx, "%s: fread error", data->arg);
xfree(buf); goto error;
fclose(f);
return (-1);
} }
fclose(f); fclose(f);
limit = options_get_number(&s->options, "buffer-limit"); limit = options_get_number(&s->options, "buffer-limit");
if (data->buffer == -1) { if (data->buffer == -1) {
paste_add(&s->buffers, buf, sb.st_size, limit); paste_add(&s->buffers, pdata, psize, limit);
return (0); return (0);
} }
if (paste_replace(&s->buffers, data->buffer, buf, sb.st_size) != 0) { if (paste_replace(&s->buffers, data->buffer, pdata, psize) != 0) {
ctx->error(ctx, "no buffer %d", data->buffer); ctx->error(ctx, "no buffer %d", data->buffer);
xfree(buf); goto error;
return (-1);
} }
return (0); return (0);
error:
if (pdata != NULL)
xfree(pdata);
fclose(f);
return (-1);
} }

View File

@ -62,7 +62,7 @@ cmd_paste_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
} }
} }
if (pb != NULL && *pb->data != '\0') { if (pb != NULL) {
/* -r means raw data without LF->CR conversion. */ /* -r means raw data without LF->CR conversion. */
if (cmd_check_flag(data->chflags, 'r')) if (cmd_check_flag(data->chflags, 'r'))
bufferevent_write(wp->event, pb->data, pb->size); bufferevent_write(wp->event, pb->data, pb->size);

View File

@ -45,7 +45,7 @@ cmd_set_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
struct cmd_buffer_data *data = self->data; struct cmd_buffer_data *data = self->data;
struct session *s; struct session *s;
u_int limit; u_int limit;
u_char *pdata; char *pdata;
size_t psize; size_t psize;
if ((s = cmd_find_session(ctx, data->target)) == NULL) if ((s = cmd_find_session(ctx, data->target)) == NULL)

28
paste.c
View File

@ -23,6 +23,11 @@
#include "tmux.h" #include "tmux.h"
/*
* Stack of paste buffers. Note that paste buffer data is not necessarily a C
* string!
*/
void void
paste_init_stack(struct paste_stack *ps) paste_init_stack(struct paste_stack *ps)
{ {
@ -36,6 +41,7 @@ paste_free_stack(struct paste_stack *ps)
; ;
} }
/* Return each item of the stack in turn. */
struct paste_buffer * struct paste_buffer *
paste_walk_stack(struct paste_stack *ps, uint *idx) paste_walk_stack(struct paste_stack *ps, uint *idx)
{ {
@ -46,6 +52,7 @@ paste_walk_stack(struct paste_stack *ps, uint *idx)
return (pb); return (pb);
} }
/* Get the top item on the stack. */
struct paste_buffer * struct paste_buffer *
paste_get_top(struct paste_stack *ps) paste_get_top(struct paste_stack *ps)
{ {
@ -54,6 +61,7 @@ paste_get_top(struct paste_stack *ps)
return (ARRAY_FIRST(ps)); return (ARRAY_FIRST(ps));
} }
/* Get an item by its index. */
struct paste_buffer * struct paste_buffer *
paste_get_index(struct paste_stack *ps, u_int idx) paste_get_index(struct paste_stack *ps, u_int idx)
{ {
@ -62,6 +70,7 @@ paste_get_index(struct paste_stack *ps, u_int idx)
return (ARRAY_ITEM(ps, idx)); return (ARRAY_ITEM(ps, idx));
} }
/* Free the top item on the stack. */
int int
paste_free_top(struct paste_stack *ps) paste_free_top(struct paste_stack *ps)
{ {
@ -79,6 +88,7 @@ paste_free_top(struct paste_stack *ps)
return (0); return (0);
} }
/* Free an item by index. */
int int
paste_free_index(struct paste_stack *ps, u_int idx) paste_free_index(struct paste_stack *ps, u_int idx)
{ {
@ -96,12 +106,16 @@ paste_free_index(struct paste_stack *ps, u_int idx)
return (0); return (0);
} }
/*
* Add an item onto the top of the stack, freeing the bottom if at limit. Note
* that the caller is responsible for allocating data.
*/
void void
paste_add(struct paste_stack *ps, u_char *data, size_t size, u_int limit) paste_add(struct paste_stack *ps, char *data, size_t size, u_int limit)
{ {
struct paste_buffer *pb; struct paste_buffer *pb;
if (*data == '\0') if (size == 0)
return; return;
while (ARRAY_LENGTH(ps) >= limit) { while (ARRAY_LENGTH(ps) >= limit) {
@ -118,11 +132,19 @@ paste_add(struct paste_stack *ps, u_char *data, size_t size, u_int limit)
pb->size = size; pb->size = size;
} }
/*
* Replace an item on the stack. Note that the caller is responsible for
* allocating data.
*/
int int
paste_replace(struct paste_stack *ps, u_int idx, u_char *data, size_t size) paste_replace(struct paste_stack *ps, u_int idx, char *data, size_t size)
{ {
struct paste_buffer *pb; struct paste_buffer *pb;
if (size == 0)
return (0);
if (idx >= ARRAY_LENGTH(ps)) if (idx >= ARRAY_LENGTH(ps))
return (-1); return (-1);

View File

@ -882,6 +882,7 @@ status_prompt_key(struct client *c, int key)
{ {
struct paste_buffer *pb; struct paste_buffer *pb;
char *s, *first, *last, word[64], swapc; char *s, *first, *last, word[64], swapc;
u_char ch;
size_t size, n, off, idx; size_t size, n, off, idx;
size = strlen(c->prompt_buffer); size = strlen(c->prompt_buffer);
@ -1023,7 +1024,8 @@ status_prompt_key(struct client *c, int key)
if ((pb = paste_get_top(&c->session->buffers)) == NULL) if ((pb = paste_get_top(&c->session->buffers)) == NULL)
break; break;
for (n = 0; n < pb->size; n++) { for (n = 0; n < pb->size; n++) {
if (pb->data[n] < 32 || pb->data[n] == 127) ch = (u_char) pb->data[n];
if (ch < 32 || ch == 127)
break; break;
} }

6
tmux.h
View File

@ -884,7 +884,7 @@ struct layout_cell {
/* Paste buffer. */ /* Paste buffer. */
struct paste_buffer { struct paste_buffer {
char *data; char *data;
size_t size; size_t size;
}; };
ARRAY_DECL(paste_stack, struct paste_buffer *); ARRAY_DECL(paste_stack, struct paste_buffer *);
@ -1403,8 +1403,8 @@ struct paste_buffer *paste_get_top(struct paste_stack *);
struct paste_buffer *paste_get_index(struct paste_stack *, u_int); struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
int paste_free_top(struct paste_stack *); int paste_free_top(struct paste_stack *);
int paste_free_index(struct paste_stack *, u_int); int paste_free_index(struct paste_stack *, u_int);
void paste_add(struct paste_stack *, u_char *, size_t, u_int); void paste_add(struct paste_stack *, char *, size_t, u_int);
int paste_replace(struct paste_stack *, u_int, u_char *, size_t); int paste_replace(struct paste_stack *, u_int, char *, size_t);
/* clock.c */ /* clock.c */
extern const char clock_table[14][5][5]; extern const char clock_table[14][5][5];