ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/command.C
(Generate patch)

Comparing rxvt-unicode/src/command.C (file contents):
Revision 1.476 by sf-exg, Fri Feb 11 01:24:46 2011 UTC vs.
Revision 1.485 by sf-exg, Fri Apr 29 13:08:24 2011 UTC

25 * - extensive modifications 25 * - extensive modifications
26 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org> 26 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org>
27 * Copyright (c) 2001 Marius Gedminas 27 * Copyright (c) 2001 Marius Gedminas
28 * - Ctrl/Mod4+Tab works like Meta+Tab (options) 28 * - Ctrl/Mod4+Tab works like Meta+Tab (options)
29 * Copyright (c) 2003 Rob McMullen <robm@flipturn.org> 29 * Copyright (c) 2003 Rob McMullen <robm@flipturn.org>
30 * Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com> 30 * Copyright (c) 2003-2011 Marc Lehmann <schmorp@schmorp.de>
31 * Copyright (c) 2007 Emanuele Giaquinta <e.giaquinta@glauco.it> 31 * Copyright (c) 2007 Emanuele Giaquinta <e.giaquinta@glauco.it>
32 * 32 *
33 * This program is free software; you can redistribute it and/or modify 33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by 34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or 35 * the Free Software Foundation; either version 2 of the License, or
569 selection_request (ev.time); 569 selection_request (ev.time);
570 return; 570 return;
571#if TODO 571#if TODO
572 /* rxvt extras */ 572 /* rxvt extras */
573 case XK_KP_Add: /* Shift+KP_Add = bigger font */ 573 case XK_KP_Add: /* Shift+KP_Add = bigger font */
574 change_font (FONT_UP);
575 return; 574 return;
576 case XK_KP_Subtract: /* Shift+KP_Subtract = smaller font */ 575 case XK_KP_Subtract: /* Shift+KP_Subtract = smaller font */
577 change_font (FONT_DN);
578 return; 576 return;
579#endif 577#endif
580 } 578 }
581 } 579 }
582 } 580 }
936 else if (keysym == XK_Control_L || keysym == XK_Control_R) 934 else if (keysym == XK_Control_L || keysym == XK_Control_R)
937 mouse_slip_wheel_speed = 0; 935 mouse_slip_wheel_speed = 0;
938#endif 936#endif
939} 937}
940 938
941#if defined (KEYSYM_RESOURCE)
942unsigned int
943rxvt_term::cmd_write (const char *str, unsigned int count)
944{
945 unsigned int n, s;
946
947 n = cmdbuf_ptr - cmdbuf_base;
948 s = cmdbuf_base + CBUFSIZ - 1 - cmdbuf_endp;
949
950 if (n > 0 && s < count)
951 {
952 memmove (cmdbuf_base, cmdbuf_ptr,
953 (unsigned int) (cmdbuf_endp - cmdbuf_ptr));
954 cmdbuf_ptr = cmdbuf_base;
955 cmdbuf_endp -= n;
956 s += n;
957 }
958
959 if (count > s)
960 {
961 rxvt_warn ("data loss: cmd_write too large, continuing.\n");
962 count = s;
963 }
964
965 for (; count--;)
966 *cmdbuf_endp++ = *str++;
967
968 cmd_parse ();
969
970 return 0;
971}
972#endif
973
974void 939void
975rxvt_term::flush () 940rxvt_term::flush ()
976{ 941{
977 flush_ev.stop (); 942 flush_ev.stop ();
978 943
1152 { 1117 {
1153 } 1118 }
1154} event_handler; 1119} event_handler;
1155#endif 1120#endif
1156 1121
1122/* make sure all the cmd data is at beginning of cmdbuf */
1123void
1124rxvt_term::cmdbuf_reify ()
1125{
1126 if (cmdbuf_ptr == cmdbuf_base)
1127 return;
1128
1129 ssize_t used = cmdbuf_endp - cmdbuf_ptr;
1130
1131 memmove (cmdbuf_base, cmdbuf_ptr, used);
1132 cmdbuf_ptr = cmdbuf_base;
1133 cmdbuf_endp = cmdbuf_ptr + used;
1134
1135}
1136
1137#if defined (KEYSYM_RESOURCE)
1138void
1139rxvt_term::cmdbuf_append (const char *str, size_t count)
1140{
1141 cmdbuf_reify ();
1142
1143 size_t avail = cmdbuf_base + CBUFSIZ - cmdbuf_endp;
1144
1145 if (count > avail)
1146 return;
1147
1148 memcpy (cmdbuf_endp, str, count);
1149 cmdbuf_endp += count;
1150
1151 cmd_parse ();
1152}
1153#endif
1154
1157bool 1155bool
1158rxvt_term::pty_fill () 1156rxvt_term::pty_fill ()
1159{ 1157{
1160 ssize_t n = cmdbuf_endp - cmdbuf_ptr; 1158 cmdbuf_reify ();
1161 1159
1162 if (CBUFSIZ == n) 1160 size_t avail = cmdbuf_base + CBUFSIZ - cmdbuf_endp;
1163 { 1161
1164 rxvt_warn ("PLEASE REPORT: pty_fill on full buffer, draining input, continuing.\n"); 1162 if (!avail)
1165 n = 0;
1166 } 1163 {
1167 1164 // normally this indicates a "too long" command sequence - just drop the data we have
1168 memmove (cmdbuf_base, cmdbuf_ptr, n);
1169 cmdbuf_ptr = cmdbuf_base; 1165 cmdbuf_ptr = cmdbuf_base;
1170 cmdbuf_endp = cmdbuf_ptr + n; 1166 cmdbuf_endp = cmdbuf_ptr;
1167 avail = CBUFSIZ;
1168 }
1171 1169
1172 ssize_t r = read (pty->pty, cmdbuf_endp, CBUFSIZ - n); 1170 ssize_t r = read (pty->pty, cmdbuf_endp, avail);
1173 1171
1174 if (r > 0) 1172 if (r > 0)
1175 { 1173 {
1176 cmdbuf_endp += r; 1174 cmdbuf_endp += r;
1177 return true; 1175 return true;
1445 && ev.xfocus.mode != NotifyGrab) 1443 && ev.xfocus.mode != NotifyGrab)
1446 focus_out (); 1444 focus_out ();
1447 break; 1445 break;
1448 1446
1449 case ConfigureNotify: 1447 case ConfigureNotify:
1450 if (ev.xconfigure.window == parent[0]) 1448 if (ev.xconfigure.window == parent)
1451 { 1449 {
1452 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev)) 1450 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev))
1453 ; 1451 ;
1454 1452
1455#ifdef HAVE_BG_PIXMAP 1453#ifdef HAVE_BG_PIXMAP
1721rxvt_term::set_urgency (bool enable) 1719rxvt_term::set_urgency (bool enable)
1722{ 1720{
1723 if (enable == urgency_hint) 1721 if (enable == urgency_hint)
1724 return; 1722 return;
1725 1723
1726 if (XWMHints *h = XGetWMHints (dpy, parent[0])) 1724 if (XWMHints *h = XGetWMHints (dpy, parent))
1727 { 1725 {
1728 h->flags = h->flags & ~XUrgencyHint | (enable ? XUrgencyHint : 0); 1726 h->flags = h->flags & ~XUrgencyHint | (enable ? XUrgencyHint : 0);
1729 XSetWMHints (dpy, parent[0], h); 1727 XSetWMHints (dpy, parent, h);
1730 urgency_hint = enable; 1728 urgency_hint = enable;
1731 } 1729 }
1732} 1730}
1733#endif 1731#endif
1734 1732
2389 : NOCHAR; 2387 : NOCHAR;
2390} 2388}
2391 2389
2392static class out_of_input out_of_input; 2390static class out_of_input out_of_input;
2393 2391
2394/* rxvt_cmd_getc () - Return next input character */
2395/*
2396 * Return the next input character after first passing any keyboard input
2397 * to the command.
2398 */
2399wchar_t 2392wchar_t
2400rxvt_term::cmd_getc () THROW ((class out_of_input)) 2393rxvt_term::cmd_getc () THROW ((class out_of_input))
2401{ 2394{
2402 wchar_t c = next_char (); 2395 wchar_t c = next_char ();
2403 2396
2496 pclose_printer (fd); 2489 pclose_printer (fd);
2497} 2490}
2498#endif /* PRINTPIPE */ 2491#endif /* PRINTPIPE */
2499/*}}} */ 2492/*}}} */
2500 2493
2501/* *INDENT-OFF* */
2502enum { 2494enum {
2503 C1_40 = 0x40, 2495 C1_40 = 0x40,
2504 C1_41 , C1_BPH, C1_NBH, C1_44 , C1_NEL, C1_SSA, C1_ESA, 2496 C1_41 , C1_BPH, C1_NBH, C1_44 , C1_NEL, C1_SSA, C1_ESA,
2505 C1_HTS, C1_HTJ, C1_VTS, C1_PLD, C1_PLU, C1_RI , C1_SS2, C1_SS3, 2497 C1_HTS, C1_HTJ, C1_VTS, C1_PLD, C1_PLU, C1_RI , C1_SS2, C1_SS3,
2506 C1_DCS, C1_PU1, C1_PU2, C1_STS, C1_CCH, C1_MW , C1_SPA, C1_EPA, 2498 C1_DCS, C1_PU1, C1_PU2, C1_STS, C1_CCH, C1_MW , C1_SPA, C1_EPA,
2507 C1_SOS, C1_59 , C1_SCI, C1_CSI, CS_ST , C1_OSC, C1_PM , C1_APC, 2499 C1_SOS, C1_59 , C1_SCI, C1_CSI, CS_ST , C1_OSC, C1_PM , C1_APC,
2508}; 2500};
2509/* *INDENT-ON* */
2510 2501
2511/*{{{ process non-printing single characters */ 2502/*{{{ process non-printing single characters */
2512void 2503void
2513rxvt_term::process_nonprinting (unicode_t ch) 2504rxvt_term::process_nonprinting (unicode_t ch)
2514{ 2505{
2691 } 2682 }
2692 break; 2683 break;
2693 2684
2694 /* kidnapped escape sequence: Should be 8.3.48 */ 2685 /* kidnapped escape sequence: Should be 8.3.48 */
2695 case C1_ESA: /* ESC G */ 2686 case C1_ESA: /* ESC G */
2696 process_graphics (); 2687 // used by original rxvt for rob nations own graphics mode
2688 if (cmd_getc () == 'Q')
2689 tt_printf ("\033G0\012"); /* query graphics - no graphics */
2697 break; 2690 break;
2698 2691
2699 /* 8.3.63: CHARACTER TABULATION SET */ 2692 /* 8.3.63: CHARACTER TABULATION SET */
2700 case C1_HTS: /* ESC H */ 2693 case C1_HTS: /* ESC H */
2701 scr_set_tab (1); 2694 scr_set_tab (1);
2751 } 2744 }
2752} 2745}
2753/*}}} */ 2746/*}}} */
2754 2747
2755/*{{{ process CONTROL SEQUENCE INTRODUCER (CSI) sequences `ESC[' */ 2748/*{{{ process CONTROL SEQUENCE INTRODUCER (CSI) sequences `ESC[' */
2756/* *INDENT-OFF* */
2757enum { 2749enum {
2758 CSI_ICH = 0x40, 2750 CSI_ICH = 0x40,
2759 CSI_CUU, CSI_CUD, CSI_CUF, CSI_CUB, CSI_CNL, CSI_CPL, CSI_CHA, 2751 CSI_CUU, CSI_CUD, CSI_CUF, CSI_CUB, CSI_CNL, CSI_CPL, CSI_CHA,
2760 CSI_CUP, CSI_CHT, CSI_ED , CSI_EL , CSI_IL , CSI_DL , CSI_EF , CSI_EA , 2752 CSI_CUP, CSI_CHT, CSI_ED , CSI_EL , CSI_IL , CSI_DL , CSI_EF , CSI_EA ,
2761 CSI_DCH, CSI_SEE, CSI_CPR, CSI_SU , CSI_SD , CSI_NP , CSI_PP , CSI_CTC, 2753 CSI_DCH, CSI_SEE, CSI_CPR, CSI_SU , CSI_SD , CSI_NP , CSI_PP , CSI_CTC,
2781 make_byte (1,1,1,0,1,1,1,0), /* `, a, b, c, d, e, f, g, */ 2773 make_byte (1,1,1,0,1,1,1,0), /* `, a, b, c, d, e, f, g, */
2782 make_byte (0,0,1,1,0,0,0,0), /* h, i, j, k, l, m, n, o, */ 2774 make_byte (0,0,1,1,0,0,0,0), /* h, i, j, k, l, m, n, o, */
2783 make_byte (0,0,0,0,0,0,0,0), /* p, q, r, s, t, u, v, w, */ 2775 make_byte (0,0,0,0,0,0,0,0), /* p, q, r, s, t, u, v, w, */
2784 make_byte (0,0,0,0,0,0,0,0), /* x, y, z, {, |, }, ~, */ 2776 make_byte (0,0,0,0,0,0,0,0), /* x, y, z, {, |, }, ~, */
2785 }; 2777 };
2786/* *INDENT-ON* */
2787 2778
2788void 2779void
2789rxvt_term::process_csi_seq () 2780rxvt_term::process_csi_seq ()
2790{ 2781{
2791 unicode_t ch, priv, i; 2782 unicode_t ch, priv, i;
3101 } 3092 }
3102} 3093}
3103/*}}} */ 3094/*}}} */
3104 3095
3105#if !ENABLE_MINIMAL 3096#if !ENABLE_MINIMAL
3106/* ARGSUSED */
3107void 3097void
3108rxvt_term::process_window_ops (const int *args, unsigned int nargs) 3098rxvt_term::process_window_ops (const int *args, unsigned int nargs)
3109{ 3099{
3110 int x, y; 3100 int x, y;
3111 XWindowAttributes wattr; 3101 XWindowAttributes wattr;
3120 { 3110 {
3121 /* 3111 /*
3122 * commands 3112 * commands
3123 */ 3113 */
3124 case 1: /* deiconify window */ 3114 case 1: /* deiconify window */
3125 XMapWindow (dpy, parent[0]); 3115 XMapWindow (dpy, parent);
3126 break; 3116 break;
3127 case 2: /* iconify window */ 3117 case 2: /* iconify window */
3128 XIconifyWindow (dpy, parent[0], display->screen); 3118 XIconifyWindow (dpy, parent, display->screen);
3129 break; 3119 break;
3130 case 3: /* set position (pixels) */ 3120 case 3: /* set position (pixels) */
3131 XMoveWindow (dpy, parent[0], args[1], args[2]); 3121 XMoveWindow (dpy, parent, args[1], args[2]);
3132 break; 3122 break;
3133 case 4: /* set size (pixels) */ 3123 case 4: /* set size (pixels) */
3134 set_widthheight ((unsigned int)args[2], (unsigned int)args[1]); 3124 set_widthheight ((unsigned int)args[2], (unsigned int)args[1]);
3135 break; 3125 break;
3136 case 5: /* raise window */ 3126 case 5: /* raise window */
3137 XRaiseWindow (dpy, parent[0]); 3127 XRaiseWindow (dpy, parent);
3138 break; 3128 break;
3139 case 6: /* lower window */ 3129 case 6: /* lower window */
3140 XLowerWindow (dpy, parent[0]); 3130 XLowerWindow (dpy, parent);
3141 break; 3131 break;
3142 case 7: /* refresh window */ 3132 case 7: /* refresh window */
3143 scr_touch (true); 3133 scr_touch (true);
3144 break; 3134 break;
3145 case 8: /* set size (chars) */ 3135 case 8: /* set size (chars) */
3156 3146
3157 /* 3147 /*
3158 * reports - some output format copied from XTerm 3148 * reports - some output format copied from XTerm
3159 */ 3149 */
3160 case 11: /* report window state */ 3150 case 11: /* report window state */
3161 XGetWindowAttributes (dpy, parent[0], &wattr); 3151 XGetWindowAttributes (dpy, parent, &wattr);
3162 tt_printf ("\033[%dt", wattr.map_state == IsViewable ? 1 : 2); 3152 tt_printf ("\033[%dt", wattr.map_state == IsViewable ? 1 : 2);
3163 break; 3153 break;
3164 case 13: /* report window position */ 3154 case 13: /* report window position */
3165 XGetWindowAttributes (dpy, parent[0], &wattr); 3155 XGetWindowAttributes (dpy, parent, &wattr);
3166 XTranslateCoordinates (dpy, parent[0], wattr.root, 3156 XTranslateCoordinates (dpy, parent, wattr.root,
3167 -wattr.border_width, -wattr.border_width, 3157 -wattr.border_width, -wattr.border_width,
3168 &x, &y, &wdummy); 3158 &x, &y, &wdummy);
3169 tt_printf ("\033[3;%d;%dt", x, y); 3159 tt_printf ("\033[3;%d;%dt", x, y);
3170 break; 3160 break;
3171 case 14: /* report window size (pixels) */ 3161 case 14: /* report window size (pixels) */
3172 XGetWindowAttributes (dpy, parent[0], &wattr); 3162 XGetWindowAttributes (dpy, parent, &wattr);
3173 tt_printf ("\033[4;%d;%dt", wattr.height, wattr.width); 3163 tt_printf ("\033[4;%d;%dt", wattr.height, wattr.width);
3174 break; 3164 break;
3175 case 18: /* report text area size (chars) */ 3165 case 18: /* report text area size (chars) */
3176 tt_printf ("\033[8;%d;%dt", nrow, ncol); 3166 tt_printf ("\033[8;%d;%dt", nrow, ncol);
3177 break; 3167 break;
3179 tt_printf ("\033[9;%d;%dt", nrow, ncol); 3169 tt_printf ("\033[9;%d;%dt", nrow, ncol);
3180 break; 3170 break;
3181 case 20: /* report icon label */ 3171 case 20: /* report icon label */
3182 { 3172 {
3183 char *s; 3173 char *s;
3184 XGetIconName (dpy, parent[0], &s); 3174 XGetIconName (dpy, parent, &s);
3185 tt_printf ("\033]L%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */ 3175 tt_printf ("\033]L%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */
3186 XFree (s); 3176 XFree (s);
3187 } 3177 }
3188 break; 3178 break;
3189 case 21: /* report window title */ 3179 case 21: /* report window title */
3190 { 3180 {
3191 char *s; 3181 char *s;
3192 XFetchName (dpy, parent[0], &s); 3182 XFetchName (dpy, parent, &s);
3193 tt_printf ("\033]l%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */ 3183 tt_printf ("\033]l%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */
3194 XFree (s); 3184 XFree (s);
3195 } 3185 }
3196 break; 3186 break;
3197 } 3187 }
3351 unsigned long bytes_after; 3341 unsigned long bytes_after;
3352 unsigned char *value = 0; 3342 unsigned char *value = 0;
3353 const char *str = ""; 3343 const char *str = "";
3354 3344
3355 if (prop 3345 if (prop
3356 && XGetWindowProperty (dpy, parent[0], 3346 && XGetWindowProperty (dpy, parent,
3357 prop, 0, 1<<16, 0, AnyPropertyType, 3347 prop, 0, 1<<16, 0, AnyPropertyType,
3358 &actual_type, &actual_format, 3348 &actual_type, &actual_format,
3359 &nitems, &bytes_after, &value) == Success 3349 &nitems, &bytes_after, &value) == Success
3360 && actual_type != None 3350 && actual_type != None
3361 && actual_format == 8) 3351 && actual_format == 8)
3373 { 3363 {
3374 *eq = 0; 3364 *eq = 0;
3375 set_utf8_property (display->atom (str), eq + 1); 3365 set_utf8_property (display->atom (str), eq + 1);
3376 } 3366 }
3377 else 3367 else
3378 XDeleteProperty (dpy, parent[0], 3368 XDeleteProperty (dpy, parent,
3379 display->atom (str)); 3369 display->atom (str));
3380 } 3370 }
3381 break; 3371 break;
3382 3372
3383 case XTerm_Color: 3373 case XTerm_Color:
3972 } 3962 }
3973 } 3963 }
3974} 3964}
3975/*}}} */ 3965/*}}} */
3976 3966
3977/*{{{ (do not) process Rob Nation's own graphics mode sequences */
3978void
3979rxvt_term::process_graphics ()
3980{
3981 unicode_t ch, cmd = cmd_getc ();
3982
3983 if (cmd == 'Q')
3984 {
3985 /* query graphics */
3986 tt_printf ("\033G0\012"); /* no graphics */
3987 return;
3988 }
3989 /* swallow other graphics sequences until terminating ':' */
3990 do
3991 ch = cmd_getc ();
3992 while (ch != ':');
3993}
3994/*}}} */
3995
3996/* ------------------------------------------------------------------------- */ 3967/* ------------------------------------------------------------------------- */
3997 3968
3998/* 3969/*
3999 * Send printf () formatted output to the command. 3970 * Send printf () formatted output to the command.
4000 * Only use for small amounts of data. 3971 * Only use for small amounts of data.
4028 3999
4029 if (v_buflen == 0) 4000 if (v_buflen == 0)
4030 { 4001 {
4031 ssize_t written = write (pty->pty, data, min (len, MAX_PTY_WRITE)); 4002 ssize_t written = write (pty->pty, data, min (len, MAX_PTY_WRITE));
4032 4003
4004 max_it (written, 0);
4005
4033 if ((unsigned int)written == len) 4006 if (written == len)
4034 return; 4007 return;
4035 4008
4036 data += written; 4009 data += written;
4037 len -= written; 4010 len -= written;
4038 } 4011 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines