JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
769de8b8e9bbce56b93ff485e1118351302cea8c
[st.git] / st.c
1 /* See LICENSE for licence details. */
2 #define _XOPEN_SOURCE 600
3 #include <ctype.h>
4 #include <errno.h>
5 #include <fcntl.h>
6 #include <limits.h>
7 #include <locale.h>
8 #include <pwd.h>
9 #include <stdarg.h>
10 #include <stdbool.h>
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <signal.h>
15 #include <sys/ioctl.h>
16 #include <sys/select.h>
17 #include <sys/stat.h>
18 #include <sys/time.h>
19 #include <sys/types.h>
20 #include <sys/wait.h>
21 #include <time.h>
22 #include <unistd.h>
23 #include <X11/Xatom.h>
24 #include <X11/Xlib.h>
25 #include <X11/Xutil.h>
26 #include <X11/cursorfont.h>
27 #include <X11/keysym.h>
28 #include <X11/extensions/Xdbe.h>
29 #include <X11/Xft/Xft.h>
30 #include <fontconfig/fontconfig.h>
31
32 #define Glyph Glyph_
33 #define Font Font_
34 #define Draw XftDraw *
35 #define Colour XftColor
36 #define Colourmap Colormap
37
38 #if   defined(__linux)
39  #include <pty.h>
40 #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
41  #include <util.h>
42 #elif defined(__FreeBSD__) || defined(__DragonFly__)
43  #include <libutil.h>
44 #endif
45
46 #define USAGE \
47         "st " VERSION " (c) 2010-2012 st engineers\n" \
48         "usage: st [-v] [-c class] [-f font] [-g geometry] [-o file]" \
49         " [-t title] [-w windowid] [-e command ...]\n"
50
51 /* XEMBED messages */
52 #define XEMBED_FOCUS_IN  4
53 #define XEMBED_FOCUS_OUT 5
54
55 /* Arbitrary sizes */
56 #define UTF_SIZ       4
57 #define ESC_BUF_SIZ   (128*UTF_SIZ)
58 #define ESC_ARG_SIZ   16
59 #define STR_BUF_SIZ   ESC_BUF_SIZ
60 #define STR_ARG_SIZ   ESC_ARG_SIZ
61 #define DRAW_BUF_SIZ  20*1024
62 #define XK_ANY_MOD    UINT_MAX
63 #define XK_NO_MOD     0
64
65 #define REDRAW_TIMEOUT (80*1000) /* 80 ms */
66
67 /* macros */
68 #define SERRNO strerror(errno)
69 #define MIN(a, b)  ((a) < (b) ? (a) : (b))
70 #define MAX(a, b)  ((a) < (b) ? (b) : (a))
71 #define LEN(a)     (sizeof(a) / sizeof(a[0]))
72 #define DEFAULT(a, b)     (a) = (a) ? (a) : (b)
73 #define BETWEEN(x, a, b)  ((a) <= (x) && (x) <= (b))
74 #define LIMIT(x, a, b)    (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
75 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
76 #define IS_SET(flag) ((term.mode & (flag)) != 0)
77 #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_usec-t2.tv_usec)/1000)
78
79 #define VT102ID "\033[?6c"
80
81 enum glyph_attribute {
82         ATTR_NULL      = 0,
83         ATTR_REVERSE   = 1,
84         ATTR_UNDERLINE = 2,
85         ATTR_BOLD      = 4,
86         ATTR_GFX       = 8,
87         ATTR_ITALIC    = 16,
88         ATTR_BLINK     = 32,
89 };
90
91 enum cursor_movement {
92         CURSOR_SAVE,
93         CURSOR_LOAD
94 };
95
96 enum cursor_state {
97         CURSOR_DEFAULT  = 0,
98         CURSOR_WRAPNEXT = 1,
99         CURSOR_ORIGIN   = 2
100 };
101
102 enum glyph_state {
103         GLYPH_SET   = 1,
104         GLYPH_DIRTY = 2
105 };
106
107 enum term_mode {
108         MODE_WRAP        = 1,
109         MODE_INSERT      = 2,
110         MODE_APPKEYPAD   = 4,
111         MODE_ALTSCREEN   = 8,
112         MODE_CRLF        = 16,
113         MODE_MOUSEBTN    = 32,
114         MODE_MOUSEMOTION = 64,
115         MODE_MOUSE       = 32|64,
116         MODE_REVERSE     = 128,
117         MODE_KBDLOCK     = 256,
118         MODE_HIDE        = 512,
119         MODE_ECHO        = 1024,
120         MODE_APPCURSOR   = 2048
121 };
122
123 enum escape_state {
124         ESC_START      = 1,
125         ESC_CSI = 2,
126         ESC_STR = 4, /* DSC, OSC, PM, APC */
127         ESC_ALTCHARSET = 8,
128         ESC_STR_END    = 16, /* a final string was encountered */
129         ESC_TEST       = 32, /* Enter in test mode */
130 };
131
132 enum window_state {
133         WIN_VISIBLE = 1,
134         WIN_REDRAW  = 2,
135         WIN_FOCUSED = 4
136 };
137
138 /* bit macro */
139 #undef B0
140 enum { B0=1, B1=2, B2=4, B3=8, B4=16, B5=32, B6=64, B7=128 };
141
142 typedef unsigned char uchar;
143 typedef unsigned int uint;
144 typedef unsigned long ulong;
145 typedef unsigned short ushort;
146
147 typedef struct {
148         char c[UTF_SIZ];     /* character code */
149         uchar mode;  /* attribute flags */
150         ushort fg;   /* foreground  */
151         ushort bg;   /* background  */
152         uchar state; /* state flags    */
153 } Glyph;
154
155 typedef Glyph* Line;
156
157 typedef struct {
158         Glyph attr;      /* current char attributes */
159         int x;
160         int y;
161         char state;
162 } TCursor;
163
164 /* CSI Escape sequence structs */
165 /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
166 typedef struct {
167         char buf[ESC_BUF_SIZ]; /* raw string */
168         int len;               /* raw string length */
169         char priv;
170         int arg[ESC_ARG_SIZ];
171         int narg;              /* nb of args */
172         char mode;
173 } CSIEscape;
174
175 /* STR Escape sequence structs */
176 /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
177 typedef struct {
178         char type;           /* ESC type ... */
179         char buf[STR_BUF_SIZ]; /* raw string */
180         int len;               /* raw string length */
181         char *args[STR_ARG_SIZ];
182         int narg;             /* nb of args */
183 } STREscape;
184
185 /* Internal representation of the screen */
186 typedef struct {
187         int row;        /* nb row */
188         int col;        /* nb col */
189         Line *line;     /* screen */
190         Line *alt;      /* alternate screen */
191         bool *dirty;    /* dirtyness of lines */
192         TCursor c;      /* cursor */
193         int top;        /* top    scroll limit */
194         int bot;        /* bottom scroll limit */
195         int mode;       /* terminal mode flags */
196         int esc;        /* escape state flags */
197         bool numlock;   /* lock numbers in keyboard */
198         bool *tabs;
199 } Term;
200
201 /* Purely graphic info */
202 typedef struct {
203         Display *dpy;
204         Colourmap cmap;
205         Window win;
206         Drawable buf;
207         Atom xembed, wmdeletewin;
208         XIM xim;
209         XIC xic;
210         Draw draw;
211         Visual *vis;
212         int scr;
213         bool isfixed; /* is fixed geometry? */
214         int fx, fy, fw, fh; /* fixed geometry */
215         int tw, th; /* tty width and height */
216         int w, h; /* window width and height */
217         int ch; /* char height */
218         int cw; /* char width  */
219         char state; /* focus, redraw, visible */
220 } XWindow;
221
222 typedef struct {
223         KeySym k;
224         uint mask;
225         char s[ESC_BUF_SIZ];
226         /* three valued logic variables: 0 indifferent, 1 on, -1 off */
227         signed char appkey;             /* application keypad */
228         signed char appcursor;          /* application cursor */
229         signed char crlf;               /* crlf mode          */
230 } Key;
231
232 /* TODO: use better name for vars... */
233 typedef struct {
234         int mode;
235         int bx, by;
236         int ex, ey;
237         struct {
238                 int x, y;
239         } b, e;
240         char *clip;
241         Atom xtarget;
242         bool alt;
243         struct timeval tclick1;
244         struct timeval tclick2;
245 } Selection;
246
247 typedef union {
248         int i;
249         unsigned int ui;
250         float f;
251         const void *v;
252 } Arg;
253
254 typedef struct {
255         unsigned int mod;
256         KeySym keysym;
257         void (*func)(const Arg *);
258         const Arg arg;
259 } Shortcut;
260
261 /* function definitions used in config.h */
262 static void xzoom(const Arg *);
263 static void selpaste(const Arg *);
264 static void numlock(const Arg *);
265
266 /* Config.h for applying patches and the configuration. */
267 #include "config.h"
268
269 /* Font structure */
270 typedef struct {
271         int height;
272         int width;
273         int ascent;
274         int descent;
275         short lbearing;
276         short rbearing;
277         XftFont *match;
278         FcFontSet *set;
279         FcPattern *pattern;
280 } Font;
281
282 /* Drawing Context */
283 typedef struct {
284         Colour col[LEN(colorname) < 256 ? 256 : LEN(colorname)];
285         Font font, bfont, ifont, ibfont;
286         GC gc;
287 } DC;
288
289 static void die(const char *, ...);
290 static void draw(void);
291 static void redraw(int);
292 static void drawregion(int, int, int, int);
293 static void execsh(void);
294 static void sigchld(int);
295 static void run(void);
296
297 static void csidump(void);
298 static void csihandle(void);
299 static void csiparse(void);
300 static void csireset(void);
301 static void strdump(void);
302 static void strhandle(void);
303 static void strparse(void);
304 static void strreset(void);
305
306 static void tclearregion(int, int, int, int);
307 static void tcursor(int);
308 static void tdeletechar(int);
309 static void tdeleteline(int);
310 static void tinsertblank(int);
311 static void tinsertblankline(int);
312 static void tmoveto(int, int);
313 static void tmoveato(int x, int y);
314 static void tnew(int, int);
315 static void tnewline(int);
316 static void tputtab(bool);
317 static void tputc(char *, int);
318 static void treset(void);
319 static int tresize(int, int);
320 static void tscrollup(int, int);
321 static void tscrolldown(int, int);
322 static void tsetattr(int*, int);
323 static void tsetchar(char *, Glyph *, int, int);
324 static void tsetscroll(int, int);
325 static void tswapscreen(void);
326 static void tsetdirt(int, int);
327 static void tsetmode(bool, bool, int *, int);
328 static void tfulldirt(void);
329 static void techo(char *, int);
330
331 static inline bool match(uint, uint);
332 static void ttynew(void);
333 static void ttyread(void);
334 static void ttyresize(void);
335 static void ttywrite(const char *, size_t);
336
337 static void xdraws(char *, Glyph, int, int, int, int);
338 static void xhints(void);
339 static void xclear(int, int, int, int);
340 static void xdrawcursor(void);
341 static void xinit(void);
342 static void xloadcols(void);
343 static int xloadfont(Font *, FcPattern *);
344 static void xloadfonts(char *, int);
345 static void xresettitle(void);
346 static void xseturgency(int);
347 static void xsetsel(char*);
348 static void xtermclear(int, int, int, int);
349 static void xunloadfonts(void);
350 static void xresize(int, int);
351
352 static void expose(XEvent *);
353 static void visibility(XEvent *);
354 static void unmap(XEvent *);
355 static char *kmap(KeySym, uint);
356 static void kpress(XEvent *);
357 static void cmessage(XEvent *);
358 static void cresize(int, int);
359 static void resize(XEvent *);
360 static void focus(XEvent *);
361 static void brelease(XEvent *);
362 static void bpress(XEvent *);
363 static void bmotion(XEvent *);
364 static void selnotify(XEvent *);
365 static void selclear(XEvent *);
366 static void selrequest(XEvent *);
367
368 static void selinit(void);
369 static inline bool selected(int, int);
370 static void selcopy(void);
371 static void selscroll(int, int);
372
373 static int utf8decode(char *, long *);
374 static int utf8encode(long *, char *);
375 static int utf8size(char *);
376 static int isfullutf8(char *, int);
377
378 static ssize_t xwrite(int, char *, size_t);
379 static void *xmalloc(size_t);
380 static void *xrealloc(void *, size_t);
381 static void *xcalloc(size_t, size_t);
382
383 static void (*handler[LASTEvent])(XEvent *) = {
384         [KeyPress] = kpress,
385         [ClientMessage] = cmessage,
386         [ConfigureNotify] = resize,
387         [VisibilityNotify] = visibility,
388         [UnmapNotify] = unmap,
389         [Expose] = expose,
390         [FocusIn] = focus,
391         [FocusOut] = focus,
392         [MotionNotify] = bmotion,
393         [ButtonPress] = bpress,
394         [ButtonRelease] = brelease,
395         [SelectionClear] = selclear,
396         [SelectionNotify] = selnotify,
397         [SelectionRequest] = selrequest,
398 };
399
400 /* Globals */
401 static DC dc;
402 static XWindow xw;
403 static Term term;
404 static CSIEscape csiescseq;
405 static STREscape strescseq;
406 static int cmdfd;
407 static pid_t pid;
408 static Selection sel;
409 static int iofd = -1;
410 static char **opt_cmd = NULL;
411 static char *opt_io = NULL;
412 static char *opt_title = NULL;
413 static char *opt_embed = NULL;
414 static char *opt_class = NULL;
415 static char *opt_font = NULL;
416
417 bool usedbe = False;
418
419 static char *usedfont = NULL;
420 static int usedfontsize = 0;
421
422 /* Font Ring Cache */
423 enum {
424         FRC_NORMAL,
425         FRC_ITALIC,
426         FRC_BOLD,
427         FRC_ITALICBOLD
428 };
429
430 typedef struct {
431         XftFont *font;
432         long c;
433         int flags;
434 } Fontcache;
435
436 /*
437  * Fontcache is a ring buffer, with frccur as current position and frclen as
438  * the current length of used elements.
439  */
440
441 static Fontcache frc[1024];
442 static int frccur = -1, frclen = 0;
443
444 ssize_t
445 xwrite(int fd, char *s, size_t len) {
446         size_t aux = len;
447
448         while(len > 0) {
449                 ssize_t r = write(fd, s, len);
450                 if(r < 0)
451                         return r;
452                 len -= r;
453                 s += r;
454         }
455         return aux;
456 }
457
458 void *
459 xmalloc(size_t len) {
460         void *p = malloc(len);
461
462         if(!p)
463                 die("Out of memory\n");
464
465         return p;
466 }
467
468 void *
469 xrealloc(void *p, size_t len) {
470         if((p = realloc(p, len)) == NULL)
471                 die("Out of memory\n");
472
473         return p;
474 }
475
476 void *
477 xcalloc(size_t nmemb, size_t size) {
478         void *p = calloc(nmemb, size);
479
480         if(!p)
481                 die("Out of memory\n");
482
483         return p;
484 }
485
486 int
487 utf8decode(char *s, long *u) {
488         uchar c;
489         int i, n, rtn;
490
491         rtn = 1;
492         c = *s;
493         if(~c & B7) { /* 0xxxxxxx */
494                 *u = c;
495                 return rtn;
496         } else if((c & (B7|B6|B5)) == (B7|B6)) { /* 110xxxxx */
497                 *u = c&(B4|B3|B2|B1|B0);
498                 n = 1;
499         } else if((c & (B7|B6|B5|B4)) == (B7|B6|B5)) { /* 1110xxxx */
500                 *u = c&(B3|B2|B1|B0);
501                 n = 2;
502         } else if((c & (B7|B6|B5|B4|B3)) == (B7|B6|B5|B4)) { /* 11110xxx */
503                 *u = c & (B2|B1|B0);
504                 n = 3;
505         } else {
506                 goto invalid;
507         }
508
509         for(i = n, ++s; i > 0; --i, ++rtn, ++s) {
510                 c = *s;
511                 if((c & (B7|B6)) != B7) /* 10xxxxxx */
512                         goto invalid;
513                 *u <<= 6;
514                 *u |= c & (B5|B4|B3|B2|B1|B0);
515         }
516
517         if((n == 1 && *u < 0x80) ||
518            (n == 2 && *u < 0x800) ||
519            (n == 3 && *u < 0x10000) ||
520            (*u >= 0xD800 && *u <= 0xDFFF)) {
521                 goto invalid;
522         }
523
524         return rtn;
525 invalid:
526         *u = 0xFFFD;
527
528         return rtn;
529 }
530
531 int
532 utf8encode(long *u, char *s) {
533         uchar *sp;
534         ulong uc;
535         int i, n;
536
537         sp = (uchar *)s;
538         uc = *u;
539         if(uc < 0x80) {
540                 *sp = uc; /* 0xxxxxxx */
541                 return 1;
542         } else if(*u < 0x800) {
543                 *sp = (uc >> 6) | (B7|B6); /* 110xxxxx */
544                 n = 1;
545         } else if(uc < 0x10000) {
546                 *sp = (uc >> 12) | (B7|B6|B5); /* 1110xxxx */
547                 n = 2;
548         } else if(uc <= 0x10FFFF) {
549                 *sp = (uc >> 18) | (B7|B6|B5|B4); /* 11110xxx */
550                 n = 3;
551         } else {
552                 goto invalid;
553         }
554
555         for(i=n,++sp; i>0; --i,++sp)
556                 *sp = ((uc >> 6*(i-1)) & (B5|B4|B3|B2|B1|B0)) | B7; /* 10xxxxxx */
557
558         return n+1;
559 invalid:
560         /* U+FFFD */
561         *s++ = '\xEF';
562         *s++ = '\xBF';
563         *s = '\xBD';
564
565         return 3;
566 }
567
568 /* use this if your buffer is less than UTF_SIZ, it returns 1 if you can decode
569    UTF-8 otherwise return 0 */
570 int
571 isfullutf8(char *s, int b) {
572         uchar *c1, *c2, *c3;
573
574         c1 = (uchar *)s;
575         c2 = (uchar *)++s;
576         c3 = (uchar *)++s;
577         if(b < 1) {
578                 return 0;
579         } else if((*c1&(B7|B6|B5)) == (B7|B6) && b == 1) {
580                 return 0;
581         } else if((*c1&(B7|B6|B5|B4)) == (B7|B6|B5) &&
582             ((b == 1) ||
583             ((b == 2) && (*c2&(B7|B6)) == B7))) {
584                 return 0;
585         } else if((*c1&(B7|B6|B5|B4|B3)) == (B7|B6|B5|B4) &&
586             ((b == 1) ||
587             ((b == 2) && (*c2&(B7|B6)) == B7) ||
588             ((b == 3) && (*c2&(B7|B6)) == B7 && (*c3&(B7|B6)) == B7))) {
589                 return 0;
590         } else {
591                 return 1;
592         }
593 }
594
595 int
596 utf8size(char *s) {
597         uchar c = *s;
598
599         if(~c&B7) {
600                 return 1;
601         } else if((c&(B7|B6|B5)) == (B7|B6)) {
602                 return 2;
603         } else if((c&(B7|B6|B5|B4)) == (B7|B6|B5)) {
604                 return 3;
605         } else {
606                 return 4;
607         }
608 }
609
610 void
611 selinit(void) {
612         memset(&sel.tclick1, 0, sizeof(sel.tclick1));
613         memset(&sel.tclick2, 0, sizeof(sel.tclick2));
614         sel.mode = 0;
615         sel.bx = -1;
616         sel.clip = NULL;
617         sel.xtarget = XInternAtom(xw.dpy, "UTF8_STRING", 0);
618         if(sel.xtarget == None)
619                 sel.xtarget = XA_STRING;
620 }
621
622 static int
623 x2col(int x) {
624         x -= borderpx;
625         x /= xw.cw;
626
627         return LIMIT(x, 0, term.col-1);
628 }
629
630 static int
631 y2row(int y) {
632         y -= borderpx;
633         y /= xw.ch;
634
635         return LIMIT(y, 0, term.row-1);
636 }
637
638 static inline bool
639 selected(int x, int y) {
640         int bx, ex;
641
642         if(sel.ey == y && sel.by == y) {
643                 bx = MIN(sel.bx, sel.ex);
644                 ex = MAX(sel.bx, sel.ex);
645                 return BETWEEN(x, bx, ex);
646         }
647
648         return ((sel.b.y < y && y < sel.e.y)
649                         || (y == sel.e.y && x <= sel.e.x))
650                         || (y == sel.b.y && x >= sel.b.x
651                                 && (x <= sel.e.x || sel.b.y != sel.e.y));
652 }
653
654 void
655 getbuttoninfo(XEvent *e) {
656         sel.alt = IS_SET(MODE_ALTSCREEN);
657
658         sel.ex = x2col(e->xbutton.x);
659         sel.ey = y2row(e->xbutton.y);
660
661         sel.b.x = sel.by < sel.ey ? sel.bx : sel.ex;
662         sel.b.y = MIN(sel.by, sel.ey);
663         sel.e.x = sel.by < sel.ey ? sel.ex : sel.bx;
664         sel.e.y = MAX(sel.by, sel.ey);
665 }
666
667 void
668 mousereport(XEvent *e) {
669         int x = x2col(e->xbutton.x);
670         int y = y2row(e->xbutton.y);
671         int button = e->xbutton.button;
672         int state = e->xbutton.state;
673         char buf[] = { '\033', '[', 'M', 0, 32+x+1, 32+y+1 };
674         static int ob, ox, oy;
675
676         /* from urxvt */
677         if(e->xbutton.type == MotionNotify) {
678                 if(!IS_SET(MODE_MOUSEMOTION) || (x == ox && y == oy))
679                         return;
680                 button = ob + 32;
681                 ox = x, oy = y;
682         } else if(e->xbutton.type == ButtonRelease || button == AnyButton) {
683                 button = 3;
684         } else {
685                 button -= Button1;
686                 if(button >= 3)
687                         button += 64 - 3;
688                 if(e->xbutton.type == ButtonPress) {
689                         ob = button;
690                         ox = x, oy = y;
691                 }
692         }
693
694         buf[3] = 32 + button + (state & ShiftMask ? 4 : 0)
695                 + (state & Mod4Mask    ? 8  : 0)
696                 + (state & ControlMask ? 16 : 0);
697
698         ttywrite(buf, sizeof(buf));
699 }
700
701 void
702 bpress(XEvent *e) {
703         if(IS_SET(MODE_MOUSE)) {
704                 mousereport(e);
705         } else if(e->xbutton.button == Button1) {
706                 if(sel.bx != -1) {
707                         sel.bx = -1;
708                         tsetdirt(sel.b.y, sel.e.y);
709                         draw();
710                 }
711                 sel.mode = 1;
712                 sel.ex = sel.bx = x2col(e->xbutton.x);
713                 sel.ey = sel.by = y2row(e->xbutton.y);
714         } else if(e->xbutton.button == Button4) {
715                 ttywrite("\031", 1);
716         } else if(e->xbutton.button == Button5) {
717                 ttywrite("\005", 1);
718         }
719 }
720
721 void
722 selcopy(void) {
723         char *str, *ptr, *p;
724         int x, y, bufsize, is_selected = 0, size;
725         Glyph *gp, *last;
726
727         if(sel.bx == -1) {
728                 str = NULL;
729         } else {
730                 bufsize = (term.col+1) * (sel.e.y-sel.b.y+1) * UTF_SIZ;
731                 ptr = str = xmalloc(bufsize);
732
733                 /* append every set & selected glyph to the selection */
734                 for(y = 0; y < term.row; y++) {
735                         gp = &term.line[y][0];
736                         last = gp + term.col;
737
738                         while(--last >= gp && !(last->state & GLYPH_SET))
739                                 /* nothing */;
740
741                         for(x = 0; gp <= last; x++, ++gp) {
742                                 if(!(is_selected = selected(x, y)))
743                                         continue;
744
745                                 p = (gp->state & GLYPH_SET) ? gp->c : " ";
746                                 size = utf8size(p);
747                                 memcpy(ptr, p, size);
748                                 ptr += size;
749                         }
750                         /* \n at the end of every selected line except for the last one */
751                         if(is_selected && y < sel.e.y)
752                                 *ptr++ = '\n';
753                 }
754                 *ptr = 0;
755         }
756         xsetsel(str);
757 }
758
759 void
760 selnotify(XEvent *e) {
761         ulong nitems, ofs, rem;
762         int format;
763         uchar *data;
764         Atom type;
765
766         ofs = 0;
767         do {
768                 if(XGetWindowProperty(xw.dpy, xw.win, XA_PRIMARY, ofs, BUFSIZ/4,
769                                         False, AnyPropertyType, &type, &format,
770                                         &nitems, &rem, &data)) {
771                         fprintf(stderr, "Clipboard allocation failed\n");
772                         return;
773                 }
774                 ttywrite((const char *) data, nitems * format / 8);
775                 XFree(data);
776                 /* number of 32-bit chunks returned */
777                 ofs += nitems * format / 32;
778         } while(rem > 0);
779 }
780
781 void
782 selpaste(const Arg *dummy) {
783         XConvertSelection(xw.dpy, XA_PRIMARY, sel.xtarget, XA_PRIMARY,
784                         xw.win, CurrentTime);
785 }
786
787 void selclear(XEvent *e) {
788         if(sel.bx == -1)
789                 return;
790         sel.bx = -1;
791         tsetdirt(sel.b.y, sel.e.y);
792 }
793
794 void
795 selrequest(XEvent *e) {
796         XSelectionRequestEvent *xsre;
797         XSelectionEvent xev;
798         Atom xa_targets, string;
799
800         xsre = (XSelectionRequestEvent *) e;
801         xev.type = SelectionNotify;
802         xev.requestor = xsre->requestor;
803         xev.selection = xsre->selection;
804         xev.target = xsre->target;
805         xev.time = xsre->time;
806         /* reject */
807         xev.property = None;
808
809         xa_targets = XInternAtom(xw.dpy, "TARGETS", 0);
810         if(xsre->target == xa_targets) {
811                 /* respond with the supported type */
812                 string = sel.xtarget;
813                 XChangeProperty(xsre->display, xsre->requestor, xsre->property,
814                                 XA_ATOM, 32, PropModeReplace,
815                                 (uchar *) &string, 1);
816                 xev.property = xsre->property;
817         } else if(xsre->target == sel.xtarget && sel.clip != NULL) {
818                 XChangeProperty(xsre->display, xsre->requestor, xsre->property,
819                                 xsre->target, 8, PropModeReplace,
820                                 (uchar *) sel.clip, strlen(sel.clip));
821                 xev.property = xsre->property;
822         }
823
824         /* all done, send a notification to the listener */
825         if(!XSendEvent(xsre->display, xsre->requestor, True, 0, (XEvent *) &xev))
826                 fprintf(stderr, "Error sending SelectionNotify event\n");
827 }
828
829 void
830 xsetsel(char *str) {
831         /* register the selection for both the clipboard and the primary */
832         Atom clipboard;
833
834         free(sel.clip);
835         sel.clip = str;
836
837         XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, CurrentTime);
838
839         clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
840         XSetSelectionOwner(xw.dpy, clipboard, xw.win, CurrentTime);
841 }
842
843 void
844 brelease(XEvent *e) {
845         struct timeval now;
846
847         if(IS_SET(MODE_MOUSE)) {
848                 mousereport(e);
849                 return;
850         }
851
852         if(e->xbutton.button == Button2) {
853                 selpaste(NULL);
854         } else if(e->xbutton.button == Button1) {
855                 sel.mode = 0;
856                 getbuttoninfo(e);
857                 term.dirty[sel.ey] = 1;
858                 if(sel.bx == sel.ex && sel.by == sel.ey) {
859                         sel.bx = -1;
860                         gettimeofday(&now, NULL);
861
862                         if(TIMEDIFF(now, sel.tclick2) <= tripleclicktimeout) {
863                                 /* triple click on the line */
864                                 sel.b.x = sel.bx = 0;
865                                 sel.e.x = sel.ex = term.col;
866                                 sel.b.y = sel.e.y = sel.ey;
867                                 selcopy();
868                         } else if(TIMEDIFF(now, sel.tclick1) <= doubleclicktimeout) {
869                                 /* double click to select word */
870                                 sel.bx = sel.ex;
871                                 while(sel.bx > 0 && term.line[sel.ey][sel.bx-1].state & GLYPH_SET &&
872                                                 term.line[sel.ey][sel.bx-1].c[0] != ' ') {
873                                         sel.bx--;
874                                 }
875                                 sel.b.x = sel.bx;
876                                 while(sel.ex < term.col-1 && term.line[sel.ey][sel.ex+1].state & GLYPH_SET &&
877                                                 term.line[sel.ey][sel.ex+1].c[0] != ' ') {
878                                         sel.ex++;
879                                 }
880                                 sel.e.x = sel.ex;
881                                 sel.b.y = sel.e.y = sel.ey;
882                                 selcopy();
883                         }
884                 } else {
885                         selcopy();
886                 }
887         }
888
889         memcpy(&sel.tclick2, &sel.tclick1, sizeof(struct timeval));
890         gettimeofday(&sel.tclick1, NULL);
891 }
892
893 void
894 bmotion(XEvent *e) {
895         int starty, endy, oldey, oldex;
896
897         if(IS_SET(MODE_MOUSE)) {
898                 mousereport(e);
899                 return;
900         }
901
902         if(!sel.mode)
903                 return;
904
905         oldey = sel.ey;
906         oldex = sel.ex;
907         getbuttoninfo(e);
908
909         if(oldey != sel.ey || oldex != sel.ex) {
910                 starty = MIN(oldey, sel.ey);
911                 endy = MAX(oldey, sel.ey);
912                 tsetdirt(starty, endy);
913         }
914 }
915
916 void
917 die(const char *errstr, ...) {
918         va_list ap;
919
920         va_start(ap, errstr);
921         vfprintf(stderr, errstr, ap);
922         va_end(ap);
923         exit(EXIT_FAILURE);
924 }
925
926 void
927 execsh(void) {
928         char **args;
929         char *envshell = getenv("SHELL");
930         const struct passwd *pass = getpwuid(getuid());
931         char buf[sizeof(long) * 8 + 1];
932
933         unsetenv("COLUMNS");
934         unsetenv("LINES");
935         unsetenv("TERMCAP");
936
937         if(pass) {
938                 setenv("LOGNAME", pass->pw_name, 1);
939                 setenv("USER", pass->pw_name, 1);
940                 setenv("SHELL", pass->pw_shell, 0);
941                 setenv("HOME", pass->pw_dir, 0);
942         }
943
944         snprintf(buf, sizeof(buf), "%lu", xw.win);
945         setenv("WINDOWID", buf, 1);
946
947         signal(SIGCHLD, SIG_DFL);
948         signal(SIGHUP, SIG_DFL);
949         signal(SIGINT, SIG_DFL);
950         signal(SIGQUIT, SIG_DFL);
951         signal(SIGTERM, SIG_DFL);
952         signal(SIGALRM, SIG_DFL);
953
954         DEFAULT(envshell, shell);
955         setenv("TERM", termname, 1);
956         args = opt_cmd ? opt_cmd : (char *[]){envshell, "-i", NULL};
957         execvp(args[0], args);
958         exit(EXIT_FAILURE);
959 }
960
961 void
962 sigchld(int a) {
963         int stat = 0;
964
965         if(waitpid(pid, &stat, 0) < 0)
966                 die("Waiting for pid %hd failed: %s\n", pid, SERRNO);
967
968         if(WIFEXITED(stat)) {
969                 exit(WEXITSTATUS(stat));
970         } else {
971                 exit(EXIT_FAILURE);
972         }
973 }
974
975 void
976 ttynew(void) {
977         int m, s;
978         struct winsize w = {term.row, term.col, 0, 0};
979
980         /* seems to work fine on linux, openbsd and freebsd */
981         if(openpty(&m, &s, NULL, NULL, &w) < 0)
982                 die("openpty failed: %s\n", SERRNO);
983
984         switch(pid = fork()) {
985         case -1:
986                 die("fork failed\n");
987                 break;
988         case 0:
989                 setsid(); /* create a new process group */
990                 dup2(s, STDIN_FILENO);
991                 dup2(s, STDOUT_FILENO);
992                 dup2(s, STDERR_FILENO);
993                 if(ioctl(s, TIOCSCTTY, NULL) < 0)
994                         die("ioctl TIOCSCTTY failed: %s\n", SERRNO);
995                 close(s);
996                 close(m);
997                 execsh();
998                 break;
999         default:
1000                 close(s);
1001                 cmdfd = m;
1002                 signal(SIGCHLD, sigchld);
1003                 if(opt_io) {
1004                         iofd = (!strcmp(opt_io, "-")) ?
1005                                   STDOUT_FILENO :
1006                                   open(opt_io, O_WRONLY | O_CREAT, 0666);
1007                         if(iofd < 0) {
1008                                 fprintf(stderr, "Error opening %s:%s\n",
1009                                         opt_io, strerror(errno));
1010                         }
1011                 }
1012         }
1013 }
1014
1015 void
1016 dump(char c) {
1017         static int col;
1018
1019         fprintf(stderr, " %02x '%c' ", c, isprint(c)?c:'.');
1020         if(++col % 10 == 0)
1021                 fprintf(stderr, "\n");
1022 }
1023
1024 void
1025 ttyread(void) {
1026         static char buf[BUFSIZ];
1027         static int buflen = 0;
1028         char *ptr;
1029         char s[UTF_SIZ];
1030         int charsize; /* size of utf8 char in bytes */
1031         long utf8c;
1032         int ret;
1033
1034         /* append read bytes to unprocessed bytes */
1035         if((ret = read(cmdfd, buf+buflen, LEN(buf)-buflen)) < 0)
1036                 die("Couldn't read from shell: %s\n", SERRNO);
1037
1038         /* process every complete utf8 char */
1039         buflen += ret;
1040         ptr = buf;
1041         while(buflen >= UTF_SIZ || isfullutf8(ptr,buflen)) {
1042                 charsize = utf8decode(ptr, &utf8c);
1043                 utf8encode(&utf8c, s);
1044                 tputc(s, charsize);
1045                 ptr += charsize;
1046                 buflen -= charsize;
1047         }
1048
1049         /* keep any uncomplete utf8 char for the next call */
1050         memmove(buf, ptr, buflen);
1051 }
1052
1053 void
1054 ttywrite(const char *s, size_t n) {
1055         if(write(cmdfd, s, n) == -1)
1056                 die("write error on tty: %s\n", SERRNO);
1057 }
1058
1059 void
1060 ttyresize(void) {
1061         struct winsize w;
1062
1063         w.ws_row = term.row;
1064         w.ws_col = term.col;
1065         w.ws_xpixel = xw.tw;
1066         w.ws_ypixel = xw.th;
1067         if(ioctl(cmdfd, TIOCSWINSZ, &w) < 0)
1068                 fprintf(stderr, "Couldn't set window size: %s\n", SERRNO);
1069 }
1070
1071 void
1072 tsetdirt(int top, int bot) {
1073         int i;
1074
1075         LIMIT(top, 0, term.row-1);
1076         LIMIT(bot, 0, term.row-1);
1077
1078         for(i = top; i <= bot; i++)
1079                 term.dirty[i] = 1;
1080 }
1081
1082 void
1083 tfulldirt(void) {
1084         tsetdirt(0, term.row-1);
1085 }
1086
1087 void
1088 tcursor(int mode) {
1089         static TCursor c;
1090
1091         if(mode == CURSOR_SAVE) {
1092                 c = term.c;
1093         } else if(mode == CURSOR_LOAD) {
1094                 term.c = c;
1095                 tmoveto(c.x, c.y);
1096         }
1097 }
1098
1099 void
1100 treset(void) {
1101         uint i;
1102
1103         term.c = (TCursor){{
1104                 .mode = ATTR_NULL,
1105                 .fg = defaultfg,
1106                 .bg = defaultbg
1107         }, .x = 0, .y = 0, .state = CURSOR_DEFAULT};
1108
1109         memset(term.tabs, 0, term.col * sizeof(*term.tabs));
1110         for(i = tabspaces; i < term.col; i += tabspaces)
1111                 term.tabs[i] = 1;
1112         term.top = 0;
1113         term.bot = term.row - 1;
1114         term.mode = MODE_WRAP;
1115
1116         tclearregion(0, 0, term.col-1, term.row-1);
1117         tmoveto(0, 0);
1118         tcursor(CURSOR_SAVE);
1119 }
1120
1121 void
1122 tnew(int col, int row) {
1123         /* set screen size */
1124         term.row = row;
1125         term.col = col;
1126         term.line = xmalloc(term.row * sizeof(Line));
1127         term.alt  = xmalloc(term.row * sizeof(Line));
1128         term.dirty = xmalloc(term.row * sizeof(*term.dirty));
1129         term.tabs = xmalloc(term.col * sizeof(*term.tabs));
1130
1131         for(row = 0; row < term.row; row++) {
1132                 term.line[row] = xmalloc(term.col * sizeof(Glyph));
1133                 term.alt [row] = xmalloc(term.col * sizeof(Glyph));
1134                 term.dirty[row] = 0;
1135         }
1136
1137         term.numlock = 1;
1138         memset(term.tabs, 0, term.col * sizeof(*term.tabs));
1139         /* setup screen */
1140         treset();
1141 }
1142
1143 void
1144 tswapscreen(void) {
1145         Line *tmp = term.line;
1146
1147         term.line = term.alt;
1148         term.alt = tmp;
1149         term.mode ^= MODE_ALTSCREEN;
1150         tfulldirt();
1151 }
1152
1153 void
1154 tscrolldown(int orig, int n) {
1155         int i;
1156         Line temp;
1157
1158         LIMIT(n, 0, term.bot-orig+1);
1159
1160         tclearregion(0, term.bot-n+1, term.col-1, term.bot);
1161
1162         for(i = term.bot; i >= orig+n; i--) {
1163                 temp = term.line[i];
1164                 term.line[i] = term.line[i-n];
1165                 term.line[i-n] = temp;
1166
1167                 term.dirty[i] = 1;
1168                 term.dirty[i-n] = 1;
1169         }
1170
1171         selscroll(orig, n);
1172 }
1173
1174 void
1175 tscrollup(int orig, int n) {
1176         int i;
1177         Line temp;
1178         LIMIT(n, 0, term.bot-orig+1);
1179
1180         tclearregion(0, orig, term.col-1, orig+n-1);
1181
1182         for(i = orig; i <= term.bot-n; i++) {
1183                  temp = term.line[i];
1184                  term.line[i] = term.line[i+n];
1185                  term.line[i+n] = temp;
1186
1187                  term.dirty[i] = 1;
1188                  term.dirty[i+n] = 1;
1189         }
1190
1191         selscroll(orig, -n);
1192 }
1193
1194 void
1195 selscroll(int orig, int n) {
1196         if(sel.bx == -1)
1197                 return;
1198
1199         if(BETWEEN(sel.by, orig, term.bot) || BETWEEN(sel.ey, orig, term.bot)) {
1200                 if((sel.by += n) > term.bot || (sel.ey += n) < term.top) {
1201                         sel.bx = -1;
1202                         return;
1203                 }
1204                 if(sel.by < term.top) {
1205                         sel.by = term.top;
1206                         sel.bx = 0;
1207                 }
1208                 if(sel.ey > term.bot) {
1209                         sel.ey = term.bot;
1210                         sel.ex = term.col;
1211                 }
1212                 sel.b.y = sel.by, sel.b.x = sel.bx;
1213                 sel.e.y = sel.ey, sel.e.x = sel.ex;
1214         }
1215 }
1216
1217 void
1218 tnewline(int first_col) {
1219         int y = term.c.y;
1220
1221         if(y == term.bot) {
1222                 tscrollup(term.top, 1);
1223         } else {
1224                 y++;
1225         }
1226         tmoveto(first_col ? 0 : term.c.x, y);
1227 }
1228
1229 void
1230 csiparse(void) {
1231         /* int noarg = 1; */
1232         char *p = csiescseq.buf;
1233
1234         csiescseq.narg = 0;
1235         if(*p == '?')
1236                 csiescseq.priv = 1, p++;
1237
1238         while(p < csiescseq.buf+csiescseq.len) {
1239                 while(isdigit(*p)) {
1240                         csiescseq.arg[csiescseq.narg] *= 10;
1241                         csiescseq.arg[csiescseq.narg] += *p++ - '0'/*, noarg = 0 */;
1242                 }
1243                 if(*p == ';' && csiescseq.narg+1 < ESC_ARG_SIZ) {
1244                         csiescseq.narg++, p++;
1245                 } else {
1246                         csiescseq.mode = *p;
1247                         csiescseq.narg++;
1248
1249                         return;
1250                 }
1251         }
1252 }
1253
1254 /* for absolute user moves, when decom is set */
1255 void
1256 tmoveato(int x, int y) {
1257         tmoveto(x, y + ((term.c.state & CURSOR_ORIGIN) ? term.top: 0));
1258 }
1259
1260 void
1261 tmoveto(int x, int y) {
1262         int miny, maxy;
1263
1264         if(term.c.state & CURSOR_ORIGIN) {
1265                 miny = term.top;
1266                 maxy = term.bot;
1267         } else {
1268                 miny = 0;
1269                 maxy = term.row - 1;
1270         }
1271         LIMIT(x, 0, term.col-1);
1272         LIMIT(y, miny, maxy);
1273         term.c.state &= ~CURSOR_WRAPNEXT;
1274         term.c.x = x;
1275         term.c.y = y;
1276 }
1277
1278 void
1279 tsetchar(char *c, Glyph *attr, int x, int y) {
1280         static char *vt100_0[62] = { /* 0x41 - 0x7e */
1281                 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1282                 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1283                 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1284                 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1285                 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1286                 "␤", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1287                 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1288                 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1289         };
1290
1291         /*
1292          * The table is proudly stolen from rxvt.
1293          */
1294         if(attr->mode & ATTR_GFX) {
1295                 if(c[0] >= 0x41 && c[0] <= 0x7e
1296                                 && vt100_0[c[0] - 0x41]) {
1297                         c = vt100_0[c[0] - 0x41];
1298                 }
1299         }
1300
1301         term.dirty[y] = 1;
1302         term.line[y][x] = *attr;
1303         memcpy(term.line[y][x].c, c, UTF_SIZ);
1304         term.line[y][x].state |= GLYPH_SET;
1305 }
1306
1307 void
1308 tclearregion(int x1, int y1, int x2, int y2) {
1309         int x, y, temp;
1310
1311         if(x1 > x2)
1312                 temp = x1, x1 = x2, x2 = temp;
1313         if(y1 > y2)
1314                 temp = y1, y1 = y2, y2 = temp;
1315
1316         LIMIT(x1, 0, term.col-1);
1317         LIMIT(x2, 0, term.col-1);
1318         LIMIT(y1, 0, term.row-1);
1319         LIMIT(y2, 0, term.row-1);
1320
1321         for(y = y1; y <= y2; y++) {
1322                 term.dirty[y] = 1;
1323                 for(x = x1; x <= x2; x++)
1324                         term.line[y][x].state = 0;
1325         }
1326 }
1327
1328 void
1329 tdeletechar(int n) {
1330         int src = term.c.x + n;
1331         int dst = term.c.x;
1332         int size = term.col - src;
1333
1334         term.dirty[term.c.y] = 1;
1335
1336         if(src >= term.col) {
1337                 tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
1338                 return;
1339         }
1340
1341         memmove(&term.line[term.c.y][dst], &term.line[term.c.y][src],
1342                         size * sizeof(Glyph));
1343         tclearregion(term.col-n, term.c.y, term.col-1, term.c.y);
1344 }
1345
1346 void
1347 tinsertblank(int n) {
1348         int src = term.c.x;
1349         int dst = src + n;
1350         int size = term.col - dst;
1351
1352         term.dirty[term.c.y] = 1;
1353
1354         if(dst >= term.col) {
1355                 tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
1356                 return;
1357         }
1358
1359         memmove(&term.line[term.c.y][dst], &term.line[term.c.y][src],
1360                         size * sizeof(Glyph));
1361         tclearregion(src, term.c.y, dst - 1, term.c.y);
1362 }
1363
1364 void
1365 tinsertblankline(int n) {
1366         if(term.c.y < term.top || term.c.y > term.bot)
1367                 return;
1368
1369         tscrolldown(term.c.y, n);
1370 }
1371
1372 void
1373 tdeleteline(int n) {
1374         if(term.c.y < term.top || term.c.y > term.bot)
1375                 return;
1376
1377         tscrollup(term.c.y, n);
1378 }
1379
1380 void
1381 tsetattr(int *attr, int l) {
1382         int i;
1383
1384         for(i = 0; i < l; i++) {
1385                 switch(attr[i]) {
1386                 case 0:
1387                         term.c.attr.mode &= ~(ATTR_REVERSE | ATTR_UNDERLINE | ATTR_BOLD \
1388                                         | ATTR_ITALIC | ATTR_BLINK);
1389                         term.c.attr.fg = defaultfg;
1390                         term.c.attr.bg = defaultbg;
1391                         break;
1392                 case 1:
1393                         term.c.attr.mode |= ATTR_BOLD;
1394                         break;
1395                 case 3:
1396                         term.c.attr.mode |= ATTR_ITALIC;
1397                         break;
1398                 case 4:
1399                         term.c.attr.mode |= ATTR_UNDERLINE;
1400                         break;
1401                 case 5:
1402                         term.c.attr.mode |= ATTR_BLINK;
1403                         break;
1404                 case 7:
1405                         term.c.attr.mode |= ATTR_REVERSE;
1406                         break;
1407                 case 21:
1408                 case 22:
1409                         term.c.attr.mode &= ~ATTR_BOLD;
1410                         break;
1411                 case 23:
1412                         term.c.attr.mode &= ~ATTR_ITALIC;
1413                         break;
1414                 case 24:
1415                         term.c.attr.mode &= ~ATTR_UNDERLINE;
1416                         break;
1417                 case 25:
1418                         term.c.attr.mode &= ~ATTR_BLINK;
1419                         break;
1420                 case 27:
1421                         term.c.attr.mode &= ~ATTR_REVERSE;
1422                         break;
1423                 case 38:
1424                         if(i + 2 < l && attr[i + 1] == 5) {
1425                                 i += 2;
1426                                 if(BETWEEN(attr[i], 0, 255)) {
1427                                         term.c.attr.fg = attr[i];
1428                                 } else {
1429                                         fprintf(stderr,
1430                                                 "erresc: bad fgcolor %d\n",
1431                                                 attr[i]);
1432                                 }
1433                         } else {
1434                                 fprintf(stderr,
1435                                         "erresc(38): gfx attr %d unknown\n",
1436                                         attr[i]);
1437                         }
1438                         break;
1439                 case 39:
1440                         term.c.attr.fg = defaultfg;
1441                         break;
1442                 case 48:
1443                         if(i + 2 < l && attr[i + 1] == 5) {
1444                                 i += 2;
1445                                 if(BETWEEN(attr[i], 0, 255)) {
1446                                         term.c.attr.bg = attr[i];
1447                                 } else {
1448                                         fprintf(stderr,
1449                                                 "erresc: bad bgcolor %d\n",
1450                                                 attr[i]);
1451                                 }
1452                         } else {
1453                                 fprintf(stderr,
1454                                         "erresc(48): gfx attr %d unknown\n",
1455                                         attr[i]);
1456                         }
1457                         break;
1458                 case 49:
1459                         term.c.attr.bg = defaultbg;
1460                         break;
1461                 default:
1462                         if(BETWEEN(attr[i], 30, 37)) {
1463                                 term.c.attr.fg = attr[i] - 30;
1464                         } else if(BETWEEN(attr[i], 40, 47)) {
1465                                 term.c.attr.bg = attr[i] - 40;
1466                         } else if(BETWEEN(attr[i], 90, 97)) {
1467                                 term.c.attr.fg = attr[i] - 90 + 8;
1468                         } else if(BETWEEN(attr[i], 100, 107)) {
1469                                 term.c.attr.bg = attr[i] - 100 + 8;
1470                         } else {
1471                                 fprintf(stderr,
1472                                         "erresc(default): gfx attr %d unknown\n",
1473                                         attr[i]), csidump();
1474                         }
1475                         break;
1476                 }
1477         }
1478 }
1479
1480 void
1481 tsetscroll(int t, int b) {
1482         int temp;
1483
1484         LIMIT(t, 0, term.row-1);
1485         LIMIT(b, 0, term.row-1);
1486         if(t > b) {
1487                 temp = t;
1488                 t = b;
1489                 b = temp;
1490         }
1491         term.top = t;
1492         term.bot = b;
1493 }
1494
1495 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
1496
1497 void
1498 tsetmode(bool priv, bool set, int *args, int narg) {
1499         int *lim, mode;
1500         bool alt;
1501
1502         for(lim = args + narg; args < lim; ++args) {
1503                 if(priv) {
1504                         switch(*args) {
1505                                 break;
1506                         case 1: /* DECCKM -- Cursor key */
1507                                 MODBIT(term.mode, set, MODE_APPCURSOR);
1508                                 break;
1509                         case 5: /* DECSCNM -- Reverse video */
1510                                 mode = term.mode;
1511                                 MODBIT(term.mode, set, MODE_REVERSE);
1512                                 if(mode != term.mode)
1513                                         redraw(REDRAW_TIMEOUT);
1514                                 break;
1515                         case 6: /* DECOM -- Origin */
1516                                 MODBIT(term.c.state, set, CURSOR_ORIGIN);
1517                                 tmoveato(0, 0);
1518                                 break;
1519                         case 7: /* DECAWM -- Auto wrap */
1520                                 MODBIT(term.mode, set, MODE_WRAP);
1521                                 break;
1522                         case 0:  /* Error (IGNORED) */
1523                         case 2:  /* DECANM -- ANSI/VT52 (IGNORED) */
1524                         case 3:  /* DECCOLM -- Column  (IGNORED) */
1525                         case 4:  /* DECSCLM -- Scroll (IGNORED) */
1526                         case 8:  /* DECARM -- Auto repeat (IGNORED) */
1527                         case 18: /* DECPFF -- Printer feed (IGNORED) */
1528                         case 19: /* DECPEX -- Printer extent (IGNORED) */
1529                         case 42: /* DECNRCM -- National characters (IGNORED) */
1530                         case 12: /* att610 -- Start blinking cursor (IGNORED) */
1531                                 break;
1532                         case 25: /* DECTCEM -- Text Cursor Enable Mode */
1533                                 MODBIT(term.mode, !set, MODE_HIDE);
1534                                 break;
1535                         case 1000: /* 1000,1002: enable xterm mouse report */
1536                                 MODBIT(term.mode, set, MODE_MOUSEBTN);
1537                                 break;
1538                         case 1002:
1539                                 MODBIT(term.mode, set, MODE_MOUSEMOTION);
1540                                 break;
1541                         case 1049: /* = 1047 and 1048 */
1542                         case 47:
1543                         case 1047: {
1544                                 alt = IS_SET(MODE_ALTSCREEN);
1545                                 if(alt)
1546                                         tclearregion(0, 0, term.col-1, term.row-1);
1547                                 if(set ^ alt)           /* set is always 1 or 0 */
1548                                         tswapscreen();
1549                                 if(*args != 1049)
1550                                         break;
1551                         }
1552                                 /* pass through */
1553                         case 1048:
1554                                 tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
1555                                 break;
1556                         default:
1557                                 fprintf(stderr,
1558                                         "erresc: unknown private set/reset mode %d\n",
1559                                         *args);
1560                                 break;
1561                         }
1562                 } else {
1563                         switch(*args) {
1564                         case 0:  /* Error (IGNORED) */
1565                                 break;
1566                         case 2:  /* KAM -- keyboard action */
1567                                 MODBIT(term.mode, set, MODE_KBDLOCK);
1568                                 break;
1569                         case 4:  /* IRM -- Insertion-replacement */
1570                                 MODBIT(term.mode, set, MODE_INSERT);
1571                                 break;
1572                         case 12: /* SRM -- Send/Receive */
1573                                 MODBIT(term.mode, !set, MODE_ECHO);
1574                                 break;
1575                         case 20: /* LNM -- Linefeed/new line */
1576                                 MODBIT(term.mode, set, MODE_CRLF);
1577                                 break;
1578                         default:
1579                                 fprintf(stderr,
1580                                         "erresc: unknown set/reset mode %d\n",
1581                                         *args);
1582                                 break;
1583                         }
1584                 }
1585         }
1586 }
1587 #undef MODBIT
1588
1589
1590 void
1591 csihandle(void) {
1592         switch(csiescseq.mode) {
1593         default:
1594         unknown:
1595                 fprintf(stderr, "erresc: unknown csi ");
1596                 csidump();
1597                 /* die(""); */
1598                 break;
1599         case '@': /* ICH -- Insert <n> blank char */
1600                 DEFAULT(csiescseq.arg[0], 1);
1601                 tinsertblank(csiescseq.arg[0]);
1602                 break;
1603         case 'A': /* CUU -- Cursor <n> Up */
1604                 DEFAULT(csiescseq.arg[0], 1);
1605                 tmoveto(term.c.x, term.c.y-csiescseq.arg[0]);
1606                 break;
1607         case 'B': /* CUD -- Cursor <n> Down */
1608         case 'e': /* VPR --Cursor <n> Down */
1609                 DEFAULT(csiescseq.arg[0], 1);
1610                 tmoveto(term.c.x, term.c.y+csiescseq.arg[0]);
1611                 break;
1612         case 'c': /* DA -- Device Attributes */
1613                 if(csiescseq.arg[0] == 0)
1614                         ttywrite(VT102ID, sizeof(VT102ID) - 1);
1615                 break;
1616         case 'C': /* CUF -- Cursor <n> Forward */
1617         case 'a': /* HPR -- Cursor <n> Forward */
1618                 DEFAULT(csiescseq.arg[0], 1);
1619                 tmoveto(term.c.x+csiescseq.arg[0], term.c.y);
1620                 break;
1621         case 'D': /* CUB -- Cursor <n> Backward */
1622                 DEFAULT(csiescseq.arg[0], 1);
1623                 tmoveto(term.c.x-csiescseq.arg[0], term.c.y);
1624                 break;
1625         case 'E': /* CNL -- Cursor <n> Down and first col */
1626                 DEFAULT(csiescseq.arg[0], 1);
1627                 tmoveto(0, term.c.y+csiescseq.arg[0]);
1628                 break;
1629         case 'F': /* CPL -- Cursor <n> Up and first col */
1630                 DEFAULT(csiescseq.arg[0], 1);
1631                 tmoveto(0, term.c.y-csiescseq.arg[0]);
1632                 break;
1633         case 'g': /* TBC -- Tabulation clear */
1634                 switch (csiescseq.arg[0]) {
1635                 case 0: /* clear current tab stop */
1636                         term.tabs[term.c.x] = 0;
1637                         break;
1638                 case 3: /* clear all the tabs */
1639                         memset(term.tabs, 0, term.col * sizeof(*term.tabs));
1640                         break;
1641                 default:
1642                         goto unknown;
1643                 }
1644                 break;
1645         case 'G': /* CHA -- Move to <col> */
1646         case '`': /* HPA */
1647                 DEFAULT(csiescseq.arg[0], 1);
1648                 tmoveto(csiescseq.arg[0]-1, term.c.y);
1649                 break;
1650         case 'H': /* CUP -- Move to <row> <col> */
1651         case 'f': /* HVP */
1652                 DEFAULT(csiescseq.arg[0], 1);
1653                 DEFAULT(csiescseq.arg[1], 1);
1654                 tmoveato(csiescseq.arg[1]-1, csiescseq.arg[0]-1);
1655                 break;
1656         case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
1657                 DEFAULT(csiescseq.arg[0], 1);
1658                 while(csiescseq.arg[0]--)
1659                         tputtab(1);
1660                 break;
1661         case 'J': /* ED -- Clear screen */
1662                 sel.bx = -1;
1663                 switch(csiescseq.arg[0]) {
1664                 case 0: /* below */
1665                         tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
1666                         if(term.c.y < term.row-1)
1667                                 tclearregion(0, term.c.y+1, term.col-1, term.row-1);
1668                         break;
1669                 case 1: /* above */
1670                         if(term.c.y > 1)
1671                                 tclearregion(0, 0, term.col-1, term.c.y-1);
1672                         tclearregion(0, term.c.y, term.c.x, term.c.y);
1673                         break;
1674                 case 2: /* all */
1675                         tclearregion(0, 0, term.col-1, term.row-1);
1676                         break;
1677                 default:
1678                         goto unknown;
1679                 }
1680                 break;
1681         case 'K': /* EL -- Clear line */
1682                 switch(csiescseq.arg[0]) {
1683                 case 0: /* right */
1684                         tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
1685                         break;
1686                 case 1: /* left */
1687                         tclearregion(0, term.c.y, term.c.x, term.c.y);
1688                         break;
1689                 case 2: /* all */
1690                         tclearregion(0, term.c.y, term.col-1, term.c.y);
1691                         break;
1692                 }
1693                 break;
1694         case 'S': /* SU -- Scroll <n> line up */
1695                 DEFAULT(csiescseq.arg[0], 1);
1696                 tscrollup(term.top, csiescseq.arg[0]);
1697                 break;
1698         case 'T': /* SD -- Scroll <n> line down */
1699                 DEFAULT(csiescseq.arg[0], 1);
1700                 tscrolldown(term.top, csiescseq.arg[0]);
1701                 break;
1702         case 'L': /* IL -- Insert <n> blank lines */
1703                 DEFAULT(csiescseq.arg[0], 1);
1704                 tinsertblankline(csiescseq.arg[0]);
1705                 break;
1706         case 'l': /* RM -- Reset Mode */
1707                 tsetmode(csiescseq.priv, 0, csiescseq.arg, csiescseq.narg);
1708                 break;
1709         case 'M': /* DL -- Delete <n> lines */
1710                 DEFAULT(csiescseq.arg[0], 1);
1711                 tdeleteline(csiescseq.arg[0]);
1712                 break;
1713         case 'X': /* ECH -- Erase <n> char */
1714                 DEFAULT(csiescseq.arg[0], 1);
1715                 tclearregion(term.c.x, term.c.y, term.c.x + csiescseq.arg[0], term.c.y);
1716                 break;
1717         case 'P': /* DCH -- Delete <n> char */
1718                 DEFAULT(csiescseq.arg[0], 1);
1719                 tdeletechar(csiescseq.arg[0]);
1720                 break;
1721         case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
1722                 DEFAULT(csiescseq.arg[0], 1);
1723                 while(csiescseq.arg[0]--)
1724                         tputtab(0);
1725                 break;
1726         case 'd': /* VPA -- Move to <row> */
1727                 DEFAULT(csiescseq.arg[0], 1);
1728                 tmoveato(term.c.x, csiescseq.arg[0]-1);
1729                 break;
1730         case 'h': /* SM -- Set terminal mode */
1731                 tsetmode(csiescseq.priv, 1, csiescseq.arg, csiescseq.narg);
1732                 break;
1733         case 'm': /* SGR -- Terminal attribute (color) */
1734                 tsetattr(csiescseq.arg, csiescseq.narg);
1735                 break;
1736         case 'r': /* DECSTBM -- Set Scrolling Region */
1737                 if(csiescseq.priv) {
1738                         goto unknown;
1739                 } else {
1740                         DEFAULT(csiescseq.arg[0], 1);
1741                         DEFAULT(csiescseq.arg[1], term.row);
1742                         tsetscroll(csiescseq.arg[0]-1, csiescseq.arg[1]-1);
1743                         tmoveato(0, 0);
1744                 }
1745                 break;
1746         case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
1747                 tcursor(CURSOR_SAVE);
1748                 break;
1749         case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
1750                 tcursor(CURSOR_LOAD);
1751                 break;
1752         }
1753 }
1754
1755 void
1756 csidump(void) {
1757         int i;
1758         uint c;
1759
1760         printf("ESC[");
1761         for(i = 0; i < csiescseq.len; i++) {
1762                 c = csiescseq.buf[i] & 0xff;
1763                 if(isprint(c)) {
1764                         putchar(c);
1765                 } else if(c == '\n') {
1766                         printf("(\\n)");
1767                 } else if(c == '\r') {
1768                         printf("(\\r)");
1769                 } else if(c == 0x1b) {
1770                         printf("(\\e)");
1771                 } else {
1772                         printf("(%02x)", c);
1773                 }
1774         }
1775         putchar('\n');
1776 }
1777
1778 void
1779 csireset(void) {
1780         memset(&csiescseq, 0, sizeof(csiescseq));
1781 }
1782
1783 void
1784 strhandle(void) {
1785         char *p;
1786
1787         /*
1788          * TODO: make this being useful in case of color palette change.
1789          */
1790         strparse();
1791
1792         p = strescseq.buf;
1793
1794         switch(strescseq.type) {
1795         case ']': /* OSC -- Operating System Command */
1796                 switch(p[0]) {
1797                 case '0':
1798                 case '1':
1799                 case '2':
1800                         /*
1801                          * TODO: Handle special chars in string, like umlauts.
1802                          */
1803                         if(p[1] == ';') {
1804                                 XStoreName(xw.dpy, xw.win, strescseq.buf+2);
1805                         }
1806                         break;
1807                 case ';':
1808                         XStoreName(xw.dpy, xw.win, strescseq.buf+1);
1809                         break;
1810                 case '4': /* TODO: Set color (arg0) to "rgb:%hexr/$hexg/$hexb" (arg1) */
1811                         break;
1812                 default:
1813                         fprintf(stderr, "erresc: unknown str ");
1814                         strdump();
1815                         break;
1816                 }
1817                 break;
1818         case 'k': /* old title set compatibility */
1819                 XStoreName(xw.dpy, xw.win, strescseq.buf);
1820                 break;
1821         case 'P': /* DSC -- Device Control String */
1822         case '_': /* APC -- Application Program Command */
1823         case '^': /* PM -- Privacy Message */
1824         default:
1825                 fprintf(stderr, "erresc: unknown str ");
1826                 strdump();
1827                 /* die(""); */
1828                 break;
1829         }
1830 }
1831
1832 void
1833 strparse(void) {
1834         /*
1835          * TODO: Implement parsing like for CSI when required.
1836          * Format: ESC type cmd ';' arg0 [';' argn] ESC \
1837          */
1838         return;
1839 }
1840
1841 void
1842 strdump(void) {
1843         int i;
1844         uint c;
1845
1846         printf("ESC%c", strescseq.type);
1847         for(i = 0; i < strescseq.len; i++) {
1848                 c = strescseq.buf[i] & 0xff;
1849                 if(isprint(c)) {
1850                         putchar(c);
1851                 } else if(c == '\n') {
1852                         printf("(\\n)");
1853                 } else if(c == '\r') {
1854                         printf("(\\r)");
1855                 } else if(c == 0x1b) {
1856                         printf("(\\e)");
1857                 } else {
1858                         printf("(%02x)", c);
1859                 }
1860         }
1861         printf("ESC\\\n");
1862 }
1863
1864 void
1865 strreset(void) {
1866         memset(&strescseq, 0, sizeof(strescseq));
1867 }
1868
1869 void
1870 tputtab(bool forward) {
1871         uint x = term.c.x;
1872
1873         if(forward) {
1874                 if(x == term.col)
1875                         return;
1876                 for(++x; x < term.col && !term.tabs[x]; ++x)
1877                         /* nothing */ ;
1878         } else {
1879                 if(x == 0)
1880                         return;
1881                 for(--x; x > 0 && !term.tabs[x]; --x)
1882                         /* nothing */ ;
1883         }
1884         tmoveto(x, term.c.y);
1885 }
1886
1887 void
1888 techo(char *buf, int len) {
1889         for(; len > 0; buf++, len--) {
1890                 char c = *buf;
1891
1892                 if(c == '\033') {               /* escape */
1893                         tputc("^", 1);
1894                         tputc("[", 1);
1895                 } else if (c < '\x20') {        /* control code */
1896                         if(c != '\n' && c != '\r' && c != '\t') {
1897                                 c |= '\x40';
1898                                 tputc("^", 1);
1899                         }
1900                         tputc(&c, 1);
1901                 } else {
1902                         break;
1903                 }
1904         }
1905         if (len)
1906                 tputc(buf, len);
1907 }
1908
1909 void
1910 tputc(char *c, int len) {
1911         uchar ascii = *c;
1912         bool control = ascii < '\x20' || ascii == 0177;
1913
1914         if(iofd != -1) {
1915                 if (xwrite(iofd, c, len) < 0) {
1916                         fprintf(stderr, "Error writing in %s:%s\n",
1917                                 opt_io, strerror(errno));
1918                         close(iofd);
1919                         iofd = -1;
1920                 }
1921         }
1922
1923         /*
1924          * STR sequences must be checked before anything else
1925          * because it can use some control codes as part of the sequence.
1926          */
1927         if(term.esc & ESC_STR) {
1928                 switch(ascii) {
1929                 case '\033':
1930                         term.esc = ESC_START | ESC_STR_END;
1931                         break;
1932                 case '\a': /* backwards compatibility to xterm */
1933                         term.esc = 0;
1934                         strhandle();
1935                         break;
1936                 default:
1937                         if(strescseq.len + len < sizeof(strescseq.buf)) {
1938                                 memmove(&strescseq.buf[strescseq.len], c, len);
1939                                 strescseq.len += len;
1940                         } else {
1941                         /*
1942                          * Here is a bug in terminals. If the user never sends
1943                          * some code to stop the str or esc command, then st
1944                          * will stop responding. But this is better than
1945                          * silently failing with unknown characters. At least
1946                          * then users will report back.
1947                          *
1948                          * In the case users ever get fixed, here is the code:
1949                          */
1950                         /*
1951                          * term.esc = 0;
1952                          * strhandle();
1953                          */
1954                         }
1955                 }
1956                 return;
1957         }
1958
1959         /*
1960          * Actions of control codes must be performed as soon they arrive
1961          * because they can be embedded inside a control sequence, and
1962          * they must not cause conflicts with sequences.
1963          */
1964         if(control) {
1965                 switch(ascii) {
1966                 case '\t':      /* HT */
1967                         tputtab(1);
1968                         return;
1969                 case '\b':      /* BS */
1970                         tmoveto(term.c.x-1, term.c.y);
1971                         return;
1972                 case '\r':      /* CR */
1973                         tmoveto(0, term.c.y);
1974                         return;
1975                 case '\f':      /* LF */
1976                 case '\v':      /* VT */
1977                 case '\n':      /* LF */
1978                         /* go to first col if the mode is set */
1979                         tnewline(IS_SET(MODE_CRLF));
1980                         return;
1981                 case '\a':      /* BEL */
1982                         if(!(xw.state & WIN_FOCUSED))
1983                                 xseturgency(1);
1984                         return;
1985                 case '\033':    /* ESC */
1986                         csireset();
1987                         term.esc = ESC_START;
1988                         return;
1989                 case '\016':    /* SO */
1990                 case '\017':    /* SI */
1991                         /*
1992                          * Different charsets are hard to handle. Applications
1993                          * should use the right alt charset escapes for the
1994                          * only reason they still exist: line drawing. The
1995                          * rest is incompatible history st should not support.
1996                          */
1997                         return;
1998                 case '\032':    /* SUB */
1999                 case '\030':    /* CAN */
2000                         csireset();
2001                         return;
2002                 case '\005':    /* ENQ (IGNORED) */
2003                 case '\000':    /* NUL (IGNORED) */
2004                 case '\021':    /* XON (IGNORED) */
2005                 case '\023':    /* XOFF (IGNORED) */
2006                 case 0177:      /* DEL (IGNORED) */
2007                         return;
2008                 }
2009         } else if(term.esc & ESC_START) {
2010                 if(term.esc & ESC_CSI) {
2011                         csiescseq.buf[csiescseq.len++] = ascii;
2012                         if(BETWEEN(ascii, 0x40, 0x7E)
2013                                         || csiescseq.len >= ESC_BUF_SIZ) {
2014                                 term.esc = 0;
2015                                 csiparse(), csihandle();
2016                         }
2017                 } else if(term.esc & ESC_STR_END) {
2018                         term.esc = 0;
2019                         if(ascii == '\\')
2020                                 strhandle();
2021                 } else if(term.esc & ESC_ALTCHARSET) {
2022                         switch(ascii) {
2023                         case '0': /* Line drawing set */
2024                                 term.c.attr.mode |= ATTR_GFX;
2025                                 break;
2026                         case 'B': /* USASCII */
2027                                 term.c.attr.mode &= ~ATTR_GFX;
2028                                 break;
2029                         case 'A': /* UK (IGNORED) */
2030                         case '<': /* multinational charset (IGNORED) */
2031                         case '5': /* Finnish (IGNORED) */
2032                         case 'C': /* Finnish (IGNORED) */
2033                         case 'K': /* German (IGNORED) */
2034                                 break;
2035                         default:
2036                                 fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
2037                         }
2038                         term.esc = 0;
2039                 } else if(term.esc & ESC_TEST) {
2040                         if(ascii == '8') { /* DEC screen alignment test. */
2041                                 char E[UTF_SIZ] = "E";
2042                                 int x, y;
2043
2044                                 for(x = 0; x < term.col; ++x) {
2045                                         for(y = 0; y < term.row; ++y)
2046                                                 tsetchar(E, &term.c.attr, x, y);
2047                                 }
2048                         }
2049                         term.esc = 0;
2050                 } else {
2051                         switch(ascii) {
2052                         case '[':
2053                                 term.esc |= ESC_CSI;
2054                                 break;
2055                         case '#':
2056                                 term.esc |= ESC_TEST;
2057                                 break;
2058                         case 'P': /* DCS -- Device Control String */
2059                         case '_': /* APC -- Application Program Command */
2060                         case '^': /* PM -- Privacy Message */
2061                         case ']': /* OSC -- Operating System Command */
2062                         case 'k': /* old title set compatibility */
2063                                 strreset();
2064                                 strescseq.type = ascii;
2065                                 term.esc |= ESC_STR;
2066                                 break;
2067                         case '(': /* set primary charset G0 */
2068                                 term.esc |= ESC_ALTCHARSET;
2069                                 break;
2070                         case ')': /* set secondary charset G1 (IGNORED) */
2071                         case '*': /* set tertiary charset G2 (IGNORED) */
2072                         case '+': /* set quaternary charset G3 (IGNORED) */
2073                                 term.esc = 0;
2074                                 break;
2075                         case 'D': /* IND -- Linefeed */
2076                                 if(term.c.y == term.bot) {
2077                                         tscrollup(term.top, 1);
2078                                 } else {
2079                                         tmoveto(term.c.x, term.c.y+1);
2080                                 }
2081                                 term.esc = 0;
2082                                 break;
2083                         case 'E': /* NEL -- Next line */
2084                                 tnewline(1); /* always go to first col */
2085                                 term.esc = 0;
2086                                 break;
2087                         case 'H': /* HTS -- Horizontal tab stop */
2088                                 term.tabs[term.c.x] = 1;
2089                                 term.esc = 0;
2090                                 break;
2091                         case 'M': /* RI -- Reverse index */
2092                                 if(term.c.y == term.top) {
2093                                         tscrolldown(term.top, 1);
2094                                 } else {
2095                                         tmoveto(term.c.x, term.c.y-1);
2096                                 }
2097                                 term.esc = 0;
2098                                 break;
2099                         case 'Z': /* DECID -- Identify Terminal */
2100                                 ttywrite(VT102ID, sizeof(VT102ID) - 1);
2101                                 term.esc = 0;
2102                                 break;
2103                         case 'c': /* RIS -- Reset to inital state */
2104                                 treset();
2105                                 term.esc = 0;
2106                                 xresettitle();
2107                                 break;
2108                         case '=': /* DECPAM -- Application keypad */
2109                                 term.mode |= MODE_APPKEYPAD;
2110                                 term.esc = 0;
2111                                 break;
2112                         case '>': /* DECPNM -- Normal keypad */
2113                                 term.mode &= ~MODE_APPKEYPAD;
2114                                 term.esc = 0;
2115                                 break;
2116                         case '7': /* DECSC -- Save Cursor */
2117                                 tcursor(CURSOR_SAVE);
2118                                 term.esc = 0;
2119                                 break;
2120                         case '8': /* DECRC -- Restore Cursor */
2121                                 tcursor(CURSOR_LOAD);
2122                                 term.esc = 0;
2123                                 break;
2124                         case '\\': /* ST -- Stop */
2125                                 term.esc = 0;
2126                                 break;
2127                         default:
2128                                 fprintf(stderr, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2129                                         (uchar) ascii, isprint(ascii)? ascii:'.');
2130                                 term.esc = 0;
2131                         }
2132                 }
2133                 /*
2134                  * All characters which form part of a sequence are not
2135                  * printed
2136                  */
2137                 return;
2138         }
2139         /*
2140          * Display control codes only if we are in graphic mode
2141          */
2142         if(control && !(term.c.attr.mode & ATTR_GFX))
2143                 return;
2144         if(sel.bx != -1 && BETWEEN(term.c.y, sel.by, sel.ey))
2145                 sel.bx = -1;
2146         if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT)
2147                 tnewline(1); /* always go to first col */
2148
2149         if(IS_SET(MODE_INSERT) && term.c.x+1 < term.col) {
2150                 memmove(&term.line[term.c.y][term.c.x+1],
2151                         &term.line[term.c.y][term.c.x],
2152                         (term.col - term.c.x - 1) * sizeof(Glyph));
2153         }
2154
2155         tsetchar(c, &term.c.attr, term.c.x, term.c.y);
2156         if(term.c.x+1 < term.col) {
2157                 tmoveto(term.c.x+1, term.c.y);
2158         } else {
2159                 term.c.state |= CURSOR_WRAPNEXT;
2160         }
2161 }
2162
2163 int
2164 tresize(int col, int row) {
2165         int i, x;
2166         int minrow = MIN(row, term.row);
2167         int mincol = MIN(col, term.col);
2168         int slide = term.c.y - row + 1;
2169         bool *bp;
2170
2171         if(col < 1 || row < 1)
2172                 return 0;
2173
2174         /* free unneeded rows */
2175         i = 0;
2176         if(slide > 0) {
2177                 /* slide screen to keep cursor where we expect it -
2178                  * tscrollup would work here, but we can optimize to
2179                  * memmove because we're freeing the earlier lines */
2180                 for(/* i = 0 */; i < slide; i++) {
2181                         free(term.line[i]);
2182                         free(term.alt[i]);
2183                 }
2184                 memmove(term.line, term.line + slide, row * sizeof(Line));
2185                 memmove(term.alt, term.alt + slide, row * sizeof(Line));
2186         }
2187         for(i += row; i < term.row; i++) {
2188                 free(term.line[i]);
2189                 free(term.alt[i]);
2190         }
2191
2192         /* resize to new height */
2193         term.line = xrealloc(term.line, row * sizeof(Line));
2194         term.alt  = xrealloc(term.alt,  row * sizeof(Line));
2195         term.dirty = xrealloc(term.dirty, row * sizeof(*term.dirty));
2196         term.tabs = xrealloc(term.tabs, col * sizeof(*term.tabs));
2197
2198         /* resize each row to new width, zero-pad if needed */
2199         for(i = 0; i < minrow; i++) {
2200                 term.dirty[i] = 1;
2201                 term.line[i] = xrealloc(term.line[i], col * sizeof(Glyph));
2202                 term.alt[i]  = xrealloc(term.alt[i],  col * sizeof(Glyph));
2203                 for(x = mincol; x < col; x++) {
2204                         term.line[i][x].state = 0;
2205                         term.alt[i][x].state = 0;
2206                 }
2207         }
2208
2209         /* allocate any new rows */
2210         for(/* i == minrow */; i < row; i++) {
2211                 term.dirty[i] = 1;
2212                 term.line[i] = xcalloc(col, sizeof(Glyph));
2213                 term.alt [i] = xcalloc(col, sizeof(Glyph));
2214         }
2215         if(col > term.col) {
2216                 bp = term.tabs + term.col;
2217
2218                 memset(bp, 0, sizeof(*term.tabs) * (col - term.col));
2219                 while(--bp > term.tabs && !*bp)
2220                         /* nothing */ ;
2221                 for(bp += tabspaces; bp < term.tabs + col; bp += tabspaces)
2222                         *bp = 1;
2223         }
2224         /* update terminal size */
2225         term.col = col;
2226         term.row = row;
2227         /* reset scrolling region */
2228         tsetscroll(0, row-1);
2229         /* make use of the LIMIT in tmoveto */
2230         tmoveto(term.c.x, term.c.y);
2231
2232         return (slide > 0);
2233 }
2234
2235 void
2236 xresize(int col, int row) {
2237         xw.tw = MAX(1, col * xw.cw);
2238         xw.th = MAX(1, row * xw.ch);
2239
2240         if(!usedbe) {
2241                 XFreePixmap(xw.dpy, xw.buf);
2242                 xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
2243                                 DefaultDepth(xw.dpy, xw.scr));
2244                 XSetForeground(xw.dpy, dc.gc, 0);
2245                 XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
2246         }
2247
2248         XftDrawChange(xw.draw, xw.buf);
2249 }
2250
2251 void
2252 xloadcols(void) {
2253         int i, r, g, b;
2254         XRenderColor color = { .alpha = 0 };
2255
2256         /* load colors [0-15] colors and [256-LEN(colorname)[ (config.h) */
2257         for(i = 0; i < LEN(colorname); i++) {
2258                 if(!colorname[i])
2259                         continue;
2260                 if(!XftColorAllocName(xw.dpy, xw.vis, xw.cmap, colorname[i], &dc.col[i])) {
2261                         die("Could not allocate color '%s'\n", colorname[i]);
2262                 }
2263         }
2264
2265         /* load colors [16-255] ; same colors as xterm */
2266         for(i = 16, r = 0; r < 6; r++) {
2267                 for(g = 0; g < 6; g++) {
2268                         for(b = 0; b < 6; b++) {
2269                                 color.red = r == 0 ? 0 : 0x3737 + 0x2828 * r;
2270                                 color.green = g == 0 ? 0 : 0x3737 + 0x2828 * g;
2271                                 color.blue = b == 0 ? 0 : 0x3737 + 0x2828 * b;
2272                                 if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color, &dc.col[i])) {
2273                                         die("Could not allocate color %d\n", i);
2274                                 }
2275                                 i++;
2276                         }
2277                 }
2278         }
2279
2280         for(r = 0; r < 24; r++, i++) {
2281                 color.red = color.green = color.blue = 0x0808 + 0x0a0a * r;
2282                 if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color,
2283                                         &dc.col[i])) {
2284                         die("Could not allocate color %d\n", i);
2285                 }
2286         }
2287 }
2288
2289 void
2290 xtermclear(int col1, int row1, int col2, int row2) {
2291         XftDrawRect(xw.draw,
2292                         &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg],
2293                         borderpx + col1 * xw.cw,
2294                         borderpx + row1 * xw.ch,
2295                         (col2-col1+1) * xw.cw,
2296                         (row2-row1+1) * xw.ch);
2297 }
2298
2299 /*
2300  * Absolute coordinates.
2301  */
2302 void
2303 xclear(int x1, int y1, int x2, int y2) {
2304         XftDrawRect(xw.draw,
2305                         &dc.col[IS_SET(MODE_REVERSE)? defaultfg : defaultbg],
2306                         x1, y1, x2-x1, y2-y1);
2307 }
2308
2309 void
2310 xhints(void) {
2311         XClassHint class = {opt_class ? opt_class : termname, termname};
2312         XWMHints wm = {.flags = InputHint, .input = 1};
2313         XSizeHints *sizeh = NULL;
2314
2315         sizeh = XAllocSizeHints();
2316         if(xw.isfixed == False) {
2317                 sizeh->flags = PSize | PResizeInc | PBaseSize;
2318                 sizeh->height = xw.h;
2319                 sizeh->width = xw.w;
2320                 sizeh->height_inc = xw.ch;
2321                 sizeh->width_inc = xw.cw;
2322                 sizeh->base_height = 2 * borderpx;
2323                 sizeh->base_width = 2 * borderpx;
2324         } else {
2325                 sizeh->flags = PMaxSize | PMinSize;
2326                 sizeh->min_width = sizeh->max_width = xw.fw;
2327                 sizeh->min_height = sizeh->max_height = xw.fh;
2328         }
2329
2330         XSetWMProperties(xw.dpy, xw.win, NULL, NULL, NULL, 0, sizeh, &wm, &class);
2331         XFree(sizeh);
2332 }
2333
2334 int
2335 xloadfont(Font *f, FcPattern *pattern) {
2336         FcPattern *match;
2337         FcResult result;
2338
2339         match = FcFontMatch(NULL, pattern, &result);
2340         if(!match)
2341                 return 1;
2342
2343         if(!(f->set = FcFontSort(0, match, FcTrue, 0, &result))) {
2344                 FcPatternDestroy(match);
2345                 return 1;
2346         }
2347
2348         if(!(f->match = XftFontOpenPattern(xw.dpy, match))) {
2349                 FcPatternDestroy(match);
2350                 return 1;
2351         }
2352
2353         f->pattern = FcPatternDuplicate(pattern);
2354
2355         f->ascent = f->match->ascent;
2356         f->descent = f->match->descent;
2357         f->lbearing = 0;
2358         f->rbearing = f->match->max_advance_width;
2359
2360         f->height = f->match->height;
2361         f->width = f->lbearing + f->rbearing;
2362
2363         return 0;
2364 }
2365
2366 void
2367 xloadfonts(char *fontstr, int fontsize) {
2368         FcPattern *pattern;
2369         FcResult result;
2370         double fontval;
2371
2372         if(fontstr[0] == '-') {
2373                 pattern = XftXlfdParse(fontstr, False, False);
2374         } else {
2375                 pattern = FcNameParse((FcChar8 *)fontstr);
2376         }
2377
2378         if(!pattern)
2379                 die("st: can't open font %s\n", fontstr);
2380
2381         if(fontsize > 0) {
2382                 FcPatternDel(pattern, FC_PIXEL_SIZE);
2383                 FcPatternAddDouble(pattern, FC_PIXEL_SIZE, (double)fontsize);
2384                 usedfontsize = fontsize;
2385         } else {
2386                 result = FcPatternGetDouble(pattern, FC_PIXEL_SIZE, 0, &fontval);
2387                 if(result == FcResultMatch) {
2388                         usedfontsize = (int)fontval;
2389                 } else {
2390                         /*
2391                          * Default font size is 12, if none given. This is to
2392                          * have a known usedfontsize value.
2393                          */
2394                         FcPatternAddDouble(pattern, FC_PIXEL_SIZE, 12);
2395                         usedfontsize = 12;
2396                 }
2397         }
2398
2399         FcConfigSubstitute(0, pattern, FcMatchPattern);
2400         FcDefaultSubstitute(pattern);
2401
2402         if(xloadfont(&dc.font, pattern))
2403                 die("st: can't open font %s\n", fontstr);
2404
2405         /* Setting character width and height. */
2406         xw.cw = dc.font.width;
2407         xw.ch = dc.font.height;
2408
2409         FcPatternDel(pattern, FC_WEIGHT);
2410         FcPatternAddInteger(pattern, FC_WEIGHT, FC_WEIGHT_BOLD);
2411         if(xloadfont(&dc.bfont, pattern))
2412                 die("st: can't open font %s\n", fontstr);
2413
2414         FcPatternDel(pattern, FC_SLANT);
2415         FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC);
2416         if(xloadfont(&dc.ibfont, pattern))
2417                 die("st: can't open font %s\n", fontstr);
2418
2419         FcPatternDel(pattern, FC_WEIGHT);
2420         if(xloadfont(&dc.ifont, pattern))
2421                 die("st: can't open font %s\n", fontstr);
2422
2423         FcPatternDestroy(pattern);
2424 }
2425
2426 void
2427 xunloadfonts(void)
2428 {
2429         int i, ip;
2430
2431         /*
2432          * Free the loaded fonts in the font cache. This is done backwards
2433          * from the frccur.
2434          */
2435         for (i = 0, ip = frccur; i < frclen; i++, ip--) {
2436                 if (ip < 0)
2437                         ip = LEN(frc) - 1;
2438                 XftFontClose(xw.dpy, frc[ip].font);
2439         }
2440         frccur = -1;
2441         frclen = 0;
2442
2443         XftFontClose(xw.dpy, dc.font.match);
2444         FcPatternDestroy(dc.font.pattern);
2445         FcFontSetDestroy(dc.font.set);
2446         XftFontClose(xw.dpy, dc.bfont.match);
2447         FcPatternDestroy(dc.bfont.pattern);
2448         FcFontSetDestroy(dc.bfont.set);
2449         XftFontClose(xw.dpy, dc.ifont.match);
2450         FcPatternDestroy(dc.ifont.pattern);
2451         FcFontSetDestroy(dc.ifont.set);
2452         XftFontClose(xw.dpy, dc.ibfont.match);
2453         FcPatternDestroy(dc.ibfont.pattern);
2454         FcFontSetDestroy(dc.ibfont.set);
2455 }
2456
2457 void
2458 xzoom(const Arg *arg)
2459 {
2460         xunloadfonts();
2461         xloadfonts(usedfont, usedfontsize + arg->i);
2462         cresize(0, 0);
2463         redraw(0);
2464 }
2465
2466 void
2467 xinit(void) {
2468         XSetWindowAttributes attrs;
2469         Cursor cursor;
2470         Window parent;
2471         int sw, sh, major, minor;
2472
2473         if(!(xw.dpy = XOpenDisplay(NULL)))
2474                 die("Can't open display\n");
2475         xw.scr = XDefaultScreen(xw.dpy);
2476         xw.vis = XDefaultVisual(xw.dpy, xw.scr);
2477
2478         /* font */
2479         if (!FcInit())
2480                 die("Could not init fontconfig.\n");
2481
2482         usedfont = (opt_font == NULL)? font : opt_font;
2483         xloadfonts(usedfont, 0);
2484
2485         /* colors */
2486         xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
2487         xloadcols();
2488
2489         /* adjust fixed window geometry */
2490         if(xw.isfixed) {
2491                 sw = DisplayWidth(xw.dpy, xw.scr);
2492                 sh = DisplayHeight(xw.dpy, xw.scr);
2493                 if(xw.fx < 0)
2494                         xw.fx = sw + xw.fx - xw.fw - 1;
2495                 if(xw.fy < 0)
2496                         xw.fy = sh + xw.fy - xw.fh - 1;
2497
2498                 xw.h = xw.fh;
2499                 xw.w = xw.fw;
2500         } else {
2501                 /* window - default size */
2502                 xw.h = 2 * borderpx + term.row * xw.ch;
2503                 xw.w = 2 * borderpx + term.col * xw.cw;
2504                 xw.fx = 0;
2505                 xw.fy = 0;
2506         }
2507
2508         attrs.background_pixel = dc.col[defaultbg].pixel;
2509         attrs.border_pixel = dc.col[defaultbg].pixel;
2510         attrs.bit_gravity = NorthWestGravity;
2511         attrs.event_mask = FocusChangeMask | KeyPressMask
2512                 | ExposureMask | VisibilityChangeMask | StructureNotifyMask
2513                 | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;
2514         attrs.colormap = xw.cmap;
2515
2516         parent = opt_embed ? strtol(opt_embed, NULL, 0) : \
2517                         XRootWindow(xw.dpy, xw.scr);
2518         xw.win = XCreateWindow(xw.dpy, parent, xw.fx, xw.fy,
2519                         xw.w, xw.h, 0, XDefaultDepth(xw.dpy, xw.scr), InputOutput,
2520                         xw.vis,
2521                         CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
2522                         | CWColormap,
2523                         &attrs);
2524
2525         /* double buffering */
2526         /*
2527         if(XdbeQueryExtension(xw.dpy, &major, &minor)) {
2528                 xw.buf = XdbeAllocateBackBufferName(xw.dpy, xw.win,
2529                                 XdbeBackground);
2530                 usedbe = True;
2531         } else {
2532         */
2533                 dc.gc = XCreateGC(xw.dpy, parent, 0, 0);
2534                 xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
2535                                 DefaultDepth(xw.dpy, xw.scr));
2536                 XSetForeground(xw.dpy, dc.gc, 0);
2537                 XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
2538                 //xw.buf = xw.win;
2539         /*
2540         }
2541         */
2542
2543         /* Xft rendering context */
2544         xw.draw = XftDrawCreate(xw.dpy, xw.buf, xw.vis, xw.cmap);
2545
2546         /* input methods */
2547         if((xw.xim =  XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
2548                 XSetLocaleModifiers("@im=local");
2549                 if((xw.xim =  XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
2550                         XSetLocaleModifiers("@im=");
2551                         if((xw.xim = XOpenIM(xw.dpy,
2552                                         NULL, NULL, NULL)) == NULL) {
2553                                 die("XOpenIM failed. Could not open input"
2554                                         " device.\n");
2555                         }
2556                 }
2557         }
2558         xw.xic = XCreateIC(xw.xim, XNInputStyle, XIMPreeditNothing
2559                                            | XIMStatusNothing, XNClientWindow, xw.win,
2560                                            XNFocusWindow, xw.win, NULL);
2561         if(xw.xic == NULL)
2562                 die("XCreateIC failed. Could not obtain input method.\n");
2563
2564         /* white cursor, black outline */
2565         cursor = XCreateFontCursor(xw.dpy, XC_xterm);
2566         XDefineCursor(xw.dpy, xw.win, cursor);
2567         XRecolorCursor(xw.dpy, cursor,
2568                 &(XColor){.red = 0xffff, .green = 0xffff, .blue = 0xffff},
2569                 &(XColor){.red = 0x0000, .green = 0x0000, .blue = 0x0000});
2570
2571         xw.xembed = XInternAtom(xw.dpy, "_XEMBED", False);
2572         xw.wmdeletewin = XInternAtom(xw.dpy, "WM_DELETE_WINDOW", False);
2573         XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
2574
2575         xresettitle();
2576         XMapWindow(xw.dpy, xw.win);
2577         xhints();
2578         XSync(xw.dpy, 0);
2579 }
2580
2581 void
2582 xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
2583         int winx = borderpx + x * xw.cw, winy = borderpx + y * xw.ch,
2584             width = charlen * xw.cw, xp, i;
2585         int frp, frcflags;
2586         int u8fl, u8fblen, u8cblen, doesexist;
2587         char *u8c, *u8fs;
2588         long u8char;
2589         Font *font = &dc.font;
2590         FcResult fcres;
2591         FcPattern *fcpattern, *fontpattern;
2592         FcFontSet *fcsets[] = { NULL };
2593         FcCharSet *fccharset;
2594         Colour *fg = &dc.col[base.fg], *bg = &dc.col[base.bg],
2595                  *temp, revfg, revbg;
2596         XRenderColor colfg, colbg;
2597
2598         frcflags = FRC_NORMAL;
2599
2600         if(base.mode & ATTR_BOLD) {
2601                 if(BETWEEN(base.fg, 0, 7)) {
2602                         /* basic system colors */
2603                         fg = &dc.col[base.fg + 8];
2604                 } else if(BETWEEN(base.fg, 16, 195)) {
2605                         /* 256 colors */
2606                         fg = &dc.col[base.fg + 36];
2607                 } else if(BETWEEN(base.fg, 232, 251)) {
2608                         /* greyscale */
2609                         fg = &dc.col[base.fg + 4];
2610                 }
2611                 /*
2612                  * Those ranges will not be brightened:
2613                  *      8 - 15 – bright system colors
2614                  *      196 - 231 – highest 256 color cube
2615                  *      252 - 255 – brightest colors in greyscale
2616                  */
2617                 font = &dc.bfont;
2618                 frcflags = FRC_BOLD;
2619         }
2620
2621         if(base.mode & ATTR_ITALIC) {
2622                 font = &dc.ifont;
2623                 frcflags = FRC_ITALIC;
2624         }
2625         if((base.mode & ATTR_ITALIC) && (base.mode & ATTR_BOLD)) {
2626                 font = &dc.ibfont;
2627                 frcflags = FRC_ITALICBOLD;
2628         }
2629
2630         if(IS_SET(MODE_REVERSE)) {
2631                 if(fg == &dc.col[defaultfg]) {
2632                         fg = &dc.col[defaultbg];
2633                 } else {
2634                         colfg.red = ~fg->color.red;
2635                         colfg.green = ~fg->color.green;
2636                         colfg.blue = ~fg->color.blue;
2637                         colfg.alpha = fg->color.alpha;
2638                         XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &revfg);
2639                         fg = &revfg;
2640                 }
2641
2642                 if(bg == &dc.col[defaultbg]) {
2643                         bg = &dc.col[defaultfg];
2644                 } else {
2645                         colbg.red = ~bg->color.red;
2646                         colbg.green = ~bg->color.green;
2647                         colbg.blue = ~bg->color.blue;
2648                         colbg.alpha = bg->color.alpha;
2649                         XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &revbg);
2650                         bg = &revbg;
2651                 }
2652         }
2653
2654         if(base.mode & ATTR_REVERSE) {
2655                 temp = fg;
2656                 fg = bg;
2657                 bg = temp;
2658         }
2659
2660         /* Intelligent cleaning up of the borders. */
2661         if(x == 0) {
2662                 xclear(0, (y == 0)? 0 : winy, borderpx,
2663                         winy + xw.ch + ((y >= term.row-1)? xw.h : 0));
2664         }
2665         if(x + charlen >= term.col) {
2666                 xclear(winx + width, (y == 0)? 0 : winy, xw.w,
2667                         ((y >= term.row-1)? xw.h : (winy + xw.ch)));
2668         }
2669         if(y == 0)
2670                 xclear(winx, 0, winx + width, borderpx);
2671         if(y == term.row-1)
2672                 xclear(winx, winy + xw.ch, winx + width, xw.h);
2673
2674         /* Clean up the region we want to draw to. */
2675         XftDrawRect(xw.draw, bg, winx, winy, width, xw.ch);
2676
2677         fcsets[0] = font->set;
2678         for (xp = winx; bytelen > 0;) {
2679                 /*
2680                  * Search for the range in the to be printed string of glyphs
2681                  * that are in the main font. Then print that range. If
2682                  * some glyph is found that is not in the font, do the
2683                  * fallback dance.
2684                  */
2685                 u8fs = s;
2686                 u8fblen = 0;
2687                 u8fl = 0;
2688                 for (;;) {
2689                         u8c = s;
2690                         u8cblen = utf8decode(s, &u8char);
2691                         s += u8cblen;
2692                         bytelen -= u8cblen;
2693
2694                         doesexist = XftCharIndex(xw.dpy, font->match, u8char);
2695                         if (!doesexist || bytelen <= 0) {
2696                                 if (bytelen <= 0) {
2697                                         if (doesexist) {
2698                                                 u8fl++;
2699                                                 u8fblen += u8cblen;
2700                                         }
2701                                 }
2702
2703                                 if (u8fl > 0) {
2704                                         XftDrawStringUtf8(xw.draw, fg,
2705                                                         font->match, xp,
2706                                                         winy + font->ascent,
2707                                                         (FcChar8 *)u8fs,
2708                                                         u8fblen);
2709                                         xp += font->width * u8fl;
2710                                 }
2711                                 break;
2712                         }
2713
2714                         u8fl++;
2715                         u8fblen += u8cblen;
2716                 }
2717                 if (doesexist)
2718                         break;
2719
2720                 frp = frccur;
2721                 /* Search the font cache. */
2722                 for (i = 0; i < frclen; i++, frp--) {
2723                         if (frp <= 0)
2724                                 frp = LEN(frc) - 1;
2725
2726                         if (frc[frp].c == u8char
2727                                         && frc[frp].flags == frcflags) {
2728                                 break;
2729                         }
2730                 }
2731
2732                 /* Nothing was found. */
2733                 if (i >= frclen) {
2734                         /*
2735                          * Nothing was found in the cache. Now use
2736                          * some dozen of Fontconfig calls to get the
2737                          * font for one single character.
2738                          */
2739                         fcpattern = FcPatternDuplicate(font->pattern);
2740                         fccharset = FcCharSetCreate();
2741
2742                         FcCharSetAddChar(fccharset, u8char);
2743                         FcPatternAddCharSet(fcpattern, FC_CHARSET,
2744                                         fccharset);
2745                         FcPatternAddBool(fcpattern, FC_SCALABLE,
2746                                         FcTrue);
2747
2748                         FcConfigSubstitute(0, fcpattern,
2749                                         FcMatchPattern);
2750                         FcDefaultSubstitute(fcpattern);
2751
2752                         fontpattern = FcFontSetMatch(0, fcsets,
2753                                         FcTrue, fcpattern, &fcres);
2754
2755                         /*
2756                          * Overwrite or create the new cache entry
2757                          * entry.
2758                          */
2759                         frccur++;
2760                         frclen++;
2761                         if (frccur >= LEN(frc))
2762                                 frccur = 0;
2763                         if (frclen > LEN(frc)) {
2764                                 frclen = LEN(frc);
2765                                 XftFontClose(xw.dpy, frc[frccur].font);
2766                         }
2767
2768                         frc[frccur].font = XftFontOpenPattern(xw.dpy,
2769                                         fontpattern);
2770                         frc[frccur].c = u8char;
2771                         frc[frccur].flags = frcflags;
2772
2773                         FcPatternDestroy(fcpattern);
2774                         FcCharSetDestroy(fccharset);
2775
2776                         frp = frccur;
2777                 }
2778
2779                 XftDrawStringUtf8(xw.draw, fg, frc[frp].font,
2780                                 xp, winy + frc[frp].font->ascent,
2781                                 (FcChar8 *)u8c, u8cblen);
2782
2783                 xp += font->width;
2784         }
2785
2786         /*
2787         XftDrawStringUtf8(xw.draw, fg, font->set, winx,
2788                         winy + font->ascent, (FcChar8 *)s, bytelen);
2789         */
2790
2791         if(base.mode & ATTR_UNDERLINE) {
2792                 XftDrawRect(xw.draw, fg, winx, winy + font->ascent + 1,
2793                                 width, 1);
2794         }
2795 }
2796
2797 void
2798 xdrawcursor(void) {
2799         static int oldx = 0, oldy = 0;
2800         int sl;
2801         Glyph g = {{' '}, ATTR_NULL, defaultbg, defaultcs, 0};
2802
2803         LIMIT(oldx, 0, term.col-1);
2804         LIMIT(oldy, 0, term.row-1);
2805
2806         if(term.line[term.c.y][term.c.x].state & GLYPH_SET)
2807                 memcpy(g.c, term.line[term.c.y][term.c.x].c, UTF_SIZ);
2808
2809         /* remove the old cursor */
2810         if(term.line[oldy][oldx].state & GLYPH_SET) {
2811                 sl = utf8size(term.line[oldy][oldx].c);
2812                 xdraws(term.line[oldy][oldx].c, term.line[oldy][oldx], oldx,
2813                                 oldy, 1, sl);
2814         } else {
2815                 xtermclear(oldx, oldy, oldx, oldy);
2816         }
2817
2818         /* draw the new one */
2819         if(!(IS_SET(MODE_HIDE))) {
2820                 if(!(xw.state & WIN_FOCUSED))
2821                         g.bg = defaultucs;
2822
2823                 if(IS_SET(MODE_REVERSE))
2824                         g.mode |= ATTR_REVERSE, g.fg = defaultcs, g.bg = defaultfg;
2825
2826                 sl = utf8size(g.c);
2827                 xdraws(g.c, g, term.c.x, term.c.y, 1, sl);
2828                 oldx = term.c.x, oldy = term.c.y;
2829         }
2830 }
2831
2832 void
2833 xresettitle(void) {
2834         XStoreName(xw.dpy, xw.win, opt_title ? opt_title : "st");
2835 }
2836
2837 void
2838 redraw(int timeout) {
2839         struct timespec tv = {0, timeout * 1000};
2840
2841         tfulldirt();
2842         draw();
2843
2844         if(timeout > 0) {
2845                 nanosleep(&tv, NULL);
2846                 XSync(xw.dpy, False); /* necessary for a good tput flash */
2847         }
2848 }
2849
2850 void
2851 draw(void) {
2852         XdbeSwapInfo swpinfo[1] = {{xw.win, XdbeCopied}};
2853
2854         drawregion(0, 0, term.col, term.row);
2855         if(usedbe) {
2856                 XdbeSwapBuffers(xw.dpy, swpinfo, 1);
2857         } else {
2858                 XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, xw.w,
2859                                 xw.h, 0, 0);
2860                 XSetForeground(xw.dpy, dc.gc, 0);
2861                 XSync(xw.dpy, False);
2862         }
2863 }
2864
2865 void
2866 drawregion(int x1, int y1, int x2, int y2) {
2867         int ic, ib, x, y, ox, sl;
2868         Glyph base, new;
2869         char buf[DRAW_BUF_SIZ];
2870         bool ena_sel = sel.bx != -1;
2871
2872         if(sel.alt ^ IS_SET(MODE_ALTSCREEN))
2873                 ena_sel = 0;
2874
2875         if(!(xw.state & WIN_VISIBLE))
2876                 return;
2877
2878         for(y = y1; y < y2; y++) {
2879                 if(!term.dirty[y])
2880                         continue;
2881
2882                 xtermclear(0, y, term.col, y);
2883                 term.dirty[y] = 0;
2884                 base = term.line[y][0];
2885                 ic = ib = ox = 0;
2886                 for(x = x1; x < x2; x++) {
2887                         new = term.line[y][x];
2888                         if(ena_sel && *(new.c) && selected(x, y))
2889                                 new.mode ^= ATTR_REVERSE;
2890                         if(ib > 0 && (!(new.state & GLYPH_SET)
2891                                         || ATTRCMP(base, new)
2892                                         || ib >= DRAW_BUF_SIZ-UTF_SIZ)) {
2893                                 xdraws(buf, base, ox, y, ic, ib);
2894                                 ic = ib = 0;
2895                         }
2896                         if(new.state & GLYPH_SET) {
2897                                 if(ib == 0) {
2898                                         ox = x;
2899                                         base = new;
2900                                 }
2901                                 sl = utf8size(new.c);
2902                                 memcpy(buf+ib, new.c, sl);
2903                                 ib += sl;
2904                                 ++ic;
2905                         }
2906                 }
2907                 if(ib > 0)
2908                         xdraws(buf, base, ox, y, ic, ib);
2909         }
2910         xdrawcursor();
2911 }
2912
2913 void
2914 expose(XEvent *ev) {
2915         XExposeEvent *e = &ev->xexpose;
2916
2917         if(xw.state & WIN_REDRAW) {
2918                 if(!e->count)
2919                         xw.state &= ~WIN_REDRAW;
2920         }
2921         redraw(0);
2922 }
2923
2924 void
2925 visibility(XEvent *ev) {
2926         XVisibilityEvent *e = &ev->xvisibility;
2927
2928         if(e->state == VisibilityFullyObscured) {
2929                 xw.state &= ~WIN_VISIBLE;
2930         } else if(!(xw.state & WIN_VISIBLE)) {
2931                 /* need a full redraw for next Expose, not just a buf copy */
2932                 xw.state |= WIN_VISIBLE | WIN_REDRAW;
2933         }
2934 }
2935
2936 void
2937 unmap(XEvent *ev) {
2938         xw.state &= ~WIN_VISIBLE;
2939 }
2940
2941 void
2942 xseturgency(int add) {
2943         XWMHints *h = XGetWMHints(xw.dpy, xw.win);
2944
2945         h->flags = add ? (h->flags | XUrgencyHint) : (h->flags & ~XUrgencyHint);
2946         XSetWMHints(xw.dpy, xw.win, h);
2947         XFree(h);
2948 }
2949
2950 void
2951 focus(XEvent *ev) {
2952         if(ev->type == FocusIn) {
2953                 XSetICFocus(xw.xic);
2954                 xw.state |= WIN_FOCUSED;
2955                 xseturgency(0);
2956         } else {
2957                 XUnsetICFocus(xw.xic);
2958                 xw.state &= ~WIN_FOCUSED;
2959         }
2960 }
2961
2962 inline bool
2963 match(uint mask, uint state) {
2964         if(mask == XK_NO_MOD && state)
2965                 return false;
2966         if(mask != XK_ANY_MOD && mask != XK_NO_MOD && !state)
2967                 return false;
2968         if((state & mask) != state)
2969                 return false;
2970         return true;
2971 }
2972
2973 void
2974 numlock(const Arg *dummy) {
2975         term.numlock ^= 1;
2976 }
2977
2978 char*
2979 kmap(KeySym k, uint state) {
2980         uint mask;
2981         Key *kp;
2982         int i;
2983
2984         /* Check for mapped keys out of X11 function keys. */
2985         for(i = 0; i < LEN(mappedkeys); i++) {
2986                 if(mappedkeys[i] == k)
2987                         break;
2988         }
2989         if(i == LEN(mappedkeys)) {
2990                 if((k & 0xFFFF) < 0xFD00)
2991                         return NULL;
2992         }
2993
2994         for(kp = key; kp < key + LEN(key); kp++) {
2995                 mask = kp->mask;
2996
2997                 if(kp->k != k)
2998                         continue;
2999
3000                 if(!match(mask, state))
3001                         continue;
3002
3003                 if(kp->appkey > 0) {
3004                         if(!IS_SET(MODE_APPKEYPAD))
3005                                 continue;
3006                         if(term.numlock && kp->appkey == 2)
3007                                 continue;
3008                 } else if(kp->appkey < 0 && IS_SET(MODE_APPKEYPAD)) {
3009                         continue;
3010                 }
3011
3012                 if((kp->appcursor < 0 && IS_SET(MODE_APPCURSOR)) ||
3013                                 (kp->appcursor > 0
3014                                  && !IS_SET(MODE_APPCURSOR))) {
3015                         continue;
3016                 }
3017
3018                 if((kp->crlf < 0 && IS_SET(MODE_CRLF)) ||
3019                                 (kp->crlf > 0 && !IS_SET(MODE_CRLF))) {
3020                         continue;
3021                 }
3022
3023                 return kp->s;
3024         }
3025
3026         return NULL;
3027 }
3028
3029 void
3030 kpress(XEvent *ev) {
3031         XKeyEvent *e = &ev->xkey;
3032         KeySym ksym;
3033         char xstr[31], buf[32], *customkey, *cp = buf;
3034         int len;
3035         Status status;
3036         Shortcut *bp;
3037
3038         if (IS_SET(MODE_KBDLOCK))
3039                 return;
3040
3041         len = XmbLookupString(xw.xic, e, xstr, sizeof(xstr), &ksym, &status);
3042         e->state &= ~Mod2Mask;
3043         /* 1. shortcuts */
3044         for(bp = shortcuts; bp < shortcuts + LEN(shortcuts); bp++) {
3045                 if(ksym == bp->keysym && match(bp->mod, e->state)) {
3046                         bp->func(&(bp->arg));
3047                         return;
3048                 }
3049         }
3050
3051         /* 2. custom keys from config.h */
3052         if((customkey = kmap(ksym, e->state))) {
3053                 len = strlen(customkey);
3054                 memcpy(buf, customkey, len);
3055         /* 2. hardcoded (overrides X lookup) */
3056         } else {
3057                 if(len == 0)
3058                         return;
3059
3060                 if (len == 1 && e->state & Mod1Mask)
3061                         *cp++ = '\033';
3062
3063                 memcpy(cp, xstr, len);
3064                 len = cp - buf + len;
3065         }
3066
3067         ttywrite(buf, len);
3068         if(IS_SET(MODE_ECHO))
3069                 techo(buf, len);
3070 }
3071
3072
3073 void
3074 cmessage(XEvent *e) {
3075         /* See xembed specs
3076            http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html */
3077         if(e->xclient.message_type == xw.xembed && e->xclient.format == 32) {
3078                 if(e->xclient.data.l[1] == XEMBED_FOCUS_IN) {
3079                         xw.state |= WIN_FOCUSED;
3080                         xseturgency(0);
3081                 } else if(e->xclient.data.l[1] == XEMBED_FOCUS_OUT) {
3082                         xw.state &= ~WIN_FOCUSED;
3083                 }
3084         } else if(e->xclient.data.l[0] == xw.wmdeletewin) {
3085                 /* Send SIGHUP to shell */
3086                 kill(pid, SIGHUP);
3087                 exit(EXIT_SUCCESS);
3088         }
3089 }
3090
3091 void
3092 cresize(int width, int height)
3093 {
3094         int col, row;
3095
3096         if(width != 0)
3097                 xw.w = width;
3098         if(height != 0)
3099                 xw.h = height;
3100
3101         col = (xw.w - 2 * borderpx) / xw.cw;
3102         row = (xw.h - 2 * borderpx) / xw.ch;
3103
3104         tresize(col, row);
3105         xresize(col, row);
3106         ttyresize();
3107 }
3108
3109 void
3110 resize(XEvent *e) {
3111         if(e->xconfigure.width == xw.w && e->xconfigure.height == xw.h)
3112                 return;
3113
3114         cresize(e->xconfigure.width, e->xconfigure.height);
3115 }
3116
3117 void
3118 run(void) {
3119         XEvent ev;
3120         fd_set rfd;
3121         int xfd = XConnectionNumber(xw.dpy), i;
3122         struct timeval drawtimeout, *tv = NULL;
3123
3124         for(i = 0;; i++) {
3125                 FD_ZERO(&rfd);
3126                 FD_SET(cmdfd, &rfd);
3127                 FD_SET(xfd, &rfd);
3128                 if(select(MAX(xfd, cmdfd)+1, &rfd, NULL, NULL, tv) < 0) {
3129                         if(errno == EINTR)
3130                                 continue;
3131                         die("select failed: %s\n", SERRNO);
3132                 }
3133
3134                 /*
3135                  * Stop after a certain number of reads so the user does not
3136                  * feel like the system is stuttering.
3137                  */
3138                 if(i < 1000 && FD_ISSET(cmdfd, &rfd)) {
3139                         ttyread();
3140
3141                         /*
3142                          * Just wait a bit so it isn't disturbing the
3143                          * user and the system is able to write something.
3144                          */
3145                         drawtimeout.tv_sec = 0;
3146                         drawtimeout.tv_usec = 5;
3147                         tv = &drawtimeout;
3148                         continue;
3149                 }
3150                 i = 0;
3151                 tv = NULL;
3152
3153                 while(XPending(xw.dpy)) {
3154                         XNextEvent(xw.dpy, &ev);
3155                         if(XFilterEvent(&ev, None))
3156                                 continue;
3157                         if(handler[ev.type])
3158                                 (handler[ev.type])(&ev);
3159                 }
3160
3161                 draw();
3162                 XFlush(xw.dpy);
3163         }
3164 }
3165
3166 int
3167 main(int argc, char *argv[]) {
3168         int i, bitm, xr, yr;
3169         uint wr, hr;
3170
3171         xw.fw = xw.fh = xw.fx = xw.fy = 0;
3172         xw.isfixed = False;
3173
3174         for(i = 1; i < argc; i++) {
3175                 switch(argv[i][0] != '-' || argv[i][2] ? -1 : argv[i][1]) {
3176                 case 'c':
3177                         if(++i < argc)
3178                                 opt_class = argv[i];
3179                         break;
3180                 case 'e':
3181                         /* eat all remaining arguments */
3182                         if(++i < argc)
3183                                 opt_cmd = &argv[i];
3184                         goto run;
3185                 case 'f':
3186                         if(++i < argc)
3187                                 opt_font = argv[i];
3188                         break;
3189                 case 'g':
3190                         if(++i >= argc)
3191                                 break;
3192
3193                         bitm = XParseGeometry(argv[i], &xr, &yr, &wr, &hr);
3194                         if(bitm & XValue)
3195                                 xw.fx = xr;
3196                         if(bitm & YValue)
3197                                 xw.fy = yr;
3198                         if(bitm & WidthValue)
3199                                 xw.fw = (int)wr;
3200                         if(bitm & HeightValue)
3201                                 xw.fh = (int)hr;
3202                         if(bitm & XNegative && xw.fx == 0)
3203                                 xw.fx = -1;
3204                         if(bitm & XNegative && xw.fy == 0)
3205                                 xw.fy = -1;
3206
3207                         if(xw.fh != 0 && xw.fw != 0)
3208                                 xw.isfixed = True;
3209                         break;
3210                 case 'o':
3211                         if(++i < argc)
3212                                 opt_io = argv[i];
3213                         break;
3214                 case 't':
3215                         if(++i < argc)
3216                                 opt_title = argv[i];
3217                         break;
3218                 case 'v':
3219                 default:
3220                         die(USAGE);
3221                 case 'w':
3222                         if(++i < argc)
3223                                 opt_embed = argv[i];
3224                         break;
3225                 }
3226         }
3227
3228 run:
3229         setlocale(LC_CTYPE, "");
3230         XSetLocaleModifiers("");
3231         tnew(80, 24);
3232         xinit();
3233         ttynew();
3234         selinit();
3235         run();
3236
3237         return 0;
3238 }
3239