1 /* See LICENSE for licence details. */
2 #define _XOPEN_SOURCE 600
15 #include <sys/ioctl.h>
16 #include <sys/select.h>
19 #include <sys/types.h>
23 #include <X11/Xatom.h>
25 #include <X11/Xutil.h>
26 #include <X11/cursorfont.h>
27 #include <X11/keysym.h>
28 #include <X11/Xft/Xft.h>
29 #include <fontconfig/fontconfig.h>
33 #define Draw XftDraw *
34 #define Colour XftColor
35 #define Colourmap Colormap
39 #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
41 #elif defined(__FreeBSD__) || defined(__DragonFly__)
46 "st " VERSION " (c) 2010-2013 st engineers\n" \
47 "usage: st [-v] [-c class] [-f font] [-g geometry] [-o file]" \
48 " [-t title] [-w windowid] [-e command ...]\n"
51 #define XEMBED_FOCUS_IN 4
52 #define XEMBED_FOCUS_OUT 5
56 #define ESC_BUF_SIZ (128*UTF_SIZ)
57 #define ESC_ARG_SIZ 16
58 #define STR_BUF_SIZ ESC_BUF_SIZ
59 #define STR_ARG_SIZ ESC_ARG_SIZ
60 #define DRAW_BUF_SIZ 20*1024
61 #define XK_ANY_MOD UINT_MAX
63 #define XK_SWITCH_MOD (1<<13)
65 #define REDRAW_TIMEOUT (80*1000) /* 80 ms */
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)
79 #define VT102ID "\033[?6c"
81 enum glyph_attribute
{
91 enum cursor_movement
{
114 MODE_MOUSEMOTION
= 64,
120 MODE_APPCURSOR
= 2048,
121 MODE_MOUSESGR
= 4096,
127 ESC_STR
= 4, /* DSC, OSC, PM, APC */
129 ESC_STR_END
= 16, /* a final string was encountered */
130 ESC_TEST
= 32, /* Enter in test mode */
139 enum selection_type
{
146 enum { B0
=1, B1
=2, B2
=4, B3
=8, B4
=16, B5
=32, B6
=64, B7
=128 };
148 typedef unsigned char uchar
;
149 typedef unsigned int uint
;
150 typedef unsigned long ulong
;
151 typedef unsigned short ushort
;
154 char c
[UTF_SIZ
]; /* character code */
155 uchar mode
; /* attribute flags */
156 ushort fg
; /* foreground */
157 ushort bg
; /* background */
158 uchar state
; /* state flags */
164 Glyph attr
; /* current char attributes */
170 /* CSI Escape sequence structs */
171 /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
173 char buf
[ESC_BUF_SIZ
]; /* raw string */
174 int len
; /* raw string length */
176 int arg
[ESC_ARG_SIZ
];
177 int narg
; /* nb of args */
181 /* STR Escape sequence structs */
182 /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
184 char type
; /* ESC type ... */
185 char buf
[STR_BUF_SIZ
]; /* raw string */
186 int len
; /* raw string length */
187 char *args
[STR_ARG_SIZ
];
188 int narg
; /* nb of args */
191 /* Internal representation of the screen */
193 int row
; /* nb row */
194 int col
; /* nb col */
195 Line
*line
; /* screen */
196 Line
*alt
; /* alternate screen */
197 bool *dirty
; /* dirtyness of lines */
198 TCursor c
; /* cursor */
199 int top
; /* top scroll limit */
200 int bot
; /* bottom scroll limit */
201 int mode
; /* terminal mode flags */
202 int esc
; /* escape state flags */
203 bool numlock
; /* lock numbers in keyboard */
207 /* Purely graphic info */
213 Atom xembed
, wmdeletewin
;
219 bool isfixed
; /* is fixed geometry? */
220 int fx
, fy
, fw
, fh
; /* fixed geometry */
221 int tw
, th
; /* tty width and height */
222 int w
, h
; /* window width and height */
223 int ch
; /* char height */
224 int cw
; /* char width */
225 char state
; /* focus, redraw, visible */
232 /* three valued logic variables: 0 indifferent, 1 on, -1 off */
233 signed char appkey
; /* application keypad */
234 signed char appcursor
; /* application cursor */
235 signed char crlf
; /* crlf mode */
238 /* TODO: use better name for vars... */
250 struct timeval tclick1
;
251 struct timeval tclick2
;
264 void (*func
)(const Arg
*);
268 /* function definitions used in config.h */
269 static void clippaste(const Arg
*);
270 static void numlock(const Arg
*);
271 static void selpaste(const Arg
*);
272 static void xzoom(const Arg
*);
274 /* Config.h for applying patches and the configuration. */
290 /* Drawing Context */
292 Colour col
[LEN(colorname
) < 256 ? 256 : LEN(colorname
)];
293 Font font
, bfont
, ifont
, ibfont
;
297 static void die(const char *, ...);
298 static void draw(void);
299 static void redraw(int);
300 static void drawregion(int, int, int, int);
301 static void execsh(void);
302 static void sigchld(int);
303 static void run(void);
305 static void csidump(void);
306 static void csihandle(void);
307 static void csiparse(void);
308 static void csireset(void);
309 static void strdump(void);
310 static void strhandle(void);
311 static void strparse(void);
312 static void strreset(void);
314 static void tclearregion(int, int, int, int, int);
315 static void tcursor(int);
316 static void tdeletechar(int);
317 static void tdeleteline(int);
318 static void tinsertblank(int);
319 static void tinsertblankline(int);
320 static void tmoveto(int, int);
321 static void tmoveato(int x
, int y
);
322 static void tnew(int, int);
323 static void tnewline(int);
324 static void tputtab(bool);
325 static void tputc(char *, int);
326 static void treset(void);
327 static int tresize(int, int);
328 static void tscrollup(int, int);
329 static void tscrolldown(int, int);
330 static void tsetattr(int*, int);
331 static void tsetchar(char *, Glyph
*, int, int);
332 static void tsetscroll(int, int);
333 static void tswapscreen(void);
334 static void tsetdirt(int, int);
335 static void tsetmode(bool, bool, int *, int);
336 static void tfulldirt(void);
337 static void techo(char *, int);
339 static inline bool match(uint
, uint
);
340 static void ttynew(void);
341 static void ttyread(void);
342 static void ttyresize(void);
343 static void ttywrite(const char *, size_t);
345 static void xdraws(char *, Glyph
, int, int, int, int);
346 static void xhints(void);
347 static void xclear(int, int, int, int);
348 static void xdrawcursor(void);
349 static void xinit(void);
350 static void xloadcols(void);
351 static int xsetcolorname(int, const char *);
352 static int xloadfont(Font
*, FcPattern
*);
353 static void xloadfonts(char *, int);
354 static void xsettitle(char *);
355 static void xresettitle(void);
356 static void xseturgency(int);
357 static void xsetsel(char*);
358 static void xtermclear(int, int, int, int);
359 static void xunloadfonts(void);
360 static void xresize(int, int);
362 static void expose(XEvent
*);
363 static void visibility(XEvent
*);
364 static void unmap(XEvent
*);
365 static char *kmap(KeySym
, uint
);
366 static void kpress(XEvent
*);
367 static void cmessage(XEvent
*);
368 static void cresize(int, int);
369 static void resize(XEvent
*);
370 static void focus(XEvent
*);
371 static void brelease(XEvent
*);
372 static void bpress(XEvent
*);
373 static void bmotion(XEvent
*);
374 static void selnotify(XEvent
*);
375 static void selclear(XEvent
*);
376 static void selrequest(XEvent
*);
378 static void selinit(void);
379 static inline bool selected(int, int);
380 static void selcopy(void);
381 static void selscroll(int, int);
383 static int utf8decode(char *, long *);
384 static int utf8encode(long *, char *);
385 static int utf8size(char *);
386 static int isfullutf8(char *, int);
388 static ssize_t
xwrite(int, char *, size_t);
389 static void *xmalloc(size_t);
390 static void *xrealloc(void *, size_t);
391 static void *xcalloc(size_t, size_t);
393 static void (*handler
[LASTEvent
])(XEvent
*) = {
395 [ClientMessage
] = cmessage
,
396 [ConfigureNotify
] = resize
,
397 [VisibilityNotify
] = visibility
,
398 [UnmapNotify
] = unmap
,
402 [MotionNotify
] = bmotion
,
403 [ButtonPress
] = bpress
,
404 [ButtonRelease
] = brelease
,
405 [SelectionClear
] = selclear
,
406 [SelectionNotify
] = selnotify
,
407 [SelectionRequest
] = selrequest
,
414 static CSIEscape csiescseq
;
415 static STREscape strescseq
;
418 static Selection sel
;
419 static int iofd
= -1;
420 static char **opt_cmd
= NULL
;
421 static char *opt_io
= NULL
;
422 static char *opt_title
= NULL
;
423 static char *opt_embed
= NULL
;
424 static char *opt_class
= NULL
;
425 static char *opt_font
= NULL
;
427 static char *usedfont
= NULL
;
428 static int usedfontsize
= 0;
430 /* Font Ring Cache */
445 * Fontcache is a ring buffer, with frccur as current position and frclen as
446 * the current length of used elements.
449 static Fontcache frc
[1024];
450 static int frccur
= -1, frclen
= 0;
453 xwrite(int fd
, char *s
, size_t len
) {
457 ssize_t r
= write(fd
, s
, len
);
467 xmalloc(size_t len
) {
468 void *p
= malloc(len
);
471 die("Out of memory\n");
477 xrealloc(void *p
, size_t len
) {
478 if((p
= realloc(p
, len
)) == NULL
)
479 die("Out of memory\n");
485 xcalloc(size_t nmemb
, size_t size
) {
486 void *p
= calloc(nmemb
, size
);
489 die("Out of memory\n");
495 utf8decode(char *s
, long *u
) {
501 if(~c
& B7
) { /* 0xxxxxxx */
504 } else if((c
& (B7
|B6
|B5
)) == (B7
|B6
)) { /* 110xxxxx */
505 *u
= c
&(B4
|B3
|B2
|B1
|B0
);
507 } else if((c
& (B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) { /* 1110xxxx */
508 *u
= c
&(B3
|B2
|B1
|B0
);
510 } else if((c
& (B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
)) { /* 11110xxx */
517 for(i
= n
, ++s
; i
> 0; --i
, ++rtn
, ++s
) {
519 if((c
& (B7
|B6
)) != B7
) /* 10xxxxxx */
522 *u
|= c
& (B5
|B4
|B3
|B2
|B1
|B0
);
525 if((n
== 1 && *u
< 0x80) ||
526 (n
== 2 && *u
< 0x800) ||
527 (n
== 3 && *u
< 0x10000) ||
528 (*u
>= 0xD800 && *u
<= 0xDFFF)) {
540 utf8encode(long *u
, char *s
) {
548 *sp
= uc
; /* 0xxxxxxx */
550 } else if(*u
< 0x800) {
551 *sp
= (uc
>> 6) | (B7
|B6
); /* 110xxxxx */
553 } else if(uc
< 0x10000) {
554 *sp
= (uc
>> 12) | (B7
|B6
|B5
); /* 1110xxxx */
556 } else if(uc
<= 0x10FFFF) {
557 *sp
= (uc
>> 18) | (B7
|B6
|B5
|B4
); /* 11110xxx */
563 for(i
=n
,++sp
; i
>0; --i
,++sp
)
564 *sp
= ((uc
>> 6*(i
-1)) & (B5
|B4
|B3
|B2
|B1
|B0
)) | B7
; /* 10xxxxxx */
576 /* use this if your buffer is less than UTF_SIZ, it returns 1 if you can decode
577 UTF-8 otherwise return 0 */
579 isfullutf8(char *s
, int b
) {
587 } else if((*c1
&(B7
|B6
|B5
)) == (B7
|B6
) && b
== 1) {
589 } else if((*c1
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
) &&
591 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
))) {
593 } else if((*c1
&(B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
) &&
595 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
) ||
596 ((b
== 3) && (*c2
&(B7
|B6
)) == B7
&& (*c3
&(B7
|B6
)) == B7
))) {
609 } else if((c
&(B7
|B6
|B5
)) == (B7
|B6
)) {
611 } else if((c
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) {
620 memset(&sel
.tclick1
, 0, sizeof(sel
.tclick1
));
621 memset(&sel
.tclick2
, 0, sizeof(sel
.tclick2
));
625 sel
.xtarget
= XInternAtom(xw
.dpy
, "UTF8_STRING", 0);
626 if(sel
.xtarget
== None
)
627 sel
.xtarget
= XA_STRING
;
635 return LIMIT(x
, 0, term
.col
-1);
643 return LIMIT(y
, 0, term
.row
-1);
647 selected(int x
, int y
) {
650 if(sel
.ey
== y
&& sel
.by
== y
) {
651 bx
= MIN(sel
.bx
, sel
.ex
);
652 ex
= MAX(sel
.bx
, sel
.ex
);
653 return BETWEEN(x
, bx
, ex
);
656 return ((sel
.b
.y
< y
&& y
< sel
.e
.y
)
657 || (y
== sel
.e
.y
&& x
<= sel
.e
.x
))
658 || (y
== sel
.b
.y
&& x
>= sel
.b
.x
659 && (x
<= sel
.e
.x
|| sel
.b
.y
!= sel
.e
.y
));
662 return ((sel
.b
.y
< y
&& y
< sel
.e
.y
)
663 || (y
== sel
.e
.y
&& x
<= sel
.e
.x
))
664 || (y
== sel
.b
.y
&& x
>= sel
.b
.x
665 && (x
<= sel
.e
.x
|| sel
.b
.y
!= sel
.e
.y
));
666 case SEL_RECTANGULAR
:
667 return ((sel
.b
.y
<= y
&& y
<= sel
.e
.y
)
668 && (sel
.b
.x
<= x
&& x
<= sel
.e
.x
));
673 getbuttoninfo(XEvent
*e
) {
675 uint state
= e
->xbutton
.state
&~Button1Mask
;
677 sel
.alt
= IS_SET(MODE_ALTSCREEN
);
679 sel
.ex
= x2col(e
->xbutton
.x
);
680 sel
.ey
= y2row(e
->xbutton
.y
);
682 sel
.b
.x
= sel
.by
< sel
.ey
? sel
.bx
: sel
.ex
;
683 sel
.b
.y
= MIN(sel
.by
, sel
.ey
);
684 sel
.e
.x
= sel
.by
< sel
.ey
? sel
.ex
: sel
.bx
;
685 sel
.e
.y
= MAX(sel
.by
, sel
.ey
);
687 sel
.type
= SEL_REGULAR
;
688 for(type
= 1; type
< LEN(selmasks
); ++type
) {
689 if(match(selmasks
[type
], state
)) {
697 mousereport(XEvent
*e
) {
698 int x
= x2col(e
->xbutton
.x
), y
= y2row(e
->xbutton
.y
),
699 button
= e
->xbutton
.button
, state
= e
->xbutton
.state
,
702 static int ob
, ox
, oy
;
705 if(e
->xbutton
.type
== MotionNotify
) {
706 if(!IS_SET(MODE_MOUSEMOTION
) || (x
== ox
&& y
== oy
))
710 } else if(!IS_SET(MODE_MOUSESGR
)
711 && (e
->xbutton
.type
== ButtonRelease
712 || button
== AnyButton
)) {
718 if(e
->xbutton
.type
== ButtonPress
) {
724 button
+= (state
& ShiftMask
? 4 : 0)
725 + (state
& Mod4Mask
? 8 : 0)
726 + (state
& ControlMask
? 16 : 0);
729 if(IS_SET(MODE_MOUSESGR
)) {
730 len
= snprintf(buf
, sizeof(buf
), "\033[<%d;%d;%d%c",
732 e
->xbutton
.type
== ButtonRelease
? 'm' : 'M');
733 } else if(x
< 223 && y
< 223) {
734 len
= snprintf(buf
, sizeof(buf
), "\033[M%c%c%c",
735 32+button
, 32+x
+1, 32+y
+1);
745 if(IS_SET(MODE_MOUSE
)) {
747 } else if(e
->xbutton
.button
== Button1
) {
750 tsetdirt(sel
.b
.y
, sel
.e
.y
);
754 sel
.type
= SEL_REGULAR
;
755 sel
.ex
= sel
.bx
= x2col(e
->xbutton
.x
);
756 sel
.ey
= sel
.by
= y2row(e
->xbutton
.y
);
757 } else if(e
->xbutton
.button
== Button4
) {
759 } else if(e
->xbutton
.button
== Button5
) {
767 int x
, y
, bufsize
, is_selected
= 0, size
;
773 bufsize
= (term
.col
+1) * (sel
.e
.y
-sel
.b
.y
+1) * UTF_SIZ
;
774 ptr
= str
= xmalloc(bufsize
);
776 /* append every set & selected glyph to the selection */
777 for(y
= sel
.b
.y
; y
< sel
.e
.y
+ 1; y
++) {
779 gp
= &term
.line
[y
][0];
780 last
= gp
+ term
.col
;
782 while(--last
>= gp
&& !(last
->state
& GLYPH_SET
))
785 for(x
= 0; gp
<= last
; x
++, ++gp
) {
786 if(!selected(x
, y
)) {
792 p
= (gp
->state
& GLYPH_SET
) ? gp
->c
: " ";
794 memcpy(ptr
, p
, size
);
797 /* \n at the end of every selected line except for the last one */
798 if(is_selected
&& y
< sel
.e
.y
)
807 selnotify(XEvent
*e
) {
808 ulong nitems
, ofs
, rem
;
815 if(XGetWindowProperty(xw
.dpy
, xw
.win
, XA_PRIMARY
, ofs
, BUFSIZ
/4,
816 False
, AnyPropertyType
, &type
, &format
,
817 &nitems
, &rem
, &data
)) {
818 fprintf(stderr
, "Clipboard allocation failed\n");
821 ttywrite((const char *) data
, nitems
* format
/ 8);
823 /* number of 32-bit chunks returned */
824 ofs
+= nitems
* format
/ 32;
829 selpaste(const Arg
*dummy
) {
830 XConvertSelection(xw
.dpy
, XA_PRIMARY
, sel
.xtarget
, XA_PRIMARY
,
831 xw
.win
, CurrentTime
);
835 clippaste(const Arg
*dummy
) {
838 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
839 XConvertSelection(xw
.dpy
, clipboard
, sel
.xtarget
, XA_PRIMARY
,
840 xw
.win
, CurrentTime
);
844 selclear(XEvent
*e
) {
848 tsetdirt(sel
.b
.y
, sel
.e
.y
);
852 selrequest(XEvent
*e
) {
853 XSelectionRequestEvent
*xsre
;
855 Atom xa_targets
, string
;
857 xsre
= (XSelectionRequestEvent
*) e
;
858 xev
.type
= SelectionNotify
;
859 xev
.requestor
= xsre
->requestor
;
860 xev
.selection
= xsre
->selection
;
861 xev
.target
= xsre
->target
;
862 xev
.time
= xsre
->time
;
866 xa_targets
= XInternAtom(xw
.dpy
, "TARGETS", 0);
867 if(xsre
->target
== xa_targets
) {
868 /* respond with the supported type */
869 string
= sel
.xtarget
;
870 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
871 XA_ATOM
, 32, PropModeReplace
,
872 (uchar
*) &string
, 1);
873 xev
.property
= xsre
->property
;
874 } else if(xsre
->target
== sel
.xtarget
&& sel
.clip
!= NULL
) {
875 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
876 xsre
->target
, 8, PropModeReplace
,
877 (uchar
*) sel
.clip
, strlen(sel
.clip
));
878 xev
.property
= xsre
->property
;
881 /* all done, send a notification to the listener */
882 if(!XSendEvent(xsre
->display
, xsre
->requestor
, True
, 0, (XEvent
*) &xev
))
883 fprintf(stderr
, "Error sending SelectionNotify event\n");
888 /* register the selection for both the clipboard and the primary */
894 XSetSelectionOwner(xw
.dpy
, XA_PRIMARY
, xw
.win
, CurrentTime
);
896 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
897 XSetSelectionOwner(xw
.dpy
, clipboard
, xw
.win
, CurrentTime
);
901 brelease(XEvent
*e
) {
904 if(IS_SET(MODE_MOUSE
)) {
909 if(e
->xbutton
.button
== Button2
) {
911 } else if(e
->xbutton
.button
== Button1
) {
914 term
.dirty
[sel
.ey
] = 1;
915 if(sel
.bx
== sel
.ex
&& sel
.by
== sel
.ey
) {
917 gettimeofday(&now
, NULL
);
919 if(TIMEDIFF(now
, sel
.tclick2
) <= tripleclicktimeout
) {
920 /* triple click on the line */
921 sel
.b
.x
= sel
.bx
= 0;
922 sel
.e
.x
= sel
.ex
= term
.col
;
923 sel
.b
.y
= sel
.e
.y
= sel
.ey
;
925 } else if(TIMEDIFF(now
, sel
.tclick1
) <= doubleclicktimeout
) {
926 /* double click to select word */
928 while(sel
.bx
> 0 && term
.line
[sel
.ey
][sel
.bx
-1].state
& GLYPH_SET
&&
929 term
.line
[sel
.ey
][sel
.bx
-1].c
[0] != ' ') {
933 while(sel
.ex
< term
.col
-1 && term
.line
[sel
.ey
][sel
.ex
+1].state
& GLYPH_SET
&&
934 term
.line
[sel
.ey
][sel
.ex
+1].c
[0] != ' ') {
938 sel
.b
.y
= sel
.e
.y
= sel
.ey
;
946 memcpy(&sel
.tclick2
, &sel
.tclick1
, sizeof(struct timeval
));
947 gettimeofday(&sel
.tclick1
, NULL
);
952 int oldey
, oldex
, oldsby
, oldsey
;
954 if(IS_SET(MODE_MOUSE
)) {
968 if(oldey
!= sel
.ey
|| oldex
!= sel
.ex
) {
969 tsetdirt(MIN(sel
.b
.y
, oldsby
), MAX(sel
.e
.y
, oldsey
));
974 die(const char *errstr
, ...) {
977 va_start(ap
, errstr
);
978 vfprintf(stderr
, errstr
, ap
);
986 char *envshell
= getenv("SHELL");
987 const struct passwd
*pass
= getpwuid(getuid());
988 char buf
[sizeof(long) * 8 + 1];
995 setenv("LOGNAME", pass
->pw_name
, 1);
996 setenv("USER", pass
->pw_name
, 1);
997 setenv("SHELL", pass
->pw_shell
, 0);
998 setenv("HOME", pass
->pw_dir
, 0);
1001 snprintf(buf
, sizeof(buf
), "%lu", xw
.win
);
1002 setenv("WINDOWID", buf
, 1);
1004 signal(SIGCHLD
, SIG_DFL
);
1005 signal(SIGHUP
, SIG_DFL
);
1006 signal(SIGINT
, SIG_DFL
);
1007 signal(SIGQUIT
, SIG_DFL
);
1008 signal(SIGTERM
, SIG_DFL
);
1009 signal(SIGALRM
, SIG_DFL
);
1011 DEFAULT(envshell
, shell
);
1012 setenv("TERM", termname
, 1);
1013 args
= opt_cmd
? opt_cmd
: (char *[]){envshell
, "-i", NULL
};
1014 execvp(args
[0], args
);
1022 if(waitpid(pid
, &stat
, 0) < 0)
1023 die("Waiting for pid %hd failed: %s\n", pid
, SERRNO
);
1025 if(WIFEXITED(stat
)) {
1026 exit(WEXITSTATUS(stat
));
1035 struct winsize w
= {term
.row
, term
.col
, 0, 0};
1037 /* seems to work fine on linux, openbsd and freebsd */
1038 if(openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
1039 die("openpty failed: %s\n", SERRNO
);
1041 switch(pid
= fork()) {
1043 die("fork failed\n");
1046 setsid(); /* create a new process group */
1047 dup2(s
, STDIN_FILENO
);
1048 dup2(s
, STDOUT_FILENO
);
1049 dup2(s
, STDERR_FILENO
);
1050 if(ioctl(s
, TIOCSCTTY
, NULL
) < 0)
1051 die("ioctl TIOCSCTTY failed: %s\n", SERRNO
);
1059 signal(SIGCHLD
, sigchld
);
1061 iofd
= (!strcmp(opt_io
, "-")) ?
1063 open(opt_io
, O_WRONLY
| O_CREAT
, 0666);
1065 fprintf(stderr
, "Error opening %s:%s\n",
1066 opt_io
, strerror(errno
));
1076 fprintf(stderr
, " %02x '%c' ", c
, isprint(c
)?c
:'.');
1078 fprintf(stderr
, "\n");
1083 static char buf
[BUFSIZ
];
1084 static int buflen
= 0;
1087 int charsize
; /* size of utf8 char in bytes */
1091 /* append read bytes to unprocessed bytes */
1092 if((ret
= read(cmdfd
, buf
+buflen
, LEN(buf
)-buflen
)) < 0)
1093 die("Couldn't read from shell: %s\n", SERRNO
);
1095 /* process every complete utf8 char */
1098 while(buflen
>= UTF_SIZ
|| isfullutf8(ptr
,buflen
)) {
1099 charsize
= utf8decode(ptr
, &utf8c
);
1100 utf8encode(&utf8c
, s
);
1106 /* keep any uncomplete utf8 char for the next call */
1107 memmove(buf
, ptr
, buflen
);
1111 ttywrite(const char *s
, size_t n
) {
1112 if(write(cmdfd
, s
, n
) == -1)
1113 die("write error on tty: %s\n", SERRNO
);
1120 w
.ws_row
= term
.row
;
1121 w
.ws_col
= term
.col
;
1122 w
.ws_xpixel
= xw
.tw
;
1123 w
.ws_ypixel
= xw
.th
;
1124 if(ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
1125 fprintf(stderr
, "Couldn't set window size: %s\n", SERRNO
);
1129 tsetdirt(int top
, int bot
) {
1132 LIMIT(top
, 0, term
.row
-1);
1133 LIMIT(bot
, 0, term
.row
-1);
1135 for(i
= top
; i
<= bot
; i
++)
1141 tsetdirt(0, term
.row
-1);
1148 if(mode
== CURSOR_SAVE
) {
1150 } else if(mode
== CURSOR_LOAD
) {
1160 term
.c
= (TCursor
){{
1164 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
1166 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1167 for(i
= tabspaces
; i
< term
.col
; i
+= tabspaces
)
1170 term
.bot
= term
.row
- 1;
1171 term
.mode
= MODE_WRAP
;
1173 tclearregion(0, 0, term
.col
-1, term
.row
-1, 0);
1175 tcursor(CURSOR_SAVE
);
1179 tnew(int col
, int row
) {
1180 /* set screen size */
1183 term
.line
= xmalloc(term
.row
* sizeof(Line
));
1184 term
.alt
= xmalloc(term
.row
* sizeof(Line
));
1185 term
.dirty
= xmalloc(term
.row
* sizeof(*term
.dirty
));
1186 term
.tabs
= xmalloc(term
.col
* sizeof(*term
.tabs
));
1188 for(row
= 0; row
< term
.row
; row
++) {
1189 term
.line
[row
] = xmalloc(term
.col
* sizeof(Glyph
));
1190 term
.alt
[row
] = xmalloc(term
.col
* sizeof(Glyph
));
1191 term
.dirty
[row
] = 0;
1195 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1202 Line
*tmp
= term
.line
;
1204 term
.line
= term
.alt
;
1206 term
.mode
^= MODE_ALTSCREEN
;
1211 tscrolldown(int orig
, int n
) {
1215 LIMIT(n
, 0, term
.bot
-orig
+1);
1217 tclearregion(0, term
.bot
-n
+1, term
.col
-1, term
.bot
, 0);
1219 for(i
= term
.bot
; i
>= orig
+n
; i
--) {
1220 temp
= term
.line
[i
];
1221 term
.line
[i
] = term
.line
[i
-n
];
1222 term
.line
[i
-n
] = temp
;
1225 term
.dirty
[i
-n
] = 1;
1232 tscrollup(int orig
, int n
) {
1235 LIMIT(n
, 0, term
.bot
-orig
+1);
1237 tclearregion(0, orig
, term
.col
-1, orig
+n
-1, 0);
1239 for(i
= orig
; i
<= term
.bot
-n
; i
++) {
1240 temp
= term
.line
[i
];
1241 term
.line
[i
] = term
.line
[i
+n
];
1242 term
.line
[i
+n
] = temp
;
1245 term
.dirty
[i
+n
] = 1;
1248 selscroll(orig
, -n
);
1252 selscroll(int orig
, int n
) {
1256 if(BETWEEN(sel
.by
, orig
, term
.bot
) || BETWEEN(sel
.ey
, orig
, term
.bot
)) {
1257 if((sel
.by
+= n
) > term
.bot
|| (sel
.ey
+= n
) < term
.top
) {
1263 if(sel
.by
< term
.top
) {
1267 if(sel
.ey
> term
.bot
) {
1272 case SEL_RECTANGULAR
:
1273 if(sel
.by
< term
.top
)
1275 if(sel
.ey
> term
.bot
)
1279 sel
.b
.y
= sel
.by
, sel
.b
.x
= sel
.bx
;
1280 sel
.e
.y
= sel
.ey
, sel
.e
.x
= sel
.ex
;
1285 tnewline(int first_col
) {
1289 tscrollup(term
.top
, 1);
1293 tmoveto(first_col
? 0 : term
.c
.x
, y
);
1298 /* int noarg = 1; */
1299 char *p
= csiescseq
.buf
;
1303 csiescseq
.priv
= 1, p
++;
1305 while(p
< csiescseq
.buf
+csiescseq
.len
) {
1306 while(isdigit(*p
)) {
1307 csiescseq
.arg
[csiescseq
.narg
] *= 10;
1308 csiescseq
.arg
[csiescseq
.narg
] += *p
++ - '0'/*, noarg = 0 */;
1310 if(*p
== ';' && csiescseq
.narg
+1 < ESC_ARG_SIZ
) {
1311 csiescseq
.narg
++, p
++;
1313 csiescseq
.mode
= *p
;
1321 /* for absolute user moves, when decom is set */
1323 tmoveato(int x
, int y
) {
1324 tmoveto(x
, y
+ ((term
.c
.state
& CURSOR_ORIGIN
) ? term
.top
: 0));
1328 tmoveto(int x
, int y
) {
1331 if(term
.c
.state
& CURSOR_ORIGIN
) {
1336 maxy
= term
.row
- 1;
1338 LIMIT(x
, 0, term
.col
-1);
1339 LIMIT(y
, miny
, maxy
);
1340 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
1346 tsetchar(char *c
, Glyph
*attr
, int x
, int y
) {
1347 static char *vt100_0
[62] = { /* 0x41 - 0x7e */
1348 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1349 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1350 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1351 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1352 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1353 "", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1354 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1355 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1359 * The table is proudly stolen from rxvt.
1361 if(attr
->mode
& ATTR_GFX
) {
1362 if(c
[0] >= 0x41 && c
[0] <= 0x7e
1363 && vt100_0
[c
[0] - 0x41]) {
1364 c
= vt100_0
[c
[0] - 0x41];
1369 term
.line
[y
][x
] = *attr
;
1370 memcpy(term
.line
[y
][x
].c
, c
, UTF_SIZ
);
1371 term
.line
[y
][x
].state
|= GLYPH_SET
;
1375 tclearregion(int x1
, int y1
, int x2
, int y2
, int bce
) {
1379 temp
= x1
, x1
= x2
, x2
= temp
;
1381 temp
= y1
, y1
= y2
, y2
= temp
;
1383 LIMIT(x1
, 0, term
.col
-1);
1384 LIMIT(x2
, 0, term
.col
-1);
1385 LIMIT(y1
, 0, term
.row
-1);
1386 LIMIT(y2
, 0, term
.row
-1);
1388 for(y
= y1
; y
<= y2
; y
++) {
1390 for(x
= x1
; x
<= x2
; x
++) {
1392 term
.line
[y
][x
] = term
.c
.attr
;
1393 memcpy(term
.line
[y
][x
].c
, " ", 2);
1394 term
.line
[y
][x
].state
|= GLYPH_SET
;
1396 term
.line
[y
][x
].state
= 0;
1403 tdeletechar(int n
) {
1404 int src
= term
.c
.x
+ n
;
1406 int size
= term
.col
- src
;
1408 term
.dirty
[term
.c
.y
] = 1;
1410 if(src
>= term
.col
) {
1411 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
, 0);
1415 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1416 size
* sizeof(Glyph
));
1417 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
, 0);
1421 tinsertblank(int n
) {
1424 int size
= term
.col
- dst
;
1426 term
.dirty
[term
.c
.y
] = 1;
1428 if(dst
>= term
.col
) {
1429 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
, 0);
1433 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1434 size
* sizeof(Glyph
));
1435 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
, 0);
1439 tinsertblankline(int n
) {
1440 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1443 tscrolldown(term
.c
.y
, n
);
1447 tdeleteline(int n
) {
1448 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1451 tscrollup(term
.c
.y
, n
);
1455 tsetattr(int *attr
, int l
) {
1458 for(i
= 0; i
< l
; i
++) {
1461 term
.c
.attr
.mode
&= ~(ATTR_REVERSE
| ATTR_UNDERLINE
| ATTR_BOLD \
1462 | ATTR_ITALIC
| ATTR_BLINK
);
1463 term
.c
.attr
.fg
= defaultfg
;
1464 term
.c
.attr
.bg
= defaultbg
;
1467 term
.c
.attr
.mode
|= ATTR_BOLD
;
1470 term
.c
.attr
.mode
|= ATTR_ITALIC
;
1473 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
1475 case 5: /* slow blink */
1476 case 6: /* rapid blink */
1477 term
.c
.attr
.mode
|= ATTR_BLINK
;
1480 term
.c
.attr
.mode
|= ATTR_REVERSE
;
1484 term
.c
.attr
.mode
&= ~ATTR_BOLD
;
1487 term
.c
.attr
.mode
&= ~ATTR_ITALIC
;
1490 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
1494 term
.c
.attr
.mode
&= ~ATTR_BLINK
;
1497 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
1500 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1502 if(BETWEEN(attr
[i
], 0, 255)) {
1503 term
.c
.attr
.fg
= attr
[i
];
1506 "erresc: bad fgcolor %d\n",
1511 "erresc(38): gfx attr %d unknown\n",
1516 term
.c
.attr
.fg
= defaultfg
;
1519 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1521 if(BETWEEN(attr
[i
], 0, 255)) {
1522 term
.c
.attr
.bg
= attr
[i
];
1525 "erresc: bad bgcolor %d\n",
1530 "erresc(48): gfx attr %d unknown\n",
1535 term
.c
.attr
.bg
= defaultbg
;
1538 if(BETWEEN(attr
[i
], 30, 37)) {
1539 term
.c
.attr
.fg
= attr
[i
] - 30;
1540 } else if(BETWEEN(attr
[i
], 40, 47)) {
1541 term
.c
.attr
.bg
= attr
[i
] - 40;
1542 } else if(BETWEEN(attr
[i
], 90, 97)) {
1543 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
1544 } else if(BETWEEN(attr
[i
], 100, 107)) {
1545 term
.c
.attr
.bg
= attr
[i
] - 100 + 8;
1548 "erresc(default): gfx attr %d unknown\n",
1549 attr
[i
]), csidump();
1557 tsetscroll(int t
, int b
) {
1560 LIMIT(t
, 0, term
.row
-1);
1561 LIMIT(b
, 0, term
.row
-1);
1571 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
1574 tsetmode(bool priv
, bool set
, int *args
, int narg
) {
1578 for(lim
= args
+ narg
; args
< lim
; ++args
) {
1582 case 1: /* DECCKM -- Cursor key */
1583 MODBIT(term
.mode
, set
, MODE_APPCURSOR
);
1585 case 5: /* DECSCNM -- Reverse video */
1587 MODBIT(term
.mode
, set
, MODE_REVERSE
);
1588 if(mode
!= term
.mode
)
1589 redraw(REDRAW_TIMEOUT
);
1591 case 6: /* DECOM -- Origin */
1592 MODBIT(term
.c
.state
, set
, CURSOR_ORIGIN
);
1595 case 7: /* DECAWM -- Auto wrap */
1596 MODBIT(term
.mode
, set
, MODE_WRAP
);
1598 case 0: /* Error (IGNORED) */
1599 case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
1600 case 3: /* DECCOLM -- Column (IGNORED) */
1601 case 4: /* DECSCLM -- Scroll (IGNORED) */
1602 case 8: /* DECARM -- Auto repeat (IGNORED) */
1603 case 18: /* DECPFF -- Printer feed (IGNORED) */
1604 case 19: /* DECPEX -- Printer extent (IGNORED) */
1605 case 42: /* DECNRCM -- National characters (IGNORED) */
1606 case 12: /* att610 -- Start blinking cursor (IGNORED) */
1608 case 25: /* DECTCEM -- Text Cursor Enable Mode */
1609 MODBIT(term
.mode
, !set
, MODE_HIDE
);
1611 case 1000: /* 1000,1002: enable xterm mouse report */
1612 MODBIT(term
.mode
, set
, MODE_MOUSEBTN
);
1613 MODBIT(term
.mode
, 0, MODE_MOUSEMOTION
);
1616 MODBIT(term
.mode
, set
, MODE_MOUSEMOTION
);
1617 MODBIT(term
.mode
, 0, MODE_MOUSEBTN
);
1620 MODBIT(term
.mode
, set
, MODE_MOUSESGR
);
1622 case 1049: /* = 1047 and 1048 */
1625 alt
= IS_SET(MODE_ALTSCREEN
);
1627 tclearregion(0, 0, term
.col
-1,
1630 if(set
^ alt
) /* set is always 1 or 0 */
1637 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
1641 "erresc: unknown private set/reset mode %d\n",
1647 case 0: /* Error (IGNORED) */
1649 case 2: /* KAM -- keyboard action */
1650 MODBIT(term
.mode
, set
, MODE_KBDLOCK
);
1652 case 4: /* IRM -- Insertion-replacement */
1653 MODBIT(term
.mode
, set
, MODE_INSERT
);
1655 case 12: /* SRM -- Send/Receive */
1656 MODBIT(term
.mode
, !set
, MODE_ECHO
);
1658 case 20: /* LNM -- Linefeed/new line */
1659 MODBIT(term
.mode
, set
, MODE_CRLF
);
1663 "erresc: unknown set/reset mode %d\n",
1675 switch(csiescseq
.mode
) {
1678 fprintf(stderr
, "erresc: unknown csi ");
1682 case '@': /* ICH -- Insert <n> blank char */
1683 DEFAULT(csiescseq
.arg
[0], 1);
1684 tinsertblank(csiescseq
.arg
[0]);
1686 case 'A': /* CUU -- Cursor <n> Up */
1687 DEFAULT(csiescseq
.arg
[0], 1);
1688 tmoveto(term
.c
.x
, term
.c
.y
-csiescseq
.arg
[0]);
1690 case 'B': /* CUD -- Cursor <n> Down */
1691 case 'e': /* VPR --Cursor <n> Down */
1692 DEFAULT(csiescseq
.arg
[0], 1);
1693 tmoveto(term
.c
.x
, term
.c
.y
+csiescseq
.arg
[0]);
1695 case 'c': /* DA -- Device Attributes */
1696 if(csiescseq
.arg
[0] == 0)
1697 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
1699 case 'C': /* CUF -- Cursor <n> Forward */
1700 case 'a': /* HPR -- Cursor <n> Forward */
1701 DEFAULT(csiescseq
.arg
[0], 1);
1702 tmoveto(term
.c
.x
+csiescseq
.arg
[0], term
.c
.y
);
1704 case 'D': /* CUB -- Cursor <n> Backward */
1705 DEFAULT(csiescseq
.arg
[0], 1);
1706 tmoveto(term
.c
.x
-csiescseq
.arg
[0], term
.c
.y
);
1708 case 'E': /* CNL -- Cursor <n> Down and first col */
1709 DEFAULT(csiescseq
.arg
[0], 1);
1710 tmoveto(0, term
.c
.y
+csiescseq
.arg
[0]);
1712 case 'F': /* CPL -- Cursor <n> Up and first col */
1713 DEFAULT(csiescseq
.arg
[0], 1);
1714 tmoveto(0, term
.c
.y
-csiescseq
.arg
[0]);
1716 case 'g': /* TBC -- Tabulation clear */
1717 switch(csiescseq
.arg
[0]) {
1718 case 0: /* clear current tab stop */
1719 term
.tabs
[term
.c
.x
] = 0;
1721 case 3: /* clear all the tabs */
1722 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1728 case 'G': /* CHA -- Move to <col> */
1730 DEFAULT(csiescseq
.arg
[0], 1);
1731 tmoveto(csiescseq
.arg
[0]-1, term
.c
.y
);
1733 case 'H': /* CUP -- Move to <row> <col> */
1735 DEFAULT(csiescseq
.arg
[0], 1);
1736 DEFAULT(csiescseq
.arg
[1], 1);
1737 tmoveato(csiescseq
.arg
[1]-1, csiescseq
.arg
[0]-1);
1739 case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
1740 DEFAULT(csiescseq
.arg
[0], 1);
1741 while(csiescseq
.arg
[0]--)
1744 case 'J': /* ED -- Clear screen */
1746 switch(csiescseq
.arg
[0]) {
1748 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
, 1);
1749 if(term
.c
.y
< term
.row
-1) {
1750 tclearregion(0, term
.c
.y
+1, term
.col
-1,
1756 tclearregion(0, 0, term
.col
-1, term
.c
.y
-1, 1);
1757 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
, 1);
1760 tclearregion(0, 0, term
.col
-1, term
.row
-1, 1);
1766 case 'K': /* EL -- Clear line */
1767 switch(csiescseq
.arg
[0]) {
1769 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1,
1773 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
, 1);
1776 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
, 1);
1780 case 'S': /* SU -- Scroll <n> line up */
1781 DEFAULT(csiescseq
.arg
[0], 1);
1782 tscrollup(term
.top
, csiescseq
.arg
[0]);
1784 case 'T': /* SD -- Scroll <n> line down */
1785 DEFAULT(csiescseq
.arg
[0], 1);
1786 tscrolldown(term
.top
, csiescseq
.arg
[0]);
1788 case 'L': /* IL -- Insert <n> blank lines */
1789 DEFAULT(csiescseq
.arg
[0], 1);
1790 tinsertblankline(csiescseq
.arg
[0]);
1792 case 'l': /* RM -- Reset Mode */
1793 tsetmode(csiescseq
.priv
, 0, csiescseq
.arg
, csiescseq
.narg
);
1795 case 'M': /* DL -- Delete <n> lines */
1796 DEFAULT(csiescseq
.arg
[0], 1);
1797 tdeleteline(csiescseq
.arg
[0]);
1799 case 'X': /* ECH -- Erase <n> char */
1800 DEFAULT(csiescseq
.arg
[0], 1);
1801 tclearregion(term
.c
.x
, term
.c
.y
,
1802 term
.c
.x
+ csiescseq
.arg
[0] - 1, term
.c
.y
, 1);
1804 case 'P': /* DCH -- Delete <n> char */
1805 DEFAULT(csiescseq
.arg
[0], 1);
1806 tdeletechar(csiescseq
.arg
[0]);
1808 case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
1809 DEFAULT(csiescseq
.arg
[0], 1);
1810 while(csiescseq
.arg
[0]--)
1813 case 'd': /* VPA -- Move to <row> */
1814 DEFAULT(csiescseq
.arg
[0], 1);
1815 tmoveato(term
.c
.x
, csiescseq
.arg
[0]-1);
1817 case 'h': /* SM -- Set terminal mode */
1818 tsetmode(csiescseq
.priv
, 1, csiescseq
.arg
, csiescseq
.narg
);
1820 case 'm': /* SGR -- Terminal attribute (color) */
1821 tsetattr(csiescseq
.arg
, csiescseq
.narg
);
1823 case 'r': /* DECSTBM -- Set Scrolling Region */
1824 if(csiescseq
.priv
) {
1827 DEFAULT(csiescseq
.arg
[0], 1);
1828 DEFAULT(csiescseq
.arg
[1], term
.row
);
1829 tsetscroll(csiescseq
.arg
[0]-1, csiescseq
.arg
[1]-1);
1833 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
1834 tcursor(CURSOR_SAVE
);
1836 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
1837 tcursor(CURSOR_LOAD
);
1848 for(i
= 0; i
< csiescseq
.len
; i
++) {
1849 c
= csiescseq
.buf
[i
] & 0xff;
1852 } else if(c
== '\n') {
1854 } else if(c
== '\r') {
1856 } else if(c
== 0x1b) {
1859 printf("(%02x)", c
);
1867 memset(&csiescseq
, 0, sizeof(csiescseq
));
1876 narg
= strescseq
.narg
;
1878 switch(strescseq
.type
) {
1879 case ']': /* OSC -- Operating System Command */
1880 switch(i
= atoi(strescseq
.args
[0])) {
1885 xsettitle(strescseq
.args
[1]);
1887 case 4: /* color set */
1890 p
= strescseq
.args
[2];
1892 case 104: /* color reset, here p = NULL */
1893 j
= (narg
> 1) ? atoi(strescseq
.args
[1]) : -1;
1894 if (!xsetcolorname(j
, p
)) {
1895 fprintf(stderr
, "erresc: invalid color %s\n", p
);
1898 * TODO if defaultbg color is changed, borders
1905 fprintf(stderr
, "erresc: unknown str ");
1910 case 'k': /* old title set compatibility */
1911 xsettitle(strescseq
.args
[0]);
1913 case 'P': /* DSC -- Device Control String */
1914 case '_': /* APC -- Application Program Command */
1915 case '^': /* PM -- Privacy Message */
1917 fprintf(stderr
, "erresc: unknown str ");
1927 * TODO: Implement parsing like for CSI when required.
1928 * Format: ESC type cmd ';' arg0 [';' argn] ESC \
1931 char *start
= strescseq
.buf
, *end
= start
+ strescseq
.len
;
1932 strescseq
.args
[0] = start
;
1933 while(start
< end
&& narg
< LEN(strescseq
.args
)) {
1934 start
= memchr(start
, ';', end
- start
);
1939 strescseq
.args
[++narg
] = start
;
1942 strescseq
.narg
= narg
+ 1;
1950 printf("ESC%c", strescseq
.type
);
1951 for(i
= 0; i
< strescseq
.len
; i
++) {
1952 c
= strescseq
.buf
[i
] & 0xff;
1955 } else if(c
== '\n') {
1957 } else if(c
== '\r') {
1959 } else if(c
== 0x1b) {
1962 printf("(%02x)", c
);
1970 memset(&strescseq
, 0, sizeof(strescseq
));
1974 tputtab(bool forward
) {
1980 for(++x
; x
< term
.col
&& !term
.tabs
[x
]; ++x
)
1985 for(--x
; x
> 0 && !term
.tabs
[x
]; --x
)
1988 tmoveto(x
, term
.c
.y
);
1992 techo(char *buf
, int len
) {
1993 for(; len
> 0; buf
++, len
--) {
1996 if(c
== '\033') { /* escape */
1999 } else if(c
< '\x20') { /* control code */
2000 if(c
!= '\n' && c
!= '\r' && c
!= '\t') {
2014 tputc(char *c
, int len
) {
2016 bool control
= ascii
< '\x20' || ascii
== 0177;
2019 if(xwrite(iofd
, c
, len
) < 0) {
2020 fprintf(stderr
, "Error writing in %s:%s\n",
2021 opt_io
, strerror(errno
));
2028 * STR sequences must be checked before anything else
2029 * because it can use some control codes as part of the sequence.
2031 if(term
.esc
& ESC_STR
) {
2034 term
.esc
= ESC_START
| ESC_STR_END
;
2036 case '\a': /* backwards compatibility to xterm */
2041 if(strescseq
.len
+ len
< sizeof(strescseq
.buf
)) {
2042 memmove(&strescseq
.buf
[strescseq
.len
], c
, len
);
2043 strescseq
.len
+= len
;
2046 * Here is a bug in terminals. If the user never sends
2047 * some code to stop the str or esc command, then st
2048 * will stop responding. But this is better than
2049 * silently failing with unknown characters. At least
2050 * then users will report back.
2052 * In the case users ever get fixed, here is the code:
2064 * Actions of control codes must be performed as soon they arrive
2065 * because they can be embedded inside a control sequence, and
2066 * they must not cause conflicts with sequences.
2074 tmoveto(term
.c
.x
-1, term
.c
.y
);
2077 tmoveto(0, term
.c
.y
);
2082 /* go to first col if the mode is set */
2083 tnewline(IS_SET(MODE_CRLF
));
2085 case '\a': /* BEL */
2086 if(!(xw
.state
& WIN_FOCUSED
))
2089 case '\033': /* ESC */
2091 term
.esc
= ESC_START
;
2093 case '\016': /* SO */
2094 case '\017': /* SI */
2096 * Different charsets are hard to handle. Applications
2097 * should use the right alt charset escapes for the
2098 * only reason they still exist: line drawing. The
2099 * rest is incompatible history st should not support.
2102 case '\032': /* SUB */
2103 case '\030': /* CAN */
2106 case '\005': /* ENQ (IGNORED) */
2107 case '\000': /* NUL (IGNORED) */
2108 case '\021': /* XON (IGNORED) */
2109 case '\023': /* XOFF (IGNORED) */
2110 case 0177: /* DEL (IGNORED) */
2113 } else if(term
.esc
& ESC_START
) {
2114 if(term
.esc
& ESC_CSI
) {
2115 csiescseq
.buf
[csiescseq
.len
++] = ascii
;
2116 if(BETWEEN(ascii
, 0x40, 0x7E)
2117 || csiescseq
.len
>= ESC_BUF_SIZ
) {
2119 csiparse(), csihandle();
2121 } else if(term
.esc
& ESC_STR_END
) {
2125 } else if(term
.esc
& ESC_ALTCHARSET
) {
2127 case '0': /* Line drawing set */
2128 term
.c
.attr
.mode
|= ATTR_GFX
;
2130 case 'B': /* USASCII */
2131 term
.c
.attr
.mode
&= ~ATTR_GFX
;
2133 case 'A': /* UK (IGNORED) */
2134 case '<': /* multinational charset (IGNORED) */
2135 case '5': /* Finnish (IGNORED) */
2136 case 'C': /* Finnish (IGNORED) */
2137 case 'K': /* German (IGNORED) */
2140 fprintf(stderr
, "esc unhandled charset: ESC ( %c\n", ascii
);
2143 } else if(term
.esc
& ESC_TEST
) {
2144 if(ascii
== '8') { /* DEC screen alignment test. */
2145 char E
[UTF_SIZ
] = "E";
2148 for(x
= 0; x
< term
.col
; ++x
) {
2149 for(y
= 0; y
< term
.row
; ++y
)
2150 tsetchar(E
, &term
.c
.attr
, x
, y
);
2157 term
.esc
|= ESC_CSI
;
2160 term
.esc
|= ESC_TEST
;
2162 case 'P': /* DCS -- Device Control String */
2163 case '_': /* APC -- Application Program Command */
2164 case '^': /* PM -- Privacy Message */
2165 case ']': /* OSC -- Operating System Command */
2166 case 'k': /* old title set compatibility */
2168 strescseq
.type
= ascii
;
2169 term
.esc
|= ESC_STR
;
2171 case '(': /* set primary charset G0 */
2172 term
.esc
|= ESC_ALTCHARSET
;
2174 case ')': /* set secondary charset G1 (IGNORED) */
2175 case '*': /* set tertiary charset G2 (IGNORED) */
2176 case '+': /* set quaternary charset G3 (IGNORED) */
2179 case 'D': /* IND -- Linefeed */
2180 if(term
.c
.y
== term
.bot
) {
2181 tscrollup(term
.top
, 1);
2183 tmoveto(term
.c
.x
, term
.c
.y
+1);
2187 case 'E': /* NEL -- Next line */
2188 tnewline(1); /* always go to first col */
2191 case 'H': /* HTS -- Horizontal tab stop */
2192 term
.tabs
[term
.c
.x
] = 1;
2195 case 'M': /* RI -- Reverse index */
2196 if(term
.c
.y
== term
.top
) {
2197 tscrolldown(term
.top
, 1);
2199 tmoveto(term
.c
.x
, term
.c
.y
-1);
2203 case 'Z': /* DECID -- Identify Terminal */
2204 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
2207 case 'c': /* RIS -- Reset to inital state */
2212 case '=': /* DECPAM -- Application keypad */
2213 term
.mode
|= MODE_APPKEYPAD
;
2216 case '>': /* DECPNM -- Normal keypad */
2217 term
.mode
&= ~MODE_APPKEYPAD
;
2220 case '7': /* DECSC -- Save Cursor */
2221 tcursor(CURSOR_SAVE
);
2224 case '8': /* DECRC -- Restore Cursor */
2225 tcursor(CURSOR_LOAD
);
2228 case '\\': /* ST -- Stop */
2232 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2233 (uchar
) ascii
, isprint(ascii
)? ascii
:'.');
2238 * All characters which form part of a sequence are not
2244 * Display control codes only if we are in graphic mode
2246 if(control
&& !(term
.c
.attr
.mode
& ATTR_GFX
))
2248 if(sel
.bx
!= -1 && BETWEEN(term
.c
.y
, sel
.by
, sel
.ey
))
2250 if(IS_SET(MODE_WRAP
) && term
.c
.state
& CURSOR_WRAPNEXT
)
2251 tnewline(1); /* always go to first col */
2253 if(IS_SET(MODE_INSERT
) && term
.c
.x
+1 < term
.col
) {
2254 memmove(&term
.line
[term
.c
.y
][term
.c
.x
+1],
2255 &term
.line
[term
.c
.y
][term
.c
.x
],
2256 (term
.col
- term
.c
.x
- 1) * sizeof(Glyph
));
2259 tsetchar(c
, &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2260 if(term
.c
.x
+1 < term
.col
) {
2261 tmoveto(term
.c
.x
+1, term
.c
.y
);
2263 term
.c
.state
|= CURSOR_WRAPNEXT
;
2268 tresize(int col
, int row
) {
2270 int minrow
= MIN(row
, term
.row
);
2271 int mincol
= MIN(col
, term
.col
);
2272 int slide
= term
.c
.y
- row
+ 1;
2275 if(col
< 1 || row
< 1)
2278 /* free unneeded rows */
2282 * slide screen to keep cursor where we expect it -
2283 * tscrollup would work here, but we can optimize to
2284 * memmove because we're freeing the earlier lines
2286 for(/* i = 0 */; i
< slide
; i
++) {
2290 memmove(term
.line
, term
.line
+ slide
, row
* sizeof(Line
));
2291 memmove(term
.alt
, term
.alt
+ slide
, row
* sizeof(Line
));
2293 for(i
+= row
; i
< term
.row
; i
++) {
2298 /* resize to new height */
2299 term
.line
= xrealloc(term
.line
, row
* sizeof(Line
));
2300 term
.alt
= xrealloc(term
.alt
, row
* sizeof(Line
));
2301 term
.dirty
= xrealloc(term
.dirty
, row
* sizeof(*term
.dirty
));
2302 term
.tabs
= xrealloc(term
.tabs
, col
* sizeof(*term
.tabs
));
2304 /* resize each row to new width, zero-pad if needed */
2305 for(i
= 0; i
< minrow
; i
++) {
2307 term
.line
[i
] = xrealloc(term
.line
[i
], col
* sizeof(Glyph
));
2308 term
.alt
[i
] = xrealloc(term
.alt
[i
], col
* sizeof(Glyph
));
2309 for(x
= mincol
; x
< col
; x
++) {
2310 term
.line
[i
][x
].state
= 0;
2311 term
.alt
[i
][x
].state
= 0;
2315 /* allocate any new rows */
2316 for(/* i == minrow */; i
< row
; i
++) {
2318 term
.line
[i
] = xcalloc(col
, sizeof(Glyph
));
2319 term
.alt
[i
] = xcalloc(col
, sizeof(Glyph
));
2321 if(col
> term
.col
) {
2322 bp
= term
.tabs
+ term
.col
;
2324 memset(bp
, 0, sizeof(*term
.tabs
) * (col
- term
.col
));
2325 while(--bp
> term
.tabs
&& !*bp
)
2327 for(bp
+= tabspaces
; bp
< term
.tabs
+ col
; bp
+= tabspaces
)
2330 /* update terminal size */
2333 /* reset scrolling region */
2334 tsetscroll(0, row
-1);
2335 /* make use of the LIMIT in tmoveto */
2336 tmoveto(term
.c
.x
, term
.c
.y
);
2342 xresize(int col
, int row
) {
2343 xw
.tw
= MAX(1, col
* xw
.cw
);
2344 xw
.th
= MAX(1, row
* xw
.ch
);
2346 XFreePixmap(xw
.dpy
, xw
.buf
);
2347 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2348 DefaultDepth(xw
.dpy
, xw
.scr
));
2349 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[IS_SET(MODE_REVERSE
) ? defaultfg
: defaultbg
].pixel
);
2350 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
2352 XftDrawChange(xw
.draw
, xw
.buf
);
2355 static inline ushort
2356 sixd_to_16bit(int x
) {
2357 return x
== 0 ? 0 : 0x3737 + 0x2828 * x
;
2363 XRenderColor color
= { .alpha
= 0xffff };
2365 /* load colors [0-15] colors and [256-LEN(colorname)[ (config.h) */
2366 for(i
= 0; i
< LEN(colorname
); i
++) {
2369 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, colorname
[i
], &dc
.col
[i
])) {
2370 die("Could not allocate color '%s'\n", colorname
[i
]);
2374 /* load colors [16-255] ; same colors as xterm */
2375 for(i
= 16, r
= 0; r
< 6; r
++) {
2376 for(g
= 0; g
< 6; g
++) {
2377 for(b
= 0; b
< 6; b
++) {
2378 color
.red
= sixd_to_16bit(r
);
2379 color
.green
= sixd_to_16bit(g
);
2380 color
.blue
= sixd_to_16bit(b
);
2381 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &dc
.col
[i
])) {
2382 die("Could not allocate color %d\n", i
);
2389 for(r
= 0; r
< 24; r
++, i
++) {
2390 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * r
;
2391 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
,
2393 die("Could not allocate color %d\n", i
);
2399 xsetcolorname(int x
, const char *name
) {
2400 XRenderColor color
= { .alpha
= 0xffff };
2402 if (x
< 0 || x
> LEN(colorname
))
2405 if(16 <= x
&& x
< 16 + 216) {
2406 int r
= (x
- 16) / 36, g
= ((x
- 16) % 36) / 6, b
= (x
- 16) % 6;
2407 color
.red
= sixd_to_16bit(r
);
2408 color
.green
= sixd_to_16bit(g
);
2409 color
.blue
= sixd_to_16bit(b
);
2410 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2411 return 0; /* something went wrong */
2414 } else if (16 + 216 <= x
&& x
< 256) {
2415 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * (x
- (16 + 216));
2416 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2417 return 0; /* something went wrong */
2421 name
= colorname
[x
];
2424 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, name
, &colour
))
2431 xtermclear(int col1
, int row1
, int col2
, int row2
) {
2432 XftDrawRect(xw
.draw
,
2433 &dc
.col
[IS_SET(MODE_REVERSE
) ? defaultfg
: defaultbg
],
2434 borderpx
+ col1
* xw
.cw
,
2435 borderpx
+ row1
* xw
.ch
,
2436 (col2
-col1
+1) * xw
.cw
,
2437 (row2
-row1
+1) * xw
.ch
);
2441 * Absolute coordinates.
2444 xclear(int x1
, int y1
, int x2
, int y2
) {
2445 XftDrawRect(xw
.draw
,
2446 &dc
.col
[IS_SET(MODE_REVERSE
)? defaultfg
: defaultbg
],
2447 x1
, y1
, x2
-x1
, y2
-y1
);
2452 XClassHint
class = {opt_class
? opt_class
: termname
, termname
};
2453 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
2454 XSizeHints
*sizeh
= NULL
;
2456 sizeh
= XAllocSizeHints();
2457 if(xw
.isfixed
== False
) {
2458 sizeh
->flags
= PSize
| PResizeInc
| PBaseSize
;
2459 sizeh
->height
= xw
.h
;
2460 sizeh
->width
= xw
.w
;
2461 sizeh
->height_inc
= xw
.ch
;
2462 sizeh
->width_inc
= xw
.cw
;
2463 sizeh
->base_height
= 2 * borderpx
;
2464 sizeh
->base_width
= 2 * borderpx
;
2466 sizeh
->flags
= PMaxSize
| PMinSize
;
2467 sizeh
->min_width
= sizeh
->max_width
= xw
.fw
;
2468 sizeh
->min_height
= sizeh
->max_height
= xw
.fh
;
2471 XSetWMProperties(xw
.dpy
, xw
.win
, NULL
, NULL
, NULL
, 0, sizeh
, &wm
, &class);
2476 xloadfont(Font
*f
, FcPattern
*pattern
) {
2480 match
= FcFontMatch(NULL
, pattern
, &result
);
2484 if(!(f
->set
= FcFontSort(0, match
, FcTrue
, 0, &result
))) {
2485 FcPatternDestroy(match
);
2489 if(!(f
->match
= XftFontOpenPattern(xw
.dpy
, match
))) {
2490 FcPatternDestroy(match
);
2494 f
->pattern
= FcPatternDuplicate(pattern
);
2496 f
->ascent
= f
->match
->ascent
;
2497 f
->descent
= f
->match
->descent
;
2499 f
->rbearing
= f
->match
->max_advance_width
;
2501 f
->height
= f
->match
->height
;
2502 f
->width
= f
->lbearing
+ f
->rbearing
;
2508 xloadfonts(char *fontstr
, int fontsize
) {
2513 if(fontstr
[0] == '-') {
2514 pattern
= XftXlfdParse(fontstr
, False
, False
);
2516 pattern
= FcNameParse((FcChar8
*)fontstr
);
2520 die("st: can't open font %s\n", fontstr
);
2523 FcPatternDel(pattern
, FC_PIXEL_SIZE
);
2524 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, (double)fontsize
);
2525 usedfontsize
= fontsize
;
2527 result
= FcPatternGetDouble(pattern
, FC_PIXEL_SIZE
, 0, &fontval
);
2528 if(result
== FcResultMatch
) {
2529 usedfontsize
= (int)fontval
;
2532 * Default font size is 12, if none given. This is to
2533 * have a known usedfontsize value.
2535 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, 12);
2540 FcConfigSubstitute(0, pattern
, FcMatchPattern
);
2541 FcDefaultSubstitute(pattern
);
2543 if(xloadfont(&dc
.font
, pattern
))
2544 die("st: can't open font %s\n", fontstr
);
2546 /* Setting character width and height. */
2547 xw
.cw
= dc
.font
.width
;
2548 xw
.ch
= dc
.font
.height
;
2550 FcPatternDel(pattern
, FC_SLANT
);
2551 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ITALIC
);
2552 if(xloadfont(&dc
.ifont
, pattern
))
2553 die("st: can't open font %s\n", fontstr
);
2555 FcPatternDel(pattern
, FC_WEIGHT
);
2556 FcPatternAddInteger(pattern
, FC_WEIGHT
, FC_WEIGHT_BOLD
);
2557 if(xloadfont(&dc
.ibfont
, pattern
))
2558 die("st: can't open font %s\n", fontstr
);
2560 FcPatternDel(pattern
, FC_SLANT
);
2561 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ROMAN
);
2562 if(xloadfont(&dc
.bfont
, pattern
))
2563 die("st: can't open font %s\n", fontstr
);
2565 FcPatternDestroy(pattern
);
2569 xunloadfonts(void) {
2573 * Free the loaded fonts in the font cache. This is done backwards
2576 for(i
= 0, ip
= frccur
; i
< frclen
; i
++, ip
--) {
2579 XftFontClose(xw
.dpy
, frc
[ip
].font
);
2584 XftFontClose(xw
.dpy
, dc
.font
.match
);
2585 FcPatternDestroy(dc
.font
.pattern
);
2586 FcFontSetDestroy(dc
.font
.set
);
2587 XftFontClose(xw
.dpy
, dc
.bfont
.match
);
2588 FcPatternDestroy(dc
.bfont
.pattern
);
2589 FcFontSetDestroy(dc
.bfont
.set
);
2590 XftFontClose(xw
.dpy
, dc
.ifont
.match
);
2591 FcPatternDestroy(dc
.ifont
.pattern
);
2592 FcFontSetDestroy(dc
.ifont
.set
);
2593 XftFontClose(xw
.dpy
, dc
.ibfont
.match
);
2594 FcPatternDestroy(dc
.ibfont
.pattern
);
2595 FcFontSetDestroy(dc
.ibfont
.set
);
2599 xzoom(const Arg
*arg
) {
2601 xloadfonts(usedfont
, usedfontsize
+ arg
->i
);
2608 XSetWindowAttributes attrs
;
2614 if(!(xw
.dpy
= XOpenDisplay(NULL
)))
2615 die("Can't open display\n");
2616 xw
.scr
= XDefaultScreen(xw
.dpy
);
2617 xw
.vis
= XDefaultVisual(xw
.dpy
, xw
.scr
);
2621 die("Could not init fontconfig.\n");
2623 usedfont
= (opt_font
== NULL
)? font
: opt_font
;
2624 xloadfonts(usedfont
, 0);
2627 xw
.cmap
= XDefaultColormap(xw
.dpy
, xw
.scr
);
2630 /* adjust fixed window geometry */
2632 sw
= DisplayWidth(xw
.dpy
, xw
.scr
);
2633 sh
= DisplayHeight(xw
.dpy
, xw
.scr
);
2635 xw
.fx
= sw
+ xw
.fx
- xw
.fw
- 1;
2637 xw
.fy
= sh
+ xw
.fy
- xw
.fh
- 1;
2642 /* window - default size */
2643 xw
.h
= 2 * borderpx
+ term
.row
* xw
.ch
;
2644 xw
.w
= 2 * borderpx
+ term
.col
* xw
.cw
;
2650 attrs
.background_pixel
= dc
.col
[defaultbg
].pixel
;
2651 attrs
.border_pixel
= dc
.col
[defaultbg
].pixel
;
2652 attrs
.bit_gravity
= NorthWestGravity
;
2653 attrs
.event_mask
= FocusChangeMask
| KeyPressMask
2654 | ExposureMask
| VisibilityChangeMask
| StructureNotifyMask
2655 | ButtonMotionMask
| ButtonPressMask
| ButtonReleaseMask
;
2656 attrs
.colormap
= xw
.cmap
;
2658 parent
= opt_embed
? strtol(opt_embed
, NULL
, 0) : \
2659 XRootWindow(xw
.dpy
, xw
.scr
);
2660 xw
.win
= XCreateWindow(xw
.dpy
, parent
, xw
.fx
, xw
.fy
,
2661 xw
.w
, xw
.h
, 0, XDefaultDepth(xw
.dpy
, xw
.scr
), InputOutput
,
2663 CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
2667 memset(&gcvalues
, 0, sizeof(gcvalues
));
2668 gcvalues
.graphics_exposures
= False
;
2669 dc
.gc
= XCreateGC(xw
.dpy
, parent
, GCGraphicsExposures
,
2671 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2672 DefaultDepth(xw
.dpy
, xw
.scr
));
2673 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[defaultbg
].pixel
);
2674 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
2676 /* Xft rendering context */
2677 xw
.draw
= XftDrawCreate(xw
.dpy
, xw
.buf
, xw
.vis
, xw
.cmap
);
2680 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2681 XSetLocaleModifiers("@im=local");
2682 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2683 XSetLocaleModifiers("@im=");
2684 if((xw
.xim
= XOpenIM(xw
.dpy
,
2685 NULL
, NULL
, NULL
)) == NULL
) {
2686 die("XOpenIM failed. Could not open input"
2691 xw
.xic
= XCreateIC(xw
.xim
, XNInputStyle
, XIMPreeditNothing
2692 | XIMStatusNothing
, XNClientWindow
, xw
.win
,
2693 XNFocusWindow
, xw
.win
, NULL
);
2695 die("XCreateIC failed. Could not obtain input method.\n");
2697 /* white cursor, black outline */
2698 cursor
= XCreateFontCursor(xw
.dpy
, XC_xterm
);
2699 XDefineCursor(xw
.dpy
, xw
.win
, cursor
);
2700 XRecolorCursor(xw
.dpy
, cursor
,
2701 &(XColor
){.red
= 0xffff, .green
= 0xffff, .blue
= 0xffff},
2702 &(XColor
){.red
= 0x0000, .green
= 0x0000, .blue
= 0x0000});
2704 xw
.xembed
= XInternAtom(xw
.dpy
, "_XEMBED", False
);
2705 xw
.wmdeletewin
= XInternAtom(xw
.dpy
, "WM_DELETE_WINDOW", False
);
2706 XSetWMProtocols(xw
.dpy
, xw
.win
, &xw
.wmdeletewin
, 1);
2709 XMapWindow(xw
.dpy
, xw
.win
);
2715 xdraws(char *s
, Glyph base
, int x
, int y
, int charlen
, int bytelen
) {
2716 int winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
,
2717 width
= charlen
* xw
.cw
, xp
, i
;
2719 int u8fl
, u8fblen
, u8cblen
, doesexist
;
2722 Font
*font
= &dc
.font
;
2724 FcPattern
*fcpattern
, *fontpattern
;
2725 FcFontSet
*fcsets
[] = { NULL
};
2726 FcCharSet
*fccharset
;
2727 Colour
*fg
= &dc
.col
[base
.fg
], *bg
= &dc
.col
[base
.bg
],
2728 *temp
, revfg
, revbg
;
2729 XRenderColor colfg
, colbg
;
2731 frcflags
= FRC_NORMAL
;
2733 if(base
.mode
& ATTR_BOLD
) {
2734 if(BETWEEN(base
.fg
, 0, 7)) {
2735 /* basic system colors */
2736 fg
= &dc
.col
[base
.fg
+ 8];
2737 } else if(BETWEEN(base
.fg
, 16, 195)) {
2739 fg
= &dc
.col
[base
.fg
+ 36];
2740 } else if(BETWEEN(base
.fg
, 232, 251)) {
2742 fg
= &dc
.col
[base
.fg
+ 4];
2745 * Those ranges will not be brightened:
2746 * 8 - 15 – bright system colors
2747 * 196 - 231 – highest 256 color cube
2748 * 252 - 255 – brightest colors in greyscale
2751 frcflags
= FRC_BOLD
;
2754 if(base
.mode
& ATTR_ITALIC
) {
2756 frcflags
= FRC_ITALIC
;
2758 if((base
.mode
& ATTR_ITALIC
) && (base
.mode
& ATTR_BOLD
)) {
2760 frcflags
= FRC_ITALICBOLD
;
2763 if(IS_SET(MODE_REVERSE
)) {
2764 if(fg
== &dc
.col
[defaultfg
]) {
2765 fg
= &dc
.col
[defaultbg
];
2767 colfg
.red
= ~fg
->color
.red
;
2768 colfg
.green
= ~fg
->color
.green
;
2769 colfg
.blue
= ~fg
->color
.blue
;
2770 colfg
.alpha
= fg
->color
.alpha
;
2771 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &revfg
);
2775 if(bg
== &dc
.col
[defaultbg
]) {
2776 bg
= &dc
.col
[defaultfg
];
2778 colbg
.red
= ~bg
->color
.red
;
2779 colbg
.green
= ~bg
->color
.green
;
2780 colbg
.blue
= ~bg
->color
.blue
;
2781 colbg
.alpha
= bg
->color
.alpha
;
2782 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
, &revbg
);
2787 if(base
.mode
& ATTR_REVERSE
) {
2793 /* Intelligent cleaning up of the borders. */
2795 xclear(0, (y
== 0)? 0 : winy
, borderpx
,
2796 winy
+ xw
.ch
+ ((y
>= term
.row
-1)? xw
.h
: 0));
2798 if(x
+ charlen
>= term
.col
) {
2799 xclear(winx
+ width
, (y
== 0)? 0 : winy
, xw
.w
,
2800 ((y
>= term
.row
-1)? xw
.h
: (winy
+ xw
.ch
)));
2803 xclear(winx
, 0, winx
+ width
, borderpx
);
2805 xclear(winx
, winy
+ xw
.ch
, winx
+ width
, xw
.h
);
2807 /* Clean up the region we want to draw to. */
2808 XftDrawRect(xw
.draw
, bg
, winx
, winy
, width
, xw
.ch
);
2810 fcsets
[0] = font
->set
;
2811 for(xp
= winx
; bytelen
> 0;) {
2813 * Search for the range in the to be printed string of glyphs
2814 * that are in the main font. Then print that range. If
2815 * some glyph is found that is not in the font, do the
2823 u8cblen
= utf8decode(s
, &u8char
);
2827 doesexist
= XftCharIndex(xw
.dpy
, font
->match
, u8char
);
2828 if(!doesexist
|| bytelen
<= 0) {
2837 XftDrawStringUtf8(xw
.draw
, fg
,
2839 winy
+ font
->ascent
,
2842 xp
+= font
->width
* u8fl
;
2854 /* Search the font cache. */
2855 for(i
= 0; i
< frclen
; i
++, frp
--) {
2859 if(frc
[frp
].c
== u8char
2860 && frc
[frp
].flags
== frcflags
) {
2865 /* Nothing was found. */
2868 * Nothing was found in the cache. Now use
2869 * some dozen of Fontconfig calls to get the
2870 * font for one single character.
2872 fcpattern
= FcPatternDuplicate(font
->pattern
);
2873 fccharset
= FcCharSetCreate();
2875 FcCharSetAddChar(fccharset
, u8char
);
2876 FcPatternAddCharSet(fcpattern
, FC_CHARSET
,
2878 FcPatternAddBool(fcpattern
, FC_SCALABLE
,
2881 FcConfigSubstitute(0, fcpattern
,
2883 FcDefaultSubstitute(fcpattern
);
2885 fontpattern
= FcFontSetMatch(0, fcsets
,
2886 FcTrue
, fcpattern
, &fcres
);
2889 * Overwrite or create the new cache entry
2894 if(frccur
>= LEN(frc
))
2896 if(frclen
> LEN(frc
)) {
2898 XftFontClose(xw
.dpy
, frc
[frccur
].font
);
2901 frc
[frccur
].font
= XftFontOpenPattern(xw
.dpy
,
2903 frc
[frccur
].c
= u8char
;
2904 frc
[frccur
].flags
= frcflags
;
2906 FcPatternDestroy(fcpattern
);
2907 FcCharSetDestroy(fccharset
);
2912 XftDrawStringUtf8(xw
.draw
, fg
, frc
[frp
].font
,
2913 xp
, winy
+ frc
[frp
].font
->ascent
,
2914 (FcChar8
*)u8c
, u8cblen
);
2920 XftDrawStringUtf8(xw.draw, fg, font->set, winx,
2921 winy + font->ascent, (FcChar8 *)s, bytelen);
2924 if(base
.mode
& ATTR_UNDERLINE
) {
2925 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ font
->ascent
+ 1,
2932 static int oldx
= 0, oldy
= 0;
2934 Glyph g
= {{' '}, ATTR_NULL
, defaultbg
, defaultcs
, 0};
2936 LIMIT(oldx
, 0, term
.col
-1);
2937 LIMIT(oldy
, 0, term
.row
-1);
2939 if(term
.line
[term
.c
.y
][term
.c
.x
].state
& GLYPH_SET
)
2940 memcpy(g
.c
, term
.line
[term
.c
.y
][term
.c
.x
].c
, UTF_SIZ
);
2942 /* remove the old cursor */
2943 if(term
.line
[oldy
][oldx
].state
& GLYPH_SET
) {
2944 sl
= utf8size(term
.line
[oldy
][oldx
].c
);
2945 xdraws(term
.line
[oldy
][oldx
].c
, term
.line
[oldy
][oldx
], oldx
,
2948 xtermclear(oldx
, oldy
, oldx
, oldy
);
2951 /* draw the new one */
2952 if(!(IS_SET(MODE_HIDE
))) {
2953 if(!(xw
.state
& WIN_FOCUSED
))
2956 if(IS_SET(MODE_REVERSE
))
2957 g
.mode
|= ATTR_REVERSE
, g
.fg
= defaultcs
, g
.bg
= defaultfg
;
2960 xdraws(g
.c
, g
, term
.c
.x
, term
.c
.y
, 1, sl
);
2961 oldx
= term
.c
.x
, oldy
= term
.c
.y
;
2967 xsettitle(char *p
) {
2970 Xutf8TextListToTextProperty(xw
.dpy
, &p
, 1, XUTF8StringStyle
,
2972 XSetWMName(xw
.dpy
, xw
.win
, &prop
);
2977 xsettitle(opt_title
? opt_title
: "st");
2981 redraw(int timeout
) {
2982 struct timespec tv
= {0, timeout
* 1000};
2988 nanosleep(&tv
, NULL
);
2989 XSync(xw
.dpy
, False
); /* necessary for a good tput flash */
2995 drawregion(0, 0, term
.col
, term
.row
);
2996 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.w
,
2998 XSetForeground(xw
.dpy
, dc
.gc
,
2999 dc
.col
[IS_SET(MODE_REVERSE
)?
3000 defaultfg
: defaultbg
].pixel
);
3004 drawregion(int x1
, int y1
, int x2
, int y2
) {
3005 int ic
, ib
, x
, y
, ox
, sl
;
3007 char buf
[DRAW_BUF_SIZ
];
3008 bool ena_sel
= sel
.bx
!= -1;
3010 if(sel
.alt
^ IS_SET(MODE_ALTSCREEN
))
3013 if(!(xw
.state
& WIN_VISIBLE
))
3016 for(y
= y1
; y
< y2
; y
++) {
3020 xtermclear(0, y
, term
.col
, y
);
3022 base
= term
.line
[y
][0];
3024 for(x
= x1
; x
< x2
; x
++) {
3025 new = term
.line
[y
][x
];
3026 if(ena_sel
&& *(new.c
) && selected(x
, y
))
3027 new.mode
^= ATTR_REVERSE
;
3028 if(ib
> 0 && (!(new.state
& GLYPH_SET
)
3029 || ATTRCMP(base
, new)
3030 || ib
>= DRAW_BUF_SIZ
-UTF_SIZ
)) {
3031 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3034 if(new.state
& GLYPH_SET
) {
3040 sl
= utf8size(new.c
);
3041 memcpy(buf
+ib
, new.c
, sl
);
3047 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3053 expose(XEvent
*ev
) {
3054 XExposeEvent
*e
= &ev
->xexpose
;
3056 if(xw
.state
& WIN_REDRAW
) {
3058 xw
.state
&= ~WIN_REDRAW
;
3064 visibility(XEvent
*ev
) {
3065 XVisibilityEvent
*e
= &ev
->xvisibility
;
3067 if(e
->state
== VisibilityFullyObscured
) {
3068 xw
.state
&= ~WIN_VISIBLE
;
3069 } else if(!(xw
.state
& WIN_VISIBLE
)) {
3070 /* need a full redraw for next Expose, not just a buf copy */
3071 xw
.state
|= WIN_VISIBLE
| WIN_REDRAW
;
3077 xw
.state
&= ~WIN_VISIBLE
;
3081 xseturgency(int add
) {
3082 XWMHints
*h
= XGetWMHints(xw
.dpy
, xw
.win
);
3084 h
->flags
= add
? (h
->flags
| XUrgencyHint
) : (h
->flags
& ~XUrgencyHint
);
3085 XSetWMHints(xw
.dpy
, xw
.win
, h
);
3091 XFocusChangeEvent
*e
= &ev
->xfocus
;
3093 if(e
->mode
== NotifyGrab
)
3096 if(ev
->type
== FocusIn
) {
3097 XSetICFocus(xw
.xic
);
3098 xw
.state
|= WIN_FOCUSED
;
3101 XUnsetICFocus(xw
.xic
);
3102 xw
.state
&= ~WIN_FOCUSED
;
3107 match(uint mask
, uint state
) {
3108 state
&= ~(ignoremod
);
3110 if(mask
== XK_NO_MOD
&& state
)
3112 if(mask
!= XK_ANY_MOD
&& mask
!= XK_NO_MOD
&& !state
)
3114 if((state
& mask
) != state
)
3120 numlock(const Arg
*dummy
) {
3125 kmap(KeySym k
, uint state
) {
3130 /* Check for mapped keys out of X11 function keys. */
3131 for(i
= 0; i
< LEN(mappedkeys
); i
++) {
3132 if(mappedkeys
[i
] == k
)
3135 if(i
== LEN(mappedkeys
)) {
3136 if((k
& 0xFFFF) < 0xFD00)
3140 for(kp
= key
; kp
< key
+ LEN(key
); kp
++) {
3146 if(!match(mask
, state
))
3149 if(kp
->appkey
> 0) {
3150 if(!IS_SET(MODE_APPKEYPAD
))
3152 if(term
.numlock
&& kp
->appkey
== 2)
3154 } else if(kp
->appkey
< 0 && IS_SET(MODE_APPKEYPAD
)) {
3158 if((kp
->appcursor
< 0 && IS_SET(MODE_APPCURSOR
)) ||
3160 && !IS_SET(MODE_APPCURSOR
))) {
3164 if((kp
->crlf
< 0 && IS_SET(MODE_CRLF
)) ||
3165 (kp
->crlf
> 0 && !IS_SET(MODE_CRLF
))) {
3176 kpress(XEvent
*ev
) {
3177 XKeyEvent
*e
= &ev
->xkey
;
3179 char xstr
[31], buf
[32], *customkey
, *cp
= buf
;
3184 if(IS_SET(MODE_KBDLOCK
))
3187 len
= XmbLookupString(xw
.xic
, e
, xstr
, sizeof(xstr
), &ksym
, &status
);
3188 e
->state
&= ~Mod2Mask
;
3190 for(bp
= shortcuts
; bp
< shortcuts
+ LEN(shortcuts
); bp
++) {
3191 if(ksym
== bp
->keysym
&& match(bp
->mod
, e
->state
)) {
3192 bp
->func(&(bp
->arg
));
3197 /* 2. custom keys from config.h */
3198 if((customkey
= kmap(ksym
, e
->state
))) {
3199 len
= strlen(customkey
);
3200 memcpy(buf
, customkey
, len
);
3201 /* 2. hardcoded (overrides X lookup) */
3206 if(len
== 1 && e
->state
& Mod1Mask
)
3209 memcpy(cp
, xstr
, len
);
3210 len
= cp
- buf
+ len
;
3214 if(IS_SET(MODE_ECHO
))
3220 cmessage(XEvent
*e
) {
3223 * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
3225 if(e
->xclient
.message_type
== xw
.xembed
&& e
->xclient
.format
== 32) {
3226 if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_IN
) {
3227 xw
.state
|= WIN_FOCUSED
;
3229 } else if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_OUT
) {
3230 xw
.state
&= ~WIN_FOCUSED
;
3232 } else if(e
->xclient
.data
.l
[0] == xw
.wmdeletewin
) {
3233 /* Send SIGHUP to shell */
3240 cresize(int width
, int height
) {
3248 col
= (xw
.w
- 2 * borderpx
) / xw
.cw
;
3249 row
= (xw
.h
- 2 * borderpx
) / xw
.ch
;
3258 if(e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
3261 cresize(e
->xconfigure
.width
, e
->xconfigure
.height
);
3268 int xfd
= XConnectionNumber(xw
.dpy
), xev
;
3269 struct timeval drawtimeout
, *tv
= NULL
, now
, last
;
3271 gettimeofday(&last
, NULL
);
3273 for(xev
= actionfps
;;) {
3275 FD_SET(cmdfd
, &rfd
);
3277 if(select(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, tv
) < 0) {
3280 die("select failed: %s\n", SERRNO
);
3283 gettimeofday(&now
, NULL
);
3284 drawtimeout
.tv_sec
= 0;
3285 drawtimeout
.tv_usec
= (1000/xfps
) * 1000;
3288 if(FD_ISSET(cmdfd
, &rfd
))
3291 if(FD_ISSET(xfd
, &rfd
))
3294 if(TIMEDIFF(now
, last
) > \
3295 (xev
? (1000/xfps
) : (1000/actionfps
))) {
3296 while(XPending(xw
.dpy
)) {
3297 XNextEvent(xw
.dpy
, &ev
);
3298 if(XFilterEvent(&ev
, None
))
3300 if(handler
[ev
.type
])
3301 (handler
[ev
.type
])(&ev
);
3308 if(xev
&& !FD_ISSET(xfd
, &rfd
))
3310 if(!FD_ISSET(cmdfd
, &rfd
) && !FD_ISSET(xfd
, &rfd
))
3317 main(int argc
, char *argv
[]) {
3318 int i
, bitm
, xr
, yr
;
3321 xw
.fw
= xw
.fh
= xw
.fx
= xw
.fy
= 0;
3324 for(i
= 1; i
< argc
; i
++) {
3325 switch(argv
[i
][0] != '-' || argv
[i
][2] ? -1 : argv
[i
][1]) {
3328 opt_class
= argv
[i
];
3331 /* eat all remaining arguments */
3343 bitm
= XParseGeometry(argv
[i
], &xr
, &yr
, &wr
, &hr
);
3348 if(bitm
& WidthValue
)
3350 if(bitm
& HeightValue
)
3352 if(bitm
& XNegative
&& xw
.fx
== 0)
3354 if(bitm
& XNegative
&& xw
.fy
== 0)
3357 if(xw
.fh
!= 0 && xw
.fw
!= 0)
3366 opt_title
= argv
[i
];
3373 opt_embed
= argv
[i
];
3379 setlocale(LC_CTYPE
, "");
3380 XSetLocaleModifiers("");