blob: a0d6db3ee86114bc67edbaad27ac0dc382cba682 [file] [log] [blame]
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05001/*
2 * Copyright © 2008 Kristian Høgsberg
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
Philipp Brüschweilerfdb4b022012-08-18 13:38:38 +020023#include <stdbool.h>
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050024#include <stdint.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <fcntl.h>
29#include <unistd.h>
30#include <math.h>
31#include <time.h>
Kristian Høgsberg269d6e32008-12-07 23:17:31 -050032#include <pty.h>
Kristian Høgsbergf04e8382008-12-08 00:07:49 -050033#include <ctype.h>
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050034#include <cairo.h>
Kristian Høgsberg3a696272011-09-14 17:33:48 -040035#include <sys/epoll.h>
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050036
Pekka Paalanen50719bc2011-11-22 14:18:50 +020037#include <wayland-client.h>
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050038
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -040039#include "../shared/config-parser.h"
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050040#include "window.h"
41
Kristian Høgsberg0395f302008-12-22 12:14:50 -050042static int option_fullscreen;
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -040043static char *option_font = "mono";
Kristian Høgsberg38912df2012-06-27 17:52:23 -040044static int option_font_size = 14;
Kristian Høgsbergde845cf2012-06-20 22:14:31 -040045static char *option_term = "xterm";
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -040046static char *option_shell;
47
48static struct wl_list terminal_list;
49
50static struct terminal *
Kristian Høgsbergb7ed4cb2012-10-10 11:37:46 -040051terminal_create(struct display *display);
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -040052static void
53terminal_destroy(struct terminal *terminal);
54static int
55terminal_run(struct terminal *terminal, const char *path);
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050056
Kristian Høgsberg6e83d582008-12-08 00:01:36 -050057#define MOD_SHIFT 0x01
58#define MOD_ALT 0x02
59#define MOD_CTRL 0x04
60
Callum Lowcay30eeae52011-01-07 19:46:55 +000061#define ATTRMASK_BOLD 0x01
62#define ATTRMASK_UNDERLINE 0x02
63#define ATTRMASK_BLINK 0x04
64#define ATTRMASK_INVERSE 0x08
Callum Lowcay81179db2011-01-10 12:14:01 +130065#define ATTRMASK_CONCEALED 0x10
Callum Lowcay30eeae52011-01-07 19:46:55 +000066
Callum Lowcayb8609ad2011-01-07 19:46:57 +000067/* Buffer sizes */
Callum Lowcayef57a9b2011-01-14 20:46:23 +130068#define MAX_RESPONSE 256
69#define MAX_ESCAPE 255
Callum Lowcayb8609ad2011-01-07 19:46:57 +000070
Callum Lowcay8e57dd52011-01-07 19:46:59 +000071/* Terminal modes */
72#define MODE_SHOW_CURSOR 0x00000001
73#define MODE_INVERSE 0x00000002
74#define MODE_AUTOWRAP 0x00000004
75#define MODE_AUTOREPEAT 0x00000008
76#define MODE_LF_NEWLINE 0x00000010
Callum Lowcay69e96582011-01-07 19:47:00 +000077#define MODE_IRM 0x00000020
Callum Lowcay7e08e902011-01-07 19:47:02 +000078#define MODE_DELETE_SENDS_DEL 0x00000040
79#define MODE_ALT_SENDS_ESC 0x00000080
Callum Lowcay8e57dd52011-01-07 19:46:59 +000080
Callum Lowcay15bdc5d2011-01-07 19:46:54 +000081union utf8_char {
82 unsigned char byte[4];
83 uint32_t ch;
84};
85
86enum utf8_state {
87 utf8state_start,
88 utf8state_accept,
89 utf8state_reject,
90 utf8state_expect3,
91 utf8state_expect2,
92 utf8state_expect1
93};
94
95struct utf8_state_machine {
96 enum utf8_state state;
97 int len;
98 union utf8_char s;
99};
100
101static void
102init_state_machine(struct utf8_state_machine *machine)
103{
104 machine->state = utf8state_start;
105 machine->len = 0;
106 machine->s.ch = 0;
107}
108
109static enum utf8_state
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400110utf8_next_char(struct utf8_state_machine *machine, unsigned char c)
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000111{
112 switch(machine->state) {
113 case utf8state_start:
114 case utf8state_accept:
115 case utf8state_reject:
116 machine->s.ch = 0;
117 machine->len = 0;
118 if(c == 0xC0 || c == 0xC1) {
119 /* overlong encoding, reject */
120 machine->state = utf8state_reject;
121 } else if((c & 0x80) == 0) {
122 /* single byte, accept */
123 machine->s.byte[machine->len++] = c;
124 machine->state = utf8state_accept;
125 } else if((c & 0xC0) == 0x80) {
126 /* parser out of sync, ignore byte */
127 machine->state = utf8state_start;
128 } else if((c & 0xE0) == 0xC0) {
129 /* start of two byte sequence */
130 machine->s.byte[machine->len++] = c;
131 machine->state = utf8state_expect1;
132 } else if((c & 0xF0) == 0xE0) {
133 /* start of three byte sequence */
134 machine->s.byte[machine->len++] = c;
135 machine->state = utf8state_expect2;
136 } else if((c & 0xF8) == 0xF0) {
137 /* start of four byte sequence */
138 machine->s.byte[machine->len++] = c;
139 machine->state = utf8state_expect3;
140 } else {
141 /* overlong encoding, reject */
142 machine->state = utf8state_reject;
143 }
144 break;
145 case utf8state_expect3:
146 machine->s.byte[machine->len++] = c;
147 if((c & 0xC0) == 0x80) {
148 /* all good, continue */
149 machine->state = utf8state_expect2;
150 } else {
151 /* missing extra byte, reject */
152 machine->state = utf8state_reject;
153 }
154 break;
155 case utf8state_expect2:
156 machine->s.byte[machine->len++] = c;
157 if((c & 0xC0) == 0x80) {
158 /* all good, continue */
159 machine->state = utf8state_expect1;
160 } else {
161 /* missing extra byte, reject */
162 machine->state = utf8state_reject;
163 }
164 break;
165 case utf8state_expect1:
166 machine->s.byte[machine->len++] = c;
167 if((c & 0xC0) == 0x80) {
168 /* all good, accept */
169 machine->state = utf8state_accept;
170 } else {
171 /* missing extra byte, reject */
172 machine->state = utf8state_reject;
173 }
174 break;
175 default:
176 machine->state = utf8state_reject;
177 break;
178 }
179
180 return machine->state;
181}
182
Callum Lowcay256e72f2011-01-07 19:47:01 +0000183struct char_sub {
184 union utf8_char match;
185 union utf8_char replace;
186};
187/* Set last char_sub match to NULL char */
188typedef struct char_sub *character_set;
189
190struct char_sub CS_US[] = {
191 {{{0, }}, {{0, }}}
192};
193static struct char_sub CS_UK[] = {
David Herrmanna6128d62012-05-29 09:37:02 +0200194 {{{'#', 0, }}, {{0xC2, 0xA3, 0, }}}, /* POUND: £ */
Callum Lowcay256e72f2011-01-07 19:47:01 +0000195 {{{0, }}, {{0, }}}
196};
197static struct char_sub CS_SPECIAL[] = {
David Herrmanna6128d62012-05-29 09:37:02 +0200198 {{{'`', 0, }}, {{0xE2, 0x99, 0xA6, 0}}}, /* diamond: ♦ */
199 {{{'a', 0, }}, {{0xE2, 0x96, 0x92, 0}}}, /* 50% cell: ▒ */
200 {{{'b', 0, }}, {{0xE2, 0x90, 0x89, 0}}}, /* HT: ␉ */
201 {{{'c', 0, }}, {{0xE2, 0x90, 0x8C, 0}}}, /* FF: ␌ */
202 {{{'d', 0, }}, {{0xE2, 0x90, 0x8D, 0}}}, /* CR: ␍ */
203 {{{'e', 0, }}, {{0xE2, 0x90, 0x8A, 0}}}, /* LF: ␊ */
204 {{{'f', 0, }}, {{0xC2, 0xB0, 0, }}}, /* Degree: ° */
205 {{{'g', 0, }}, {{0xC2, 0xB1, 0, }}}, /* Plus/Minus: ± */
206 {{{'h', 0, }}, {{0xE2, 0x90, 0xA4, 0}}}, /* NL: ␤ */
207 {{{'i', 0, }}, {{0xE2, 0x90, 0x8B, 0}}}, /* VT: ␋ */
208 {{{'j', 0, }}, {{0xE2, 0x94, 0x98, 0}}}, /* CN_RB: ┘ */
209 {{{'k', 0, }}, {{0xE2, 0x94, 0x90, 0}}}, /* CN_RT: ┐ */
210 {{{'l', 0, }}, {{0xE2, 0x94, 0x8C, 0}}}, /* CN_LT: ┌ */
211 {{{'m', 0, }}, {{0xE2, 0x94, 0x94, 0}}}, /* CN_LB: └ */
212 {{{'n', 0, }}, {{0xE2, 0x94, 0xBC, 0}}}, /* CROSS: ┼ */
213 {{{'o', 0, }}, {{0xE2, 0x8E, 0xBA, 0}}}, /* Horiz. Scan Line 1: ⎺ */
214 {{{'p', 0, }}, {{0xE2, 0x8E, 0xBB, 0}}}, /* Horiz. Scan Line 3: ⎻ */
215 {{{'q', 0, }}, {{0xE2, 0x94, 0x80, 0}}}, /* Horiz. Scan Line 5: ─ */
216 {{{'r', 0, }}, {{0xE2, 0x8E, 0xBC, 0}}}, /* Horiz. Scan Line 7: ⎼ */
217 {{{'s', 0, }}, {{0xE2, 0x8E, 0xBD, 0}}}, /* Horiz. Scan Line 9: ⎽ */
218 {{{'t', 0, }}, {{0xE2, 0x94, 0x9C, 0}}}, /* TR: ├ */
219 {{{'u', 0, }}, {{0xE2, 0x94, 0xA4, 0}}}, /* TL: ┤ */
220 {{{'v', 0, }}, {{0xE2, 0x94, 0xB4, 0}}}, /* TU: ┴ */
221 {{{'w', 0, }}, {{0xE2, 0x94, 0xAC, 0}}}, /* TD: ┬ */
222 {{{'x', 0, }}, {{0xE2, 0x94, 0x82, 0}}}, /* V: │ */
223 {{{'y', 0, }}, {{0xE2, 0x89, 0xA4, 0}}}, /* LE: ≤ */
224 {{{'z', 0, }}, {{0xE2, 0x89, 0xA5, 0}}}, /* GE: ≥ */
225 {{{'{', 0, }}, {{0xCF, 0x80, 0, }}}, /* PI: π */
226 {{{'|', 0, }}, {{0xE2, 0x89, 0xA0, 0}}}, /* NEQ: ≠ */
227 {{{'}', 0, }}, {{0xC2, 0xA3, 0, }}}, /* POUND: £ */
228 {{{'~', 0, }}, {{0xE2, 0x8B, 0x85, 0}}}, /* DOT: ⋅ */
Callum Lowcay256e72f2011-01-07 19:47:01 +0000229 {{{0, }}, {{0, }}}
230};
231
232static void
233apply_char_set(character_set cs, union utf8_char *utf8)
234{
235 int i = 0;
236
237 while (cs[i].match.byte[0]) {
238 if ((*utf8).ch == cs[i].match.ch) {
239 *utf8 = cs[i].replace;
240 break;
241 }
242 i++;
243 }
244}
245
Callum Lowcay7e08e902011-01-07 19:47:02 +0000246struct key_map {
247 int sym;
248 int num;
249 char escape;
250 char code;
251};
252/* Set last key_sub sym to NULL */
253typedef struct key_map *keyboard_mode;
254
255static struct key_map KM_NORMAL[] = {
Kristian Høgsbergbef52d12012-05-11 11:24:29 -0400256 { XKB_KEY_Left, 1, '[', 'D' },
257 { XKB_KEY_Right, 1, '[', 'C' },
258 { XKB_KEY_Up, 1, '[', 'A' },
259 { XKB_KEY_Down, 1, '[', 'B' },
260 { XKB_KEY_Home, 1, '[', 'H' },
261 { XKB_KEY_End, 1, '[', 'F' },
262 { 0, 0, 0, 0 }
Callum Lowcay7e08e902011-01-07 19:47:02 +0000263};
264static struct key_map KM_APPLICATION[] = {
Kristian Høgsbergbef52d12012-05-11 11:24:29 -0400265 { XKB_KEY_Left, 1, 'O', 'D' },
266 { XKB_KEY_Right, 1, 'O', 'C' },
267 { XKB_KEY_Up, 1, 'O', 'A' },
268 { XKB_KEY_Down, 1, 'O', 'B' },
269 { XKB_KEY_Home, 1, 'O', 'H' },
270 { XKB_KEY_End, 1, 'O', 'F' },
271 { XKB_KEY_KP_Enter, 1, 'O', 'M' },
272 { XKB_KEY_KP_Multiply, 1, 'O', 'j' },
273 { XKB_KEY_KP_Add, 1, 'O', 'k' },
274 { XKB_KEY_KP_Separator, 1, 'O', 'l' },
275 { XKB_KEY_KP_Subtract, 1, 'O', 'm' },
276 { XKB_KEY_KP_Divide, 1, 'O', 'o' },
277 { 0, 0, 0, 0 }
Callum Lowcay7e08e902011-01-07 19:47:02 +0000278};
279
280static int
281function_key_response(char escape, int num, uint32_t modifiers,
282 char code, char *response)
283{
284 int mod_num = 0;
285 int len;
286
Kristian Høgsberg70163132012-05-08 15:55:39 -0400287 if (modifiers & MOD_SHIFT_MASK) mod_num |= 1;
288 if (modifiers & MOD_ALT_MASK) mod_num |= 2;
289 if (modifiers & MOD_CONTROL_MASK) mod_num |= 4;
Callum Lowcay7e08e902011-01-07 19:47:02 +0000290
291 if (mod_num != 0)
292 len = snprintf(response, MAX_RESPONSE, "\e[%d;%d%c",
293 num, mod_num + 1, code);
294 else if (code != '~')
295 len = snprintf(response, MAX_RESPONSE, "\e%c%c",
296 escape, code);
297 else
298 len = snprintf(response, MAX_RESPONSE, "\e%c%d%c",
299 escape, num, code);
300
301 if (len >= MAX_RESPONSE) return MAX_RESPONSE - 1;
302 else return len;
303}
304
305/* returns the number of bytes written into response,
306 * which must have room for MAX_RESPONSE bytes */
307static int
308apply_key_map(keyboard_mode mode, int sym, uint32_t modifiers, char *response)
309{
310 struct key_map map;
311 int len = 0;
312 int i = 0;
313
314 while (mode[i].sym) {
315 map = mode[i++];
316 if (sym == map.sym) {
317 len = function_key_response(map.escape, map.num,
318 modifiers, map.code,
319 response);
320 break;
321 }
322 }
323
324 return len;
325}
326
Callum Lowcay30eeae52011-01-07 19:46:55 +0000327struct terminal_color { double r, g, b, a; };
328struct attr {
329 unsigned char fg, bg;
330 char a; /* attributes format:
331 * 76543210
Callum Lowcay81179db2011-01-10 12:14:01 +1300332 * cilub */
Kristian Høgsberg31cce052011-01-21 15:18:55 -0500333 char s; /* in selection */
Callum Lowcay30eeae52011-01-07 19:46:55 +0000334};
335struct color_scheme {
336 struct terminal_color palette[16];
Kristian Høgsberg71eca892011-01-11 10:13:00 -0500337 char border;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000338 struct attr default_attr;
339};
340
341static void
342attr_init(struct attr *data_attr, struct attr attr, int n)
343{
344 int i;
345 for (i = 0; i < n; i++) {
346 data_attr[i] = attr;
347 }
348}
349
Callum Lowcay67a201d2011-01-12 19:23:41 +1300350enum escape_state {
351 escape_state_normal = 0,
352 escape_state_escape,
353 escape_state_dcs,
354 escape_state_csi,
355 escape_state_osc,
356 escape_state_inner_escape,
357 escape_state_ignore,
358 escape_state_special
359};
360
361#define ESC_FLAG_WHAT 0x01
362#define ESC_FLAG_GT 0x02
363#define ESC_FLAG_BANG 0x04
364#define ESC_FLAG_CASH 0x08
365#define ESC_FLAG_SQUOTE 0x10
366#define ESC_FLAG_DQUOTE 0x20
367#define ESC_FLAG_SPACE 0x40
368
Kristian Høgsberg333db0a2012-06-27 17:43:10 -0400369enum {
370 SELECT_NONE,
371 SELECT_CHAR,
372 SELECT_WORD,
373 SELECT_LINE
374};
375
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -0500376struct terminal {
377 struct window *window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500378 struct widget *widget;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500379 struct display *display;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000380 union utf8_char *data;
Kristian Høgsberg3a696272011-09-14 17:33:48 -0400381 struct task io_task;
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000382 char *tab_ruler;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000383 struct attr *data_attr;
384 struct attr curr_attr;
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000385 uint32_t mode;
Callum Lowcaybbeac602011-01-07 19:46:58 +0000386 char origin_mode;
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000387 char saved_origin_mode;
388 struct attr saved_attr;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000389 union utf8_char last_char;
Callum Lowcaybbeac602011-01-07 19:46:58 +0000390 int margin_top, margin_bottom;
Callum Lowcay256e72f2011-01-07 19:47:01 +0000391 character_set cs, g0, g1;
392 character_set saved_cs, saved_g0, saved_g1;
Callum Lowcay7e08e902011-01-07 19:47:02 +0000393 keyboard_mode key_mode;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000394 int data_pitch, attr_pitch; /* The width in bytes of a line */
Kristian Høgsbergdbd54642008-12-08 22:22:25 -0500395 int width, height, start, row, column;
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000396 int saved_row, saved_column;
Scott Moreau7a1b32a2012-05-27 14:25:02 -0600397 int send_cursor_position;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -0500398 int fd, master;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -0500399 uint32_t modifiers;
Callum Lowcayef57a9b2011-01-14 20:46:23 +1300400 char escape[MAX_ESCAPE+1];
Kristian Høgsberg17809b12008-12-08 12:20:40 -0500401 int escape_length;
Callum Lowcay67a201d2011-01-12 19:23:41 +1300402 enum escape_state state;
403 enum escape_state outer_state;
404 int escape_flags;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000405 struct utf8_state_machine state_machine;
Kristian Høgsberg1584c572008-12-08 12:59:37 -0500406 int margin;
Kristian Høgsberg12308a42009-09-28 13:08:50 -0400407 struct color_scheme *color_scheme;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000408 struct terminal_color color_table[256];
Kristian Høgsberg09531622010-06-14 23:22:15 -0400409 cairo_font_extents_t extents;
Kristian Høgsberg7ae6b1a2010-12-25 16:58:31 -0500410 cairo_scaled_font_t *font_normal, *font_bold;
Kristian Høgsberg88fd4082012-06-21 15:55:03 -0400411 uint32_t hide_cursor_serial;
Kristian Høgsberg58eec362011-01-19 14:27:42 -0500412
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400413 struct wl_data_source *selection;
Kristian Høgsberg333db0a2012-06-27 17:43:10 -0400414 uint32_t button_time;
415 int dragging, click_count;
Kristian Høgsberg59826582011-01-20 11:56:57 -0500416 int selection_start_x, selection_start_y;
417 int selection_end_x, selection_end_y;
Kristian Høgsberg333db0a2012-06-27 17:43:10 -0400418 int selection_start_row, selection_start_col;
419 int selection_end_row, selection_end_col;
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -0400420 struct wl_list link;
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -0500421};
422
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000423/* Create default tab stops, every 8 characters */
424static void
425terminal_init_tabs(struct terminal *terminal)
426{
427 int i = 0;
428
429 while (i < terminal->width) {
430 if (i % 8 == 0)
431 terminal->tab_ruler[i] = 1;
432 else
433 terminal->tab_ruler[i] = 0;
434 i++;
435 }
436}
437
Callum Lowcay30eeae52011-01-07 19:46:55 +0000438static void
439terminal_init(struct terminal *terminal)
440{
441 terminal->curr_attr = terminal->color_scheme->default_attr;
Callum Lowcaybbeac602011-01-07 19:46:58 +0000442 terminal->origin_mode = 0;
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000443 terminal->mode = MODE_SHOW_CURSOR |
444 MODE_AUTOREPEAT |
Callum Lowcay7e08e902011-01-07 19:47:02 +0000445 MODE_ALT_SENDS_ESC |
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000446 MODE_AUTOWRAP;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000447
448 terminal->row = 0;
449 terminal->column = 0;
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000450
Callum Lowcay256e72f2011-01-07 19:47:01 +0000451 terminal->g0 = CS_US;
452 terminal->g1 = CS_US;
453 terminal->cs = terminal->g0;
Callum Lowcay7e08e902011-01-07 19:47:02 +0000454 terminal->key_mode = KM_NORMAL;
Callum Lowcay256e72f2011-01-07 19:47:01 +0000455
456 terminal->saved_g0 = terminal->g0;
457 terminal->saved_g1 = terminal->g1;
458 terminal->saved_cs = terminal->cs;
459
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000460 terminal->saved_attr = terminal->curr_attr;
461 terminal->saved_origin_mode = terminal->origin_mode;
462 terminal->saved_row = terminal->row;
463 terminal->saved_column = terminal->column;
464
465 if (terminal->tab_ruler != NULL) terminal_init_tabs(terminal);
Callum Lowcay30eeae52011-01-07 19:46:55 +0000466}
467
468static void
469init_color_table(struct terminal *terminal)
470{
471 int c, r;
472 struct terminal_color *color_table = terminal->color_table;
473
474 for (c = 0; c < 256; c ++) {
475 if (c < 16) {
476 color_table[c] = terminal->color_scheme->palette[c];
477 } else if (c < 232) {
478 r = c - 16;
479 color_table[c].b = ((double)(r % 6) / 6.0); r /= 6;
480 color_table[c].g = ((double)(r % 6) / 6.0); r /= 6;
481 color_table[c].r = ((double)(r % 6) / 6.0);
482 color_table[c].a = 1.0;
483 } else {
484 r = (c - 232) * 10 + 8;
485 color_table[c].r = ((double) r) / 256.0;
486 color_table[c].g = color_table[c].r;
487 color_table[c].b = color_table[c].r;
488 color_table[c].a = 1.0;
489 }
490 }
491}
492
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000493static union utf8_char *
Kristian Høgsbergdbd54642008-12-08 22:22:25 -0500494terminal_get_row(struct terminal *terminal, int row)
495{
496 int index;
497
498 index = (row + terminal->start) % terminal->height;
499
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000500 return &terminal->data[index * terminal->width];
Kristian Høgsbergdbd54642008-12-08 22:22:25 -0500501}
502
Callum Lowcay30eeae52011-01-07 19:46:55 +0000503static struct attr*
Kristian Høgsberg8c254202010-12-25 08:58:46 -0500504terminal_get_attr_row(struct terminal *terminal, int row)
505{
Callum Lowcay30eeae52011-01-07 19:46:55 +0000506 int index;
507
508 index = (row + terminal->start) % terminal->height;
509
510 return &terminal->data_attr[index * terminal->width];
511}
512
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500513union decoded_attr {
Callum Lowcay9d708b02011-01-12 20:06:17 +1300514 struct attr attr;
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500515 uint32_t key;
Kristian Høgsberg01994a52011-01-11 10:26:04 -0500516};
517
518static void
519terminal_decode_attr(struct terminal *terminal, int row, int col,
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500520 union decoded_attr *decoded)
Kristian Høgsberg8c254202010-12-25 08:58:46 -0500521{
Kristian Høgsberg01994a52011-01-11 10:26:04 -0500522 struct attr attr;
523 int foreground, background, tmp;
Kristian Høgsberg59826582011-01-20 11:56:57 -0500524
Kristian Høgsberg31cce052011-01-21 15:18:55 -0500525 decoded->attr.s = 0;
Kristian Høgsberg333db0a2012-06-27 17:43:10 -0400526 if (((row == terminal->selection_start_row &&
527 col >= terminal->selection_start_col) ||
528 row > terminal->selection_start_row) &&
529 ((row == terminal->selection_end_row &&
530 col < terminal->selection_end_col) ||
531 row < terminal->selection_end_row))
Kristian Høgsberg31cce052011-01-21 15:18:55 -0500532 decoded->attr.s = 1;
Kristian Høgsberg01994a52011-01-11 10:26:04 -0500533
534 /* get the attributes for this character cell */
535 attr = terminal_get_attr_row(terminal, row)[col];
536 if ((attr.a & ATTRMASK_INVERSE) ||
Kristian Høgsberg31cce052011-01-21 15:18:55 -0500537 decoded->attr.s ||
Kristian Høgsberg01994a52011-01-11 10:26:04 -0500538 ((terminal->mode & MODE_SHOW_CURSOR) &&
Kristian Høgsberg86adef92012-08-13 22:25:53 -0400539 window_has_focus(terminal->window) && terminal->row == row &&
Kristian Høgsberg01994a52011-01-11 10:26:04 -0500540 terminal->column == col)) {
541 foreground = attr.bg;
542 background = attr.fg;
543 if (attr.a & ATTRMASK_BOLD) {
544 if (foreground <= 16) foreground |= 0x08;
545 if (background <= 16) background &= 0x07;
546 }
547 } else {
548 foreground = attr.fg;
549 background = attr.bg;
550 }
551
552 if (terminal->mode & MODE_INVERSE) {
553 tmp = foreground;
554 foreground = background;
555 background = tmp;
556 if (attr.a & ATTRMASK_BOLD) {
557 if (foreground <= 16) foreground |= 0x08;
558 if (background <= 16) background &= 0x07;
559 }
560 }
561
Callum Lowcay9d708b02011-01-12 20:06:17 +1300562 decoded->attr.fg = foreground;
563 decoded->attr.bg = background;
564 decoded->attr.a = attr.a;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000565}
566
Kristian Høgsberg31cce052011-01-21 15:18:55 -0500567
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500568static void
Callum Lowcaybbeac602011-01-07 19:46:58 +0000569terminal_scroll_buffer(struct terminal *terminal, int d)
570{
571 int i;
572
573 d = d % (terminal->height + 1);
574 terminal->start = (terminal->start + d) % terminal->height;
575 if (terminal->start < 0) terminal->start = terminal->height + terminal->start;
576 if(d < 0) {
577 d = 0 - d;
578 for(i = 0; i < d; i++) {
579 memset(terminal_get_row(terminal, i), 0, terminal->data_pitch);
580 attr_init(terminal_get_attr_row(terminal, i),
581 terminal->curr_attr, terminal->width);
582 }
583 } else {
584 for(i = terminal->height - d; i < terminal->height; i++) {
585 memset(terminal_get_row(terminal, i), 0, terminal->data_pitch);
586 attr_init(terminal_get_attr_row(terminal, i),
587 terminal->curr_attr, terminal->width);
588 }
589 }
Kristian Høgsberg18e928d2012-06-27 19:29:41 -0400590
591 terminal->selection_start_row -= d;
592 terminal->selection_end_row -= d;
Callum Lowcaybbeac602011-01-07 19:46:58 +0000593}
594
595static void
596terminal_scroll_window(struct terminal *terminal, int d)
597{
598 int i;
599 int window_height;
600 int from_row, to_row;
Callum Lowcaybbeac602011-01-07 19:46:58 +0000601
602 // scrolling range is inclusive
603 window_height = terminal->margin_bottom - terminal->margin_top + 1;
604 d = d % (window_height + 1);
605 if(d < 0) {
606 d = 0 - d;
607 to_row = terminal->margin_bottom;
608 from_row = terminal->margin_bottom - d;
609
610 for (i = 0; i < (window_height - d); i++) {
611 memcpy(terminal_get_row(terminal, to_row - i),
612 terminal_get_row(terminal, from_row - i),
613 terminal->data_pitch);
614 memcpy(terminal_get_attr_row(terminal, to_row - i),
615 terminal_get_attr_row(terminal, from_row - i),
616 terminal->attr_pitch);
617 }
Callum Lowcaybbeac602011-01-07 19:46:58 +0000618 for (i = terminal->margin_top; i < (terminal->margin_top + d); i++) {
619 memset(terminal_get_row(terminal, i), 0, terminal->data_pitch);
Callum Lowcay86653ed2011-01-07 19:47:03 +0000620 attr_init(terminal_get_attr_row(terminal, i),
621 terminal->curr_attr, terminal->width);
Callum Lowcaybbeac602011-01-07 19:46:58 +0000622 }
623 } else {
624 to_row = terminal->margin_top;
625 from_row = terminal->margin_top + d;
626
627 for (i = 0; i < (window_height - d); i++) {
628 memcpy(terminal_get_row(terminal, to_row + i),
629 terminal_get_row(terminal, from_row + i),
630 terminal->data_pitch);
631 memcpy(terminal_get_attr_row(terminal, to_row + i),
632 terminal_get_attr_row(terminal, from_row + i),
633 terminal->attr_pitch);
634 }
Callum Lowcaybbeac602011-01-07 19:46:58 +0000635 for (i = terminal->margin_bottom - d + 1; i <= terminal->margin_bottom; i++) {
636 memset(terminal_get_row(terminal, i), 0, terminal->data_pitch);
Callum Lowcay86653ed2011-01-07 19:47:03 +0000637 attr_init(terminal_get_attr_row(terminal, i),
638 terminal->curr_attr, terminal->width);
Callum Lowcaybbeac602011-01-07 19:46:58 +0000639 }
640 }
641}
642
643static void
644terminal_scroll(struct terminal *terminal, int d)
645{
646 if(terminal->margin_top == 0 && terminal->margin_bottom == terminal->height - 1)
647 terminal_scroll_buffer(terminal, d);
648 else
649 terminal_scroll_window(terminal, d);
650}
651
652static void
Callum Lowcay69e96582011-01-07 19:47:00 +0000653terminal_shift_line(struct terminal *terminal, int d)
654{
655 union utf8_char *row;
Kristian Høgsberg00439612011-01-25 15:16:01 -0500656 struct attr *attr_row;
Callum Lowcay69e96582011-01-07 19:47:00 +0000657
658 row = terminal_get_row(terminal, terminal->row);
659 attr_row = terminal_get_attr_row(terminal, terminal->row);
660
661 if ((terminal->width + d) <= terminal->column)
662 d = terminal->column + 1 - terminal->width;
663 if ((terminal->column + d) >= terminal->width)
664 d = terminal->width - terminal->column - 1;
665
666 if (d < 0) {
667 d = 0 - d;
668 memmove(&row[terminal->column],
669 &row[terminal->column + d],
670 (terminal->width - terminal->column - d) * sizeof(union utf8_char));
Callum Lowcay69e96582011-01-07 19:47:00 +0000671 memmove(&attr_row[terminal->column], &attr_row[terminal->column + d],
672 (terminal->width - terminal->column - d) * sizeof(struct attr));
673 memset(&row[terminal->width - d], 0, d * sizeof(union utf8_char));
674 attr_init(&attr_row[terminal->width - d], terminal->curr_attr, d);
675 } else {
676 memmove(&row[terminal->column + d], &row[terminal->column],
677 (terminal->width - terminal->column - d) * sizeof(union utf8_char));
678 memmove(&attr_row[terminal->column + d], &attr_row[terminal->column],
679 (terminal->width - terminal->column - d) * sizeof(struct attr));
680 memset(&row[terminal->column], 0, d * sizeof(union utf8_char));
681 attr_init(&attr_row[terminal->column], terminal->curr_attr, d);
682 }
683}
684
685static void
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500686terminal_resize_cells(struct terminal *terminal, int width, int height)
Kristian Høgsberg22106762008-12-08 13:50:07 -0500687{
688 size_t size;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000689 union utf8_char *data;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000690 struct attr *data_attr;
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000691 char *tab_ruler;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000692 int data_pitch, attr_pitch;
Kristian Høgsberg00439612011-01-25 15:16:01 -0500693 int i, l, total_rows;
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500694 struct rectangle allocation;
Callum Lowcaya0ee21c2011-01-07 19:46:56 +0000695 struct winsize ws;
Kristian Høgsberg22106762008-12-08 13:50:07 -0500696
697 if (terminal->width == width && terminal->height == height)
698 return;
699
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000700 data_pitch = width * sizeof(union utf8_char);
701 size = data_pitch * height;
Kristian Høgsberg22106762008-12-08 13:50:07 -0500702 data = malloc(size);
Callum Lowcay30eeae52011-01-07 19:46:55 +0000703 attr_pitch = width * sizeof(struct attr);
704 data_attr = malloc(attr_pitch * height);
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000705 tab_ruler = malloc(width);
Kristian Høgsberg22106762008-12-08 13:50:07 -0500706 memset(data, 0, size);
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000707 memset(tab_ruler, 0, width);
Callum Lowcay30eeae52011-01-07 19:46:55 +0000708 attr_init(data_attr, terminal->curr_attr, width * height);
709 if (terminal->data && terminal->data_attr) {
Kristian Høgsberg22106762008-12-08 13:50:07 -0500710 if (width > terminal->width)
711 l = terminal->width;
712 else
713 l = width;
714
Kristian Høgsbergdbd54642008-12-08 22:22:25 -0500715 if (terminal->height > height) {
Kristian Høgsberg22106762008-12-08 13:50:07 -0500716 total_rows = height;
Kristian Høgsberg22106762008-12-08 13:50:07 -0500717 } else {
Kristian Høgsbergdbd54642008-12-08 22:22:25 -0500718 total_rows = terminal->height;
Kristian Høgsberg22106762008-12-08 13:50:07 -0500719 }
720
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000721 for (i = 0; i < total_rows; i++) {
722 memcpy(&data[width * i],
723 terminal_get_row(terminal, i),
724 l * sizeof(union utf8_char));
Callum Lowcay30eeae52011-01-07 19:46:55 +0000725 memcpy(&data_attr[width * i],
726 terminal_get_attr_row(terminal, i),
727 l * sizeof(struct attr));
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000728 }
Kristian Høgsberg22106762008-12-08 13:50:07 -0500729
730 free(terminal->data);
Callum Lowcay30eeae52011-01-07 19:46:55 +0000731 free(terminal->data_attr);
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000732 free(terminal->tab_ruler);
Kristian Høgsberg22106762008-12-08 13:50:07 -0500733 }
734
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000735 terminal->data_pitch = data_pitch;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000736 terminal->attr_pitch = attr_pitch;
Callum Lowcay86653ed2011-01-07 19:47:03 +0000737 terminal->margin_bottom =
738 height - (terminal->height - terminal->margin_bottom);
Kristian Høgsberg22106762008-12-08 13:50:07 -0500739 terminal->width = width;
740 terminal->height = height;
741 terminal->data = data;
Callum Lowcay30eeae52011-01-07 19:46:55 +0000742 terminal->data_attr = data_attr;
Callum Lowcay8e57dd52011-01-07 19:46:59 +0000743 terminal->tab_ruler = tab_ruler;
744 terminal_init_tabs(terminal);
Kristian Høgsberg22106762008-12-08 13:50:07 -0500745
Callum Lowcaya0ee21c2011-01-07 19:46:56 +0000746 /* Update the window size */
747 ws.ws_row = terminal->height;
748 ws.ws_col = terminal->width;
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500749 widget_get_allocation(terminal->widget, &allocation);
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500750 ws.ws_xpixel = allocation.width;
751 ws.ws_ypixel = allocation.height;
Callum Lowcaya0ee21c2011-01-07 19:46:56 +0000752 ioctl(terminal->master, TIOCSWINSZ, &ws);
Kristian Høgsberg22106762008-12-08 13:50:07 -0500753}
754
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500755static void
756resize_handler(struct widget *widget,
757 int32_t width, int32_t height, void *data)
758{
759 struct terminal *terminal = data;
760 int32_t columns, rows, m;
761
762 m = 2 * terminal->margin;
763 columns = (width - m) / (int32_t) terminal->extents.max_x_advance;
764 rows = (height - m) / (int32_t) terminal->extents.height;
765
Kristian Høgsbergb7ed4cb2012-10-10 11:37:46 -0400766 if (window_is_fullscreen(terminal->window)) {
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500767 width = columns * terminal->extents.max_x_advance + m;
768 height = rows * terminal->extents.height + m;
769 widget_set_size(terminal->widget, width, height);
770 }
771
772 terminal_resize_cells(terminal, columns, rows);
773}
774
775static void
776terminal_resize(struct terminal *terminal, int columns, int rows)
777{
778 int32_t width, height, m;
779
Kristian Høgsbergb7ed4cb2012-10-10 11:37:46 -0400780 if (window_is_fullscreen(terminal->window))
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500781 return;
782
783 m = 2 * terminal->margin;
784 width = columns * terminal->extents.max_x_advance + m;
785 height = rows * terminal->extents.height + m;
Kristian Høgsberga1627922012-06-20 17:30:03 -0400786
787 frame_set_child_size(terminal->widget, width, height);
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500788}
789
Callum Lowcay30eeae52011-01-07 19:46:55 +0000790struct color_scheme DEFAULT_COLORS = {
791 {
792 {0, 0, 0, 1}, /* black */
793 {0.66, 0, 0, 1}, /* red */
794 {0 , 0.66, 0, 1}, /* green */
795 {0.66, 0.33, 0, 1}, /* orange (nicer than muddy yellow) */
796 {0 , 0 , 0.66, 1}, /* blue */
797 {0.66, 0 , 0.66, 1}, /* magenta */
798 {0, 0.66, 0.66, 1}, /* cyan */
799 {0.66, 0.66, 0.66, 1}, /* light grey */
800 {0.22, 0.33, 0.33, 1}, /* dark grey */
801 {1, 0.33, 0.33, 1}, /* high red */
802 {0.33, 1, 0.33, 1}, /* high green */
803 {1, 1, 0.33, 1}, /* high yellow */
804 {0.33, 0.33, 1, 1}, /* high blue */
805 {1, 0.33, 1, 1}, /* high magenta */
806 {0.33, 1, 1, 1}, /* high cyan */
807 {1, 1, 1, 1} /* white */
808 },
Kristian Høgsberg71eca892011-01-11 10:13:00 -0500809 0, /* black border */
Callum Lowcay30eeae52011-01-07 19:46:55 +0000810 {7, 0, 0, } /* bg:black (0), fg:light gray (7) */
811};
Kristian Høgsberg12308a42009-09-28 13:08:50 -0400812
Kristian Høgsberg22106762008-12-08 13:50:07 -0500813static void
Kristian Høgsbergf106fd52011-01-11 10:11:39 -0500814terminal_set_color(struct terminal *terminal, cairo_t *cr, int index)
815{
816 cairo_set_source_rgba(cr,
817 terminal->color_table[index].r,
818 terminal->color_table[index].g,
819 terminal->color_table[index].b,
820 terminal->color_table[index].a);
821}
822
Kristian Høgsberg31cce052011-01-21 15:18:55 -0500823static void
824terminal_send_selection(struct terminal *terminal, int fd)
825{
826 int row, col;
827 union utf8_char *p_row;
828 union decoded_attr attr;
829 FILE *fp;
830 int len;
831
832 fp = fdopen(fd, "w");
833 for (row = 0; row < terminal->height; row++) {
834 p_row = terminal_get_row(terminal, row);
835 for (col = 0; col < terminal->width; col++) {
836 /* get the attributes for this character cell */
837 terminal_decode_attr(terminal, row, col, &attr);
838 if (!attr.attr.s)
839 continue;
840 len = strnlen((char *) p_row[col].byte, 4);
Kristian Høgsberg0dee6472012-07-01 21:25:41 -0400841 if (len > 0)
842 fwrite(p_row[col].byte, 1, len, fp);
843 if (len == 0 || col == terminal->width - 1) {
844 fwrite("\n", 1, 1, fp);
845 break;
846 }
Kristian Høgsberg31cce052011-01-21 15:18:55 -0500847 }
848 }
849 fclose(fp);
850}
851
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500852struct glyph_run {
853 struct terminal *terminal;
854 cairo_t *cr;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400855 unsigned int count;
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500856 union decoded_attr attr;
857 cairo_glyph_t glyphs[256], *g;
858};
859
860static void
861glyph_run_init(struct glyph_run *run, struct terminal *terminal, cairo_t *cr)
862{
863 run->terminal = terminal;
864 run->cr = cr;
865 run->g = run->glyphs;
866 run->count = 0;
867 run->attr.key = 0;
868}
869
870static void
871glyph_run_flush(struct glyph_run *run, union decoded_attr attr)
872{
873 cairo_scaled_font_t *font;
874
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500875 if (run->count > ARRAY_LENGTH(run->glyphs) - 10 ||
876 (attr.key != run->attr.key)) {
Callum Lowcay9d708b02011-01-12 20:06:17 +1300877 if (run->attr.attr.a & (ATTRMASK_BOLD | ATTRMASK_BLINK))
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500878 font = run->terminal->font_bold;
879 else
880 font = run->terminal->font_normal;
881 cairo_set_scaled_font(run->cr, font);
882 terminal_set_color(run->terminal, run->cr,
Callum Lowcay9d708b02011-01-12 20:06:17 +1300883 run->attr.attr.fg);
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500884
Callum Lowcay9d708b02011-01-12 20:06:17 +1300885 if (!(run->attr.attr.a & ATTRMASK_CONCEALED))
886 cairo_show_glyphs (run->cr, run->glyphs, run->count);
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500887 run->g = run->glyphs;
888 run->count = 0;
889 }
Callum Lowcay9d708b02011-01-12 20:06:17 +1300890 run->attr = attr;
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500891}
892
893static void
894glyph_run_add(struct glyph_run *run, int x, int y, union utf8_char *c)
895{
896 int num_glyphs;
897 cairo_scaled_font_t *font;
898
899 num_glyphs = ARRAY_LENGTH(run->glyphs) - run->count;
900
Callum Lowcay9d708b02011-01-12 20:06:17 +1300901 if (run->attr.attr.a & (ATTRMASK_BOLD | ATTRMASK_BLINK))
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500902 font = run->terminal->font_bold;
903 else
904 font = run->terminal->font_normal;
905
906 cairo_move_to(run->cr, x, y);
907 cairo_scaled_font_text_to_glyphs (font, x, y,
908 (char *) c->byte, 4,
909 &run->g, &num_glyphs,
910 NULL, NULL, NULL);
911 run->g += num_glyphs;
912 run->count += num_glyphs;
913}
914
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500915
Kristian Høgsbergf106fd52011-01-11 10:11:39 -0500916static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500917redraw_handler(struct widget *widget, void *data)
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500918{
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500919 struct terminal *terminal = data;
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500920 struct rectangle allocation;
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500921 cairo_t *cr;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000922 int top_margin, side_margin;
Scott Moreau7a1b32a2012-05-27 14:25:02 -0600923 int row, col, cursor_x, cursor_y;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000924 union utf8_char *p_row;
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500925 union decoded_attr attr;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000926 int text_x, text_y;
Kristian Høgsberg2aac3022009-12-21 10:04:53 -0500927 cairo_surface_t *surface;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -0500928 double d;
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500929 struct glyph_run run;
Kristian Høgsberg59826582011-01-20 11:56:57 -0500930 cairo_font_extents_t extents;
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500931
Kristian Høgsbergf39a9cc2011-01-20 12:37:33 -0500932 surface = window_get_surface(terminal->window);
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500933 widget_get_allocation(terminal->widget, &allocation);
Kristian Høgsberg2aac3022009-12-21 10:04:53 -0500934 cr = cairo_create(surface);
Kristian Høgsbergf39a9cc2011-01-20 12:37:33 -0500935 cairo_rectangle(cr, allocation.x, allocation.y,
936 allocation.width, allocation.height);
937 cairo_clip(cr);
938 cairo_push_group(cr);
939
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500940 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
Kristian Høgsberg71eca892011-01-11 10:13:00 -0500941 terminal_set_color(terminal, cr, terminal->color_scheme->border);
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500942 cairo_paint(cr);
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500943
Kristian Høgsberg7ae6b1a2010-12-25 16:58:31 -0500944 cairo_set_scaled_font(cr, terminal->font_normal);
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500945
Kristian Høgsberg59826582011-01-20 11:56:57 -0500946 extents = terminal->extents;
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500947 side_margin = (allocation.width - terminal->width * extents.max_x_advance) / 2;
948 top_margin = (allocation.height - terminal->height * extents.height) / 2;
Kristian Høgsberg0395f302008-12-22 12:14:50 -0500949
Callum Lowcay30eeae52011-01-07 19:46:55 +0000950 cairo_set_line_width(cr, 1.0);
Kristian Høgsbergf39a9cc2011-01-20 12:37:33 -0500951 cairo_translate(cr, allocation.x + side_margin,
952 allocation.y + top_margin);
Kristian Høgsberg8c254202010-12-25 08:58:46 -0500953 /* paint the background */
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000954 for (row = 0; row < terminal->height; row++) {
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000955 for (col = 0; col < terminal->width; col++) {
Callum Lowcay30eeae52011-01-07 19:46:55 +0000956 /* get the attributes for this character cell */
Kristian Høgsberg01994a52011-01-11 10:26:04 -0500957 terminal_decode_attr(terminal, row, col, &attr);
Callum Lowcay30eeae52011-01-07 19:46:55 +0000958
Callum Lowcay9d708b02011-01-12 20:06:17 +1300959 if (attr.attr.bg == terminal->color_scheme->border)
Kristian Høgsbergfb266a32011-01-11 10:15:21 -0500960 continue;
961
Callum Lowcay9d708b02011-01-12 20:06:17 +1300962 terminal_set_color(terminal, cr, attr.attr.bg);
Kristian Høgsbergf39a9cc2011-01-20 12:37:33 -0500963 cairo_move_to(cr, col * extents.max_x_advance,
964 row * extents.height);
Callum Lowcay30eeae52011-01-07 19:46:55 +0000965 cairo_rel_line_to(cr, extents.max_x_advance, 0);
966 cairo_rel_line_to(cr, 0, extents.height);
967 cairo_rel_line_to(cr, -extents.max_x_advance, 0);
968 cairo_close_path(cr);
969 cairo_fill(cr);
Kristian Høgsberg8c254202010-12-25 08:58:46 -0500970 }
971 }
Callum Lowcay30eeae52011-01-07 19:46:55 +0000972
Kristian Høgsberg8c254202010-12-25 08:58:46 -0500973 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
974
975 /* paint the foreground */
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500976 glyph_run_init(&run, terminal, cr);
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -0500977 for (row = 0; row < terminal->height; row++) {
978 p_row = terminal_get_row(terminal, row);
979 for (col = 0; col < terminal->width; col++) {
980 /* get the attributes for this character cell */
Kristian Høgsberg01994a52011-01-11 10:26:04 -0500981 terminal_decode_attr(terminal, row, col, &attr);
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500982
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500983 glyph_run_flush(&run, attr);
Callum Lowcay30eeae52011-01-07 19:46:55 +0000984
Kristian Høgsbergf39a9cc2011-01-20 12:37:33 -0500985 text_x = col * extents.max_x_advance;
986 text_y = extents.ascent + row * extents.height;
Callum Lowcay9d708b02011-01-12 20:06:17 +1300987 if (attr.attr.a & ATTRMASK_UNDERLINE) {
988 terminal_set_color(terminal, cr, attr.attr.fg);
Callum Lowcay86653ed2011-01-07 19:47:03 +0000989 cairo_move_to(cr, text_x, (double)text_y + 1.5);
990 cairo_line_to(cr, text_x + extents.max_x_advance, (double) text_y + 1.5);
Callum Lowcay30eeae52011-01-07 19:46:55 +0000991 cairo_stroke(cr);
992 }
Kristian Høgsberg4f506702010-12-25 16:14:23 -0500993
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500994 glyph_run_add(&run, text_x, text_y, &p_row[col]);
Callum Lowcay15bdc5d2011-01-07 19:46:54 +0000995 }
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -0500996 }
Kristian Høgsbergb0b82e22009-02-21 15:42:25 -0500997
Kristian Høgsberg1d3e9392011-01-11 11:06:49 -0500998 attr.key = ~0;
999 glyph_run_flush(&run, attr);
1000
Kristian Høgsberg86adef92012-08-13 22:25:53 -04001001 if ((terminal->mode & MODE_SHOW_CURSOR) &&
1002 !window_has_focus(terminal->window)) {
Callum Lowcay30eeae52011-01-07 19:46:55 +00001003 d = 0.5;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05001004
Callum Lowcay30eeae52011-01-07 19:46:55 +00001005 cairo_set_line_width(cr, 1);
Kristian Høgsbergf39a9cc2011-01-20 12:37:33 -05001006 cairo_move_to(cr, terminal->column * extents.max_x_advance + d,
1007 terminal->row * extents.height + d);
Callum Lowcay30eeae52011-01-07 19:46:55 +00001008 cairo_rel_line_to(cr, extents.max_x_advance - 2 * d, 0);
1009 cairo_rel_line_to(cr, 0, extents.height - 2 * d);
1010 cairo_rel_line_to(cr, -extents.max_x_advance + 2 * d, 0);
1011 cairo_close_path(cr);
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05001012
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05001013 cairo_stroke(cr);
Callum Lowcay30eeae52011-01-07 19:46:55 +00001014 }
Kristian Høgsbergb0b82e22009-02-21 15:42:25 -05001015
Kristian Høgsbergf39a9cc2011-01-20 12:37:33 -05001016 cairo_pop_group_to_source(cr);
1017 cairo_paint(cr);
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -05001018 cairo_destroy(cr);
Kristian Høgsberg2aac3022009-12-21 10:04:53 -05001019 cairo_surface_destroy(surface);
Scott Moreau7a1b32a2012-05-27 14:25:02 -06001020
1021 if (terminal->send_cursor_position) {
1022 cursor_x = side_margin + allocation.x +
1023 terminal->column * extents.max_x_advance;
1024 cursor_y = top_margin + allocation.y +
1025 terminal->row * extents.height;
1026 window_set_text_cursor_position(terminal->window,
1027 cursor_x, cursor_y);
1028 terminal->send_cursor_position = 0;
1029 }
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -05001030}
1031
1032static void
Kristian Høgsberg26130862011-08-24 11:30:21 -04001033terminal_write(struct terminal *terminal, const char *data, size_t length)
1034{
1035 if (write(terminal->master, data, length) < 0)
1036 abort();
Scott Moreau7a1b32a2012-05-27 14:25:02 -06001037 terminal->send_cursor_position = 1;
Kristian Høgsberg26130862011-08-24 11:30:21 -04001038}
1039
1040static void
Kristian Høgsberg17809b12008-12-08 12:20:40 -05001041terminal_data(struct terminal *terminal, const char *data, size_t length);
Kristian Høgsbergf04e8382008-12-08 00:07:49 -05001042
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05001043static void
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001044handle_char(struct terminal *terminal, union utf8_char utf8);
1045
1046static void
Callum Lowcay30eeae52011-01-07 19:46:55 +00001047handle_sgr(struct terminal *terminal, int code);
1048
1049static void
Callum Lowcaybbeac602011-01-07 19:46:58 +00001050handle_term_parameter(struct terminal *terminal, int code, int sr)
1051{
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001052 int i;
1053
Callum Lowcay67a201d2011-01-12 19:23:41 +13001054 if (terminal->escape_flags & ESC_FLAG_WHAT) {
Callum Lowcaybbeac602011-01-07 19:46:58 +00001055 switch(code) {
Callum Lowcay7e08e902011-01-07 19:47:02 +00001056 case 1: /* DECCKM */
1057 if (sr) terminal->key_mode = KM_APPLICATION;
1058 else terminal->key_mode = KM_NORMAL;
1059 break;
Callum Lowcay256e72f2011-01-07 19:47:01 +00001060 case 2: /* DECANM */
1061 /* No VT52 support yet */
1062 terminal->g0 = CS_US;
1063 terminal->g1 = CS_US;
1064 terminal->cs = terminal->g0;
1065 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001066 case 3: /* DECCOLM */
1067 if (sr)
1068 terminal_resize(terminal, 132, 24);
1069 else
1070 terminal_resize(terminal, 80, 24);
1071
1072 /* set columns, but also home cursor and clear screen */
1073 terminal->row = 0; terminal->column = 0;
1074 for (i = 0; i < terminal->height; i++) {
1075 memset(terminal_get_row(terminal, i),
1076 0, terminal->data_pitch);
1077 attr_init(terminal_get_attr_row(terminal, i),
1078 terminal->curr_attr, terminal->width);
1079 }
1080 break;
1081 case 5: /* DECSCNM */
1082 if (sr) terminal->mode |= MODE_INVERSE;
1083 else terminal->mode &= ~MODE_INVERSE;
1084 break;
Callum Lowcaybbeac602011-01-07 19:46:58 +00001085 case 6: /* DECOM */
1086 terminal->origin_mode = sr;
1087 if (terminal->origin_mode)
1088 terminal->row = terminal->margin_top;
1089 else
1090 terminal->row = 0;
1091 terminal->column = 0;
1092 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001093 case 7: /* DECAWM */
1094 if (sr) terminal->mode |= MODE_AUTOWRAP;
1095 else terminal->mode &= ~MODE_AUTOWRAP;
1096 break;
1097 case 8: /* DECARM */
1098 if (sr) terminal->mode |= MODE_AUTOREPEAT;
1099 else terminal->mode &= ~MODE_AUTOREPEAT;
1100 break;
Kristian Høgsberge828e902012-06-20 16:59:17 -04001101 case 12: /* Very visible cursor (CVVIS) */
1102 /* FIXME: What do we do here. */
1103 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001104 case 25:
1105 if (sr) terminal->mode |= MODE_SHOW_CURSOR;
1106 else terminal->mode &= ~MODE_SHOW_CURSOR;
1107 break;
Kristian Høgsberge828e902012-06-20 16:59:17 -04001108 case 1034: /* smm/rmm, meta mode on/off */
1109 /* ignore */
1110 break;
Callum Lowcay7e08e902011-01-07 19:47:02 +00001111 case 1037: /* deleteSendsDel */
1112 if (sr) terminal->mode |= MODE_DELETE_SENDS_DEL;
1113 else terminal->mode &= ~MODE_DELETE_SENDS_DEL;
1114 break;
1115 case 1039: /* altSendsEscape */
1116 if (sr) terminal->mode |= MODE_ALT_SENDS_ESC;
1117 else terminal->mode &= ~MODE_ALT_SENDS_ESC;
1118 break;
Kristian Høgsberge828e902012-06-20 16:59:17 -04001119 case 1049: /* rmcup/smcup, alternate screen */
1120 /* Ignore. Should be possible to implement,
1121 * but it's kind of annoying. */
1122 break;
Callum Lowcaybbeac602011-01-07 19:46:58 +00001123 default:
1124 fprintf(stderr, "Unknown parameter: ?%d\n", code);
1125 break;
1126 }
1127 } else {
1128 switch(code) {
Callum Lowcay69e96582011-01-07 19:47:00 +00001129 case 4: /* IRM */
1130 if (sr) terminal->mode |= MODE_IRM;
1131 else terminal->mode &= ~MODE_IRM;
1132 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001133 case 20: /* LNM */
1134 if (sr) terminal->mode |= MODE_LF_NEWLINE;
1135 else terminal->mode &= ~MODE_LF_NEWLINE;
1136 break;
Callum Lowcaybbeac602011-01-07 19:46:58 +00001137 default:
1138 fprintf(stderr, "Unknown parameter: %d\n", code);
1139 break;
1140 }
1141 }
1142}
1143
1144static void
Callum Lowcay67a201d2011-01-12 19:23:41 +13001145handle_dcs(struct terminal *terminal)
1146{
1147}
1148
1149static void
1150handle_osc(struct terminal *terminal)
1151{
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001152 char *p;
1153 int code;
1154
1155 terminal->escape[terminal->escape_length++] = '\0';
1156 p = &terminal->escape[2];
1157 code = strtol(p, &p, 10);
1158 if (*p == ';') p++;
1159
1160 switch (code) {
1161 case 0: /* Icon name and window title */
1162 case 1: /* Icon label */
1163 case 2: /* Window title*/
1164 window_set_title(terminal->window, p);
1165 break;
1166 default:
1167 fprintf(stderr, "Unknown OSC escape code %d\n", code);
1168 break;
1169 }
Callum Lowcay67a201d2011-01-12 19:23:41 +13001170}
1171
1172static void
Kristian Høgsberg17809b12008-12-08 12:20:40 -05001173handle_escape(struct terminal *terminal)
1174{
Callum Lowcay15bdc5d2011-01-07 19:46:54 +00001175 union utf8_char *row;
Callum Lowcay30eeae52011-01-07 19:46:55 +00001176 struct attr *attr_row;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +00001177 char *p;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001178 int i, count, x, y, top, bottom;
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001179 int args[10], set[10] = { 0, };
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001180 char response[MAX_RESPONSE] = {0, };
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001181 struct rectangle allocation;
Kristian Høgsberg17809b12008-12-08 12:20:40 -05001182
1183 terminal->escape[terminal->escape_length++] = '\0';
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001184 i = 0;
1185 p = &terminal->escape[2];
1186 while ((isdigit(*p) || *p == ';') && i < 10) {
1187 if (*p == ';') {
Callum Lowcay30eeae52011-01-07 19:46:55 +00001188 if (!set[i]) {
1189 args[i] = 0;
1190 set[i] = 1;
1191 }
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001192 p++;
1193 i++;
1194 } else {
1195 args[i] = strtol(p, &p, 10);
1196 set[i] = 1;
Kristian Høgsberg17809b12008-12-08 12:20:40 -05001197 }
Kristian Høgsberg17809b12008-12-08 12:20:40 -05001198 }
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001199
1200 switch (*p) {
Callum Lowcay69e96582011-01-07 19:47:00 +00001201 case '@': /* ICH */
1202 count = set[0] ? args[0] : 1;
1203 if (count == 0) count = 1;
1204 terminal_shift_line(terminal, count);
1205 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001206 case 'A': /* CUU */
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001207 count = set[0] ? args[0] : 1;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001208 if (count == 0) count = 1;
1209 if (terminal->row - count >= terminal->margin_top)
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001210 terminal->row -= count;
1211 else
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001212 terminal->row = terminal->margin_top;
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001213 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001214 case 'B': /* CUD */
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001215 count = set[0] ? args[0] : 1;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001216 if (count == 0) count = 1;
1217 if (terminal->row + count <= terminal->margin_bottom)
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001218 terminal->row += count;
1219 else
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001220 terminal->row = terminal->margin_bottom;
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001221 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001222 case 'C': /* CUF */
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001223 count = set[0] ? args[0] : 1;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001224 if (count == 0) count = 1;
1225 if ((terminal->column + count) < terminal->width)
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001226 terminal->column += count;
1227 else
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001228 terminal->column = terminal->width - 1;
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001229 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001230 case 'D': /* CUB */
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001231 count = set[0] ? args[0] : 1;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001232 if (count == 0) count = 1;
1233 if ((terminal->column - count) >= 0)
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001234 terminal->column -= count;
1235 else
1236 terminal->column = 0;
1237 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001238 case 'E': /* CNL */
1239 count = set[0] ? args[0] : 1;
1240 if (terminal->row + count <= terminal->margin_bottom)
1241 terminal->row += count;
1242 else
1243 terminal->row = terminal->margin_bottom;
1244 terminal->column = 0;
1245 break;
1246 case 'F': /* CPL */
1247 count = set[0] ? args[0] : 1;
1248 if (terminal->row - count >= terminal->margin_top)
1249 terminal->row -= count;
1250 else
1251 terminal->row = terminal->margin_top;
1252 terminal->column = 0;
1253 break;
1254 case 'G': /* CHA */
1255 y = set[0] ? args[0] : 1;
1256 y = y <= 0 ? 1 : y > terminal->width ? terminal->width : y;
1257
1258 terminal->column = y - 1;
1259 break;
1260 case 'f': /* HVP */
1261 case 'H': /* CUP */
1262 x = (set[1] ? args[1] : 1) - 1;
1263 x = x < 0 ? 0 :
1264 (x >= terminal->width ? terminal->width - 1 : x);
1265
1266 y = (set[0] ? args[0] : 1) - 1;
1267 if (terminal->origin_mode) {
1268 y += terminal->margin_top;
1269 y = y < terminal->margin_top ? terminal->margin_top :
1270 (y > terminal->margin_bottom ? terminal->margin_bottom : y);
1271 } else {
1272 y = y < 0 ? 0 :
1273 (y >= terminal->height ? terminal->height - 1 : y);
1274 }
1275
1276 terminal->row = y;
1277 terminal->column = x;
1278 break;
1279 case 'I': /* CHT */
1280 count = set[0] ? args[0] : 1;
1281 if (count == 0) count = 1;
1282 while (count > 0 && terminal->column < terminal->width) {
1283 if (terminal->tab_ruler[terminal->column]) count--;
1284 terminal->column++;
1285 }
1286 terminal->column--;
1287 break;
1288 case 'J': /* ED */
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001289 row = terminal_get_row(terminal, terminal->row);
Callum Lowcay30eeae52011-01-07 19:46:55 +00001290 attr_row = terminal_get_attr_row(terminal, terminal->row);
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001291 if (!set[0] || args[0] == 0 || args[0] > 2) {
1292 memset(&row[terminal->column],
1293 0, (terminal->width - terminal->column) * sizeof(union utf8_char));
1294 attr_init(&attr_row[terminal->column],
1295 terminal->curr_attr, terminal->width - terminal->column);
1296 for (i = terminal->row + 1; i < terminal->height; i++) {
1297 memset(terminal_get_row(terminal, i),
1298 0, terminal->data_pitch);
1299 attr_init(terminal_get_attr_row(terminal, i),
1300 terminal->curr_attr, terminal->width);
1301 }
1302 } else if (args[0] == 1) {
1303 memset(row, 0, (terminal->column+1) * sizeof(union utf8_char));
1304 attr_init(attr_row, terminal->curr_attr, terminal->column+1);
1305 for (i = 0; i < terminal->row; i++) {
1306 memset(terminal_get_row(terminal, i),
1307 0, terminal->data_pitch);
1308 attr_init(terminal_get_attr_row(terminal, i),
1309 terminal->curr_attr, terminal->width);
1310 }
1311 } else if (args[0] == 2) {
1312 for (i = 0; i < terminal->height; i++) {
1313 memset(terminal_get_row(terminal, i),
1314 0, terminal->data_pitch);
1315 attr_init(terminal_get_attr_row(terminal, i),
1316 terminal->curr_attr, terminal->width);
1317 }
Callum Lowcay30eeae52011-01-07 19:46:55 +00001318 }
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001319 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001320 case 'K': /* EL */
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001321 row = terminal_get_row(terminal, terminal->row);
Callum Lowcay30eeae52011-01-07 19:46:55 +00001322 attr_row = terminal_get_attr_row(terminal, terminal->row);
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001323 if (!set[0] || args[0] == 0 || args[0] > 2) {
1324 memset(&row[terminal->column], 0,
1325 (terminal->width - terminal->column) * sizeof(union utf8_char));
1326 attr_init(&attr_row[terminal->column], terminal->curr_attr,
1327 terminal->width - terminal->column);
1328 } else if (args[0] == 1) {
1329 memset(row, 0, (terminal->column+1) * sizeof(union utf8_char));
1330 attr_init(attr_row, terminal->curr_attr, terminal->column+1);
1331 } else if (args[0] == 2) {
1332 memset(row, 0, terminal->data_pitch);
1333 attr_init(attr_row, terminal->curr_attr, terminal->width);
1334 }
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001335 break;
Callum Lowcay69e96582011-01-07 19:47:00 +00001336 case 'L': /* IL */
1337 count = set[0] ? args[0] : 1;
1338 if (count == 0) count = 1;
1339 if (terminal->row >= terminal->margin_top &&
1340 terminal->row < terminal->margin_bottom)
1341 {
1342 top = terminal->margin_top;
1343 terminal->margin_top = terminal->row;
1344 terminal_scroll(terminal, 0 - count);
1345 terminal->margin_top = top;
1346 } else if (terminal->row == terminal->margin_bottom) {
1347 memset(terminal_get_row(terminal, terminal->row),
1348 0, terminal->data_pitch);
1349 attr_init(terminal_get_attr_row(terminal, terminal->row),
1350 terminal->curr_attr, terminal->width);
1351 }
1352 break;
1353 case 'M': /* DL */
1354 count = set[0] ? args[0] : 1;
1355 if (count == 0) count = 1;
1356 if (terminal->row >= terminal->margin_top &&
1357 terminal->row < terminal->margin_bottom)
1358 {
1359 top = terminal->margin_top;
1360 terminal->margin_top = terminal->row;
1361 terminal_scroll(terminal, count);
1362 terminal->margin_top = top;
1363 } else if (terminal->row == terminal->margin_bottom) {
1364 memset(terminal_get_row(terminal, terminal->row),
1365 0, terminal->data_pitch);
1366 }
1367 break;
1368 case 'P': /* DCH */
1369 count = set[0] ? args[0] : 1;
1370 if (count == 0) count = 1;
1371 terminal_shift_line(terminal, 0 - count);
1372 break;
Callum Lowcaybbeac602011-01-07 19:46:58 +00001373 case 'S': /* SU */
1374 terminal_scroll(terminal, set[0] ? args[0] : 1);
1375 break;
1376 case 'T': /* SD */
1377 terminal_scroll(terminal, 0 - (set[0] ? args[0] : 1));
1378 break;
Callum Lowcay69e96582011-01-07 19:47:00 +00001379 case 'X': /* ECH */
1380 count = set[0] ? args[0] : 1;
1381 if (count == 0) count = 1;
1382 if ((terminal->column + count) > terminal->width)
1383 count = terminal->width - terminal->column;
1384 row = terminal_get_row(terminal, terminal->row);
1385 attr_row = terminal_get_attr_row(terminal, terminal->row);
1386 memset(&row[terminal->column], 0, count * sizeof(union utf8_char));
1387 attr_init(&attr_row[terminal->column], terminal->curr_attr, count);
1388 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001389 case 'Z': /* CBT */
1390 count = set[0] ? args[0] : 1;
1391 if (count == 0) count = 1;
1392 while (count > 0 && terminal->column >= 0) {
1393 if (terminal->tab_ruler[terminal->column]) count--;
1394 terminal->column--;
1395 }
1396 terminal->column++;
1397 break;
1398 case '`': /* HPA */
1399 y = set[0] ? args[0] : 1;
1400 y = y <= 0 ? 1 : y > terminal->width ? terminal->width : y;
1401
1402 terminal->column = y - 1;
1403 break;
1404 case 'b': /* REP */
1405 count = set[0] ? args[0] : 1;
1406 if (count == 0) count = 1;
1407 if (terminal->last_char.byte[0])
1408 for (i = 0; i < count; i++)
1409 handle_char(terminal, terminal->last_char);
1410 terminal->last_char.byte[0] = 0;
1411 break;
1412 case 'c': /* Primary DA */
Kristian Høgsberg26130862011-08-24 11:30:21 -04001413 terminal_write(terminal, "\e[?6c", 5);
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001414 break;
1415 case 'd': /* VPA */
1416 x = set[0] ? args[0] : 1;
1417 x = x <= 0 ? 1 : x > terminal->height ? terminal->height : x;
1418
1419 terminal->row = x - 1;
1420 break;
1421 case 'g': /* TBC */
1422 if (!set[0] || args[0] == 0) {
1423 terminal->tab_ruler[terminal->column] = 0;
1424 } else if (args[0] == 3) {
1425 memset(terminal->tab_ruler, 0, terminal->width);
1426 }
1427 break;
Callum Lowcaybbeac602011-01-07 19:46:58 +00001428 case 'h': /* SM */
1429 for(i = 0; i < 10 && set[i]; i++) {
1430 handle_term_parameter(terminal, args[i], 1);
1431 }
1432 break;
1433 case 'l': /* RM */
1434 for(i = 0; i < 10 && set[i]; i++) {
1435 handle_term_parameter(terminal, args[i], 0);
1436 }
1437 break;
Callum Lowcay30eeae52011-01-07 19:46:55 +00001438 case 'm': /* SGR */
Callum Lowcay30eeae52011-01-07 19:46:55 +00001439 for(i = 0; i < 10; i++) {
Callum Lowcay81179db2011-01-10 12:14:01 +13001440 if (i <= 7 && set[i] && set[i + 1] &&
1441 set[i + 2] && args[i + 1] == 5)
1442 {
1443 if (args[i] == 38) {
1444 handle_sgr(terminal, args[i + 2] + 256);
1445 break;
1446 } else if (args[i] == 48) {
1447 handle_sgr(terminal, args[i + 2] + 512);
1448 break;
1449 }
1450 }
Callum Lowcay30eeae52011-01-07 19:46:55 +00001451 if(set[i]) {
1452 handle_sgr(terminal, args[i]);
1453 } else if(i == 0) {
1454 handle_sgr(terminal, 0);
1455 break;
1456 } else {
1457 break;
1458 }
1459 }
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001460 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001461 case 'n': /* DSR */
1462 i = set[0] ? args[0] : 0;
1463 if (i == 0 || i == 5) {
Kristian Høgsberg26130862011-08-24 11:30:21 -04001464 terminal_write(terminal, "\e[0n", 4);
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001465 } else if (i == 6) {
1466 snprintf(response, MAX_RESPONSE, "\e[%d;%dR",
1467 terminal->origin_mode ?
1468 terminal->row+terminal->margin_top : terminal->row+1,
1469 terminal->column+1);
Kristian Høgsberg26130862011-08-24 11:30:21 -04001470 terminal_write(terminal, response, strlen(response));
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001471 }
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001472 break;
Callum Lowcaybbeac602011-01-07 19:46:58 +00001473 case 'r':
1474 if(!set[0]) {
1475 terminal->margin_top = 0;
1476 terminal->margin_bottom = terminal->height-1;
1477 terminal->row = 0;
1478 terminal->column = 0;
1479 } else {
1480 top = (set[0] ? args[0] : 1) - 1;
1481 top = top < 0 ? 0 :
1482 (top >= terminal->height ? terminal->height - 1 : top);
1483 bottom = (set[1] ? args[1] : 1) - 1;
1484 bottom = bottom < 0 ? 0 :
1485 (bottom >= terminal->height ? terminal->height - 1 : bottom);
1486 if(bottom > top) {
1487 terminal->margin_top = top;
1488 terminal->margin_bottom = bottom;
1489 } else {
1490 terminal->margin_top = 0;
1491 terminal->margin_bottom = terminal->height-1;
1492 }
1493 if(terminal->origin_mode)
1494 terminal->row = terminal->margin_top;
1495 else
1496 terminal->row = 0;
1497 terminal->column = 0;
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001498 }
1499 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001500 case 's':
1501 terminal->saved_row = terminal->row;
1502 terminal->saved_column = terminal->column;
1503 break;
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001504 case 't': /* windowOps */
1505 if (!set[0]) break;
1506 switch (args[0]) {
1507 case 4: /* resize px */
1508 if (set[1] && set[2]) {
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001509 widget_schedule_resize(terminal->widget,
1510 args[2], args[1]);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001511 }
1512 break;
1513 case 8: /* resize ch */
1514 if (set[1] && set[2]) {
1515 terminal_resize(terminal, args[2], args[1]);
1516 }
1517 break;
1518 case 13: /* report position */
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001519 widget_get_allocation(terminal->widget, &allocation);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001520 snprintf(response, MAX_RESPONSE, "\e[3;%d;%dt",
1521 allocation.x, allocation.y);
Kristian Høgsberg26130862011-08-24 11:30:21 -04001522 terminal_write(terminal, response, strlen(response));
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001523 break;
1524 case 14: /* report px */
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001525 widget_get_allocation(terminal->widget, &allocation);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001526 snprintf(response, MAX_RESPONSE, "\e[4;%d;%dt",
1527 allocation.height, allocation.width);
Kristian Høgsberg26130862011-08-24 11:30:21 -04001528 terminal_write(terminal, response, strlen(response));
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001529 break;
1530 case 18: /* report ch */
1531 snprintf(response, MAX_RESPONSE, "\e[9;%d;%dt",
1532 terminal->height, terminal->width);
Kristian Høgsberg26130862011-08-24 11:30:21 -04001533 terminal_write(terminal, response, strlen(response));
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001534 break;
1535 case 21: /* report title */
1536 snprintf(response, MAX_RESPONSE, "\e]l%s\e\\",
1537 window_get_title(terminal->window));
Kristian Høgsberg26130862011-08-24 11:30:21 -04001538 terminal_write(terminal, response, strlen(response));
Callum Lowcayef57a9b2011-01-14 20:46:23 +13001539 break;
1540 default:
1541 if (args[0] >= 24)
1542 terminal_resize(terminal, terminal->width, args[0]);
1543 else
1544 fprintf(stderr, "Unimplemented windowOp %d\n", args[0]);
1545 break;
1546 }
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001547 case 'u':
1548 terminal->row = terminal->saved_row;
1549 terminal->column = terminal->saved_column;
1550 break;
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001551 default:
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001552 fprintf(stderr, "Unknown CSI escape: %c\n", *p);
Kristian Høgsbergdbd54642008-12-08 22:22:25 -05001553 break;
1554 }
Kristian Høgsberg17809b12008-12-08 12:20:40 -05001555}
1556
1557static void
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001558handle_non_csi_escape(struct terminal *terminal, char code)
1559{
Callum Lowcaybbeac602011-01-07 19:46:58 +00001560 switch(code) {
1561 case 'M': /* RI */
1562 terminal->row -= 1;
1563 if(terminal->row < terminal->margin_top) {
1564 terminal->row = terminal->margin_top;
1565 terminal_scroll(terminal, -1);
1566 }
1567 break;
1568 case 'E': /* NEL */
1569 terminal->column = 0;
1570 // fallthrough
1571 case 'D': /* IND */
1572 terminal->row += 1;
1573 if(terminal->row > terminal->margin_bottom) {
1574 terminal->row = terminal->margin_bottom;
1575 terminal_scroll(terminal, +1);
1576 }
1577 break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001578 case 'c': /* RIS */
1579 terminal_init(terminal);
1580 break;
1581 case 'H': /* HTS */
1582 terminal->tab_ruler[terminal->column] = 1;
1583 break;
1584 case '7': /* DECSC */
1585 terminal->saved_row = terminal->row;
1586 terminal->saved_column = terminal->column;
1587 terminal->saved_attr = terminal->curr_attr;
1588 terminal->saved_origin_mode = terminal->origin_mode;
Callum Lowcay256e72f2011-01-07 19:47:01 +00001589 terminal->saved_cs = terminal->cs;
1590 terminal->saved_g0 = terminal->g0;
1591 terminal->saved_g1 = terminal->g1;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001592 break;
1593 case '8': /* DECRC */
1594 terminal->row = terminal->saved_row;
1595 terminal->column = terminal->saved_column;
1596 terminal->curr_attr = terminal->saved_attr;
1597 terminal->origin_mode = terminal->saved_origin_mode;
Callum Lowcay256e72f2011-01-07 19:47:01 +00001598 terminal->cs = terminal->saved_cs;
1599 terminal->g0 = terminal->saved_g0;
1600 terminal->g1 = terminal->saved_g1;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001601 break;
Callum Lowcay7e08e902011-01-07 19:47:02 +00001602 case '=': /* DECPAM */
1603 terminal->key_mode = KM_APPLICATION;
1604 break;
1605 case '>': /* DECPNM */
1606 terminal->key_mode = KM_NORMAL;
1607 break;
Callum Lowcaybbeac602011-01-07 19:46:58 +00001608 default:
1609 fprintf(stderr, "Unknown escape code: %c\n", code);
1610 break;
1611 }
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001612}
1613
1614static void
1615handle_special_escape(struct terminal *terminal, char special, char code)
1616{
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001617 int i, numChars;
1618
1619 if (special == '#') {
1620 switch(code) {
1621 case '8':
1622 /* fill with 'E', no cheap way to do this */
1623 memset(terminal->data, 0, terminal->data_pitch * terminal->height);
1624 numChars = terminal->width * terminal->height;
1625 for(i = 0; i < numChars; i++) {
1626 terminal->data[i].byte[0] = 'E';
1627 }
1628 break;
1629 default:
1630 fprintf(stderr, "Unknown HASH escape #%c\n", code);
1631 break;
1632 }
Callum Lowcay256e72f2011-01-07 19:47:01 +00001633 } else if (special == '(' || special == ')') {
1634 switch(code) {
1635 case '0':
1636 if (special == '(')
1637 terminal->g0 = CS_SPECIAL;
1638 else
1639 terminal->g1 = CS_SPECIAL;
1640 break;
1641 case 'A':
1642 if (special == '(')
1643 terminal->g0 = CS_UK;
1644 else
1645 terminal->g1 = CS_UK;
1646 break;
1647 case 'B':
1648 if (special == '(')
1649 terminal->g0 = CS_US;
1650 else
1651 terminal->g1 = CS_US;
1652 break;
1653 default:
1654 fprintf(stderr, "Unknown character set %c\n", code);
1655 break;
1656 }
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001657 } else {
1658 fprintf(stderr, "Unknown special escape %c%c\n", special, code);
1659 }
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001660}
1661
1662static void
Callum Lowcay30eeae52011-01-07 19:46:55 +00001663handle_sgr(struct terminal *terminal, int code)
1664{
1665 switch(code) {
1666 case 0:
1667 terminal->curr_attr = terminal->color_scheme->default_attr;
1668 break;
1669 case 1:
1670 terminal->curr_attr.a |= ATTRMASK_BOLD;
1671 if (terminal->curr_attr.fg < 8)
1672 terminal->curr_attr.fg += 8;
1673 break;
1674 case 4:
1675 terminal->curr_attr.a |= ATTRMASK_UNDERLINE;
1676 break;
1677 case 5:
1678 terminal->curr_attr.a |= ATTRMASK_BLINK;
1679 break;
Callum Lowcay81179db2011-01-10 12:14:01 +13001680 case 8:
1681 terminal->curr_attr.a |= ATTRMASK_CONCEALED;
1682 break;
Callum Lowcay30eeae52011-01-07 19:46:55 +00001683 case 2:
1684 case 21:
1685 case 22:
1686 terminal->curr_attr.a &= ~ATTRMASK_BOLD;
1687 if (terminal->curr_attr.fg < 16 && terminal->curr_attr.fg >= 8)
1688 terminal->curr_attr.fg -= 8;
1689 break;
1690 case 24:
1691 terminal->curr_attr.a &= ~ATTRMASK_UNDERLINE;
1692 break;
1693 case 25:
1694 terminal->curr_attr.a &= ~ATTRMASK_BLINK;
1695 break;
1696 case 7:
1697 case 26:
1698 terminal->curr_attr.a |= ATTRMASK_INVERSE;
1699 break;
1700 case 27:
1701 terminal->curr_attr.a &= ~ATTRMASK_INVERSE;
1702 break;
Callum Lowcay81179db2011-01-10 12:14:01 +13001703 case 28:
1704 terminal->curr_attr.a &= ~ATTRMASK_CONCEALED;
1705 break;
Callum Lowcay30eeae52011-01-07 19:46:55 +00001706 case 39:
1707 terminal->curr_attr.fg = terminal->color_scheme->default_attr.fg;
1708 break;
1709 case 49:
1710 terminal->curr_attr.bg = terminal->color_scheme->default_attr.bg;
1711 break;
1712 default:
1713 if(code >= 30 && code <= 37) {
1714 terminal->curr_attr.fg = code - 30;
1715 if (terminal->curr_attr.a & ATTRMASK_BOLD)
1716 terminal->curr_attr.fg += 8;
1717 } else if(code >= 40 && code <= 47) {
1718 terminal->curr_attr.bg = code - 40;
Callum Lowcay81179db2011-01-10 12:14:01 +13001719 } else if (code >= 90 && code <= 97) {
1720 terminal->curr_attr.fg = code - 90 + 8;
1721 } else if (code >= 100 && code <= 107) {
1722 terminal->curr_attr.bg = code - 100 + 8;
Callum Lowcay30eeae52011-01-07 19:46:55 +00001723 } else if(code >= 256 && code < 512) {
1724 terminal->curr_attr.fg = code - 256;
1725 } else if(code >= 512 && code < 768) {
1726 terminal->curr_attr.bg = code - 512;
1727 } else {
1728 fprintf(stderr, "Unknown SGR code: %d\n", code);
1729 }
1730 break;
1731 }
1732}
1733
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001734/* Returns 1 if c was special, otherwise 0 */
1735static int
1736handle_special_char(struct terminal *terminal, char c)
1737{
Kristian Høgsberg0fe782b2012-07-01 21:31:46 -04001738 union utf8_char *row;
1739 struct attr *attr_row;
1740
1741 row = terminal_get_row(terminal, terminal->row);
1742 attr_row = terminal_get_attr_row(terminal, terminal->row);
1743
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001744 switch(c) {
1745 case '\r':
1746 terminal->column = 0;
1747 break;
1748 case '\n':
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001749 if (terminal->mode & MODE_LF_NEWLINE) {
1750 terminal->column = 0;
1751 }
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001752 /* fallthrough */
1753 case '\v':
1754 case '\f':
Callum Lowcaybbeac602011-01-07 19:46:58 +00001755 terminal->row++;
1756 if(terminal->row > terminal->margin_bottom) {
1757 terminal->row = terminal->margin_bottom;
1758 terminal_scroll(terminal, +1);
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001759 }
1760
1761 break;
1762 case '\t':
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001763 while (terminal->column < terminal->width) {
Callum Lowcay69e96582011-01-07 19:47:00 +00001764 if (terminal->mode & MODE_IRM)
1765 terminal_shift_line(terminal, +1);
Kristian Høgsberg0fe782b2012-07-01 21:31:46 -04001766
1767 if (row[terminal->column].byte[0] == '\0') {
1768 row[terminal->column].byte[0] = ' ';
1769 row[terminal->column].byte[1] = '\0';
1770 attr_row[terminal->column] = terminal->curr_attr;
1771 }
1772
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001773 terminal->column++;
Kristian Høgsbergcca3c2f2012-06-20 15:56:13 -04001774 if (terminal->tab_ruler[terminal->column]) break;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001775 }
1776 if (terminal->column >= terminal->width) {
1777 terminal->column = terminal->width - 1;
1778 }
1779
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001780 break;
1781 case '\b':
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001782 if (terminal->column >= terminal->width) {
1783 terminal->column = terminal->width - 2;
1784 } else if (terminal->column > 0) {
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001785 terminal->column--;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001786 } else if (terminal->mode & MODE_AUTOWRAP) {
1787 terminal->column = terminal->width - 1;
1788 terminal->row -= 1;
1789 if (terminal->row < terminal->margin_top) {
1790 terminal->row = terminal->margin_top;
1791 terminal_scroll(terminal, -1);
1792 }
1793 }
1794
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001795 break;
1796 case '\a':
1797 /* Bell */
1798 break;
Callum Lowcay256e72f2011-01-07 19:47:01 +00001799 case '\x0E': /* SO */
1800 terminal->cs = terminal->g1;
1801 break;
1802 case '\x0F': /* SI */
1803 terminal->cs = terminal->g0;
1804 break;
Kristian Høgsberg2a1aa4e2012-08-03 09:37:05 -04001805 case '\0':
1806 break;
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001807 default:
1808 return 0;
1809 }
1810
1811 return 1;
1812}
1813
1814static void
1815handle_char(struct terminal *terminal, union utf8_char utf8)
1816{
1817 union utf8_char *row;
1818 struct attr *attr_row;
1819
1820 if (handle_special_char(terminal, utf8.byte[0])) return;
Callum Lowcay256e72f2011-01-07 19:47:01 +00001821
1822 apply_char_set(terminal->cs, &utf8);
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001823
1824 /* There are a whole lot of non-characters, control codes,
1825 * and formatting codes that should probably be ignored,
1826 * for example: */
1827 if (strncmp((char*) utf8.byte, "\xEF\xBB\xBF", 3) == 0) {
1828 /* BOM, ignore */
1829 return;
1830 }
1831
1832 /* Some of these non-characters should be translated, e.g.: */
1833 if (utf8.byte[0] < 32) {
1834 utf8.byte[0] = utf8.byte[0] + 64;
1835 }
1836
1837 /* handle right margin effects */
1838 if (terminal->column >= terminal->width) {
Callum Lowcay8e57dd52011-01-07 19:46:59 +00001839 if (terminal->mode & MODE_AUTOWRAP) {
1840 terminal->column = 0;
1841 terminal->row += 1;
1842 if (terminal->row > terminal->margin_bottom) {
1843 terminal->row = terminal->margin_bottom;
1844 terminal_scroll(terminal, +1);
1845 }
1846 } else {
1847 terminal->column--;
1848 }
1849 }
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001850
1851 row = terminal_get_row(terminal, terminal->row);
1852 attr_row = terminal_get_attr_row(terminal, terminal->row);
1853
Callum Lowcay69e96582011-01-07 19:47:00 +00001854 if (terminal->mode & MODE_IRM)
1855 terminal_shift_line(terminal, +1);
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001856 row[terminal->column] = utf8;
1857 attr_row[terminal->column++] = terminal->curr_attr;
1858
1859 if (utf8.ch != terminal->last_char.ch)
1860 terminal->last_char = utf8;
1861}
1862
Callum Lowcay30eeae52011-01-07 19:46:55 +00001863static void
Callum Lowcay67a201d2011-01-12 19:23:41 +13001864escape_append_utf8(struct terminal *terminal, union utf8_char utf8)
1865{
1866 int len, i;
1867
1868 if ((utf8.byte[0] & 0x80) == 0x00) len = 1;
1869 else if ((utf8.byte[0] & 0xE0) == 0xC0) len = 2;
1870 else if ((utf8.byte[0] & 0xF0) == 0xE0) len = 3;
1871 else if ((utf8.byte[0] & 0xF8) == 0xF0) len = 4;
1872 else len = 1; /* Invalid, cannot happen */
1873
1874 if (terminal->escape_length + len <= MAX_ESCAPE) {
1875 for (i = 0; i < len; i++)
1876 terminal->escape[terminal->escape_length + i] = utf8.byte[i];
1877 terminal->escape_length += len;
1878 } else if (terminal->escape_length < MAX_ESCAPE) {
1879 terminal->escape[terminal->escape_length++] = 0;
1880 }
1881}
1882
1883static void
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05001884terminal_data(struct terminal *terminal, const char *data, size_t length)
1885{
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -04001886 unsigned int i;
Callum Lowcay15bdc5d2011-01-07 19:46:54 +00001887 union utf8_char utf8;
1888 enum utf8_state parser_state;
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05001889
1890 for (i = 0; i < length; i++) {
Callum Lowcay15bdc5d2011-01-07 19:46:54 +00001891 parser_state =
1892 utf8_next_char(&terminal->state_machine, data[i]);
1893 switch(parser_state) {
1894 case utf8state_accept:
1895 utf8.ch = terminal->state_machine.s.ch;
1896 break;
1897 case utf8state_reject:
1898 /* the unicode replacement character */
1899 utf8.byte[0] = 0xEF;
1900 utf8.byte[1] = 0xBF;
1901 utf8.byte[2] = 0xBD;
1902 utf8.byte[3] = 0x00;
1903 break;
1904 default:
1905 continue;
1906 }
1907
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001908 /* assume escape codes never use non-ASCII characters */
Callum Lowcay67a201d2011-01-12 19:23:41 +13001909 switch (terminal->state) {
1910 case escape_state_escape:
1911 escape_append_utf8(terminal, utf8);
1912 switch (utf8.byte[0]) {
1913 case 'P': /* DCS */
1914 terminal->state = escape_state_dcs;
1915 break;
1916 case '[': /* CSI */
1917 terminal->state = escape_state_csi;
1918 break;
1919 case ']': /* OSC */
1920 terminal->state = escape_state_osc;
1921 break;
1922 case '#':
1923 case '(':
1924 case ')': /* special */
1925 terminal->state = escape_state_special;
1926 break;
1927 case '^': /* PM (not implemented) */
1928 case '_': /* APC (not implemented) */
1929 terminal->state = escape_state_ignore;
1930 break;
1931 default:
1932 terminal->state = escape_state_normal;
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001933 handle_non_csi_escape(terminal, utf8.byte[0]);
Callum Lowcay67a201d2011-01-12 19:23:41 +13001934 break;
Kristian Høgsberg17809b12008-12-08 12:20:40 -05001935 }
Callum Lowcay67a201d2011-01-12 19:23:41 +13001936 continue;
1937 case escape_state_csi:
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001938 if (handle_special_char(terminal, utf8.byte[0]) != 0) {
1939 /* do nothing */
1940 } else if (utf8.byte[0] == '?') {
Callum Lowcay67a201d2011-01-12 19:23:41 +13001941 terminal->escape_flags |= ESC_FLAG_WHAT;
1942 } else if (utf8.byte[0] == '>') {
1943 terminal->escape_flags |= ESC_FLAG_GT;
1944 } else if (utf8.byte[0] == '!') {
1945 terminal->escape_flags |= ESC_FLAG_BANG;
1946 } else if (utf8.byte[0] == '$') {
1947 terminal->escape_flags |= ESC_FLAG_CASH;
1948 } else if (utf8.byte[0] == '\'') {
1949 terminal->escape_flags |= ESC_FLAG_SQUOTE;
1950 } else if (utf8.byte[0] == '"') {
1951 terminal->escape_flags |= ESC_FLAG_DQUOTE;
1952 } else if (utf8.byte[0] == ' ') {
1953 terminal->escape_flags |= ESC_FLAG_SPACE;
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001954 } else {
Callum Lowcay67a201d2011-01-12 19:23:41 +13001955 escape_append_utf8(terminal, utf8);
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001956 if (terminal->escape_length >= MAX_ESCAPE)
Callum Lowcay67a201d2011-01-12 19:23:41 +13001957 terminal->state = escape_state_normal;
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001958 }
1959
1960 if (isalpha(utf8.byte[0]) || utf8.byte[0] == '@' ||
1961 utf8.byte[0] == '`')
1962 {
Callum Lowcay67a201d2011-01-12 19:23:41 +13001963 terminal->state = escape_state_normal;
Kristian Høgsberg17809b12008-12-08 12:20:40 -05001964 handle_escape(terminal);
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001965 } else {
Callum Lowcayb8609ad2011-01-07 19:46:57 +00001966 }
Callum Lowcay67a201d2011-01-12 19:23:41 +13001967 continue;
1968 case escape_state_inner_escape:
1969 if (utf8.byte[0] == '\\') {
1970 terminal->state = escape_state_normal;
1971 if (terminal->outer_state == escape_state_dcs) {
1972 handle_dcs(terminal);
1973 } else if (terminal->outer_state == escape_state_osc) {
1974 handle_osc(terminal);
1975 }
1976 } else if (utf8.byte[0] == '\e') {
1977 terminal->state = terminal->outer_state;
1978 escape_append_utf8(terminal, utf8);
1979 if (terminal->escape_length >= MAX_ESCAPE)
1980 terminal->state = escape_state_normal;
1981 } else {
1982 terminal->state = terminal->outer_state;
1983 if (terminal->escape_length < MAX_ESCAPE)
1984 terminal->escape[terminal->escape_length++] = '\e';
1985 escape_append_utf8(terminal, utf8);
1986 if (terminal->escape_length >= MAX_ESCAPE)
1987 terminal->state = escape_state_normal;
1988 }
1989 continue;
1990 case escape_state_dcs:
1991 case escape_state_osc:
1992 case escape_state_ignore:
1993 if (utf8.byte[0] == '\e') {
1994 terminal->outer_state = terminal->state;
1995 terminal->state = escape_state_inner_escape;
1996 } else if (utf8.byte[0] == '\a' && terminal->state == escape_state_osc) {
1997 terminal->state = escape_state_normal;
1998 handle_osc(terminal);
1999 } else {
2000 escape_append_utf8(terminal, utf8);
2001 if (terminal->escape_length >= MAX_ESCAPE)
2002 terminal->state = escape_state_normal;
2003 }
2004 continue;
2005 case escape_state_special:
2006 escape_append_utf8(terminal, utf8);
2007 terminal->state = escape_state_normal;
2008 if (isdigit(utf8.byte[0]) || isalpha(utf8.byte[0])) {
2009 handle_special_escape(terminal, terminal->escape[1],
2010 utf8.byte[0]);
2011 }
2012 continue;
2013 default:
2014 break;
Kristian Høgsbergf04e8382008-12-08 00:07:49 -05002015 }
2016
Callum Lowcayb8609ad2011-01-07 19:46:57 +00002017 /* this is valid, because ASCII characters are never used to
2018 * introduce a multibyte sequence in UTF-8 */
2019 if (utf8.byte[0] == '\e') {
Callum Lowcay67a201d2011-01-12 19:23:41 +13002020 terminal->state = escape_state_escape;
2021 terminal->outer_state = escape_state_normal;
Kristian Høgsberg17809b12008-12-08 12:20:40 -05002022 terminal->escape[0] = '\e';
2023 terminal->escape_length = 1;
Callum Lowcay67a201d2011-01-12 19:23:41 +13002024 terminal->escape_flags = 0;
Callum Lowcayb8609ad2011-01-07 19:46:57 +00002025 } else {
2026 handle_char(terminal, utf8);
2027 } /* if */
2028 } /* for */
Kristian Høgsberg721f09f2008-12-08 11:13:26 -05002029
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002030 window_schedule_redraw(terminal->window);
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002031}
2032
2033static void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002034data_source_target(void *data,
2035 struct wl_data_source *source, const char *mime_type)
2036{
2037 fprintf(stderr, "data_source_target, %s\n", mime_type);
2038}
2039
2040static void
2041data_source_send(void *data,
2042 struct wl_data_source *source,
2043 const char *mime_type, int32_t fd)
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002044{
Kristian Høgsberg31cce052011-01-21 15:18:55 -05002045 struct terminal *terminal = data;
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002046
Kristian Høgsberg31cce052011-01-21 15:18:55 -05002047 terminal_send_selection(terminal, fd);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002048}
2049
2050static void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002051data_source_cancelled(void *data, struct wl_data_source *source)
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002052{
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002053 wl_data_source_destroy(source);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002054}
2055
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002056static const struct wl_data_source_listener data_source_listener = {
2057 data_source_target,
2058 data_source_send,
2059 data_source_cancelled
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002060};
2061
Kristian Høgsberg67ace202012-07-23 21:56:31 -04002062static void
2063fullscreen_handler(struct window *window, void *data)
2064{
2065 struct terminal *terminal = data;
2066
Kristian Høgsbergb7ed4cb2012-10-10 11:37:46 -04002067 window_set_fullscreen(window, !window_is_fullscreen(terminal->window));
Kristian Høgsberg67ace202012-07-23 21:56:31 -04002068}
2069
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002070static int
2071handle_bound_key(struct terminal *terminal,
2072 struct input *input, uint32_t sym, uint32_t time)
2073{
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002074 struct terminal *new_terminal;
2075
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002076 switch (sym) {
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002077 case XKB_KEY_X:
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002078 /* Cut selection; terminal doesn't do cut, fall
2079 * through to copy. */
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002080 case XKB_KEY_C:
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002081 terminal->selection =
2082 display_create_data_source(terminal->display);
2083 wl_data_source_offer(terminal->selection,
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002084 "text/plain;charset=utf-8");
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002085 wl_data_source_add_listener(terminal->selection,
2086 &data_source_listener, terminal);
Kristian Høgsbergfee91be2012-06-02 21:21:41 -04002087 input_set_selection(input, terminal->selection,
2088 display_get_serial(terminal->display));
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002089 return 1;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002090 case XKB_KEY_V:
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002091 input_receive_selection_data_to_fd(input,
2092 "text/plain;charset=utf-8",
2093 terminal->master);
2094
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002095 return 1;
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002096
2097 case XKB_KEY_N:
Kristian Høgsbergb7ed4cb2012-10-10 11:37:46 -04002098 new_terminal = terminal_create(terminal->display);
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002099 if (terminal_run(new_terminal, option_shell))
2100 terminal_destroy(new_terminal);
2101
2102 return 1;
2103
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002104 default:
2105 return 0;
2106 }
2107}
2108
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05002109static void
2110key_handler(struct window *window, struct input *input, uint32_t time,
Daniel Stonec9785ea2012-05-30 16:31:52 +01002111 uint32_t key, uint32_t sym, enum wl_keyboard_key_state state,
2112 void *data)
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002113{
2114 struct terminal *terminal = data;
Callum Lowcay8e57dd52011-01-07 19:46:59 +00002115 char ch[MAX_RESPONSE];
Kristian Høgsberg88fd4082012-06-21 15:55:03 -04002116 uint32_t modifiers, serial;
Philipp Brüschweilerfdb4b022012-08-18 13:38:38 +02002117 int ret, len = 0;
2118 bool convert_utf8 = true;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002119
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05002120 modifiers = input_get_modifiers(input);
Kristian Høgsberg70163132012-05-08 15:55:39 -04002121 if ((modifiers & MOD_CONTROL_MASK) &&
2122 (modifiers & MOD_SHIFT_MASK) &&
Daniel Stonec9785ea2012-05-30 16:31:52 +01002123 state == WL_KEYBOARD_KEY_STATE_PRESSED &&
2124 handle_bound_key(terminal, input, sym, time))
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05002125 return;
2126
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002127 switch (sym) {
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002128 case XKB_KEY_BackSpace:
Kristian Høgsbergb7f94bf2012-06-21 12:29:36 -04002129 if (modifiers & MOD_ALT_MASK)
2130 ch[len++] = 0x1b;
Kristian Høgsberg71a4cf42012-06-20 17:57:56 -04002131 ch[len++] = 0x7f;
2132 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002133 case XKB_KEY_Tab:
2134 case XKB_KEY_Linefeed:
2135 case XKB_KEY_Clear:
2136 case XKB_KEY_Pause:
2137 case XKB_KEY_Scroll_Lock:
2138 case XKB_KEY_Sys_Req:
2139 case XKB_KEY_Escape:
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002140 ch[len++] = sym & 0x7f;
2141 break;
2142
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002143 case XKB_KEY_Return:
Callum Lowcay8e57dd52011-01-07 19:46:59 +00002144 if (terminal->mode & MODE_LF_NEWLINE) {
2145 ch[len++] = 0x0D;
2146 ch[len++] = 0x0A;
2147 } else {
2148 ch[len++] = 0x0D;
2149 }
2150 break;
2151
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002152 case XKB_KEY_Shift_L:
2153 case XKB_KEY_Shift_R:
2154 case XKB_KEY_Control_L:
2155 case XKB_KEY_Control_R:
2156 case XKB_KEY_Alt_L:
2157 case XKB_KEY_Alt_R:
Kristian Høgsberg22fbcf72012-06-22 12:18:56 -04002158 case XKB_KEY_Meta_L:
2159 case XKB_KEY_Meta_R:
2160 case XKB_KEY_Super_L:
2161 case XKB_KEY_Super_R:
2162 case XKB_KEY_Hyper_L:
2163 case XKB_KEY_Hyper_R:
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002164 break;
2165
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002166 case XKB_KEY_Insert:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002167 len = function_key_response('[', 2, modifiers, '~', ch);
2168 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002169 case XKB_KEY_Delete:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002170 if (terminal->mode & MODE_DELETE_SENDS_DEL) {
2171 ch[len++] = '\x04';
2172 } else {
2173 len = function_key_response('[', 3, modifiers, '~', ch);
2174 }
2175 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002176 case XKB_KEY_Page_Up:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002177 len = function_key_response('[', 5, modifiers, '~', ch);
2178 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002179 case XKB_KEY_Page_Down:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002180 len = function_key_response('[', 6, modifiers, '~', ch);
2181 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002182 case XKB_KEY_F1:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002183 len = function_key_response('O', 1, modifiers, 'P', ch);
2184 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002185 case XKB_KEY_F2:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002186 len = function_key_response('O', 1, modifiers, 'Q', ch);
2187 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002188 case XKB_KEY_F3:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002189 len = function_key_response('O', 1, modifiers, 'R', ch);
2190 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002191 case XKB_KEY_F4:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002192 len = function_key_response('O', 1, modifiers, 'S', ch);
2193 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002194 case XKB_KEY_F5:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002195 len = function_key_response('[', 15, modifiers, '~', ch);
2196 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002197 case XKB_KEY_F6:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002198 len = function_key_response('[', 17, modifiers, '~', ch);
2199 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002200 case XKB_KEY_F7:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002201 len = function_key_response('[', 18, modifiers, '~', ch);
2202 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002203 case XKB_KEY_F8:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002204 len = function_key_response('[', 19, modifiers, '~', ch);
2205 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002206 case XKB_KEY_F9:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002207 len = function_key_response('[', 20, modifiers, '~', ch);
2208 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002209 case XKB_KEY_F10:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002210 len = function_key_response('[', 21, modifiers, '~', ch);
2211 break;
Kristian Høgsbergbef52d12012-05-11 11:24:29 -04002212 case XKB_KEY_F12:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002213 len = function_key_response('[', 24, modifiers, '~', ch);
2214 break;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002215 default:
Callum Lowcay7e08e902011-01-07 19:47:02 +00002216 /* Handle special keys with alternate mappings */
2217 len = apply_key_map(terminal->key_mode, sym, modifiers, ch);
2218 if (len != 0) break;
2219
Kristian Høgsberg70163132012-05-08 15:55:39 -04002220 if (modifiers & MOD_CONTROL_MASK) {
Callum Lowcay7e08e902011-01-07 19:47:02 +00002221 if (sym >= '3' && sym <= '7')
2222 sym = (sym & 0x1f) + 8;
2223
2224 if (!((sym >= '!' && sym <= '/') ||
2225 (sym >= '8' && sym <= '?') ||
2226 (sym >= '0' && sym <= '2'))) sym = sym & 0x1f;
2227 else if (sym == '2') sym = 0x00;
2228 else if (sym == '/') sym = 0x1F;
2229 else if (sym == '8' || sym == '?') sym = 0x7F;
Kristian Høgsbergae9e0732012-06-21 12:30:15 -04002230 }
Philipp Brüschweilerfdb4b022012-08-18 13:38:38 +02002231 if (modifiers & MOD_ALT_MASK) {
2232 if (terminal->mode & MODE_ALT_SENDS_ESC) {
2233 ch[len++] = 0x1b;
2234 } else {
2235 sym = sym | 0x80;
2236 convert_utf8 = false;
2237 }
Callum Lowcay7e08e902011-01-07 19:47:02 +00002238 }
2239
Philipp Brüschweilerfdb4b022012-08-18 13:38:38 +02002240 if ((sym < 128) ||
2241 (!convert_utf8 && sym < 256)) {
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002242 ch[len++] = sym;
Philipp Brüschweilerfdb4b022012-08-18 13:38:38 +02002243 } else {
2244 ret = xkb_keysym_to_utf8(sym, ch + len,
2245 MAX_RESPONSE - len);
2246 if (ret < 0)
2247 fprintf(stderr,
2248 "Warning: buffer too small to encode "
2249 "UTF8 character\n");
2250 else
2251 len += ret;
2252 }
2253
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002254 break;
2255 }
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002256
Kristian Høgsbergb24ab802012-06-22 12:17:17 -04002257 if (state == WL_KEYBOARD_KEY_STATE_PRESSED && len > 0) {
Kristian Høgsberg26130862011-08-24 11:30:21 -04002258 terminal_write(terminal, ch, len);
Kristian Høgsbergb24ab802012-06-22 12:17:17 -04002259
2260 /* Hide cursor, except if this was coming from a
2261 * repeating key press. */
2262 serial = display_get_serial(terminal->display);
2263 if (terminal->hide_cursor_serial != serial) {
2264 input_set_pointer_image(input, CURSOR_BLANK);
2265 terminal->hide_cursor_serial = serial;
2266 }
2267 }
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002268}
2269
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002270static void
2271keyboard_focus_handler(struct window *window,
Kristian Høgsberg43788b12010-07-28 23:50:12 -04002272 struct input *device, void *data)
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002273{
2274 struct terminal *terminal = data;
2275
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002276 window_schedule_redraw(terminal->window);
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002277}
2278
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002279static int wordsep(int ch)
2280{
2281 const char extra[] = "-,./?%&#:_=+@~";
2282
Andre Heider552d12b2012-08-02 20:59:43 +02002283 if (ch > 127)
2284 return 1;
2285
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002286 return ch == 0 || !(isalpha(ch) || isdigit(ch) || strchr(extra, ch));
2287}
2288
2289static int
2290recompute_selection(struct terminal *terminal)
2291{
2292 struct rectangle allocation;
2293 int col, x, width, height;
2294 int start_row, end_row;
Kristian Høgsberg0fe782b2012-07-01 21:31:46 -04002295 int word_start, eol;
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002296 int side_margin, top_margin;
2297 int start_x, end_x;
2298 int cw, ch;
2299 union utf8_char *data;
2300
2301 cw = terminal->extents.max_x_advance;
2302 ch = terminal->extents.height;
2303 widget_get_allocation(terminal->widget, &allocation);
2304 width = terminal->width * cw;
2305 height = terminal->height * ch;
2306 side_margin = allocation.x + (allocation.width - width) / 2;
2307 top_margin = allocation.y + (allocation.height - height) / 2;
2308
Kristian Høgsberg8268d412012-06-29 11:35:24 -04002309 start_row = (terminal->selection_start_y - top_margin + ch) / ch - 1;
2310 end_row = (terminal->selection_end_y - top_margin + ch) / ch - 1;
2311
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002312 if (start_row < end_row ||
2313 (start_row == end_row &&
2314 terminal->selection_start_x < terminal->selection_end_x)) {
2315 terminal->selection_start_row = start_row;
2316 terminal->selection_end_row = end_row;
2317 start_x = terminal->selection_start_x;
2318 end_x = terminal->selection_end_x;
2319 } else {
2320 terminal->selection_start_row = end_row;
2321 terminal->selection_end_row = start_row;
2322 start_x = terminal->selection_end_x;
2323 end_x = terminal->selection_start_x;
2324 }
2325
Kristian Høgsberg0fe782b2012-07-01 21:31:46 -04002326 eol = 0;
Kristian Høgsberg8268d412012-06-29 11:35:24 -04002327 if (terminal->selection_start_row < 0) {
2328 terminal->selection_start_row = 0;
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002329 terminal->selection_start_col = 0;
Kristian Høgsberg8268d412012-06-29 11:35:24 -04002330 } else {
2331 x = side_margin + cw / 2;
2332 data = terminal_get_row(terminal,
2333 terminal->selection_start_row);
2334 word_start = 0;
2335 for (col = 0; col < terminal->width; col++, x += cw) {
2336 if (col == 0 || wordsep(data[col - 1].ch))
2337 word_start = col;
Kristian Høgsberg0fe782b2012-07-01 21:31:46 -04002338 if (data[col].ch != 0)
2339 eol = col + 1;
Kristian Høgsberg8268d412012-06-29 11:35:24 -04002340 if (start_x < x)
2341 break;
2342 }
2343
2344 switch (terminal->dragging) {
2345 case SELECT_LINE:
2346 terminal->selection_start_col = 0;
2347 break;
2348 case SELECT_WORD:
2349 terminal->selection_start_col = word_start;
2350 break;
2351 case SELECT_CHAR:
2352 terminal->selection_start_col = col;
2353 break;
2354 }
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002355 }
2356
Kristian Høgsberg8268d412012-06-29 11:35:24 -04002357 if (terminal->selection_end_row >= terminal->height) {
2358 terminal->selection_end_row = terminal->height;
2359 terminal->selection_end_col = 0;
2360 } else {
2361 x = side_margin + cw / 2;
2362 data = terminal_get_row(terminal, terminal->selection_end_row);
2363 for (col = 0; col < terminal->width; col++, x += cw) {
2364 if (terminal->dragging == SELECT_CHAR && end_x < x)
2365 break;
2366 if (terminal->dragging == SELECT_WORD &&
2367 end_x < x && wordsep(data[col].ch))
2368 break;
2369 }
Kristian Høgsberg8268d412012-06-29 11:35:24 -04002370 terminal->selection_end_col = col;
2371 }
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002372
Kristian Høgsberg0fe782b2012-07-01 21:31:46 -04002373 if (terminal->selection_end_col != terminal->selection_start_col ||
2374 terminal->selection_start_row != terminal->selection_end_row) {
2375 col = terminal->selection_end_col;
2376 if (col > 0 && data[col - 1].ch == 0)
2377 terminal->selection_end_col = terminal->width;
2378 data = terminal_get_row(terminal, terminal->selection_start_row);
2379 if (data[terminal->selection_start_col].ch == 0)
2380 terminal->selection_start_col = eol;
2381 }
2382
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002383 return 1;
2384}
2385
Kristian Høgsberg59826582011-01-20 11:56:57 -05002386static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05002387button_handler(struct widget *widget,
Kristian Høgsberg59826582011-01-20 11:56:57 -05002388 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01002389 uint32_t button,
2390 enum wl_pointer_button_state state, void *data)
Kristian Høgsberg59826582011-01-20 11:56:57 -05002391{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002392 struct terminal *terminal = data;
Kristian Høgsberg59826582011-01-20 11:56:57 -05002393
2394 switch (button) {
2395 case 272:
Daniel Stone4dbadb12012-05-30 16:31:51 +01002396 if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002397
2398 if (time - terminal->button_time < 500)
2399 terminal->click_count++;
2400 else
2401 terminal->click_count = 1;
2402
2403 terminal->button_time = time;
2404 terminal->dragging =
2405 (terminal->click_count - 1) % 3 + SELECT_CHAR;
2406
Kristian Høgsberg59826582011-01-20 11:56:57 -05002407 input_get_position(input,
2408 &terminal->selection_start_x,
2409 &terminal->selection_start_y);
2410 terminal->selection_end_x = terminal->selection_start_x;
2411 terminal->selection_end_y = terminal->selection_start_y;
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002412 if (recompute_selection(terminal))
2413 widget_schedule_redraw(widget);
Kristian Høgsberg59826582011-01-20 11:56:57 -05002414 } else {
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002415 terminal->dragging = SELECT_NONE;
Kristian Høgsberg59826582011-01-20 11:56:57 -05002416 }
2417 break;
2418 }
2419}
2420
2421static int
Kristian Høgsberg29784402012-06-28 14:27:02 -04002422enter_handler(struct widget *widget,
2423 struct input *input, float x, float y, void *data)
2424{
2425 return CURSOR_IBEAM;
2426}
2427
2428static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05002429motion_handler(struct widget *widget,
Kristian Høgsberg59826582011-01-20 11:56:57 -05002430 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002431 float x, float y, void *data)
Kristian Høgsberg59826582011-01-20 11:56:57 -05002432{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002433 struct terminal *terminal = data;
Kristian Høgsberg59826582011-01-20 11:56:57 -05002434
2435 if (terminal->dragging) {
Kristian Høgsberg59826582011-01-20 11:56:57 -05002436 input_get_position(input,
2437 &terminal->selection_end_x,
2438 &terminal->selection_end_y);
Kristian Høgsberg333db0a2012-06-27 17:43:10 -04002439
2440 if (recompute_selection(terminal))
2441 widget_schedule_redraw(widget);
Kristian Høgsberg59826582011-01-20 11:56:57 -05002442 }
2443
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002444 return CURSOR_IBEAM;
Kristian Høgsberg59826582011-01-20 11:56:57 -05002445}
2446
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002447static struct terminal *
Kristian Høgsbergb7ed4cb2012-10-10 11:37:46 -04002448terminal_create(struct display *display)
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002449{
2450 struct terminal *terminal;
Kristian Høgsberg09531622010-06-14 23:22:15 -04002451 cairo_surface_t *surface;
2452 cairo_t *cr;
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002453
2454 terminal = malloc(sizeof *terminal);
2455 if (terminal == NULL)
2456 return terminal;
2457
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002458 memset(terminal, 0, sizeof *terminal);
Callum Lowcay30eeae52011-01-07 19:46:55 +00002459 terminal->color_scheme = &DEFAULT_COLORS;
2460 terminal_init(terminal);
Callum Lowcaybbeac602011-01-07 19:46:58 +00002461 terminal->margin_top = 0;
Callum Lowcay86653ed2011-01-07 19:47:03 +00002462 terminal->margin_bottom = -1;
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002463 terminal->window = window_create(display);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002464 terminal->widget = frame_create(terminal->window, terminal);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002465 window_set_title(terminal->window, "Wayland Terminal");
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002466 widget_set_transparent(terminal->widget, 0);
Callum Lowcay15bdc5d2011-01-07 19:46:54 +00002467
2468 init_state_machine(&terminal->state_machine);
Callum Lowcay30eeae52011-01-07 19:46:55 +00002469 init_color_table(terminal);
Callum Lowcay15bdc5d2011-01-07 19:46:54 +00002470
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002471 terminal->display = display;
Kristian Høgsberg1584c572008-12-08 12:59:37 -05002472 terminal->margin = 5;
Kristian Høgsberg44e3c5e2008-12-07 21:51:58 -05002473
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002474 window_set_user_data(terminal->window, terminal);
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002475 window_set_key_handler(terminal->window, key_handler);
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002476 window_set_keyboard_focus_handler(terminal->window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002477 keyboard_focus_handler);
Kristian Høgsberg67ace202012-07-23 21:56:31 -04002478 window_set_fullscreen_handler(terminal->window, fullscreen_handler);
2479
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002480 widget_set_redraw_handler(terminal->widget, redraw_handler);
2481 widget_set_resize_handler(terminal->widget, resize_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002482 widget_set_button_handler(terminal->widget, button_handler);
Kristian Høgsberg29784402012-06-28 14:27:02 -04002483 widget_set_enter_handler(terminal->widget, enter_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002484 widget_set_motion_handler(terminal->widget, motion_handler);
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002485
Kristian Høgsberg09531622010-06-14 23:22:15 -04002486 surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 0, 0);
2487 cr = cairo_create(surface);
Kristian Høgsberg38912df2012-06-27 17:52:23 -04002488 cairo_set_font_size(cr, option_font_size);
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -04002489 cairo_select_font_face (cr, option_font,
Kristian Høgsberg7ae6b1a2010-12-25 16:58:31 -05002490 CAIRO_FONT_SLANT_NORMAL,
2491 CAIRO_FONT_WEIGHT_BOLD);
2492 terminal->font_bold = cairo_get_scaled_font (cr);
2493 cairo_scaled_font_reference(terminal->font_bold);
2494
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -04002495 cairo_select_font_face (cr, option_font,
Kristian Høgsberg7ae6b1a2010-12-25 16:58:31 -05002496 CAIRO_FONT_SLANT_NORMAL,
2497 CAIRO_FONT_WEIGHT_NORMAL);
2498 terminal->font_normal = cairo_get_scaled_font (cr);
2499 cairo_scaled_font_reference(terminal->font_normal);
2500
Kristian Høgsberg09531622010-06-14 23:22:15 -04002501 cairo_font_extents(cr, &terminal->extents);
2502 cairo_destroy(cr);
2503 cairo_surface_destroy(surface);
2504
Kristian Høgsbergd3a19652012-07-20 11:32:51 -04002505 terminal_resize(terminal, 20, 5); /* Set minimum size first */
Kristian Høgsberga1627922012-06-20 17:30:03 -04002506 terminal_resize(terminal, 80, 25);
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002507
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002508 wl_list_insert(terminal_list.prev, &terminal->link);
2509
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002510 return terminal;
2511}
2512
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002513static void
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002514terminal_destroy(struct terminal *terminal)
2515{
2516 window_destroy(terminal->window);
2517 close(terminal->master);
2518 wl_list_remove(&terminal->link);
2519 free(terminal);
2520
2521 if (wl_list_empty(&terminal_list))
2522 exit(0);
2523}
2524
2525static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002526io_handler(struct task *task, uint32_t events)
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002527{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002528 struct terminal *terminal =
2529 container_of(task, struct terminal, io_task);
2530 char buffer[256];
2531 int len;
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002532
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002533 if (events & EPOLLHUP) {
2534 terminal_destroy(terminal);
2535 return;
2536 }
Tim Wiederhakef71accc2011-01-19 23:14:33 +01002537
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002538 len = read(terminal->master, buffer, sizeof buffer);
2539 if (len < 0)
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002540 terminal_destroy(terminal);
2541 else
2542 terminal_data(terminal, buffer, len);
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002543}
2544
2545static int
2546terminal_run(struct terminal *terminal, const char *path)
2547{
Kristian Høgsbergf0c7b202008-12-12 13:39:03 -05002548 int master;
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002549 pid_t pid;
2550
2551 pid = forkpty(&master, NULL, NULL, NULL);
2552 if (pid == 0) {
Kristian Høgsbergde845cf2012-06-20 22:14:31 -04002553 setenv("TERM", option_term, 1);
2554 setenv("COLORTERM", option_term, 1);
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002555 if (execl(path, path, NULL)) {
2556 printf("exec failed: %m\n");
2557 exit(EXIT_FAILURE);
2558 }
Kristian Høgsbergf0c7b202008-12-12 13:39:03 -05002559 } else if (pid < 0) {
2560 fprintf(stderr, "failed to fork and create pty (%m).\n");
2561 return -1;
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002562 }
2563
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002564 terminal->master = master;
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002565 fcntl(master, F_SETFL, O_NONBLOCK);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002566 terminal->io_task.run = io_handler;
2567 display_watch_fd(terminal->display, terminal->master,
2568 EPOLLIN | EPOLLHUP, &terminal->io_task);
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002569
Kristian Høgsbergb7ed4cb2012-10-10 11:37:46 -04002570 window_set_fullscreen(terminal->window, option_fullscreen);
2571 if (!window_is_fullscreen(terminal->window))
Kristian Høgsberg547da5a2011-09-13 20:58:00 -04002572 terminal_resize(terminal, 80, 24);
2573
Kristian Høgsberg269d6e32008-12-07 23:17:31 -05002574 return 0;
2575}
2576
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -04002577static const struct config_key terminal_config_keys[] = {
2578 { "font", CONFIG_KEY_STRING, &option_font },
Kristian Høgsberg38912df2012-06-27 17:52:23 -04002579 { "font-size", CONFIG_KEY_INTEGER, &option_font_size },
Kristian Høgsbergde845cf2012-06-20 22:14:31 -04002580 { "term", CONFIG_KEY_STRING, &option_term },
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -04002581};
2582
2583static const struct config_section config_sections[] = {
2584 { "terminal",
2585 terminal_config_keys, ARRAY_LENGTH(terminal_config_keys) },
2586};
2587
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04002588static const struct weston_option terminal_options[] = {
2589 { WESTON_OPTION_BOOLEAN, "fullscreen", 'f', &option_fullscreen },
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -04002590 { WESTON_OPTION_STRING, "font", 0, &option_font },
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002591 { WESTON_OPTION_STRING, "shell", 0, &option_shell },
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002592};
2593
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002594int main(int argc, char *argv[])
2595{
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002596 struct display *d;
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002597 struct terminal *terminal;
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -04002598 char *config_file;
2599
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002600 option_shell = getenv("SHELL");
2601 if (!option_shell)
2602 option_shell = "/bin/bash";
2603
Kristian Høgsberg82cd36b2012-06-20 15:29:07 -04002604 config_file = config_file_path("weston.ini");
2605 parse_config_file(config_file,
2606 config_sections, ARRAY_LENGTH(config_sections),
2607 NULL);
2608 free(config_file);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002609
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04002610 argc = parse_options(terminal_options,
2611 ARRAY_LENGTH(terminal_options), argc, argv);
2612
2613 d = display_create(argc, argv);
Yuval Fledele9f5e362010-11-22 21:34:19 +02002614 if (d == NULL) {
2615 fprintf(stderr, "failed to create display: %m\n");
2616 return -1;
2617 }
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002618
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002619 wl_list_init(&terminal_list);
Kristian Høgsbergb7ed4cb2012-10-10 11:37:46 -04002620 terminal = terminal_create(d);
Kristian Høgsbergb21fb9f2012-06-20 22:44:03 -04002621 if (terminal_run(terminal, option_shell))
Kristian Høgsbergf0c7b202008-12-12 13:39:03 -05002622 exit(EXIT_FAILURE);
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002623
Kristian Høgsberg7824d812010-06-08 14:59:44 -04002624 display_run(d);
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002625
2626 return 0;
2627}