summaryrefslogtreecommitdiff
path: root/term.h
blob: e72e5b6693686b4751c32b00f7e73567ac2ef7b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
#include <errno.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>

/* From linux kernel */
#define min(x, y) ({				\
	typeof(x) _min1 = (x);			\
	typeof(y) _min2 = (y);			\
	(void) (&_min1 == &_min2);		\
	_min1 < _min2 ? _min1 : _min2; })

#define max(x, y) ({				\
	typeof(x) _max1 = (x);			\
	typeof(y) _max2 = (y);			\
	(void) (&_max1 == &_max2);		\
	_max1 > _max2 ? _max1 : _max2; })

#define clamp(val, min, max) ({			\
	typeof(val) __val = (val);		\
	typeof(min) __min = (min);		\
	typeof(max) __max = (max);		\
	(void) (&__val == &__min);		\
	(void) (&__val == &__max);		\
	__val = __val < __min ? __min: __val;	\
	__val > __max ? __max: __val; })

#define clamp_t(type, val, min, max) ({		\
	type __val = (val);			\
	type __min = (min);			\
	type __max = (max);			\
	__val = __val < __min ? __min: __val;	\
	__val > __max ? __max: __val; })

#define swap(a, b) \
	do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)

/**
 * container_of - cast a member of a structure out to the containing structure
 * @ptr:	the pointer to the member.
 * @type:	the type of the container struct this is embedded in.
 * @member:	the name of the member within the struct.
 *
 */
#define container_of(ptr, type, member) ({			\
	const typeof( ((type *)0)->member ) *__mptr = (ptr);	\
	(type *)( (char *)__mptr - offsetof(type,member) );})

#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))

/* Other macros */

#define SPACES_PER_TAB	8

/* TERM value */
//#define TERMNAME	"st-256color"
#define TERMNAME	"xterm"

#define BETWEEN(x, a, b)  ((a) <= (x) && (x) <= (b))

#define UTF_SIZ       4
#define ESC_BUF_SIZ   (128*UTF_SIZ)
#define ESC_ARG_SIZ   16
#define STR_BUF_SIZ   ESC_BUF_SIZ
#define STR_ARG_SIZ   ESC_ARG_SIZ

#define VT102ID "\033[?6c"

enum escape_state {
	ESC_START = 1,
	ESC_CSI = 2,
	ESC_STR = 4,		/* DSC, OSC, PM, APC */
	ESC_ALTCHARSET = 8,
	ESC_STR_END = 16,	/* a final string was encountered */
	ESC_TEST = 32,		/* Enter in test mode */
};

struct st_glyph {
	unsigned	c;		/* character code */
	union {
	unsigned	cmp;
	struct {
		unsigned	fg:12;		/* foreground  */
		unsigned	bg:12;		/* background  */
		unsigned	reverse:1;
		unsigned	underline:1;
		unsigned	bold:1;
		unsigned	gfx:1;
		unsigned	italic:1;
		unsigned	blink:1;
	};
	};
};

struct coord {
	unsigned	x, y;
};

#define ORIGIN	(struct coord) {0, 0}

struct tcursor {
	struct st_glyph	attr;		/* current char attributes */
	struct coord	pos;
	unsigned	wrapnext:1;
	unsigned	origin:1;
};

/* CSI Escape sequence structs */
/* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
struct csi_escape {
	char		buf[ESC_BUF_SIZ]; /* raw string */
	int		len;		/* raw string length */
	char		priv;
	int		arg[ESC_ARG_SIZ];
	int		narg;		/* nb of args */
	char		mode;
};

/* STR Escape sequence structs */
/* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
struct str_escape {
	char		type;		/* ESC type ... */
	char		buf[STR_BUF_SIZ]; /* raw string */
	int		len;		/* raw string length */
	char		*args[STR_ARG_SIZ];
	int		narg;		/* nb of args */
};

struct st_selection {
	enum {
		SEL_NONE,
		SEL_REGULAR,
		SEL_RECTANGULAR,
	}		type;

	struct coord	start, end;
	struct coord	p1, p2;

	char		*clip;
};

/* Internal representation of the screen */
struct st_term {
	int		cmdfd;
	unsigned char	cmdbuf[BUFSIZ];
	unsigned	cmdbuflen;

	int		logfd;
	const char	*logfile;

	struct coord	size;
	struct coord	ttysize; /* kill? */
	struct st_glyph	**line;	/* screen */
	struct st_glyph	**alt;	/* alternate screen */
	bool		dirty;	/* dirtyness of lines */
	bool		*tabs;

	struct tcursor	c;	/* cursor */
	struct tcursor	saved;
	struct st_selection sel;
	unsigned	top;	/* top    scroll limit */
	unsigned	bot;	/* bottom scroll limit */

	unsigned	wrap:1;
	unsigned	insert:1;
	unsigned	appkeypad:1;
	unsigned	altscreen:1;
	unsigned	crlf:1;
	unsigned	mousebtn:1;
	unsigned	mousemotion:1;
	unsigned	reverse:1;
	unsigned	kbdlock:1;
	unsigned	hide:1;
	unsigned	echo:1;
	unsigned	appcursor:1;
	unsigned	mousesgr:1;
	unsigned	numlock:1;

	int		esc;	/* escape state flags */
	struct csi_escape csiescseq;
	struct str_escape strescseq;

	unsigned short	defaultfg;
	unsigned short	defaultbg;
	unsigned short	defaultcs;

	int		(*setcolorname)(struct st_term *, int, const char *);
	void		(*settitle)(struct st_term *, char *);
	void		(*seturgent)(struct st_term *, int);
};

bool term_selected(struct st_selection *sel, int x, int y);
void term_sel_copy(struct st_term *term);
void term_sel_start(struct st_term *term, unsigned type, struct coord start);
void term_sel_end(struct st_term *term, struct coord end);

void term_echo(struct st_term *term, char *buf, int len);
void term_read(struct st_term *term);

void term_resize(struct st_term *term, struct coord size);
void term_shutdown(struct st_term *term);
void term_init(struct st_term *term, int col, int row, char *shell,
	       char **cmd, const char *logfile, unsigned long windowid,
	       unsigned defaultfg, unsigned defaultbg, unsigned defaultcs);

/* Random utility code */

static inline void die(const char *errstr, ...)
{
	va_list ap;

	va_start(ap, errstr);
	vfprintf(stderr, errstr, ap);
	va_end(ap);
	exit(EXIT_FAILURE);
}

static inline void edie(const char *errstr, ...)
{
	va_list ap;

	va_start(ap, errstr);
	vfprintf(stderr, errstr, ap);
	va_end(ap);
	fprintf(stderr, ": %s\n", strerror(errno));
	exit(EXIT_FAILURE);
}

static inline ssize_t xwrite(int fd, void *s, size_t len)
{
	size_t aux = len;

	while (len > 0) {
		ssize_t r = write(fd, s, len);
		if (r < 0)
			return r;
		len -= r;
		s += r;
	}
	return aux;
}

static inline void *xmalloc(size_t len)
{
	void *p = malloc(len);

	if (!p)
		die("Out of memory\n");

	return p;
}

static inline void *xrealloc(void *p, size_t len)
{
	if ((p = realloc(p, len)) == NULL)
		die("Out of memory\n");

	return p;
}

static inline void *xcalloc(size_t nmemb, size_t size)
{
	void *p = calloc(nmemb, size);

	if (!p)
		die("Out of memory\n");

	return p;
}

static inline void ttywrite(struct st_term *term, const char *s, size_t n)
{
	if (write(term->cmdfd, s, n) == -1)
		die("write error on tty: %s\n", strerror(errno));
}

static inline struct st_glyph *term_pos(struct st_term *term, struct coord pos)
{
	return &term->line[pos.y][pos.x];
}