2011-05-26 20:16:17 +00:00
|
|
|
/* $Id$ */
|
2008-06-20 08:36:20 +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>
|
|
|
|
|
2012-07-11 19:34:16 +00:00
|
|
|
#include <stdlib.h>
|
2009-09-07 23:48:54 +00:00
|
|
|
#include <string.h>
|
2008-06-20 08:36:20 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2011-10-23 15:02:20 +00:00
|
|
|
* Add or set a paste buffer.
|
2008-06-20 08:36:20 +00:00
|
|
|
*/
|
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
enum cmd_retval cmd_set_buffer_exec(struct cmd *, struct cmd_q *);
|
2008-06-20 08:36:20 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_set_buffer_entry = {
|
|
|
|
"set-buffer", "setb",
|
2011-01-07 14:45:34 +00:00
|
|
|
"b:", 1, 1,
|
2010-12-30 22:39:49 +00:00
|
|
|
CMD_BUFFER_USAGE " data",
|
2011-01-07 14:45:34 +00:00
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
cmd_set_buffer_exec
|
2008-06-20 08:36:20 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
enum cmd_retval
|
2013-02-23 22:25:58 +00:00
|
|
|
cmd_set_buffer_exec(struct cmd *self, struct cmd_q *cmdq)
|
2008-06-20 08:36:20 +00:00
|
|
|
{
|
2011-01-07 14:45:34 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
u_int limit;
|
|
|
|
char *pdata, *cause;
|
|
|
|
size_t psize;
|
|
|
|
int buffer;
|
2008-06-20 08:36:20 +00:00
|
|
|
|
2010-12-30 22:39:49 +00:00
|
|
|
limit = options_get_number(&global_options, "buffer-limit");
|
2009-09-07 23:48:54 +00:00
|
|
|
|
2011-01-07 14:45:34 +00:00
|
|
|
pdata = xstrdup(args->argv[0]);
|
2009-09-07 23:48:54 +00:00
|
|
|
psize = strlen(pdata);
|
|
|
|
|
2011-01-07 14:45:34 +00:00
|
|
|
if (!args_has(args, 'b')) {
|
2010-12-30 22:39:49 +00:00
|
|
|
paste_add(&global_buffers, pdata, psize, limit);
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-01-25 18:51:28 +00:00
|
|
|
}
|
2011-01-07 14:45:34 +00:00
|
|
|
|
|
|
|
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);
|
2012-07-11 19:34:16 +00:00
|
|
|
free(cause);
|
|
|
|
free(pdata);
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-01-07 14:45:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (paste_replace(&global_buffers, buffer, pdata, psize) != 0) {
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq_error(cmdq, "no buffer %d", buffer);
|
2012-07-11 19:34:16 +00:00
|
|
|
free(pdata);
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2008-06-20 08:36:20 +00:00
|
|
|
}
|
2011-01-07 14:45:34 +00:00
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2008-06-20 08:36:20 +00:00
|
|
|
}
|