2007-10-19 11:21:26 +02:00
|
|
|
/* $Id: tmux.h,v 1.59 2007-10-19 09:21:26 nicm Exp $ */
|
2007-07-09 21:04:12 +02: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.
|
|
|
|
*/
|
|
|
|
|
2007-09-20 11:43:33 +02:00
|
|
|
#ifndef TMUX_H
|
|
|
|
#define TMUX_H
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
2007-07-26 01:13:18 +02:00
|
|
|
#include <sys/tree.h>
|
2007-07-09 21:04:12 +02:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <poll.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2007-09-20 11:43:33 +02:00
|
|
|
#include <termios.h>
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
#include "array.h"
|
|
|
|
|
2007-09-20 11:43:33 +02:00
|
|
|
extern cc_t ttydefchars[];
|
2007-10-03 13:26:34 +02:00
|
|
|
extern char *__progname;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-07-26 01:13:18 +02:00
|
|
|
#define MAXNAMELEN 32
|
|
|
|
#define MAXTITLELEN 192
|
|
|
|
|
|
|
|
/* Fatal errors. */
|
|
|
|
#define fatal(msg) log_fatal("%s: %s", __func__, msg);
|
2007-08-27 13:05:21 +02:00
|
|
|
#define fatalx(msg) log_fatalx("%s: %s", __func__, msg);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* Definition to shut gcc up about unused arguments. */
|
|
|
|
#define unused __attribute__ ((unused))
|
|
|
|
|
|
|
|
/* Attribute to make gcc check printf-like arguments. */
|
|
|
|
#define printflike1 __attribute__ ((format (printf, 1, 2)))
|
|
|
|
#define printflike2 __attribute__ ((format (printf, 2, 3)))
|
|
|
|
#define printflike3 __attribute__ ((format (printf, 3, 4)))
|
|
|
|
#define printflike4 __attribute__ ((format (printf, 4, 5)))
|
|
|
|
|
|
|
|
/* Ensure buffer size. */
|
|
|
|
#define ENSURE_SIZE(buf, len, size) do { \
|
|
|
|
(buf) = ensure_size(buf, &(len), 1, size); \
|
|
|
|
} while (0)
|
|
|
|
#define ENSURE_SIZE2(buf, len, nmemb, size) do { \
|
|
|
|
(buf) = ensure_size(buf, &(len), nmemb, size); \
|
|
|
|
} while (0)
|
|
|
|
#define ENSURE_FOR(buf, len, size, adj) do { \
|
|
|
|
(buf) = ensure_for(buf, &(len), size, adj); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* Buffer macros. */
|
|
|
|
#define BUFFER_USED(b) ((b)->size)
|
|
|
|
#define BUFFER_FREE(b) ((b)->space - (b)->off - (b)->size)
|
|
|
|
#define BUFFER_IN(b) ((b)->base + (b)->off + (b)->size)
|
|
|
|
#define BUFFER_OUT(b) ((b)->base + (b)->off)
|
|
|
|
|
|
|
|
/* Buffer structure. */
|
|
|
|
struct buffer {
|
|
|
|
u_char *base; /* buffer start */
|
|
|
|
size_t space; /* total size of buffer */
|
|
|
|
|
|
|
|
size_t size; /* size of data in buffer */
|
|
|
|
size_t off; /* offset of data in buffer */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Key codes. ncurses defines KEY_*. Grrr. */
|
|
|
|
#define KEYC_NONE 256
|
|
|
|
#define KEYC_A1 -1
|
|
|
|
#define KEYC_A3 -2
|
|
|
|
#define KEYC_B2 -3
|
|
|
|
#define KEYC_BACKSPACE -4
|
|
|
|
#define KEYC_BEG -5
|
|
|
|
#define KEYC_BTAB -6
|
|
|
|
#define KEYC_C1 -7
|
|
|
|
#define KEYC_C3 -8
|
|
|
|
#define KEYC_CANCEL -9
|
|
|
|
#define KEYC_CATAB -10
|
|
|
|
#define KEYC_CLEAR -11
|
|
|
|
#define KEYC_CLOSE -12
|
|
|
|
#define KEYC_COMMAND -13
|
|
|
|
#define KEYC_COPY -14
|
|
|
|
#define KEYC_CREATE -15
|
|
|
|
#define KEYC_CTAB -16
|
|
|
|
#define KEYC_DC -17
|
|
|
|
#define KEYC_DL -18
|
|
|
|
#define KEYC_DOWN -19
|
|
|
|
#define KEYC_EIC -20
|
|
|
|
#define KEYC_END -21
|
|
|
|
#define KEYC_ENTER -22
|
|
|
|
#define KEYC_EOL -23
|
|
|
|
#define KEYC_EOS -24
|
|
|
|
#define KEYC_EXIT -25
|
|
|
|
#define KEYC_F0 -26
|
|
|
|
#define KEYC_F1 -27
|
|
|
|
#define KEYC_F10 -28
|
|
|
|
#define KEYC_F11 -29
|
|
|
|
#define KEYC_F12 -30
|
|
|
|
#define KEYC_F13 -31
|
|
|
|
#define KEYC_F14 -32
|
|
|
|
#define KEYC_F15 -33
|
|
|
|
#define KEYC_F16 -34
|
|
|
|
#define KEYC_F17 -35
|
|
|
|
#define KEYC_F18 -36
|
|
|
|
#define KEYC_F19 -37
|
|
|
|
#define KEYC_F2 -38
|
|
|
|
#define KEYC_F20 -39
|
|
|
|
#define KEYC_F21 -40
|
|
|
|
#define KEYC_F22 -41
|
|
|
|
#define KEYC_F23 -42
|
|
|
|
#define KEYC_F24 -43
|
|
|
|
#define KEYC_F25 -44
|
|
|
|
#define KEYC_F26 -45
|
|
|
|
#define KEYC_F27 -46
|
|
|
|
#define KEYC_F28 -47
|
|
|
|
#define KEYC_F29 -48
|
|
|
|
#define KEYC_F3 -49
|
|
|
|
#define KEYC_F30 -50
|
|
|
|
#define KEYC_F31 -51
|
|
|
|
#define KEYC_F32 -52
|
|
|
|
#define KEYC_F33 -53
|
|
|
|
#define KEYC_F34 -54
|
|
|
|
#define KEYC_F35 -55
|
|
|
|
#define KEYC_F36 -56
|
|
|
|
#define KEYC_F37 -57
|
|
|
|
#define KEYC_F38 -58
|
|
|
|
#define KEYC_F39 -59
|
|
|
|
#define KEYC_F4 -60
|
|
|
|
#define KEYC_F40 -61
|
|
|
|
#define KEYC_F41 -62
|
|
|
|
#define KEYC_F42 -63
|
|
|
|
#define KEYC_F43 -64
|
|
|
|
#define KEYC_F44 -65
|
|
|
|
#define KEYC_F45 -66
|
|
|
|
#define KEYC_F46 -67
|
|
|
|
#define KEYC_F47 -68
|
|
|
|
#define KEYC_F48 -69
|
|
|
|
#define KEYC_F49 -70
|
|
|
|
#define KEYC_F5 -71
|
|
|
|
#define KEYC_F50 -72
|
|
|
|
#define KEYC_F51 -73
|
|
|
|
#define KEYC_F52 -74
|
|
|
|
#define KEYC_F53 -75
|
|
|
|
#define KEYC_F54 -76
|
|
|
|
#define KEYC_F55 -77
|
|
|
|
#define KEYC_F56 -78
|
|
|
|
#define KEYC_F57 -79
|
|
|
|
#define KEYC_F58 -80
|
|
|
|
#define KEYC_F59 -81
|
|
|
|
#define KEYC_F6 -82
|
|
|
|
#define KEYC_F60 -83
|
|
|
|
#define KEYC_F61 -84
|
|
|
|
#define KEYC_F62 -85
|
|
|
|
#define KEYC_F63 -86
|
|
|
|
#define KEYC_F7 -87
|
|
|
|
#define KEYC_F8 -88
|
|
|
|
#define KEYC_F9 -89
|
|
|
|
#define KEYC_FIND -90
|
|
|
|
#define KEYC_HELP -91
|
|
|
|
#define KEYC_HOME -92
|
|
|
|
#define KEYC_IC -93
|
|
|
|
#define KEYC_IL -94
|
|
|
|
#define KEYC_LEFT -95
|
|
|
|
#define KEYC_LL -96
|
|
|
|
#define KEYC_MARK -97
|
|
|
|
#define KEYC_MESSAGE -98
|
|
|
|
#define KEYC_MOVE -99
|
|
|
|
#define KEYC_NEXT -100
|
|
|
|
#define KEYC_NPAGE -101
|
|
|
|
#define KEYC_OPEN -102
|
|
|
|
#define KEYC_OPTIONS -103
|
|
|
|
#define KEYC_PPAGE -104
|
|
|
|
#define KEYC_PREVIOUS -105
|
|
|
|
#define KEYC_PRINT -106
|
|
|
|
#define KEYC_REDO -107
|
|
|
|
#define KEYC_REFERENCE -108
|
|
|
|
#define KEYC_REFRESH -109
|
|
|
|
#define KEYC_REPLACE -110
|
|
|
|
#define KEYC_RESTART -111
|
|
|
|
#define KEYC_RESUME -112
|
|
|
|
#define KEYC_RIGHT -113
|
|
|
|
#define KEYC_SAVE -114
|
|
|
|
#define KEYC_SBEG -115
|
|
|
|
#define KEYC_SCANCEL -116
|
|
|
|
#define KEYC_SCOMMAND -117
|
|
|
|
#define KEYC_SCOPY -118
|
|
|
|
#define KEYC_SCREATE -119
|
|
|
|
#define KEYC_SDC -120
|
|
|
|
#define KEYC_SDL -121
|
|
|
|
#define KEYC_SELECT -122
|
|
|
|
#define KEYC_SEND -123
|
|
|
|
#define KEYC_SEOL -124
|
|
|
|
#define KEYC_SEXIT -125
|
|
|
|
#define KEYC_SF -126
|
|
|
|
#define KEYC_SFIND -127
|
|
|
|
#define KEYC_SHELP -128
|
|
|
|
#define KEYC_SHOME -129
|
|
|
|
#define KEYC_SIC -130
|
|
|
|
#define KEYC_SLEFT -131
|
|
|
|
#define KEYC_SMESSAGE -132
|
|
|
|
#define KEYC_SMOVE -133
|
|
|
|
#define KEYC_SNEXT -134
|
|
|
|
#define KEYC_SOPTIONS -135
|
|
|
|
#define KEYC_SPREVIOUS -136
|
|
|
|
#define KEYC_SPRINT -137
|
|
|
|
#define KEYC_SR -138
|
|
|
|
#define KEYC_SREDO -139
|
|
|
|
#define KEYC_SREPLACE -140
|
|
|
|
#define KEYC_SRIGHT -141
|
|
|
|
#define KEYC_SRSUME -142
|
|
|
|
#define KEYC_SSAVE -143
|
|
|
|
#define KEYC_SSUSPEND -144
|
|
|
|
#define KEYC_STAB -145
|
|
|
|
#define KEYC_SUNDO -146
|
|
|
|
#define KEYC_SUSPEND -147
|
|
|
|
#define KEYC_UNDO -148
|
|
|
|
#define KEYC_UP -149
|
|
|
|
#define KEYC_MOUSE -150
|
|
|
|
|
|
|
|
/* Translated escape codes. */
|
|
|
|
#define CODE_CURSORUP 0
|
|
|
|
#define CODE_CURSORDOWN 1
|
|
|
|
#define CODE_CURSORRIGHT 2
|
|
|
|
#define CODE_CURSORLEFT 3
|
|
|
|
#define CODE_INSERTCHARACTER 4
|
|
|
|
#define CODE_DELETECHARACTER 5
|
|
|
|
#define CODE_INSERTLINE 6
|
|
|
|
#define CODE_DELETELINE 7
|
|
|
|
#define CODE_CLEARLINE 8
|
2007-09-29 12:57:39 +02:00
|
|
|
/* 9 unused */
|
2007-07-09 21:04:12 +02:00
|
|
|
#define CODE_CLEARENDOFLINE 10
|
2007-09-29 12:57:39 +02:00
|
|
|
/* 11 unused */
|
2007-07-09 21:04:12 +02:00
|
|
|
#define CODE_CLEARSTARTOFLINE 12
|
|
|
|
#define CODE_CURSORMOVE 13
|
|
|
|
#define CODE_ATTRIBUTES 14
|
|
|
|
#define CODE_CURSOROFF 15
|
|
|
|
#define CODE_CURSORON 16
|
2007-08-28 11:19:50 +02:00
|
|
|
#define CODE_REVERSEINDEX 17
|
|
|
|
/* 18 unused */
|
2007-07-09 21:04:12 +02:00
|
|
|
#define CODE_SCROLLREGION 19
|
|
|
|
#define CODE_INSERTON 20
|
|
|
|
#define CODE_INSERTOFF 21
|
|
|
|
#define CODE_KCURSOROFF 22
|
|
|
|
#define CODE_KCURSORON 23
|
|
|
|
#define CODE_KKEYPADOFF 24
|
|
|
|
#define CODE_KKEYPADON 25
|
|
|
|
#define CODE_TITLE 26
|
|
|
|
|
|
|
|
/* Message codes. */
|
2007-08-27 15:45:26 +02:00
|
|
|
enum hdrtype {
|
2007-10-03 23:31:07 +02:00
|
|
|
MSG_COMMAND,
|
2007-09-26 20:50:49 +02:00
|
|
|
MSG_ERROR,
|
2007-10-03 23:31:07 +02:00
|
|
|
MSG_PRINT,
|
2007-08-27 15:45:26 +02:00
|
|
|
MSG_EXIT,
|
2007-10-03 23:31:07 +02:00
|
|
|
MSG_IDENTIFY,
|
|
|
|
MSG_READY,
|
|
|
|
MSG_DETACH,
|
|
|
|
MSG_RESIZE,
|
|
|
|
MSG_DATA,
|
2007-10-03 12:18:32 +02:00
|
|
|
MSG_KEYS,
|
2007-09-26 20:50:49 +02:00
|
|
|
MSG_PAUSE,
|
2007-08-27 15:45:26 +02:00
|
|
|
};
|
|
|
|
|
2007-09-27 11:52:03 +02:00
|
|
|
/* Session identification. */
|
|
|
|
struct sessid {
|
|
|
|
long long pid; /* pid from $TMUX or -1 */
|
|
|
|
u_int idx; /* index from $TMUX */
|
|
|
|
char name[MAXNAMELEN]; /* empty for current */
|
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* Message header structure. */
|
|
|
|
struct hdr {
|
|
|
|
enum hdrtype type;
|
|
|
|
size_t size;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
struct msg_command_data {
|
|
|
|
struct sessid sid;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
struct msg_identify_data {
|
2007-09-27 11:52:03 +02:00
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
struct msg_resize_data {
|
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
2007-10-03 13:26:34 +02:00
|
|
|
};
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* Attributes. */
|
|
|
|
#define ATTR_BRIGHT 0x1
|
|
|
|
#define ATTR_DIM 0x2
|
|
|
|
#define ATTR_UNDERSCORE 0x4
|
|
|
|
#define ATTR_BLINK 0x8
|
|
|
|
#define ATTR_REVERSE 0x10
|
|
|
|
#define ATTR_HIDDEN 0x20
|
|
|
|
#define ATTR_ITALICS 0x40
|
|
|
|
|
|
|
|
/* Modes. */
|
|
|
|
#define MODE_CURSOR 0x1
|
|
|
|
#define MODE_INSERT 0x2
|
|
|
|
#define MODE_KCURSOR 0x4
|
|
|
|
#define MODE_KKEYPAD 0x8
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Virtual screen. This is stored as three blocks of 8-bit values, one for
|
|
|
|
* the actual characters, one for attributes and one for colours. Three
|
|
|
|
* seperate blocks means memset and friends can be used.
|
|
|
|
*
|
|
|
|
* Each block is y by x in size, row then column order. Sizes are 0-based.
|
|
|
|
*/
|
|
|
|
struct screen {
|
|
|
|
char title[MAXTITLELEN];
|
|
|
|
|
|
|
|
u_char **grid_data;
|
|
|
|
u_char **grid_attr;
|
|
|
|
u_char **grid_colr;
|
|
|
|
|
|
|
|
u_int sx; /* size x */
|
|
|
|
u_int sy; /* size y */
|
|
|
|
|
|
|
|
u_int cx; /* cursor x */
|
|
|
|
u_int cy; /* cursor y */
|
|
|
|
|
|
|
|
u_int ry_upper; /* scroll region top */
|
|
|
|
u_int ry_lower; /* scroll region bottom */
|
|
|
|
|
|
|
|
u_char attr;
|
|
|
|
u_char colr; /* fg:bg */
|
|
|
|
|
|
|
|
int mode;
|
|
|
|
};
|
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
/* Screen default contents. */
|
|
|
|
#define SCREEN_DEFDATA ' '
|
|
|
|
#define SCREEN_DEFATTR 0
|
|
|
|
#define SCREEN_DEFCOLR 0x88
|
2007-09-29 16:25:49 +02:00
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
/* Input parser sequence argument. */
|
|
|
|
struct input_arg {
|
2007-09-29 16:25:49 +02:00
|
|
|
u_char data[64];
|
|
|
|
size_t used;
|
2007-09-29 00:47:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Input parser context. */
|
|
|
|
struct input_ctx {
|
|
|
|
u_char *buf;
|
|
|
|
size_t len;
|
|
|
|
size_t off;
|
|
|
|
|
2007-09-29 11:15:49 +02:00
|
|
|
int flags;
|
|
|
|
#define INPUT_BELL 0x1
|
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
struct buffer *b;
|
|
|
|
struct screen *s;
|
|
|
|
|
2007-10-01 19:37:41 +02:00
|
|
|
u_char title_buf[MAXTITLELEN];
|
|
|
|
size_t title_len;
|
|
|
|
u_int title_type;
|
|
|
|
|
2007-10-10 21:45:20 +02:00
|
|
|
void *(*state)(u_char, struct input_ctx *);
|
2007-09-29 00:47:22 +02:00
|
|
|
|
|
|
|
u_char private;
|
|
|
|
ARRAY_DECL(, struct input_arg) args;
|
|
|
|
};
|
|
|
|
|
2007-09-29 11:15:49 +02:00
|
|
|
/* Input context macros. */
|
|
|
|
#define INPUT_FLAGS(ictx) ((ictx)->flags)
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* Window structure. */
|
|
|
|
struct window {
|
2007-10-04 01:32:26 +02:00
|
|
|
char *name;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
int fd;
|
|
|
|
struct buffer *in;
|
|
|
|
struct buffer *out;
|
|
|
|
|
|
|
|
u_int references;
|
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
struct input_ctx ictx;
|
|
|
|
|
2007-09-29 11:15:49 +02:00
|
|
|
int flags;
|
|
|
|
#define WINDOW_BELL 0x1
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
struct screen screen;
|
|
|
|
};
|
|
|
|
ARRAY_DECL(windows, struct window *);
|
|
|
|
|
|
|
|
/* Client session. */
|
|
|
|
struct session {
|
2007-10-03 23:31:07 +02:00
|
|
|
char *name;
|
2007-07-09 21:04:12 +02:00
|
|
|
time_t tim;
|
|
|
|
|
2007-10-04 01:32:26 +02:00
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
struct window *window;
|
2007-09-20 20:03:23 +02:00
|
|
|
struct window *last;
|
2007-07-09 21:04:12 +02:00
|
|
|
struct windows windows;
|
2007-10-05 20:25:05 +02:00
|
|
|
|
2007-10-12 13:24:15 +02:00
|
|
|
struct windows bells; /* windows with bells */
|
|
|
|
|
2007-10-05 20:25:05 +02:00
|
|
|
#define SESSION_UNATTACHED 0x1 /* not attached to any clients */
|
|
|
|
int flags;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
ARRAY_DECL(sessions, struct session *);
|
|
|
|
|
|
|
|
/* Client connection. */
|
|
|
|
struct client {
|
|
|
|
int fd;
|
|
|
|
struct buffer *in;
|
|
|
|
struct buffer *out;
|
|
|
|
|
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
#define CLIENT_TERMINAL 0x1
|
|
|
|
#define CLIENT_PREFIX 0x2
|
|
|
|
#define CLIENT_HOLD 0x4
|
|
|
|
int flags;
|
2007-10-03 12:18:32 +02:00
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
struct session *session;
|
|
|
|
};
|
|
|
|
ARRAY_DECL(clients, struct client *);
|
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
/* Client context. */
|
|
|
|
struct client_ctx {
|
|
|
|
int srv_fd;
|
|
|
|
struct buffer *srv_in;
|
|
|
|
struct buffer *srv_out;
|
|
|
|
|
|
|
|
int loc_fd;
|
|
|
|
struct buffer *loc_in;
|
|
|
|
struct buffer *loc_out;
|
2007-10-05 16:23:28 +02:00
|
|
|
|
|
|
|
#define CCTX_PAUSE 0x1
|
|
|
|
#define CCTX_DETACH 0x2
|
|
|
|
#define CCTX_EXIT 0x4
|
|
|
|
int flags;
|
2007-10-03 23:31:07 +02:00
|
|
|
};
|
2007-09-26 15:43:15 +02:00
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* Key/command line command. */
|
|
|
|
struct cmd_ctx {
|
|
|
|
struct client *client;
|
|
|
|
struct session *session;
|
|
|
|
|
|
|
|
void (*print)(struct cmd_ctx *, const char *, ...);
|
|
|
|
void (*error)(struct cmd_ctx *, const char *, ...);
|
|
|
|
|
|
|
|
#define CMD_KEY 0x1
|
|
|
|
int flags;
|
2007-10-03 14:34:16 +02:00
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
struct cmd_entry {
|
2007-10-03 13:26:34 +02:00
|
|
|
const char *name;
|
2007-10-03 23:31:07 +02:00
|
|
|
const char *alias;
|
2007-10-04 23:48:11 +02:00
|
|
|
const char *usage;
|
2007-10-03 23:31:07 +02:00
|
|
|
|
|
|
|
#define CMD_STARTSERVER 0x1
|
|
|
|
#define CMD_NOSESSION 0x2
|
2007-10-12 16:46:48 +02:00
|
|
|
#define CMD_CANTNEST 0x4
|
2007-10-03 14:34:16 +02:00
|
|
|
int flags;
|
2007-10-03 23:31:07 +02:00
|
|
|
|
|
|
|
int (*parse)(void **, int, char **, char **);
|
|
|
|
void (*exec)(void *, struct cmd_ctx *);
|
|
|
|
void (*send)(void *, struct buffer *);
|
|
|
|
void (*recv)(void **, struct buffer *);
|
|
|
|
void (*free)(void *);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cmd {
|
|
|
|
const struct cmd_entry *entry;
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Key binding. */
|
|
|
|
struct binding {
|
|
|
|
int key;
|
|
|
|
struct cmd *cmd;
|
2007-10-03 13:26:34 +02:00
|
|
|
};
|
2007-10-04 02:18:59 +02:00
|
|
|
ARRAY_DECL(bindings, struct binding *);
|
2007-10-03 13:26:34 +02:00
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* tmux.c */
|
2007-09-26 15:43:15 +02:00
|
|
|
extern volatile sig_atomic_t sigwinch;
|
|
|
|
extern volatile sig_atomic_t sigterm;
|
2007-10-03 23:31:07 +02:00
|
|
|
extern int prefix_key;
|
2007-10-03 14:34:16 +02:00
|
|
|
extern int debug_level;
|
|
|
|
extern u_int status_lines;
|
2007-10-12 14:08:51 +02:00
|
|
|
extern u_char status_colour;
|
2007-10-03 14:34:16 +02:00
|
|
|
extern char *default_command;
|
2007-10-03 23:31:07 +02:00
|
|
|
void usage(char **, const char *, ...);
|
2007-09-26 15:43:15 +02:00
|
|
|
void logfile(const char *);
|
|
|
|
void siginit(void);
|
|
|
|
void sigreset(void);
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* cmd.c */
|
|
|
|
struct cmd *cmd_parse(int, char **, char **);
|
|
|
|
void cmd_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
void cmd_send(struct cmd *, struct buffer *);
|
|
|
|
struct cmd *cmd_recv(struct buffer *);
|
|
|
|
void cmd_free(struct cmd *);
|
|
|
|
void cmd_send_string(struct buffer *, const char *);
|
|
|
|
char *cmd_recv_string(struct buffer *);
|
2007-10-04 13:52:03 +02:00
|
|
|
extern const struct cmd_entry cmd_attach_session_entry;
|
2007-10-04 11:30:53 +02:00
|
|
|
extern const struct cmd_entry cmd_bind_key_entry;
|
2007-10-04 02:18:59 +02:00
|
|
|
extern const struct cmd_entry cmd_detach_session_entry;
|
|
|
|
extern const struct cmd_entry cmd_last_window_entry;
|
|
|
|
extern const struct cmd_entry cmd_list_keys_entry;
|
|
|
|
extern const struct cmd_entry cmd_list_sessions_entry;
|
2007-10-04 13:23:17 +02:00
|
|
|
extern const struct cmd_entry cmd_list_windows_entry;
|
2007-10-04 02:18:59 +02:00
|
|
|
extern const struct cmd_entry cmd_new_session_entry;
|
|
|
|
extern const struct cmd_entry cmd_new_window_entry;
|
|
|
|
extern const struct cmd_entry cmd_next_window_entry;
|
|
|
|
extern const struct cmd_entry cmd_previous_window_entry;
|
2007-10-19 11:21:26 +02:00
|
|
|
extern const struct cmd_entry cmd_refresh_session_entry;
|
2007-10-04 12:39:07 +02:00
|
|
|
extern const struct cmd_entry cmd_rename_window_entry;
|
2007-10-04 12:54:21 +02:00
|
|
|
extern const struct cmd_entry cmd_select_window_entry;
|
2007-10-12 15:03:58 +02:00
|
|
|
extern const struct cmd_entry cmd_send_prefix_entry;
|
2007-10-04 12:11:32 +02:00
|
|
|
extern const struct cmd_entry cmd_set_option_entry;
|
2007-10-04 11:30:53 +02:00
|
|
|
extern const struct cmd_entry cmd_unbind_key_entry;
|
2007-10-12 15:03:58 +02:00
|
|
|
void cmd_select_window_default(void **, int);
|
2007-09-26 20:32:17 +02:00
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
/* client.c */
|
|
|
|
int client_init(char *, struct client_ctx *, int);
|
2007-09-28 21:04:21 +02:00
|
|
|
int client_flush(struct client_ctx *);
|
2007-09-26 15:43:15 +02:00
|
|
|
int client_main(struct client_ctx *);
|
|
|
|
|
|
|
|
/* client-msg.c */
|
2007-09-26 20:50:49 +02:00
|
|
|
int client_msg_dispatch(struct client_ctx *, char **);
|
2007-09-26 15:43:15 +02:00
|
|
|
|
2007-10-03 12:18:32 +02:00
|
|
|
/* client-fn.c */
|
|
|
|
void client_write_server(struct client_ctx *, enum hdrtype, void *, size_t);
|
2007-10-03 14:34:16 +02:00
|
|
|
void client_write_server2(
|
|
|
|
struct client_ctx *, enum hdrtype, void *, size_t, void *, size_t);
|
2007-10-03 12:18:32 +02:00
|
|
|
void client_fill_sessid(struct sessid *, char [MAXNAMELEN]);
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* key-bindings.c */
|
2007-10-04 02:18:59 +02:00
|
|
|
extern struct bindings key_bindings;
|
2007-10-03 23:31:07 +02:00
|
|
|
void key_bindings_add(int, struct cmd *);
|
|
|
|
void key_bindings_remove(int);
|
|
|
|
void key_bindings_init(void);
|
|
|
|
void key_bindings_free(void);
|
|
|
|
void key_bindings_dispatch(int, struct client *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-10-03 13:26:34 +02:00
|
|
|
/* key-string.c */
|
2007-10-04 02:18:59 +02:00
|
|
|
int key_string_lookup_string(const char *);
|
|
|
|
const char *key_string_lookup_key(int);
|
2007-10-03 13:26:34 +02:00
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* server.c */
|
2007-09-26 12:35:24 +02:00
|
|
|
extern struct clients clients;
|
2007-09-26 15:43:15 +02:00
|
|
|
int server_start(char *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-09-26 12:35:24 +02:00
|
|
|
/* server-msg.c */
|
2007-09-26 15:43:15 +02:00
|
|
|
int server_msg_dispatch(struct client *);
|
2007-09-26 12:35:24 +02:00
|
|
|
|
|
|
|
/* server-fn.c */
|
2007-09-27 11:52:03 +02:00
|
|
|
struct session *server_find_sessid(struct sessid *, char **);
|
2007-09-29 11:53:25 +02:00
|
|
|
void server_write_client(
|
|
|
|
struct client *, enum hdrtype, const void *, size_t);
|
2007-10-04 02:02:10 +02:00
|
|
|
void server_write_session(
|
|
|
|
struct session *, enum hdrtype, const void *, size_t);
|
|
|
|
void server_write_window(
|
|
|
|
struct window *, enum hdrtype, const void *, size_t);
|
2007-10-12 13:24:15 +02:00
|
|
|
void server_status_client(struct client *);
|
2007-10-04 21:03:52 +02:00
|
|
|
void server_clear_client(struct client *);
|
2007-10-04 02:02:10 +02:00
|
|
|
void server_redraw_client(struct client *);
|
2007-10-12 13:24:15 +02:00
|
|
|
void server_status_session(struct session *);
|
2007-10-04 02:02:10 +02:00
|
|
|
void server_redraw_session(struct session *);
|
2007-10-12 13:24:15 +02:00
|
|
|
void server_status_window(struct window *);
|
2007-10-04 21:03:52 +02:00
|
|
|
void server_clear_window(struct window *);
|
2007-10-04 02:02:10 +02:00
|
|
|
void server_redraw_window(struct window *);
|
|
|
|
void server_write_message(struct client *, const char *, ...);
|
2007-09-26 12:35:24 +02:00
|
|
|
|
2007-10-01 16:53:29 +02:00
|
|
|
/* status.c */
|
|
|
|
void status_write(struct client *c);
|
|
|
|
|
2007-10-04 21:03:52 +02:00
|
|
|
/* resize.c */
|
|
|
|
void recalculate_sizes(void);
|
|
|
|
|
2007-09-26 20:09:23 +02:00
|
|
|
/* input.c */
|
2007-09-29 00:47:22 +02:00
|
|
|
void input_init(struct input_ctx *, struct screen *);
|
|
|
|
void input_free(struct input_ctx *);
|
2007-09-29 11:15:49 +02:00
|
|
|
void input_parse(struct input_ctx *, u_char *, size_t, struct buffer *);
|
2007-07-09 21:04:12 +02:00
|
|
|
uint8_t input_extract8(struct buffer *);
|
|
|
|
uint16_t input_extract16(struct buffer *);
|
|
|
|
void input_store8(struct buffer *, uint8_t);
|
|
|
|
void input_store16(struct buffer *, uint16_t);
|
|
|
|
void input_store_zero(struct buffer *, u_char);
|
|
|
|
void input_store_one(struct buffer *, u_char, uint16_t);
|
|
|
|
void input_store_two(struct buffer *, u_char, uint16_t, uint16_t);
|
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
/* input-key.c */
|
|
|
|
void input_translate_key(struct buffer *, int);
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* screen.c */
|
2007-10-12 15:51:44 +02:00
|
|
|
const char *screen_colourstring(u_char);
|
|
|
|
u_char screen_stringcolour(const char *);
|
2007-07-09 21:04:12 +02:00
|
|
|
void screen_create(struct screen *, u_int, u_int);
|
2007-10-01 16:15:48 +02:00
|
|
|
void screen_destroy(struct screen *);
|
2007-07-09 21:04:12 +02:00
|
|
|
void screen_resize(struct screen *, u_int, u_int);
|
|
|
|
void screen_draw(struct screen *, struct buffer *, u_int, u_int);
|
2007-09-29 00:47:22 +02:00
|
|
|
void screen_write_character(struct screen *, u_char);
|
|
|
|
void screen_insert_lines(struct screen *, u_int, u_int);
|
2007-09-29 20:48:54 +02:00
|
|
|
void screen_insert_lines_region(struct screen *, u_int, u_int);
|
2007-09-29 00:47:22 +02:00
|
|
|
void screen_delete_lines(struct screen *, u_int, u_int);
|
2007-09-29 20:48:54 +02:00
|
|
|
void screen_delete_lines_region(struct screen *, u_int, u_int);
|
2007-09-29 00:47:22 +02:00
|
|
|
void screen_insert_characters(struct screen *, u_int, u_int, u_int);
|
|
|
|
void screen_delete_characters(struct screen *, u_int, u_int, u_int);
|
|
|
|
void screen_cursor_up_scroll(struct screen *);
|
|
|
|
void screen_cursor_down_scroll(struct screen *);
|
|
|
|
void screen_scroll_region_up(struct screen *);
|
|
|
|
void screen_scroll_region_down(struct screen *);
|
|
|
|
void screen_scroll_up(struct screen *, u_int);
|
|
|
|
void screen_scroll_down(struct screen *, u_int);
|
|
|
|
void screen_fill_screen(struct screen *, u_char, u_char, u_char);
|
|
|
|
void screen_fill_line(struct screen *, u_int, u_char, u_char, u_char);
|
|
|
|
void screen_fill_end_of_screen(
|
|
|
|
struct screen *, u_int, u_int, u_char, u_char, u_char);
|
|
|
|
void screen_fill_end_of_line(
|
|
|
|
struct screen *, u_int, u_int, u_char, u_char, u_char);
|
|
|
|
void screen_fill_start_of_line(
|
|
|
|
struct screen *, u_int, u_int, u_char, u_char, u_char);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* local.c */
|
|
|
|
int local_init(struct buffer **, struct buffer **);
|
|
|
|
void local_done(void);
|
2007-10-03 12:18:32 +02:00
|
|
|
int local_key(void);
|
2007-07-09 21:04:12 +02:00
|
|
|
void local_output(struct buffer *, size_t);
|
|
|
|
|
|
|
|
/* window.c */
|
|
|
|
extern struct windows windows;
|
2007-10-04 01:32:26 +02:00
|
|
|
struct window *window_create(
|
|
|
|
const char *, const char *, const char **, u_int, u_int);
|
2007-07-09 21:04:12 +02:00
|
|
|
int window_index(struct windows *, struct window *, u_int *);
|
|
|
|
void window_add(struct windows *, struct window *);
|
|
|
|
void window_remove(struct windows *, struct window *);
|
|
|
|
void window_destroy(struct window *);
|
|
|
|
struct window *window_next(struct windows *, struct window *);
|
|
|
|
struct window *window_previous(struct windows *, struct window *);
|
|
|
|
struct window *window_at(struct windows *, u_int);
|
|
|
|
int window_resize(struct window *, u_int, u_int);
|
|
|
|
int window_poll(struct window *, struct pollfd *);
|
2007-10-03 12:18:32 +02:00
|
|
|
void window_key(struct window *, int);
|
|
|
|
void window_data(struct window *, struct buffer *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* session.c */
|
|
|
|
extern struct sessions sessions;
|
2007-10-12 13:24:15 +02:00
|
|
|
void session_cancelbell(struct session *, struct window *);
|
|
|
|
void session_addbell(struct session *, struct window *);
|
|
|
|
int session_hasbell(struct session *, struct window *);
|
2007-07-09 21:04:12 +02:00
|
|
|
struct session *session_find(const char *);
|
|
|
|
struct session *session_create(const char *, const char *, u_int, u_int);
|
|
|
|
void session_destroy(struct session *);
|
|
|
|
int session_index(struct session *, u_int *);
|
2007-10-04 01:32:26 +02:00
|
|
|
int session_new(
|
|
|
|
struct session *, const char *, const char *, u_int *);
|
2007-07-09 21:04:12 +02:00
|
|
|
void session_attach(struct session *, struct window *);
|
2007-08-27 22:36:52 +02:00
|
|
|
int session_detach(struct session *, struct window *);
|
2007-07-09 21:04:12 +02:00
|
|
|
int session_has(struct session *, struct window *);
|
|
|
|
int session_next(struct session *);
|
|
|
|
int session_previous(struct session *);
|
|
|
|
int session_select(struct session *, u_int);
|
2007-09-20 20:03:23 +02:00
|
|
|
int session_last(struct session *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* buffer.c */
|
|
|
|
struct buffer *buffer_create(size_t);
|
|
|
|
void buffer_destroy(struct buffer *);
|
|
|
|
void buffer_clear(struct buffer *);
|
|
|
|
void buffer_ensure(struct buffer *, size_t);
|
|
|
|
void buffer_add(struct buffer *, size_t);
|
|
|
|
void buffer_reverse_add(struct buffer *, size_t);
|
|
|
|
void buffer_remove(struct buffer *, size_t);
|
|
|
|
void buffer_reverse_remove(struct buffer *, size_t);
|
|
|
|
void buffer_insert_range(struct buffer *, size_t, size_t);
|
|
|
|
void buffer_delete_range(struct buffer *, size_t, size_t);
|
|
|
|
void buffer_write(struct buffer *, const void *, size_t);
|
|
|
|
void buffer_read(struct buffer *, void *, size_t);
|
|
|
|
|
|
|
|
/* buffer-poll.c */
|
|
|
|
int buffer_poll(struct pollfd *, struct buffer *, struct buffer *);
|
|
|
|
|
|
|
|
/* log.c */
|
|
|
|
void log_open(FILE *, int, int);
|
|
|
|
void log_close(void);
|
|
|
|
void log_vwrite(FILE *, int, const char *, va_list);
|
|
|
|
void log_write(FILE *, int, const char *, ...);
|
|
|
|
void printflike1 log_warn(const char *, ...);
|
|
|
|
void printflike1 log_warnx(const char *, ...);
|
|
|
|
void printflike1 log_info(const char *, ...);
|
|
|
|
void printflike1 log_debug(const char *, ...);
|
|
|
|
void printflike1 log_debug2(const char *, ...);
|
|
|
|
void printflike1 log_debug3(const char *, ...);
|
|
|
|
__dead void log_vfatal(const char *, va_list);
|
|
|
|
__dead void log_fatal(const char *, ...);
|
|
|
|
__dead void log_fatalx(const char *, ...);
|
|
|
|
|
|
|
|
/* xmalloc.c */
|
|
|
|
void *ensure_size(void *, size_t *, size_t, size_t);
|
|
|
|
void *ensure_for(void *, size_t *, size_t, size_t);
|
2007-09-29 16:25:49 +02:00
|
|
|
char *xmemstrdup(const char *, size_t);
|
2007-07-09 21:04:12 +02:00
|
|
|
char *xstrdup(const char *);
|
|
|
|
void *xcalloc(size_t, size_t);
|
|
|
|
void *xmalloc(size_t);
|
|
|
|
void *xrealloc(void *, size_t, size_t);
|
|
|
|
void xfree(void *);
|
|
|
|
int printflike2 xasprintf(char **, const char *, ...);
|
|
|
|
int xvasprintf(char **, const char *, va_list);
|
|
|
|
int printflike3 xsnprintf(char *, size_t, const char *, ...);
|
|
|
|
int xvsnprintf(char *, size_t, const char *, va_list);
|
|
|
|
int printflike3 printpath(char *, size_t, const char *, ...);
|
|
|
|
char *xdirname(const char *);
|
|
|
|
char *xbasename(const char *);
|
|
|
|
|
2007-07-26 01:13:18 +02:00
|
|
|
/* xmalloc-debug.c */
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define xmalloc_caller() __builtin_return_address(0)
|
|
|
|
|
|
|
|
void xmalloc_clear(void);
|
|
|
|
void xmalloc_report(pid_t, const char *);
|
|
|
|
|
|
|
|
void xmalloc_new(void *, void *, size_t);
|
|
|
|
void xmalloc_change(void *, void *, void *, size_t);
|
|
|
|
void xmalloc_free(void *);
|
|
|
|
#endif
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
#endif
|