1 /* See LICENSE for licence details. */
14 #include <sys/ioctl.h>
15 #include <sys/select.h>
18 #include <sys/types.h>
22 #include <X11/Xatom.h>
24 #include <X11/Xutil.h>
25 #include <X11/cursorfont.h>
26 #include <X11/keysym.h>
27 #include <X11/Xft/Xft.h>
28 #include <fontconfig/fontconfig.h>
36 #define Draw XftDraw *
37 #define Colour XftColor
38 #define Colourmap Colormap
42 #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
44 #elif defined(__FreeBSD__) || defined(__DragonFly__)
50 #define XEMBED_FOCUS_IN 4
51 #define XEMBED_FOCUS_OUT 5
55 #define ESC_BUF_SIZ (128*UTF_SIZ)
56 #define ESC_ARG_SIZ 16
57 #define STR_BUF_SIZ ESC_BUF_SIZ
58 #define STR_ARG_SIZ ESC_ARG_SIZ
59 #define DRAW_BUF_SIZ 20*1024
60 #define XK_ANY_MOD UINT_MAX
62 #define XK_SWITCH_MOD (1<<13)
64 #define REDRAW_TIMEOUT (80*1000) /* 80 ms */
67 #define SERRNO strerror(errno)
68 #define MIN(a, b) ((a) < (b) ? (a) : (b))
69 #define MAX(a, b) ((a) < (b) ? (b) : (a))
70 #define LEN(a) (sizeof(a) / sizeof(a[0]))
71 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
72 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
73 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
74 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
75 #define IS_SET(flag) ((term.mode & (flag)) != 0)
76 #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_usec-t2.tv_usec)/1000)
78 #define VT102ID "\033[?6c"
80 enum glyph_attribute
{
90 enum cursor_movement
{
113 MODE_MOUSEMOTION
= 64,
119 MODE_APPCURSOR
= 2048,
120 MODE_MOUSESGR
= 4096,
126 ESC_STR
= 4, /* DSC, OSC, PM, APC */
128 ESC_STR_END
= 16, /* a final string was encountered */
129 ESC_TEST
= 32, /* Enter in test mode */
138 enum selection_type
{
145 enum { B0
=1, B1
=2, B2
=4, B3
=8, B4
=16, B5
=32, B6
=64, B7
=128 };
147 typedef unsigned char uchar
;
148 typedef unsigned int uint
;
149 typedef unsigned long ulong
;
150 typedef unsigned short ushort
;
153 char c
[UTF_SIZ
]; /* character code */
154 uchar mode
; /* attribute flags */
155 ushort fg
; /* foreground */
156 ushort bg
; /* background */
157 uchar state
; /* state flags */
163 Glyph attr
; /* current char attributes */
169 /* CSI Escape sequence structs */
170 /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
172 char buf
[ESC_BUF_SIZ
]; /* raw string */
173 int len
; /* raw string length */
175 int arg
[ESC_ARG_SIZ
];
176 int narg
; /* nb of args */
180 /* STR Escape sequence structs */
181 /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
183 char type
; /* ESC type ... */
184 char buf
[STR_BUF_SIZ
]; /* raw string */
185 int len
; /* raw string length */
186 char *args
[STR_ARG_SIZ
];
187 int narg
; /* nb of args */
190 /* Internal representation of the screen */
192 int row
; /* nb row */
193 int col
; /* nb col */
194 Line
*line
; /* screen */
195 Line
*alt
; /* alternate screen */
196 bool *dirty
; /* dirtyness of lines */
197 TCursor c
; /* cursor */
198 int top
; /* top scroll limit */
199 int bot
; /* bottom scroll limit */
200 int mode
; /* terminal mode flags */
201 int esc
; /* escape state flags */
202 bool numlock
; /* lock numbers in keyboard */
206 /* Purely graphic info */
212 Atom xembed
, wmdeletewin
;
218 bool isfixed
; /* is fixed geometry? */
219 int fx
, fy
, fw
, fh
; /* fixed geometry */
220 int tw
, th
; /* tty width and height */
221 int w
, h
; /* window width and height */
222 int ch
; /* char height */
223 int cw
; /* char width */
224 char state
; /* focus, redraw, visible */
231 /* three valued logic variables: 0 indifferent, 1 on, -1 off */
232 signed char appkey
; /* application keypad */
233 signed char appcursor
; /* application cursor */
234 signed char crlf
; /* crlf mode */
237 /* TODO: use better name for vars... */
249 struct timeval tclick1
;
250 struct timeval tclick2
;
263 void (*func
)(const Arg
*);
267 /* function definitions used in config.h */
268 static void clippaste(const Arg
*);
269 static void numlock(const Arg
*);
270 static void selpaste(const Arg
*);
271 static void xzoom(const Arg
*);
273 /* Config.h for applying patches and the configuration. */
289 /* Drawing Context */
291 Colour col
[LEN(colorname
) < 256 ? 256 : LEN(colorname
)];
292 Font font
, bfont
, ifont
, ibfont
;
296 static void die(const char *, ...);
297 static void draw(void);
298 static void redraw(int);
299 static void drawregion(int, int, int, int);
300 static void execsh(void);
301 static void sigchld(int);
302 static void run(void);
304 static void csidump(void);
305 static void csihandle(void);
306 static void csiparse(void);
307 static void csireset(void);
308 static void strdump(void);
309 static void strhandle(void);
310 static void strparse(void);
311 static void strreset(void);
313 static void tclearregion(int, int, int, int, int);
314 static void tcursor(int);
315 static void tdeletechar(int);
316 static void tdeleteline(int);
317 static void tinsertblank(int);
318 static void tinsertblankline(int);
319 static void tmoveto(int, int);
320 static void tmoveato(int x
, int y
);
321 static void tnew(int, int);
322 static void tnewline(int);
323 static void tputtab(bool);
324 static void tputc(char *, int);
325 static void treset(void);
326 static int tresize(int, int);
327 static void tscrollup(int, int);
328 static void tscrolldown(int, int);
329 static void tsetattr(int*, int);
330 static void tsetchar(char *, Glyph
*, int, int);
331 static void tsetscroll(int, int);
332 static void tswapscreen(void);
333 static void tsetdirt(int, int);
334 static void tsetmode(bool, bool, int *, int);
335 static void tfulldirt(void);
336 static void techo(char *, int);
338 static inline bool match(uint
, uint
);
339 static void ttynew(void);
340 static void ttyread(void);
341 static void ttyresize(void);
342 static void ttywrite(const char *, size_t);
344 static void xdraws(char *, Glyph
, int, int, int, int);
345 static void xhints(void);
346 static void xclear(int, int, int, int);
347 static void xdrawcursor(void);
348 static void xinit(void);
349 static void xloadcols(void);
350 static int xsetcolorname(int, const char *);
351 static int xloadfont(Font
*, FcPattern
*);
352 static void xloadfonts(char *, int);
353 static void xsettitle(char *);
354 static void xresettitle(void);
355 static void xseturgency(int);
356 static void xsetsel(char*);
357 static void xtermclear(int, int, int, int);
358 static void xunloadfonts(void);
359 static void xresize(int, int);
361 static void expose(XEvent
*);
362 static void visibility(XEvent
*);
363 static void unmap(XEvent
*);
364 static char *kmap(KeySym
, uint
);
365 static void kpress(XEvent
*);
366 static void cmessage(XEvent
*);
367 static void cresize(int, int);
368 static void resize(XEvent
*);
369 static void focus(XEvent
*);
370 static void brelease(XEvent
*);
371 static void bpress(XEvent
*);
372 static void bmotion(XEvent
*);
373 static void selnotify(XEvent
*);
374 static void selclear(XEvent
*);
375 static void selrequest(XEvent
*);
377 static void selinit(void);
378 static inline bool selected(int, int);
379 static void selcopy(void);
380 static void selscroll(int, int);
382 static int utf8decode(char *, long *);
383 static int utf8encode(long *, char *);
384 static int utf8size(char *);
385 static int isfullutf8(char *, int);
387 static ssize_t
xwrite(int, char *, size_t);
388 static void *xmalloc(size_t);
389 static void *xrealloc(void *, size_t);
390 static void *xcalloc(size_t, size_t);
392 static void (*handler
[LASTEvent
])(XEvent
*) = {
394 [ClientMessage
] = cmessage
,
395 [ConfigureNotify
] = resize
,
396 [VisibilityNotify
] = visibility
,
397 [UnmapNotify
] = unmap
,
401 [MotionNotify
] = bmotion
,
402 [ButtonPress
] = bpress
,
403 [ButtonRelease
] = brelease
,
404 [SelectionClear
] = selclear
,
405 [SelectionNotify
] = selnotify
,
406 [SelectionRequest
] = selrequest
,
413 static CSIEscape csiescseq
;
414 static STREscape strescseq
;
417 static Selection sel
;
418 static int iofd
= -1;
419 static char **opt_cmd
= NULL
;
420 static char *opt_io
= NULL
;
421 static char *opt_title
= NULL
;
422 static char *opt_embed
= NULL
;
423 static char *opt_class
= NULL
;
424 static char *opt_font
= NULL
;
426 static char *usedfont
= NULL
;
427 static int usedfontsize
= 0;
429 /* Font Ring Cache */
444 * Fontcache is a ring buffer, with frccur as current position and frclen as
445 * the current length of used elements.
448 static Fontcache frc
[1024];
449 static int frccur
= -1, frclen
= 0;
452 xwrite(int fd
, char *s
, size_t len
) {
456 ssize_t r
= write(fd
, s
, len
);
466 xmalloc(size_t len
) {
467 void *p
= malloc(len
);
470 die("Out of memory\n");
476 xrealloc(void *p
, size_t len
) {
477 if((p
= realloc(p
, len
)) == NULL
)
478 die("Out of memory\n");
484 xcalloc(size_t nmemb
, size_t size
) {
485 void *p
= calloc(nmemb
, size
);
488 die("Out of memory\n");
494 utf8decode(char *s
, long *u
) {
500 if(~c
& B7
) { /* 0xxxxxxx */
503 } else if((c
& (B7
|B6
|B5
)) == (B7
|B6
)) { /* 110xxxxx */
504 *u
= c
&(B4
|B3
|B2
|B1
|B0
);
506 } else if((c
& (B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) { /* 1110xxxx */
507 *u
= c
&(B3
|B2
|B1
|B0
);
509 } else if((c
& (B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
)) { /* 11110xxx */
516 for(i
= n
, ++s
; i
> 0; --i
, ++rtn
, ++s
) {
518 if((c
& (B7
|B6
)) != B7
) /* 10xxxxxx */
521 *u
|= c
& (B5
|B4
|B3
|B2
|B1
|B0
);
524 if((n
== 1 && *u
< 0x80) ||
525 (n
== 2 && *u
< 0x800) ||
526 (n
== 3 && *u
< 0x10000) ||
527 (*u
>= 0xD800 && *u
<= 0xDFFF)) {
539 utf8encode(long *u
, char *s
) {
547 *sp
= uc
; /* 0xxxxxxx */
549 } else if(*u
< 0x800) {
550 *sp
= (uc
>> 6) | (B7
|B6
); /* 110xxxxx */
552 } else if(uc
< 0x10000) {
553 *sp
= (uc
>> 12) | (B7
|B6
|B5
); /* 1110xxxx */
555 } else if(uc
<= 0x10FFFF) {
556 *sp
= (uc
>> 18) | (B7
|B6
|B5
|B4
); /* 11110xxx */
562 for(i
=n
,++sp
; i
>0; --i
,++sp
)
563 *sp
= ((uc
>> 6*(i
-1)) & (B5
|B4
|B3
|B2
|B1
|B0
)) | B7
; /* 10xxxxxx */
575 /* use this if your buffer is less than UTF_SIZ, it returns 1 if you can decode
576 UTF-8 otherwise return 0 */
578 isfullutf8(char *s
, int b
) {
586 } else if((*c1
&(B7
|B6
|B5
)) == (B7
|B6
) && b
== 1) {
588 } else if((*c1
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
) &&
590 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
))) {
592 } else if((*c1
&(B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
) &&
594 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
) ||
595 ((b
== 3) && (*c2
&(B7
|B6
)) == B7
&& (*c3
&(B7
|B6
)) == B7
))) {
608 } else if((c
&(B7
|B6
|B5
)) == (B7
|B6
)) {
610 } else if((c
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) {
619 memset(&sel
.tclick1
, 0, sizeof(sel
.tclick1
));
620 memset(&sel
.tclick2
, 0, sizeof(sel
.tclick2
));
624 sel
.xtarget
= XInternAtom(xw
.dpy
, "UTF8_STRING", 0);
625 if(sel
.xtarget
== None
)
626 sel
.xtarget
= XA_STRING
;
634 return LIMIT(x
, 0, term
.col
-1);
642 return LIMIT(y
, 0, term
.row
-1);
646 selected(int x
, int y
) {
649 if(sel
.ey
== y
&& sel
.by
== y
) {
650 bx
= MIN(sel
.bx
, sel
.ex
);
651 ex
= MAX(sel
.bx
, sel
.ex
);
653 return BETWEEN(x
, bx
, ex
);
656 if(sel
.type
== SEL_RECTANGULAR
) {
657 return ((sel
.b
.y
<= y
&& y
<= sel
.e
.y
)
658 && (sel
.b
.x
<= x
&& x
<= sel
.e
.x
));
660 return ((sel
.b
.y
< y
&& y
< sel
.e
.y
)
661 || (y
== sel
.e
.y
&& x
<= sel
.e
.x
))
662 || (y
== sel
.b
.y
&& x
>= sel
.b
.x
663 && (x
<= sel
.e
.x
|| sel
.b
.y
!= sel
.e
.y
));
667 getbuttoninfo(XEvent
*e
) {
669 uint state
= e
->xbutton
.state
&~Button1Mask
;
671 sel
.alt
= IS_SET(MODE_ALTSCREEN
);
673 sel
.ex
= x2col(e
->xbutton
.x
);
674 sel
.ey
= y2row(e
->xbutton
.y
);
676 sel
.b
.x
= sel
.by
< sel
.ey
? sel
.bx
: sel
.ex
;
677 sel
.b
.y
= MIN(sel
.by
, sel
.ey
);
678 sel
.e
.x
= sel
.by
< sel
.ey
? sel
.ex
: sel
.bx
;
679 sel
.e
.y
= MAX(sel
.by
, sel
.ey
);
681 sel
.type
= SEL_REGULAR
;
682 for(type
= 1; type
< LEN(selmasks
); ++type
) {
683 if(match(selmasks
[type
], state
)) {
691 mousereport(XEvent
*e
) {
692 int x
= x2col(e
->xbutton
.x
), y
= y2row(e
->xbutton
.y
),
693 button
= e
->xbutton
.button
, state
= e
->xbutton
.state
,
696 static int ob
, ox
, oy
;
699 if(e
->xbutton
.type
== MotionNotify
) {
700 if(!IS_SET(MODE_MOUSEMOTION
) || (x
== ox
&& y
== oy
))
704 } else if(!IS_SET(MODE_MOUSESGR
)
705 && (e
->xbutton
.type
== ButtonRelease
706 || button
== AnyButton
)) {
712 if(e
->xbutton
.type
== ButtonPress
) {
718 button
+= (state
& ShiftMask
? 4 : 0)
719 + (state
& Mod4Mask
? 8 : 0)
720 + (state
& ControlMask
? 16 : 0);
723 if(IS_SET(MODE_MOUSESGR
)) {
724 len
= snprintf(buf
, sizeof(buf
), "\033[<%d;%d;%d%c",
726 e
->xbutton
.type
== ButtonRelease
? 'm' : 'M');
727 } else if(x
< 223 && y
< 223) {
728 len
= snprintf(buf
, sizeof(buf
), "\033[M%c%c%c",
729 32+button
, 32+x
+1, 32+y
+1);
739 if(IS_SET(MODE_MOUSE
)) {
741 } else if(e
->xbutton
.button
== Button1
) {
744 tsetdirt(sel
.b
.y
, sel
.e
.y
);
748 sel
.type
= SEL_REGULAR
;
749 sel
.ex
= sel
.bx
= x2col(e
->xbutton
.x
);
750 sel
.ey
= sel
.by
= y2row(e
->xbutton
.y
);
751 } else if(e
->xbutton
.button
== Button4
) {
753 } else if(e
->xbutton
.button
== Button5
) {
761 int x
, y
, bufsize
, isselected
= 0, size
;
767 bufsize
= (term
.col
+1) * (sel
.e
.y
-sel
.b
.y
+1) * UTF_SIZ
;
768 ptr
= str
= xmalloc(bufsize
);
770 /* append every set & selected glyph to the selection */
771 for(y
= sel
.b
.y
; y
< sel
.e
.y
+ 1; y
++) {
773 gp
= &term
.line
[y
][0];
774 last
= gp
+ term
.col
;
776 while(--last
>= gp
&& !(last
->state
& GLYPH_SET
))
779 for(x
= 0; gp
<= last
; x
++, ++gp
) {
780 if(!selected(x
, y
)) {
786 p
= (gp
->state
& GLYPH_SET
) ? gp
->c
: " ";
788 memcpy(ptr
, p
, size
);
793 * Copy and pasting of line endings is inconsistent
794 * in the inconsistent terminal and GUI world.
795 * The best solution seems like to produce '\n' when
796 * something is copied from st and convert '\n' to
797 * '\r', when something to be pasted is received by
799 * FIXME: Fix the computer world.
801 if(isselected
&& y
< sel
.e
.y
)
810 selnotify(XEvent
*e
) {
811 ulong nitems
, ofs
, rem
;
813 uchar
*data
, *last
, *repl
;
818 if(XGetWindowProperty(xw
.dpy
, xw
.win
, XA_PRIMARY
, ofs
, BUFSIZ
/4,
819 False
, AnyPropertyType
, &type
, &format
,
820 &nitems
, &rem
, &data
)) {
821 fprintf(stderr
, "Clipboard allocation failed\n");
826 * As seen in selcopy:
827 * Line endings are inconsistent in the terminal and GUI world
828 * copy and pasting. When receiving some selection data,
829 * replace all '\n' with '\r'.
830 * FIXME: Fix the computer world.
833 last
= data
+ nitems
* format
/ 8;
834 while((repl
= memchr(repl
, '\n', last
- repl
))) {
838 ttywrite((const char *)data
, nitems
* format
/ 8);
840 /* number of 32-bit chunks returned */
841 ofs
+= nitems
* format
/ 32;
846 selpaste(const Arg
*dummy
) {
847 XConvertSelection(xw
.dpy
, XA_PRIMARY
, sel
.xtarget
, XA_PRIMARY
,
848 xw
.win
, CurrentTime
);
852 clippaste(const Arg
*dummy
) {
855 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
856 XConvertSelection(xw
.dpy
, clipboard
, sel
.xtarget
, XA_PRIMARY
,
857 xw
.win
, CurrentTime
);
861 selclear(XEvent
*e
) {
865 tsetdirt(sel
.b
.y
, sel
.e
.y
);
869 selrequest(XEvent
*e
) {
870 XSelectionRequestEvent
*xsre
;
872 Atom xa_targets
, string
;
874 xsre
= (XSelectionRequestEvent
*) e
;
875 xev
.type
= SelectionNotify
;
876 xev
.requestor
= xsre
->requestor
;
877 xev
.selection
= xsre
->selection
;
878 xev
.target
= xsre
->target
;
879 xev
.time
= xsre
->time
;
883 xa_targets
= XInternAtom(xw
.dpy
, "TARGETS", 0);
884 if(xsre
->target
== xa_targets
) {
885 /* respond with the supported type */
886 string
= sel
.xtarget
;
887 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
888 XA_ATOM
, 32, PropModeReplace
,
889 (uchar
*) &string
, 1);
890 xev
.property
= xsre
->property
;
891 } else if(xsre
->target
== sel
.xtarget
&& sel
.clip
!= NULL
) {
892 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
893 xsre
->target
, 8, PropModeReplace
,
894 (uchar
*) sel
.clip
, strlen(sel
.clip
));
895 xev
.property
= xsre
->property
;
898 /* all done, send a notification to the listener */
899 if(!XSendEvent(xsre
->display
, xsre
->requestor
, True
, 0, (XEvent
*) &xev
))
900 fprintf(stderr
, "Error sending SelectionNotify event\n");
905 /* register the selection for both the clipboard and the primary */
911 XSetSelectionOwner(xw
.dpy
, XA_PRIMARY
, xw
.win
, CurrentTime
);
913 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
914 XSetSelectionOwner(xw
.dpy
, clipboard
, xw
.win
, CurrentTime
);
918 brelease(XEvent
*e
) {
921 if(IS_SET(MODE_MOUSE
)) {
926 if(e
->xbutton
.button
== Button2
) {
928 } else if(e
->xbutton
.button
== Button1
) {
931 term
.dirty
[sel
.ey
] = 1;
932 if(sel
.bx
== sel
.ex
&& sel
.by
== sel
.ey
) {
934 gettimeofday(&now
, NULL
);
936 if(TIMEDIFF(now
, sel
.tclick2
) <= tripleclicktimeout
) {
937 /* triple click on the line */
938 sel
.b
.x
= sel
.bx
= 0;
939 sel
.e
.x
= sel
.ex
= term
.col
;
940 sel
.b
.y
= sel
.e
.y
= sel
.ey
;
942 } else if(TIMEDIFF(now
, sel
.tclick1
) <= doubleclicktimeout
) {
943 /* double click to select word */
945 while(sel
.bx
> 0 && term
.line
[sel
.ey
][sel
.bx
-1].state
& GLYPH_SET
&&
946 term
.line
[sel
.ey
][sel
.bx
-1].c
[0] != ' ') {
950 while(sel
.ex
< term
.col
-1 && term
.line
[sel
.ey
][sel
.ex
+1].state
& GLYPH_SET
&&
951 term
.line
[sel
.ey
][sel
.ex
+1].c
[0] != ' ') {
955 sel
.b
.y
= sel
.e
.y
= sel
.ey
;
963 memcpy(&sel
.tclick2
, &sel
.tclick1
, sizeof(struct timeval
));
964 gettimeofday(&sel
.tclick1
, NULL
);
969 int oldey
, oldex
, oldsby
, oldsey
;
971 if(IS_SET(MODE_MOUSE
)) {
985 if(oldey
!= sel
.ey
|| oldex
!= sel
.ex
) {
986 tsetdirt(MIN(sel
.b
.y
, oldsby
), MAX(sel
.e
.y
, oldsey
));
991 die(const char *errstr
, ...) {
994 va_start(ap
, errstr
);
995 vfprintf(stderr
, errstr
, ap
);
1003 char *envshell
= getenv("SHELL");
1004 const struct passwd
*pass
= getpwuid(getuid());
1005 char buf
[sizeof(long) * 8 + 1];
1007 unsetenv("COLUMNS");
1009 unsetenv("TERMCAP");
1012 setenv("LOGNAME", pass
->pw_name
, 1);
1013 setenv("USER", pass
->pw_name
, 1);
1014 setenv("SHELL", pass
->pw_shell
, 0);
1015 setenv("HOME", pass
->pw_dir
, 0);
1018 snprintf(buf
, sizeof(buf
), "%lu", xw
.win
);
1019 setenv("WINDOWID", buf
, 1);
1021 signal(SIGCHLD
, SIG_DFL
);
1022 signal(SIGHUP
, SIG_DFL
);
1023 signal(SIGINT
, SIG_DFL
);
1024 signal(SIGQUIT
, SIG_DFL
);
1025 signal(SIGTERM
, SIG_DFL
);
1026 signal(SIGALRM
, SIG_DFL
);
1028 DEFAULT(envshell
, shell
);
1029 setenv("TERM", termname
, 1);
1030 args
= opt_cmd
? opt_cmd
: (char *[]){envshell
, "-i", NULL
};
1031 execvp(args
[0], args
);
1039 if(waitpid(pid
, &stat
, 0) < 0)
1040 die("Waiting for pid %hd failed: %s\n", pid
, SERRNO
);
1042 if(WIFEXITED(stat
)) {
1043 exit(WEXITSTATUS(stat
));
1052 struct winsize w
= {term
.row
, term
.col
, 0, 0};
1054 /* seems to work fine on linux, openbsd and freebsd */
1055 if(openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
1056 die("openpty failed: %s\n", SERRNO
);
1058 switch(pid
= fork()) {
1060 die("fork failed\n");
1063 setsid(); /* create a new process group */
1064 dup2(s
, STDIN_FILENO
);
1065 dup2(s
, STDOUT_FILENO
);
1066 dup2(s
, STDERR_FILENO
);
1067 if(ioctl(s
, TIOCSCTTY
, NULL
) < 0)
1068 die("ioctl TIOCSCTTY failed: %s\n", SERRNO
);
1076 signal(SIGCHLD
, sigchld
);
1078 iofd
= (!strcmp(opt_io
, "-")) ?
1080 open(opt_io
, O_WRONLY
| O_CREAT
, 0666);
1082 fprintf(stderr
, "Error opening %s:%s\n",
1083 opt_io
, strerror(errno
));
1093 fprintf(stderr
, " %02x '%c' ", c
, isprint(c
)?c
:'.');
1095 fprintf(stderr
, "\n");
1100 static char buf
[BUFSIZ
];
1101 static int buflen
= 0;
1104 int charsize
; /* size of utf8 char in bytes */
1108 /* append read bytes to unprocessed bytes */
1109 if((ret
= read(cmdfd
, buf
+buflen
, LEN(buf
)-buflen
)) < 0)
1110 die("Couldn't read from shell: %s\n", SERRNO
);
1112 /* process every complete utf8 char */
1115 while(buflen
>= UTF_SIZ
|| isfullutf8(ptr
,buflen
)) {
1116 charsize
= utf8decode(ptr
, &utf8c
);
1117 utf8encode(&utf8c
, s
);
1123 /* keep any uncomplete utf8 char for the next call */
1124 memmove(buf
, ptr
, buflen
);
1128 ttywrite(const char *s
, size_t n
) {
1129 if(write(cmdfd
, s
, n
) == -1)
1130 die("write error on tty: %s\n", SERRNO
);
1137 w
.ws_row
= term
.row
;
1138 w
.ws_col
= term
.col
;
1139 w
.ws_xpixel
= xw
.tw
;
1140 w
.ws_ypixel
= xw
.th
;
1141 if(ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
1142 fprintf(stderr
, "Couldn't set window size: %s\n", SERRNO
);
1146 tsetdirt(int top
, int bot
) {
1149 LIMIT(top
, 0, term
.row
-1);
1150 LIMIT(bot
, 0, term
.row
-1);
1152 for(i
= top
; i
<= bot
; i
++)
1158 tsetdirt(0, term
.row
-1);
1165 if(mode
== CURSOR_SAVE
) {
1167 } else if(mode
== CURSOR_LOAD
) {
1177 term
.c
= (TCursor
){{
1181 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
1183 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1184 for(i
= tabspaces
; i
< term
.col
; i
+= tabspaces
)
1187 term
.bot
= term
.row
- 1;
1188 term
.mode
= MODE_WRAP
;
1190 tclearregion(0, 0, term
.col
-1, term
.row
-1, 0);
1192 tcursor(CURSOR_SAVE
);
1196 tnew(int col
, int row
) {
1197 /* set screen size */
1200 term
.line
= xmalloc(term
.row
* sizeof(Line
));
1201 term
.alt
= xmalloc(term
.row
* sizeof(Line
));
1202 term
.dirty
= xmalloc(term
.row
* sizeof(*term
.dirty
));
1203 term
.tabs
= xmalloc(term
.col
* sizeof(*term
.tabs
));
1205 for(row
= 0; row
< term
.row
; row
++) {
1206 term
.line
[row
] = xmalloc(term
.col
* sizeof(Glyph
));
1207 term
.alt
[row
] = xmalloc(term
.col
* sizeof(Glyph
));
1208 term
.dirty
[row
] = 0;
1212 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1219 Line
*tmp
= term
.line
;
1221 term
.line
= term
.alt
;
1223 term
.mode
^= MODE_ALTSCREEN
;
1228 tscrolldown(int orig
, int n
) {
1232 LIMIT(n
, 0, term
.bot
-orig
+1);
1234 tclearregion(0, term
.bot
-n
+1, term
.col
-1, term
.bot
, 0);
1236 for(i
= term
.bot
; i
>= orig
+n
; i
--) {
1237 temp
= term
.line
[i
];
1238 term
.line
[i
] = term
.line
[i
-n
];
1239 term
.line
[i
-n
] = temp
;
1242 term
.dirty
[i
-n
] = 1;
1249 tscrollup(int orig
, int n
) {
1252 LIMIT(n
, 0, term
.bot
-orig
+1);
1254 tclearregion(0, orig
, term
.col
-1, orig
+n
-1, 0);
1256 for(i
= orig
; i
<= term
.bot
-n
; i
++) {
1257 temp
= term
.line
[i
];
1258 term
.line
[i
] = term
.line
[i
+n
];
1259 term
.line
[i
+n
] = temp
;
1262 term
.dirty
[i
+n
] = 1;
1265 selscroll(orig
, -n
);
1269 selscroll(int orig
, int n
) {
1273 if(BETWEEN(sel
.by
, orig
, term
.bot
) || BETWEEN(sel
.ey
, orig
, term
.bot
)) {
1274 if((sel
.by
+= n
) > term
.bot
|| (sel
.ey
+= n
) < term
.top
) {
1278 if(sel
.type
== SEL_RECTANGULAR
) {
1279 if(sel
.by
< term
.top
)
1281 if(sel
.ey
> term
.bot
)
1284 if(sel
.by
< term
.top
) {
1288 if(sel
.ey
> term
.bot
) {
1293 sel
.b
.y
= sel
.by
, sel
.b
.x
= sel
.bx
;
1294 sel
.e
.y
= sel
.ey
, sel
.e
.x
= sel
.ex
;
1299 tnewline(int first_col
) {
1303 tscrollup(term
.top
, 1);
1307 tmoveto(first_col
? 0 : term
.c
.x
, y
);
1312 char *p
= csiescseq
.buf
, *np
;
1321 csiescseq
.buf
[csiescseq
.len
] = '\0';
1322 while(p
< csiescseq
.buf
+csiescseq
.len
) {
1324 v
= strtol(p
, &np
, 10);
1327 if(v
== LONG_MAX
|| v
== LONG_MIN
)
1329 csiescseq
.arg
[csiescseq
.narg
++] = v
;
1331 if(*p
!= ';' || csiescseq
.narg
== ESC_ARG_SIZ
)
1335 csiescseq
.mode
= *p
;
1338 /* for absolute user moves, when decom is set */
1340 tmoveato(int x
, int y
) {
1341 tmoveto(x
, y
+ ((term
.c
.state
& CURSOR_ORIGIN
) ? term
.top
: 0));
1345 tmoveto(int x
, int y
) {
1348 if(term
.c
.state
& CURSOR_ORIGIN
) {
1353 maxy
= term
.row
- 1;
1355 LIMIT(x
, 0, term
.col
-1);
1356 LIMIT(y
, miny
, maxy
);
1357 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
1363 tsetchar(char *c
, Glyph
*attr
, int x
, int y
) {
1364 static char *vt100_0
[62] = { /* 0x41 - 0x7e */
1365 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1366 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1367 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1368 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1369 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1370 "", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1371 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1372 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1376 * The table is proudly stolen from rxvt.
1378 if(attr
->mode
& ATTR_GFX
) {
1379 if(c
[0] >= 0x41 && c
[0] <= 0x7e
1380 && vt100_0
[c
[0] - 0x41]) {
1381 c
= vt100_0
[c
[0] - 0x41];
1386 term
.line
[y
][x
] = *attr
;
1387 memcpy(term
.line
[y
][x
].c
, c
, UTF_SIZ
);
1388 term
.line
[y
][x
].state
|= GLYPH_SET
;
1392 tclearregion(int x1
, int y1
, int x2
, int y2
, int bce
) {
1396 temp
= x1
, x1
= x2
, x2
= temp
;
1398 temp
= y1
, y1
= y2
, y2
= temp
;
1400 LIMIT(x1
, 0, term
.col
-1);
1401 LIMIT(x2
, 0, term
.col
-1);
1402 LIMIT(y1
, 0, term
.row
-1);
1403 LIMIT(y2
, 0, term
.row
-1);
1405 for(y
= y1
; y
<= y2
; y
++) {
1407 for(x
= x1
; x
<= x2
; x
++) {
1409 term
.line
[y
][x
] = term
.c
.attr
;
1410 memcpy(term
.line
[y
][x
].c
, " ", 2);
1411 term
.line
[y
][x
].state
|= GLYPH_SET
;
1413 term
.line
[y
][x
].state
= 0;
1420 tdeletechar(int n
) {
1421 int src
= term
.c
.x
+ n
;
1423 int size
= term
.col
- src
;
1425 term
.dirty
[term
.c
.y
] = 1;
1427 if(src
>= term
.col
) {
1428 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
, 0);
1432 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1433 size
* sizeof(Glyph
));
1434 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
, 0);
1438 tinsertblank(int n
) {
1441 int size
= term
.col
- dst
;
1443 term
.dirty
[term
.c
.y
] = 1;
1445 if(dst
>= term
.col
) {
1446 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
, 0);
1450 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1451 size
* sizeof(Glyph
));
1452 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
, 0);
1456 tinsertblankline(int n
) {
1457 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1460 tscrolldown(term
.c
.y
, n
);
1464 tdeleteline(int n
) {
1465 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1468 tscrollup(term
.c
.y
, n
);
1472 tsetattr(int *attr
, int l
) {
1475 for(i
= 0; i
< l
; i
++) {
1478 term
.c
.attr
.mode
&= ~(ATTR_REVERSE
| ATTR_UNDERLINE
| ATTR_BOLD \
1479 | ATTR_ITALIC
| ATTR_BLINK
);
1480 term
.c
.attr
.fg
= defaultfg
;
1481 term
.c
.attr
.bg
= defaultbg
;
1484 term
.c
.attr
.mode
|= ATTR_BOLD
;
1487 term
.c
.attr
.mode
|= ATTR_ITALIC
;
1490 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
1492 case 5: /* slow blink */
1493 case 6: /* rapid blink */
1494 term
.c
.attr
.mode
|= ATTR_BLINK
;
1497 term
.c
.attr
.mode
|= ATTR_REVERSE
;
1501 term
.c
.attr
.mode
&= ~ATTR_BOLD
;
1504 term
.c
.attr
.mode
&= ~ATTR_ITALIC
;
1507 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
1511 term
.c
.attr
.mode
&= ~ATTR_BLINK
;
1514 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
1517 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1519 if(BETWEEN(attr
[i
], 0, 255)) {
1520 term
.c
.attr
.fg
= attr
[i
];
1523 "erresc: bad fgcolor %d\n",
1528 "erresc(38): gfx attr %d unknown\n",
1533 term
.c
.attr
.fg
= defaultfg
;
1536 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1538 if(BETWEEN(attr
[i
], 0, 255)) {
1539 term
.c
.attr
.bg
= attr
[i
];
1542 "erresc: bad bgcolor %d\n",
1547 "erresc(48): gfx attr %d unknown\n",
1552 term
.c
.attr
.bg
= defaultbg
;
1555 if(BETWEEN(attr
[i
], 30, 37)) {
1556 term
.c
.attr
.fg
= attr
[i
] - 30;
1557 } else if(BETWEEN(attr
[i
], 40, 47)) {
1558 term
.c
.attr
.bg
= attr
[i
] - 40;
1559 } else if(BETWEEN(attr
[i
], 90, 97)) {
1560 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
1561 } else if(BETWEEN(attr
[i
], 100, 107)) {
1562 term
.c
.attr
.bg
= attr
[i
] - 100 + 8;
1565 "erresc(default): gfx attr %d unknown\n",
1566 attr
[i
]), csidump();
1574 tsetscroll(int t
, int b
) {
1577 LIMIT(t
, 0, term
.row
-1);
1578 LIMIT(b
, 0, term
.row
-1);
1588 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
1591 tsetmode(bool priv
, bool set
, int *args
, int narg
) {
1595 for(lim
= args
+ narg
; args
< lim
; ++args
) {
1599 case 1: /* DECCKM -- Cursor key */
1600 MODBIT(term
.mode
, set
, MODE_APPCURSOR
);
1602 case 5: /* DECSCNM -- Reverse video */
1604 MODBIT(term
.mode
, set
, MODE_REVERSE
);
1605 if(mode
!= term
.mode
)
1606 redraw(REDRAW_TIMEOUT
);
1608 case 6: /* DECOM -- Origin */
1609 MODBIT(term
.c
.state
, set
, CURSOR_ORIGIN
);
1612 case 7: /* DECAWM -- Auto wrap */
1613 MODBIT(term
.mode
, set
, MODE_WRAP
);
1615 case 0: /* Error (IGNORED) */
1616 case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
1617 case 3: /* DECCOLM -- Column (IGNORED) */
1618 case 4: /* DECSCLM -- Scroll (IGNORED) */
1619 case 8: /* DECARM -- Auto repeat (IGNORED) */
1620 case 18: /* DECPFF -- Printer feed (IGNORED) */
1621 case 19: /* DECPEX -- Printer extent (IGNORED) */
1622 case 42: /* DECNRCM -- National characters (IGNORED) */
1623 case 12: /* att610 -- Start blinking cursor (IGNORED) */
1625 case 25: /* DECTCEM -- Text Cursor Enable Mode */
1626 MODBIT(term
.mode
, !set
, MODE_HIDE
);
1628 case 1000: /* 1000,1002: enable xterm mouse report */
1629 MODBIT(term
.mode
, set
, MODE_MOUSEBTN
);
1630 MODBIT(term
.mode
, 0, MODE_MOUSEMOTION
);
1633 MODBIT(term
.mode
, set
, MODE_MOUSEMOTION
);
1634 MODBIT(term
.mode
, 0, MODE_MOUSEBTN
);
1637 MODBIT(term
.mode
, set
, MODE_MOUSESGR
);
1639 case 1049: /* = 1047 and 1048 */
1642 if (!allowaltscreen
)
1645 alt
= IS_SET(MODE_ALTSCREEN
);
1647 tclearregion(0, 0, term
.col
-1,
1650 if(set
^ alt
) /* set is always 1 or 0 */
1656 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
1660 "erresc: unknown private set/reset mode %d\n",
1666 case 0: /* Error (IGNORED) */
1668 case 2: /* KAM -- keyboard action */
1669 MODBIT(term
.mode
, set
, MODE_KBDLOCK
);
1671 case 4: /* IRM -- Insertion-replacement */
1672 MODBIT(term
.mode
, set
, MODE_INSERT
);
1674 case 12: /* SRM -- Send/Receive */
1675 MODBIT(term
.mode
, !set
, MODE_ECHO
);
1677 case 20: /* LNM -- Linefeed/new line */
1678 MODBIT(term
.mode
, set
, MODE_CRLF
);
1682 "erresc: unknown set/reset mode %d\n",
1694 switch(csiescseq
.mode
) {
1697 fprintf(stderr
, "erresc: unknown csi ");
1701 case '@': /* ICH -- Insert <n> blank char */
1702 DEFAULT(csiescseq
.arg
[0], 1);
1703 tinsertblank(csiescseq
.arg
[0]);
1705 case 'A': /* CUU -- Cursor <n> Up */
1706 DEFAULT(csiescseq
.arg
[0], 1);
1707 tmoveto(term
.c
.x
, term
.c
.y
-csiescseq
.arg
[0]);
1709 case 'B': /* CUD -- Cursor <n> Down */
1710 case 'e': /* VPR --Cursor <n> Down */
1711 DEFAULT(csiescseq
.arg
[0], 1);
1712 tmoveto(term
.c
.x
, term
.c
.y
+csiescseq
.arg
[0]);
1714 case 'c': /* DA -- Device Attributes */
1715 if(csiescseq
.arg
[0] == 0)
1716 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
1718 case 'C': /* CUF -- Cursor <n> Forward */
1719 case 'a': /* HPR -- Cursor <n> Forward */
1720 DEFAULT(csiescseq
.arg
[0], 1);
1721 tmoveto(term
.c
.x
+csiescseq
.arg
[0], term
.c
.y
);
1723 case 'D': /* CUB -- Cursor <n> Backward */
1724 DEFAULT(csiescseq
.arg
[0], 1);
1725 tmoveto(term
.c
.x
-csiescseq
.arg
[0], term
.c
.y
);
1727 case 'E': /* CNL -- Cursor <n> Down and first col */
1728 DEFAULT(csiescseq
.arg
[0], 1);
1729 tmoveto(0, term
.c
.y
+csiescseq
.arg
[0]);
1731 case 'F': /* CPL -- Cursor <n> Up and first col */
1732 DEFAULT(csiescseq
.arg
[0], 1);
1733 tmoveto(0, term
.c
.y
-csiescseq
.arg
[0]);
1735 case 'g': /* TBC -- Tabulation clear */
1736 switch(csiescseq
.arg
[0]) {
1737 case 0: /* clear current tab stop */
1738 term
.tabs
[term
.c
.x
] = 0;
1740 case 3: /* clear all the tabs */
1741 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1747 case 'G': /* CHA -- Move to <col> */
1749 DEFAULT(csiescseq
.arg
[0], 1);
1750 tmoveto(csiescseq
.arg
[0]-1, term
.c
.y
);
1752 case 'H': /* CUP -- Move to <row> <col> */
1754 DEFAULT(csiescseq
.arg
[0], 1);
1755 DEFAULT(csiescseq
.arg
[1], 1);
1756 tmoveato(csiescseq
.arg
[1]-1, csiescseq
.arg
[0]-1);
1758 case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
1759 DEFAULT(csiescseq
.arg
[0], 1);
1760 while(csiescseq
.arg
[0]--)
1763 case 'J': /* ED -- Clear screen */
1765 switch(csiescseq
.arg
[0]) {
1767 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
, 1);
1768 if(term
.c
.y
< term
.row
-1) {
1769 tclearregion(0, term
.c
.y
+1, term
.col
-1,
1775 tclearregion(0, 0, term
.col
-1, term
.c
.y
-1, 1);
1776 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
, 1);
1779 tclearregion(0, 0, term
.col
-1, term
.row
-1, 1);
1785 case 'K': /* EL -- Clear line */
1786 switch(csiescseq
.arg
[0]) {
1788 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1,
1792 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
, 1);
1795 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
, 1);
1799 case 'S': /* SU -- Scroll <n> line up */
1800 DEFAULT(csiescseq
.arg
[0], 1);
1801 tscrollup(term
.top
, csiescseq
.arg
[0]);
1803 case 'T': /* SD -- Scroll <n> line down */
1804 DEFAULT(csiescseq
.arg
[0], 1);
1805 tscrolldown(term
.top
, csiescseq
.arg
[0]);
1807 case 'L': /* IL -- Insert <n> blank lines */
1808 DEFAULT(csiescseq
.arg
[0], 1);
1809 tinsertblankline(csiescseq
.arg
[0]);
1811 case 'l': /* RM -- Reset Mode */
1812 tsetmode(csiescseq
.priv
, 0, csiescseq
.arg
, csiescseq
.narg
);
1814 case 'M': /* DL -- Delete <n> lines */
1815 DEFAULT(csiescseq
.arg
[0], 1);
1816 tdeleteline(csiescseq
.arg
[0]);
1818 case 'X': /* ECH -- Erase <n> char */
1819 DEFAULT(csiescseq
.arg
[0], 1);
1820 tclearregion(term
.c
.x
, term
.c
.y
,
1821 term
.c
.x
+ csiescseq
.arg
[0] - 1, term
.c
.y
, 1);
1823 case 'P': /* DCH -- Delete <n> char */
1824 DEFAULT(csiescseq
.arg
[0], 1);
1825 tdeletechar(csiescseq
.arg
[0]);
1827 case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
1828 DEFAULT(csiescseq
.arg
[0], 1);
1829 while(csiescseq
.arg
[0]--)
1832 case 'd': /* VPA -- Move to <row> */
1833 DEFAULT(csiescseq
.arg
[0], 1);
1834 tmoveato(term
.c
.x
, csiescseq
.arg
[0]-1);
1836 case 'h': /* SM -- Set terminal mode */
1837 tsetmode(csiescseq
.priv
, 1, csiescseq
.arg
, csiescseq
.narg
);
1839 case 'm': /* SGR -- Terminal attribute (color) */
1840 tsetattr(csiescseq
.arg
, csiescseq
.narg
);
1842 case 'r': /* DECSTBM -- Set Scrolling Region */
1843 if(csiescseq
.priv
) {
1846 DEFAULT(csiescseq
.arg
[0], 1);
1847 DEFAULT(csiescseq
.arg
[1], term
.row
);
1848 tsetscroll(csiescseq
.arg
[0]-1, csiescseq
.arg
[1]-1);
1852 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
1853 tcursor(CURSOR_SAVE
);
1855 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
1856 tcursor(CURSOR_LOAD
);
1867 for(i
= 0; i
< csiescseq
.len
; i
++) {
1868 c
= csiescseq
.buf
[i
] & 0xff;
1871 } else if(c
== '\n') {
1873 } else if(c
== '\r') {
1875 } else if(c
== 0x1b) {
1878 printf("(%02x)", c
);
1886 memset(&csiescseq
, 0, sizeof(csiescseq
));
1895 narg
= strescseq
.narg
;
1897 switch(strescseq
.type
) {
1898 case ']': /* OSC -- Operating System Command */
1899 switch(i
= atoi(strescseq
.args
[0])) {
1904 xsettitle(strescseq
.args
[1]);
1906 case 4: /* color set */
1909 p
= strescseq
.args
[2];
1911 case 104: /* color reset, here p = NULL */
1912 j
= (narg
> 1) ? atoi(strescseq
.args
[1]) : -1;
1913 if (!xsetcolorname(j
, p
)) {
1914 fprintf(stderr
, "erresc: invalid color %s\n", p
);
1917 * TODO if defaultbg color is changed, borders
1924 fprintf(stderr
, "erresc: unknown str ");
1929 case 'k': /* old title set compatibility */
1930 xsettitle(strescseq
.args
[0]);
1932 case 'P': /* DSC -- Device Control String */
1933 case '_': /* APC -- Application Program Command */
1934 case '^': /* PM -- Privacy Message */
1936 fprintf(stderr
, "erresc: unknown str ");
1945 char *p
= strescseq
.buf
;
1948 strescseq
.buf
[strescseq
.len
] = '\0';
1949 while(p
&& strescseq
.narg
< STR_ARG_SIZ
)
1950 strescseq
.args
[strescseq
.narg
++] = strsep(&p
, ";");
1958 printf("ESC%c", strescseq
.type
);
1959 for(i
= 0; i
< strescseq
.len
; i
++) {
1960 c
= strescseq
.buf
[i
] & 0xff;
1963 } else if(isprint(c
)) {
1965 } else if(c
== '\n') {
1967 } else if(c
== '\r') {
1969 } else if(c
== 0x1b) {
1972 printf("(%02x)", c
);
1980 memset(&strescseq
, 0, sizeof(strescseq
));
1984 tputtab(bool forward
) {
1990 for(++x
; x
< term
.col
&& !term
.tabs
[x
]; ++x
)
1995 for(--x
; x
> 0 && !term
.tabs
[x
]; --x
)
1998 tmoveto(x
, term
.c
.y
);
2002 techo(char *buf
, int len
) {
2003 for(; len
> 0; buf
++, len
--) {
2006 if(c
== '\033') { /* escape */
2009 } else if(c
< '\x20') { /* control code */
2010 if(c
!= '\n' && c
!= '\r' && c
!= '\t') {
2024 tputc(char *c
, int len
) {
2026 bool control
= ascii
< '\x20' || ascii
== 0177;
2029 if(xwrite(iofd
, c
, len
) < 0) {
2030 fprintf(stderr
, "Error writing in %s:%s\n",
2031 opt_io
, strerror(errno
));
2038 * STR sequences must be checked before anything else
2039 * because it can use some control codes as part of the sequence.
2041 if(term
.esc
& ESC_STR
) {
2044 term
.esc
= ESC_START
| ESC_STR_END
;
2046 case '\a': /* backwards compatibility to xterm */
2051 if(strescseq
.len
+ len
< sizeof(strescseq
.buf
) - 1) {
2052 memmove(&strescseq
.buf
[strescseq
.len
], c
, len
);
2053 strescseq
.len
+= len
;
2056 * Here is a bug in terminals. If the user never sends
2057 * some code to stop the str or esc command, then st
2058 * will stop responding. But this is better than
2059 * silently failing with unknown characters. At least
2060 * then users will report back.
2062 * In the case users ever get fixed, here is the code:
2074 * Actions of control codes must be performed as soon they arrive
2075 * because they can be embedded inside a control sequence, and
2076 * they must not cause conflicts with sequences.
2084 tmoveto(term
.c
.x
-1, term
.c
.y
);
2087 tmoveto(0, term
.c
.y
);
2092 /* go to first col if the mode is set */
2093 tnewline(IS_SET(MODE_CRLF
));
2095 case '\a': /* BEL */
2096 if(!(xw
.state
& WIN_FOCUSED
))
2099 case '\033': /* ESC */
2101 term
.esc
= ESC_START
;
2103 case '\016': /* SO */
2104 case '\017': /* SI */
2106 * Different charsets are hard to handle. Applications
2107 * should use the right alt charset escapes for the
2108 * only reason they still exist: line drawing. The
2109 * rest is incompatible history st should not support.
2112 case '\032': /* SUB */
2113 case '\030': /* CAN */
2116 case '\005': /* ENQ (IGNORED) */
2117 case '\000': /* NUL (IGNORED) */
2118 case '\021': /* XON (IGNORED) */
2119 case '\023': /* XOFF (IGNORED) */
2120 case 0177: /* DEL (IGNORED) */
2123 } else if(term
.esc
& ESC_START
) {
2124 if(term
.esc
& ESC_CSI
) {
2125 csiescseq
.buf
[csiescseq
.len
++] = ascii
;
2126 if(BETWEEN(ascii
, 0x40, 0x7E)
2127 || csiescseq
.len
>= \
2128 sizeof(csiescseq
.buf
)-1) {
2133 } else if(term
.esc
& ESC_STR_END
) {
2137 } else if(term
.esc
& ESC_ALTCHARSET
) {
2139 case '0': /* Line drawing set */
2140 term
.c
.attr
.mode
|= ATTR_GFX
;
2142 case 'B': /* USASCII */
2143 term
.c
.attr
.mode
&= ~ATTR_GFX
;
2145 case 'A': /* UK (IGNORED) */
2146 case '<': /* multinational charset (IGNORED) */
2147 case '5': /* Finnish (IGNORED) */
2148 case 'C': /* Finnish (IGNORED) */
2149 case 'K': /* German (IGNORED) */
2152 fprintf(stderr
, "esc unhandled charset: ESC ( %c\n", ascii
);
2155 } else if(term
.esc
& ESC_TEST
) {
2156 if(ascii
== '8') { /* DEC screen alignment test. */
2157 char E
[UTF_SIZ
] = "E";
2160 for(x
= 0; x
< term
.col
; ++x
) {
2161 for(y
= 0; y
< term
.row
; ++y
)
2162 tsetchar(E
, &term
.c
.attr
, x
, y
);
2169 term
.esc
|= ESC_CSI
;
2172 term
.esc
|= ESC_TEST
;
2174 case 'P': /* DCS -- Device Control String */
2175 case '_': /* APC -- Application Program Command */
2176 case '^': /* PM -- Privacy Message */
2177 case ']': /* OSC -- Operating System Command */
2178 case 'k': /* old title set compatibility */
2180 strescseq
.type
= ascii
;
2181 term
.esc
|= ESC_STR
;
2183 case '(': /* set primary charset G0 */
2184 term
.esc
|= ESC_ALTCHARSET
;
2186 case ')': /* set secondary charset G1 (IGNORED) */
2187 case '*': /* set tertiary charset G2 (IGNORED) */
2188 case '+': /* set quaternary charset G3 (IGNORED) */
2191 case 'D': /* IND -- Linefeed */
2192 if(term
.c
.y
== term
.bot
) {
2193 tscrollup(term
.top
, 1);
2195 tmoveto(term
.c
.x
, term
.c
.y
+1);
2199 case 'E': /* NEL -- Next line */
2200 tnewline(1); /* always go to first col */
2203 case 'H': /* HTS -- Horizontal tab stop */
2204 term
.tabs
[term
.c
.x
] = 1;
2207 case 'M': /* RI -- Reverse index */
2208 if(term
.c
.y
== term
.top
) {
2209 tscrolldown(term
.top
, 1);
2211 tmoveto(term
.c
.x
, term
.c
.y
-1);
2215 case 'Z': /* DECID -- Identify Terminal */
2216 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
2219 case 'c': /* RIS -- Reset to inital state */
2224 case '=': /* DECPAM -- Application keypad */
2225 term
.mode
|= MODE_APPKEYPAD
;
2228 case '>': /* DECPNM -- Normal keypad */
2229 term
.mode
&= ~MODE_APPKEYPAD
;
2232 case '7': /* DECSC -- Save Cursor */
2233 tcursor(CURSOR_SAVE
);
2236 case '8': /* DECRC -- Restore Cursor */
2237 tcursor(CURSOR_LOAD
);
2240 case '\\': /* ST -- Stop */
2244 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2245 (uchar
) ascii
, isprint(ascii
)? ascii
:'.');
2250 * All characters which form part of a sequence are not
2256 * Display control codes only if we are in graphic mode
2258 if(control
&& !(term
.c
.attr
.mode
& ATTR_GFX
))
2260 if(sel
.bx
!= -1 && BETWEEN(term
.c
.y
, sel
.by
, sel
.ey
))
2262 if(IS_SET(MODE_WRAP
) && term
.c
.state
& CURSOR_WRAPNEXT
)
2263 tnewline(1); /* always go to first col */
2265 if(IS_SET(MODE_INSERT
) && term
.c
.x
+1 < term
.col
) {
2266 memmove(&term
.line
[term
.c
.y
][term
.c
.x
+1],
2267 &term
.line
[term
.c
.y
][term
.c
.x
],
2268 (term
.col
- term
.c
.x
- 1) * sizeof(Glyph
));
2271 tsetchar(c
, &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2272 if(term
.c
.x
+1 < term
.col
) {
2273 tmoveto(term
.c
.x
+1, term
.c
.y
);
2275 term
.c
.state
|= CURSOR_WRAPNEXT
;
2280 tresize(int col
, int row
) {
2282 int minrow
= MIN(row
, term
.row
);
2283 int mincol
= MIN(col
, term
.col
);
2284 int slide
= term
.c
.y
- row
+ 1;
2287 if(col
< 1 || row
< 1)
2290 /* free unneeded rows */
2294 * slide screen to keep cursor where we expect it -
2295 * tscrollup would work here, but we can optimize to
2296 * memmove because we're freeing the earlier lines
2298 for(/* i = 0 */; i
< slide
; i
++) {
2302 memmove(term
.line
, term
.line
+ slide
, row
* sizeof(Line
));
2303 memmove(term
.alt
, term
.alt
+ slide
, row
* sizeof(Line
));
2305 for(i
+= row
; i
< term
.row
; i
++) {
2310 /* resize to new height */
2311 term
.line
= xrealloc(term
.line
, row
* sizeof(Line
));
2312 term
.alt
= xrealloc(term
.alt
, row
* sizeof(Line
));
2313 term
.dirty
= xrealloc(term
.dirty
, row
* sizeof(*term
.dirty
));
2314 term
.tabs
= xrealloc(term
.tabs
, col
* sizeof(*term
.tabs
));
2316 /* resize each row to new width, zero-pad if needed */
2317 for(i
= 0; i
< minrow
; i
++) {
2319 term
.line
[i
] = xrealloc(term
.line
[i
], col
* sizeof(Glyph
));
2320 term
.alt
[i
] = xrealloc(term
.alt
[i
], col
* sizeof(Glyph
));
2321 for(x
= mincol
; x
< col
; x
++) {
2322 term
.line
[i
][x
].state
= 0;
2323 term
.alt
[i
][x
].state
= 0;
2327 /* allocate any new rows */
2328 for(/* i == minrow */; i
< row
; i
++) {
2330 term
.line
[i
] = xcalloc(col
, sizeof(Glyph
));
2331 term
.alt
[i
] = xcalloc(col
, sizeof(Glyph
));
2333 if(col
> term
.col
) {
2334 bp
= term
.tabs
+ term
.col
;
2336 memset(bp
, 0, sizeof(*term
.tabs
) * (col
- term
.col
));
2337 while(--bp
> term
.tabs
&& !*bp
)
2339 for(bp
+= tabspaces
; bp
< term
.tabs
+ col
; bp
+= tabspaces
)
2342 /* update terminal size */
2345 /* reset scrolling region */
2346 tsetscroll(0, row
-1);
2347 /* make use of the LIMIT in tmoveto */
2348 tmoveto(term
.c
.x
, term
.c
.y
);
2354 xresize(int col
, int row
) {
2355 xw
.tw
= MAX(1, col
* xw
.cw
);
2356 xw
.th
= MAX(1, row
* xw
.ch
);
2358 XFreePixmap(xw
.dpy
, xw
.buf
);
2359 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2360 DefaultDepth(xw
.dpy
, xw
.scr
));
2361 XftDrawChange(xw
.draw
, xw
.buf
);
2362 xclear(0, 0, xw
.w
, xw
.h
);
2365 static inline ushort
2366 sixd_to_16bit(int x
) {
2367 return x
== 0 ? 0 : 0x3737 + 0x2828 * x
;
2373 XRenderColor color
= { .alpha
= 0xffff };
2375 /* load colors [0-15] colors and [256-LEN(colorname)[ (config.h) */
2376 for(i
= 0; i
< LEN(colorname
); i
++) {
2379 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, colorname
[i
], &dc
.col
[i
])) {
2380 die("Could not allocate color '%s'\n", colorname
[i
]);
2384 /* load colors [16-255] ; same colors as xterm */
2385 for(i
= 16, r
= 0; r
< 6; r
++) {
2386 for(g
= 0; g
< 6; g
++) {
2387 for(b
= 0; b
< 6; b
++) {
2388 color
.red
= sixd_to_16bit(r
);
2389 color
.green
= sixd_to_16bit(g
);
2390 color
.blue
= sixd_to_16bit(b
);
2391 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &dc
.col
[i
])) {
2392 die("Could not allocate color %d\n", i
);
2399 for(r
= 0; r
< 24; r
++, i
++) {
2400 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * r
;
2401 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
,
2403 die("Could not allocate color %d\n", i
);
2409 xsetcolorname(int x
, const char *name
) {
2410 XRenderColor color
= { .alpha
= 0xffff };
2412 if (x
< 0 || x
> LEN(colorname
))
2415 if(16 <= x
&& x
< 16 + 216) {
2416 int r
= (x
- 16) / 36, g
= ((x
- 16) % 36) / 6, b
= (x
- 16) % 6;
2417 color
.red
= sixd_to_16bit(r
);
2418 color
.green
= sixd_to_16bit(g
);
2419 color
.blue
= sixd_to_16bit(b
);
2420 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2421 return 0; /* something went wrong */
2424 } else if (16 + 216 <= x
&& x
< 256) {
2425 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * (x
- (16 + 216));
2426 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2427 return 0; /* something went wrong */
2431 name
= colorname
[x
];
2434 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, name
, &colour
))
2441 xtermclear(int col1
, int row1
, int col2
, int row2
) {
2442 XftDrawRect(xw
.draw
,
2443 &dc
.col
[IS_SET(MODE_REVERSE
) ? defaultfg
: defaultbg
],
2444 borderpx
+ col1
* xw
.cw
,
2445 borderpx
+ row1
* xw
.ch
,
2446 (col2
-col1
+1) * xw
.cw
,
2447 (row2
-row1
+1) * xw
.ch
);
2451 * Absolute coordinates.
2454 xclear(int x1
, int y1
, int x2
, int y2
) {
2455 XftDrawRect(xw
.draw
,
2456 &dc
.col
[IS_SET(MODE_REVERSE
)? defaultfg
: defaultbg
],
2457 x1
, y1
, x2
-x1
, y2
-y1
);
2462 XClassHint
class = {opt_class
? opt_class
: termname
, termname
};
2463 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
2464 XSizeHints
*sizeh
= NULL
;
2466 sizeh
= XAllocSizeHints();
2467 if(xw
.isfixed
== False
) {
2468 sizeh
->flags
= PSize
| PResizeInc
| PBaseSize
;
2469 sizeh
->height
= xw
.h
;
2470 sizeh
->width
= xw
.w
;
2471 sizeh
->height_inc
= xw
.ch
;
2472 sizeh
->width_inc
= xw
.cw
;
2473 sizeh
->base_height
= 2 * borderpx
;
2474 sizeh
->base_width
= 2 * borderpx
;
2476 sizeh
->flags
= PMaxSize
| PMinSize
;
2477 sizeh
->min_width
= sizeh
->max_width
= xw
.fw
;
2478 sizeh
->min_height
= sizeh
->max_height
= xw
.fh
;
2481 XSetWMProperties(xw
.dpy
, xw
.win
, NULL
, NULL
, NULL
, 0, sizeh
, &wm
, &class);
2486 xloadfont(Font
*f
, FcPattern
*pattern
) {
2490 match
= FcFontMatch(NULL
, pattern
, &result
);
2494 if(!(f
->set
= FcFontSort(0, match
, FcTrue
, 0, &result
))) {
2495 FcPatternDestroy(match
);
2499 if(!(f
->match
= XftFontOpenPattern(xw
.dpy
, match
))) {
2500 FcPatternDestroy(match
);
2504 f
->pattern
= FcPatternDuplicate(pattern
);
2506 f
->ascent
= f
->match
->ascent
;
2507 f
->descent
= f
->match
->descent
;
2509 f
->rbearing
= f
->match
->max_advance_width
;
2511 f
->height
= f
->ascent
+ f
->descent
;
2512 f
->width
= f
->lbearing
+ f
->rbearing
;
2518 xloadfonts(char *fontstr
, int fontsize
) {
2523 if(fontstr
[0] == '-') {
2524 pattern
= XftXlfdParse(fontstr
, False
, False
);
2526 pattern
= FcNameParse((FcChar8
*)fontstr
);
2530 die("st: can't open font %s\n", fontstr
);
2533 FcPatternDel(pattern
, FC_PIXEL_SIZE
);
2534 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, (double)fontsize
);
2535 usedfontsize
= fontsize
;
2537 result
= FcPatternGetDouble(pattern
, FC_PIXEL_SIZE
, 0, &fontval
);
2538 if(result
== FcResultMatch
) {
2539 usedfontsize
= (int)fontval
;
2542 * Default font size is 12, if none given. This is to
2543 * have a known usedfontsize value.
2545 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, 12);
2550 FcConfigSubstitute(0, pattern
, FcMatchPattern
);
2551 FcDefaultSubstitute(pattern
);
2553 if(xloadfont(&dc
.font
, pattern
))
2554 die("st: can't open font %s\n", fontstr
);
2556 /* Setting character width and height. */
2557 xw
.cw
= dc
.font
.width
;
2558 xw
.ch
= dc
.font
.height
;
2560 FcPatternDel(pattern
, FC_SLANT
);
2561 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ITALIC
);
2562 if(xloadfont(&dc
.ifont
, pattern
))
2563 die("st: can't open font %s\n", fontstr
);
2565 FcPatternDel(pattern
, FC_WEIGHT
);
2566 FcPatternAddInteger(pattern
, FC_WEIGHT
, FC_WEIGHT_BOLD
);
2567 if(xloadfont(&dc
.ibfont
, pattern
))
2568 die("st: can't open font %s\n", fontstr
);
2570 FcPatternDel(pattern
, FC_SLANT
);
2571 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ROMAN
);
2572 if(xloadfont(&dc
.bfont
, pattern
))
2573 die("st: can't open font %s\n", fontstr
);
2575 FcPatternDestroy(pattern
);
2579 xunloadfonts(void) {
2583 * Free the loaded fonts in the font cache. This is done backwards
2586 for(i
= 0, ip
= frccur
; i
< frclen
; i
++, ip
--) {
2589 XftFontClose(xw
.dpy
, frc
[ip
].font
);
2594 XftFontClose(xw
.dpy
, dc
.font
.match
);
2595 FcPatternDestroy(dc
.font
.pattern
);
2596 FcFontSetDestroy(dc
.font
.set
);
2597 XftFontClose(xw
.dpy
, dc
.bfont
.match
);
2598 FcPatternDestroy(dc
.bfont
.pattern
);
2599 FcFontSetDestroy(dc
.bfont
.set
);
2600 XftFontClose(xw
.dpy
, dc
.ifont
.match
);
2601 FcPatternDestroy(dc
.ifont
.pattern
);
2602 FcFontSetDestroy(dc
.ifont
.set
);
2603 XftFontClose(xw
.dpy
, dc
.ibfont
.match
);
2604 FcPatternDestroy(dc
.ibfont
.pattern
);
2605 FcFontSetDestroy(dc
.ibfont
.set
);
2609 xzoom(const Arg
*arg
) {
2611 xloadfonts(usedfont
, usedfontsize
+ arg
->i
);
2618 XSetWindowAttributes attrs
;
2624 if(!(xw
.dpy
= XOpenDisplay(NULL
)))
2625 die("Can't open display\n");
2626 xw
.scr
= XDefaultScreen(xw
.dpy
);
2627 xw
.vis
= XDefaultVisual(xw
.dpy
, xw
.scr
);
2631 die("Could not init fontconfig.\n");
2633 usedfont
= (opt_font
== NULL
)? font
: opt_font
;
2634 xloadfonts(usedfont
, 0);
2637 xw
.cmap
= XDefaultColormap(xw
.dpy
, xw
.scr
);
2640 /* adjust fixed window geometry */
2642 sw
= DisplayWidth(xw
.dpy
, xw
.scr
);
2643 sh
= DisplayHeight(xw
.dpy
, xw
.scr
);
2645 xw
.fx
= sw
+ xw
.fx
- xw
.fw
- 1;
2647 xw
.fy
= sh
+ xw
.fy
- xw
.fh
- 1;
2652 /* window - default size */
2653 xw
.h
= 2 * borderpx
+ term
.row
* xw
.ch
;
2654 xw
.w
= 2 * borderpx
+ term
.col
* xw
.cw
;
2660 attrs
.background_pixel
= dc
.col
[defaultbg
].pixel
;
2661 attrs
.border_pixel
= dc
.col
[defaultbg
].pixel
;
2662 attrs
.bit_gravity
= NorthWestGravity
;
2663 attrs
.event_mask
= FocusChangeMask
| KeyPressMask
2664 | ExposureMask
| VisibilityChangeMask
| StructureNotifyMask
2665 | ButtonMotionMask
| ButtonPressMask
| ButtonReleaseMask
;
2666 attrs
.colormap
= xw
.cmap
;
2668 parent
= opt_embed
? strtol(opt_embed
, NULL
, 0) : \
2669 XRootWindow(xw
.dpy
, xw
.scr
);
2670 xw
.win
= XCreateWindow(xw
.dpy
, parent
, xw
.fx
, xw
.fy
,
2671 xw
.w
, xw
.h
, 0, XDefaultDepth(xw
.dpy
, xw
.scr
), InputOutput
,
2673 CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
2677 memset(&gcvalues
, 0, sizeof(gcvalues
));
2678 gcvalues
.graphics_exposures
= False
;
2679 dc
.gc
= XCreateGC(xw
.dpy
, parent
, GCGraphicsExposures
,
2681 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2682 DefaultDepth(xw
.dpy
, xw
.scr
));
2683 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[defaultbg
].pixel
);
2684 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
2686 /* Xft rendering context */
2687 xw
.draw
= XftDrawCreate(xw
.dpy
, xw
.buf
, xw
.vis
, xw
.cmap
);
2690 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2691 XSetLocaleModifiers("@im=local");
2692 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2693 XSetLocaleModifiers("@im=");
2694 if((xw
.xim
= XOpenIM(xw
.dpy
,
2695 NULL
, NULL
, NULL
)) == NULL
) {
2696 die("XOpenIM failed. Could not open input"
2701 xw
.xic
= XCreateIC(xw
.xim
, XNInputStyle
, XIMPreeditNothing
2702 | XIMStatusNothing
, XNClientWindow
, xw
.win
,
2703 XNFocusWindow
, xw
.win
, NULL
);
2705 die("XCreateIC failed. Could not obtain input method.\n");
2707 /* white cursor, black outline */
2708 cursor
= XCreateFontCursor(xw
.dpy
, XC_xterm
);
2709 XDefineCursor(xw
.dpy
, xw
.win
, cursor
);
2710 XRecolorCursor(xw
.dpy
, cursor
,
2711 &(XColor
){.red
= 0xffff, .green
= 0xffff, .blue
= 0xffff},
2712 &(XColor
){.red
= 0x0000, .green
= 0x0000, .blue
= 0x0000});
2714 xw
.xembed
= XInternAtom(xw
.dpy
, "_XEMBED", False
);
2715 xw
.wmdeletewin
= XInternAtom(xw
.dpy
, "WM_DELETE_WINDOW", False
);
2716 XSetWMProtocols(xw
.dpy
, xw
.win
, &xw
.wmdeletewin
, 1);
2719 XMapWindow(xw
.dpy
, xw
.win
);
2725 xdraws(char *s
, Glyph base
, int x
, int y
, int charlen
, int bytelen
) {
2726 int winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
,
2727 width
= charlen
* xw
.cw
, xp
, i
;
2729 int u8fl
, u8fblen
, u8cblen
, doesexist
;
2732 Font
*font
= &dc
.font
;
2734 FcPattern
*fcpattern
, *fontpattern
;
2735 FcFontSet
*fcsets
[] = { NULL
};
2736 FcCharSet
*fccharset
;
2737 Colour
*fg
, *bg
, *temp
, revfg
, revbg
;
2738 XRenderColor colfg
, colbg
;
2740 frcflags
= FRC_NORMAL
;
2742 if(base
.mode
& ATTR_ITALIC
) {
2743 if(base
.fg
== defaultfg
)
2744 base
.fg
= defaultitalic
;
2746 frcflags
= FRC_ITALIC
;
2747 } else if((base
.mode
& ATTR_ITALIC
) && (base
.mode
& ATTR_BOLD
)) {
2748 if(base
.fg
== defaultfg
)
2749 base
.fg
= defaultitalic
;
2751 frcflags
= FRC_ITALICBOLD
;
2752 } else if(base
.mode
& ATTR_UNDERLINE
) {
2753 if(base
.fg
== defaultfg
)
2754 base
.fg
= defaultunderline
;
2756 fg
= &dc
.col
[base
.fg
];
2757 bg
= &dc
.col
[base
.bg
];
2759 if(base
.mode
& ATTR_BOLD
) {
2760 if(BETWEEN(base
.fg
, 0, 7)) {
2761 /* basic system colors */
2762 fg
= &dc
.col
[base
.fg
+ 8];
2763 } else if(BETWEEN(base
.fg
, 16, 195)) {
2765 fg
= &dc
.col
[base
.fg
+ 36];
2766 } else if(BETWEEN(base
.fg
, 232, 251)) {
2768 fg
= &dc
.col
[base
.fg
+ 4];
2771 * Those ranges will not be brightened:
2772 * 8 - 15 – bright system colors
2773 * 196 - 231 – highest 256 color cube
2774 * 252 - 255 – brightest colors in greyscale
2777 frcflags
= FRC_BOLD
;
2780 if(IS_SET(MODE_REVERSE
)) {
2781 if(fg
== &dc
.col
[defaultfg
]) {
2782 fg
= &dc
.col
[defaultbg
];
2784 colfg
.red
= ~fg
->color
.red
;
2785 colfg
.green
= ~fg
->color
.green
;
2786 colfg
.blue
= ~fg
->color
.blue
;
2787 colfg
.alpha
= fg
->color
.alpha
;
2788 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &revfg
);
2792 if(bg
== &dc
.col
[defaultbg
]) {
2793 bg
= &dc
.col
[defaultfg
];
2795 colbg
.red
= ~bg
->color
.red
;
2796 colbg
.green
= ~bg
->color
.green
;
2797 colbg
.blue
= ~bg
->color
.blue
;
2798 colbg
.alpha
= bg
->color
.alpha
;
2799 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
, &revbg
);
2804 if(base
.mode
& ATTR_REVERSE
) {
2810 /* Intelligent cleaning up of the borders. */
2812 xclear(0, (y
== 0)? 0 : winy
, borderpx
,
2813 winy
+ xw
.ch
+ ((y
>= term
.row
-1)? xw
.h
: 0));
2815 if(x
+ charlen
>= term
.col
) {
2816 xclear(winx
+ width
, (y
== 0)? 0 : winy
, xw
.w
,
2817 ((y
>= term
.row
-1)? xw
.h
: (winy
+ xw
.ch
)));
2820 xclear(winx
, 0, winx
+ width
, borderpx
);
2822 xclear(winx
, winy
+ xw
.ch
, winx
+ width
, xw
.h
);
2824 /* Clean up the region we want to draw to. */
2825 XftDrawRect(xw
.draw
, bg
, winx
, winy
, width
, xw
.ch
);
2827 fcsets
[0] = font
->set
;
2828 for(xp
= winx
; bytelen
> 0;) {
2830 * Search for the range in the to be printed string of glyphs
2831 * that are in the main font. Then print that range. If
2832 * some glyph is found that is not in the font, do the
2840 u8cblen
= utf8decode(s
, &u8char
);
2844 doesexist
= XftCharIndex(xw
.dpy
, font
->match
, u8char
);
2845 if(!doesexist
|| bytelen
<= 0) {
2854 XftDrawStringUtf8(xw
.draw
, fg
,
2856 winy
+ font
->ascent
,
2859 xp
+= font
->width
* u8fl
;
2871 /* Search the font cache. */
2872 for(i
= 0; i
< frclen
; i
++, frp
--) {
2876 if(frc
[frp
].c
== u8char
2877 && frc
[frp
].flags
== frcflags
) {
2882 /* Nothing was found. */
2885 * Nothing was found in the cache. Now use
2886 * some dozen of Fontconfig calls to get the
2887 * font for one single character.
2889 fcpattern
= FcPatternDuplicate(font
->pattern
);
2890 fccharset
= FcCharSetCreate();
2892 FcCharSetAddChar(fccharset
, u8char
);
2893 FcPatternAddCharSet(fcpattern
, FC_CHARSET
,
2895 FcPatternAddBool(fcpattern
, FC_SCALABLE
,
2898 FcConfigSubstitute(0, fcpattern
,
2900 FcDefaultSubstitute(fcpattern
);
2902 fontpattern
= FcFontSetMatch(0, fcsets
,
2903 FcTrue
, fcpattern
, &fcres
);
2906 * Overwrite or create the new cache entry.
2910 if(frccur
>= LEN(frc
))
2912 if(frclen
> LEN(frc
)) {
2914 XftFontClose(xw
.dpy
, frc
[frccur
].font
);
2917 frc
[frccur
].font
= XftFontOpenPattern(xw
.dpy
,
2919 frc
[frccur
].c
= u8char
;
2920 frc
[frccur
].flags
= frcflags
;
2922 FcPatternDestroy(fcpattern
);
2923 FcCharSetDestroy(fccharset
);
2928 XftDrawStringUtf8(xw
.draw
, fg
, frc
[frp
].font
,
2929 xp
, winy
+ frc
[frp
].font
->ascent
,
2930 (FcChar8
*)u8c
, u8cblen
);
2936 XftDrawStringUtf8(xw.draw, fg, font->set, winx,
2937 winy + font->ascent, (FcChar8 *)s, bytelen);
2940 if(base
.mode
& ATTR_UNDERLINE
) {
2941 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ font
->ascent
+ 1,
2948 static int oldx
= 0, oldy
= 0;
2950 Glyph g
= {{' '}, ATTR_NULL
, defaultbg
, defaultcs
, 0};
2952 LIMIT(oldx
, 0, term
.col
-1);
2953 LIMIT(oldy
, 0, term
.row
-1);
2955 if(term
.line
[term
.c
.y
][term
.c
.x
].state
& GLYPH_SET
)
2956 memcpy(g
.c
, term
.line
[term
.c
.y
][term
.c
.x
].c
, UTF_SIZ
);
2958 /* remove the old cursor */
2959 if(term
.line
[oldy
][oldx
].state
& GLYPH_SET
) {
2960 sl
= utf8size(term
.line
[oldy
][oldx
].c
);
2961 xdraws(term
.line
[oldy
][oldx
].c
, term
.line
[oldy
][oldx
], oldx
,
2964 xtermclear(oldx
, oldy
, oldx
, oldy
);
2967 /* draw the new one */
2968 if(!(IS_SET(MODE_HIDE
))) {
2969 if(xw
.state
& WIN_FOCUSED
) {
2970 if(IS_SET(MODE_REVERSE
)) {
2971 g
.mode
|= ATTR_REVERSE
;
2977 xdraws(g
.c
, g
, term
.c
.x
, term
.c
.y
, 1, sl
);
2979 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
2980 borderpx
+ term
.c
.x
* xw
.cw
,
2981 borderpx
+ term
.c
.y
* xw
.ch
,
2983 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
2984 borderpx
+ term
.c
.x
* xw
.cw
,
2985 borderpx
+ term
.c
.y
* xw
.ch
,
2987 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
2988 borderpx
+ (term
.c
.x
+ 1) * xw
.cw
- 1,
2989 borderpx
+ term
.c
.y
* xw
.ch
,
2991 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
2992 borderpx
+ term
.c
.x
* xw
.cw
,
2993 borderpx
+ (term
.c
.y
+ 1) * xw
.ch
- 1,
2996 oldx
= term
.c
.x
, oldy
= term
.c
.y
;
3002 xsettitle(char *p
) {
3005 Xutf8TextListToTextProperty(xw
.dpy
, &p
, 1, XUTF8StringStyle
,
3007 XSetWMName(xw
.dpy
, xw
.win
, &prop
);
3012 xsettitle(opt_title
? opt_title
: "st");
3016 redraw(int timeout
) {
3017 struct timespec tv
= {0, timeout
* 1000};
3023 nanosleep(&tv
, NULL
);
3024 XSync(xw
.dpy
, False
); /* necessary for a good tput flash */
3030 drawregion(0, 0, term
.col
, term
.row
);
3031 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.w
,
3033 XSetForeground(xw
.dpy
, dc
.gc
,
3034 dc
.col
[IS_SET(MODE_REVERSE
)?
3035 defaultfg
: defaultbg
].pixel
);
3039 drawregion(int x1
, int y1
, int x2
, int y2
) {
3040 int ic
, ib
, x
, y
, ox
, sl
;
3042 char buf
[DRAW_BUF_SIZ
];
3043 bool ena_sel
= sel
.bx
!= -1;
3045 if(sel
.alt
^ IS_SET(MODE_ALTSCREEN
))
3048 if(!(xw
.state
& WIN_VISIBLE
))
3051 for(y
= y1
; y
< y2
; y
++) {
3055 xtermclear(0, y
, term
.col
, y
);
3057 base
= term
.line
[y
][0];
3059 for(x
= x1
; x
< x2
; x
++) {
3060 new = term
.line
[y
][x
];
3061 if(ena_sel
&& *(new.c
) && selected(x
, y
))
3062 new.mode
^= ATTR_REVERSE
;
3063 if(ib
> 0 && (!(new.state
& GLYPH_SET
)
3064 || ATTRCMP(base
, new)
3065 || ib
>= DRAW_BUF_SIZ
-UTF_SIZ
)) {
3066 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3069 if(new.state
& GLYPH_SET
) {
3075 sl
= utf8size(new.c
);
3076 memcpy(buf
+ib
, new.c
, sl
);
3082 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3088 expose(XEvent
*ev
) {
3089 XExposeEvent
*e
= &ev
->xexpose
;
3091 if(xw
.state
& WIN_REDRAW
) {
3093 xw
.state
&= ~WIN_REDRAW
;
3099 visibility(XEvent
*ev
) {
3100 XVisibilityEvent
*e
= &ev
->xvisibility
;
3102 if(e
->state
== VisibilityFullyObscured
) {
3103 xw
.state
&= ~WIN_VISIBLE
;
3104 } else if(!(xw
.state
& WIN_VISIBLE
)) {
3105 /* need a full redraw for next Expose, not just a buf copy */
3106 xw
.state
|= WIN_VISIBLE
| WIN_REDRAW
;
3112 xw
.state
&= ~WIN_VISIBLE
;
3116 xseturgency(int add
) {
3117 XWMHints
*h
= XGetWMHints(xw
.dpy
, xw
.win
);
3119 h
->flags
= add
? (h
->flags
| XUrgencyHint
) : (h
->flags
& ~XUrgencyHint
);
3120 XSetWMHints(xw
.dpy
, xw
.win
, h
);
3126 XFocusChangeEvent
*e
= &ev
->xfocus
;
3128 if(e
->mode
== NotifyGrab
)
3131 if(ev
->type
== FocusIn
) {
3132 XSetICFocus(xw
.xic
);
3133 xw
.state
|= WIN_FOCUSED
;
3136 XUnsetICFocus(xw
.xic
);
3137 xw
.state
&= ~WIN_FOCUSED
;
3142 match(uint mask
, uint state
) {
3143 state
&= ~(ignoremod
);
3145 if(mask
== XK_NO_MOD
&& state
)
3147 if(mask
!= XK_ANY_MOD
&& mask
!= XK_NO_MOD
&& !state
)
3149 if((state
& mask
) != state
)
3155 numlock(const Arg
*dummy
) {
3160 kmap(KeySym k
, uint state
) {
3165 /* Check for mapped keys out of X11 function keys. */
3166 for(i
= 0; i
< LEN(mappedkeys
); i
++) {
3167 if(mappedkeys
[i
] == k
)
3170 if(i
== LEN(mappedkeys
)) {
3171 if((k
& 0xFFFF) < 0xFD00)
3175 for(kp
= key
; kp
< key
+ LEN(key
); kp
++) {
3181 if(!match(mask
, state
))
3184 if(kp
->appkey
> 0) {
3185 if(!IS_SET(MODE_APPKEYPAD
))
3187 if(term
.numlock
&& kp
->appkey
== 2)
3189 } else if(kp
->appkey
< 0 && IS_SET(MODE_APPKEYPAD
)) {
3193 if((kp
->appcursor
< 0 && IS_SET(MODE_APPCURSOR
)) ||
3195 && !IS_SET(MODE_APPCURSOR
))) {
3199 if((kp
->crlf
< 0 && IS_SET(MODE_CRLF
)) ||
3200 (kp
->crlf
> 0 && !IS_SET(MODE_CRLF
))) {
3211 kpress(XEvent
*ev
) {
3212 XKeyEvent
*e
= &ev
->xkey
;
3214 char xstr
[31], buf
[32], *customkey
, *cp
= buf
;
3219 if(IS_SET(MODE_KBDLOCK
))
3222 len
= XmbLookupString(xw
.xic
, e
, xstr
, sizeof(xstr
), &ksym
, &status
);
3223 e
->state
&= ~Mod2Mask
;
3225 for(bp
= shortcuts
; bp
< shortcuts
+ LEN(shortcuts
); bp
++) {
3226 if(ksym
== bp
->keysym
&& match(bp
->mod
, e
->state
)) {
3227 bp
->func(&(bp
->arg
));
3232 /* 2. custom keys from config.h */
3233 if((customkey
= kmap(ksym
, e
->state
))) {
3234 len
= strlen(customkey
);
3235 memcpy(buf
, customkey
, len
);
3236 /* 2. hardcoded (overrides X lookup) */
3241 if(len
== 1 && e
->state
& Mod1Mask
)
3244 memcpy(cp
, xstr
, len
);
3245 len
= cp
- buf
+ len
;
3249 if(IS_SET(MODE_ECHO
))
3255 cmessage(XEvent
*e
) {
3258 * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
3260 if(e
->xclient
.message_type
== xw
.xembed
&& e
->xclient
.format
== 32) {
3261 if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_IN
) {
3262 xw
.state
|= WIN_FOCUSED
;
3264 } else if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_OUT
) {
3265 xw
.state
&= ~WIN_FOCUSED
;
3267 } else if(e
->xclient
.data
.l
[0] == xw
.wmdeletewin
) {
3268 /* Send SIGHUP to shell */
3275 cresize(int width
, int height
) {
3283 col
= (xw
.w
- 2 * borderpx
) / xw
.cw
;
3284 row
= (xw
.h
- 2 * borderpx
) / xw
.ch
;
3293 if(e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
3296 cresize(e
->xconfigure
.width
, e
->xconfigure
.height
);
3303 int xfd
= XConnectionNumber(xw
.dpy
), xev
;
3304 struct timeval drawtimeout
, *tv
= NULL
, now
, last
;
3306 gettimeofday(&last
, NULL
);
3308 for(xev
= actionfps
;;) {
3310 FD_SET(cmdfd
, &rfd
);
3312 if(select(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, tv
) < 0) {
3315 die("select failed: %s\n", SERRNO
);
3318 gettimeofday(&now
, NULL
);
3319 drawtimeout
.tv_sec
= 0;
3320 drawtimeout
.tv_usec
= (1000/xfps
) * 1000;
3323 if(FD_ISSET(cmdfd
, &rfd
))
3326 if(FD_ISSET(xfd
, &rfd
))
3329 if(TIMEDIFF(now
, last
) > \
3330 (xev
? (1000/xfps
) : (1000/actionfps
))) {
3331 while(XPending(xw
.dpy
)) {
3332 XNextEvent(xw
.dpy
, &ev
);
3333 if(XFilterEvent(&ev
, None
))
3335 if(handler
[ev
.type
])
3336 (handler
[ev
.type
])(&ev
);
3343 if(xev
&& !FD_ISSET(xfd
, &rfd
))
3345 if(!FD_ISSET(cmdfd
, &rfd
) && !FD_ISSET(xfd
, &rfd
))
3353 die("%s " VERSION
" (c) 2010-2013 st engineers\n" \
3354 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]" \
3355 " [-t title] [-w windowid] [-e command ...]\n", argv0
);
3359 main(int argc
, char *argv
[]) {
3363 xw
.fw
= xw
.fh
= xw
.fx
= xw
.fy
= 0;
3368 allowaltscreen
= false;
3371 opt_class
= EARGF(usage());
3374 /* eat all remaining arguments */
3379 opt_font
= EARGF(usage());
3382 bitm
= XParseGeometry(EARGF(usage()), &xr
, &yr
, &wr
, &hr
);
3387 if(bitm
& WidthValue
)
3389 if(bitm
& HeightValue
)
3391 if(bitm
& XNegative
&& xw
.fx
== 0)
3393 if(bitm
& XNegative
&& xw
.fy
== 0)
3396 if(xw
.fh
!= 0 && xw
.fw
!= 0)
3400 opt_io
= EARGF(usage());
3403 opt_title
= EARGF(usage());
3406 opt_embed
= EARGF(usage());
3414 setlocale(LC_CTYPE
, "");
3415 XSetLocaleModifiers("");