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

Comparing rxvt-unicode/src/rxvtperl.xs (file contents):
Revision 1.28 by root, Fri Jan 6 02:58:02 2006 UTC vs.
Revision 1.39 by root, Sat Jan 7 23:18:56 2006 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvtperl.xs 2 * File: rxvtperl.xs
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2005-2005 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
26#include <XSUB.h> 26#include <XSUB.h>
27#undef line_t 27#undef line_t
28 28
29#include "../config.h" 29#include "../config.h"
30 30
31#include <cstddef>
31#include <cstdarg> 32#include <cstdarg>
32 33
33#include "rxvt.h" 34#include "rxvt.h"
34#include "iom.h" 35#include "iom.h"
35#include "rxvtutil.h" 36#include "rxvtutil.h"
101 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass); 102 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
102 103
103 return (long)mg->mg_ptr; 104 return (long)mg->mg_ptr;
104} 105}
105 106
106#define newSVterm(term) SvREFCNT_inc ((SV *)term->self) 107#define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
107#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term") 108#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term")
108 109
109///////////////////////////////////////////////////////////////////////////// 110/////////////////////////////////////////////////////////////////////////////
110 111
111struct perl_watcher 112struct perl_watcher
290void 291void
291overlay::show () 292overlay::show ()
292{ 293{
293 char key[33]; sprintf (key, "%32lx", (long)this); 294 char key[33]; sprintf (key, "%32lx", (long)this);
294 295
295 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->self), "_overlay", 8, 0)); 296 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0));
296 hv_store (hv, key, 32, newSViv ((long)this), 0); 297 hv_store (hv, key, 32, newSViv ((long)this), 0);
297} 298}
298 299
299void 300void
300overlay::hide () 301overlay::hide ()
301{ 302{
302 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->self), "_overlay", 8, 0); 303 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
303 304
304 if (ovs) 305 if (ovs)
305 { 306 {
306 char key[33]; sprintf (key, "%32lx", (long)this); 307 char key[33]; sprintf (key, "%32lx", (long)this);
307 308
415 if (!perl) 416 if (!perl)
416 return false; 417 return false;
417 418
418 if (htype == HOOK_INIT) // first hook ever called 419 if (htype == HOOK_INIT) // first hook ever called
419 { 420 {
420 term->self = (void *)newSVptr ((void *)term, "urxvt::term"); 421 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
421 hv_store ((HV *)SvRV ((SV *)term->self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0); 422 hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
422 } 423 }
423 else if (!term->self) 424 else if (!term->perl.self)
424 return false; // perl not initialized for this instance 425 return false; // perl not initialized for this instance
425 else if (htype == HOOK_DESTROY) 426 else if (htype == HOOK_DESTROY)
426 { 427 {
427 // handled later 428 // handled later
428 } 429 }
429 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END) 430 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END)
430 { 431 {
431 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->self), "_overlay", 8, 0)); 432 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
432 433
433 if (HvKEYS (hv)) 434 if (HvKEYS (hv))
434 { 435 {
435 hv_iterinit (hv); 436 hv_iterinit (hv);
436 437
465 466
466 case DT_LONG: 467 case DT_LONG:
467 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long)))); 468 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
468 break; 469 break;
469 470
470 case DT_STRING: 471 case DT_STR:
471 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0))); 472 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
472 break; 473 break;
473 474
474 case DT_USTRING_LEN: 475 case DT_STR_LEN:
475 { 476 {
476 unicode_t *ustr = va_arg (ap, unicode_t *); 477 char *str = va_arg (ap, char *);
477 int ulen = va_arg (ap, int); 478 int len = va_arg (ap, int);
479
480 XPUSHs (sv_2mortal (newSVpvn (str, len)));
481 }
482 break;
483
484 case DT_WCS_LEN:
485 {
478 wchar_t *wstr = new wchar_t [ulen]; 486 wchar_t *wstr = va_arg (ap, wchar_t *);
487 int wlen = va_arg (ap, int);
479 488
480 for (int i = ulen; i--; )
481 wstr [i] = ustr [i];
482
483 XPUSHs (sv_2mortal (wcs2sv (wstr, ulen))); 489 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen)));
490 }
491 break;
484 492
485 delete [] wstr; 493 case DT_XEVENT:
486 } 494 {
495 XEvent *xe = va_arg (ap, XEvent *);
496 HV *hv = newHV ();
497
498# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0)
499# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0)
500# undef set
501
502 setiv (type, xe->type);
503 setiv (send_event, xe->xany.send_event);
504 setiv (serial, xe->xany.serial);
505
506 switch (xe->type)
507 {
508 case KeyPress:
509 case KeyRelease:
510 case ButtonPress:
511 case ButtonRelease:
512 case MotionNotify:
513 setiv (time, xe->xmotion.time);
514 setiv (x, xe->xmotion.x);
515 setiv (y, xe->xmotion.y);
516 setiv (row, xe->xmotion.y / term->fheight);
517 setiv (col, xe->xmotion.x / term->fwidth);
518 setiv (x_root, xe->xmotion.x_root);
519 setiv (y_root, xe->xmotion.y_root);
520 setiv (state, xe->xmotion.state);
521 break;
522 }
523
524 switch (xe->type)
525 {
526 case KeyPress:
527 case KeyRelease:
528 setiv (keycode, xe->xkey.keycode);
529 break;
530
531 case ButtonPress:
532 case ButtonRelease:
533 setiv (button, xe->xbutton.button);
534 break;
535
536 case MotionNotify:
537 setiv (is_hint, xe->xmotion.is_hint);
538 break;
539 }
540
541 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
542 }
543 break;
487 544
488 case DT_END: 545 case DT_END:
489 { 546 {
490 va_end (ap); 547 va_end (ap);
491 548
506 if (SvTRUE (ERRSV)) 563 if (SvTRUE (ERRSV))
507 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV)); 564 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
508 565
509 if (htype == HOOK_DESTROY) 566 if (htype == HOOK_DESTROY)
510 { 567 {
511 clearSVptr ((SV *)term->self); 568 clearSVptr ((SV *)term->perl.self);
512 SvREFCNT_dec ((SV *)term->self); 569 SvREFCNT_dec ((SV *)term->perl.self);
513 } 570 }
514 571
515 return count; 572 return count;
516 } 573 }
517 574
527 584
528PROTOTYPES: ENABLE 585PROTOTYPES: ENABLE
529 586
530BOOT: 587BOOT:
531{ 588{
532# define export_const(name) newCONSTSUB (gv_stashpv ("urxvt", 1), # name, newSViv (name)); 589 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
590
533 AV *hookname = get_av ("urxvt::HOOKNAME", 1); 591 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
534# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0)); 592# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
535# include "hookinc.h" 593# include "hookinc.h"
536# undef def 594# undef def
537 595
596 HV *option = get_hv ("urxvt::OPTION", 1);
597# define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
598# define nodef(name)
599# include "optinc.h"
600# undef nodef
601# undef def
602
603 HV *stash = gv_stashpv ("urxvt", 1);
604# define export_const_iv(name) newCONSTSUB (stash, # name, newSViv (name));
538 export_const (DEFAULT_RSTYLE); 605 export_const_iv (DEFAULT_RSTYLE);
539 export_const (OVERLAY_RSTYLE); 606 export_const_iv (OVERLAY_RSTYLE);
540 export_const (RS_Bold); 607 export_const_iv (RS_Bold);
541 export_const (RS_Italic); 608 export_const_iv (RS_Italic);
542 export_const (RS_Blink); 609 export_const_iv (RS_Blink);
543 export_const (RS_RVid); 610 export_const_iv (RS_RVid);
544 export_const (RS_Uline); 611 export_const_iv (RS_Uline);
545 612
546 sv_setpv (get_sv ("urxvt::LIBDIR", 1), LIBDIR); 613 export_const_iv (CurrentTime);
614 export_const_iv (ShiftMask);
615 export_const_iv (LockMask);
616 export_const_iv (ControlMask);
617 export_const_iv (Mod1Mask);
618 export_const_iv (Mod2Mask);
619 export_const_iv (Mod3Mask);
620 export_const_iv (Mod4Mask);
621 export_const_iv (Mod5Mask);
622 export_const_iv (Button1Mask);
623 export_const_iv (Button2Mask);
624 export_const_iv (Button3Mask);
625 export_const_iv (Button4Mask);
626 export_const_iv (Button5Mask);
627 export_const_iv (AnyModifier);
547} 628}
548 629
549SV * 630SV *
550new (...) 631new (...)
551 CODE: 632 CODE:
569 { 650 {
570 term->destroy (); 651 term->destroy ();
571 croak ("exception caught while initializing new terminal instance"); 652 croak ("exception caught while initializing new terminal instance");
572 } 653 }
573 654
574 RETVAL = term && term->self ? newSVterm (term) : &PL_sv_undef; 655 RETVAL = term && term->perl.self ? newSVterm (term) : &PL_sv_undef;
575} 656}
576 OUTPUT: 657 OUTPUT:
577 RETVAL 658 RETVAL
578 659
579void 660void
648 729
649MODULE = urxvt PACKAGE = urxvt::term 730MODULE = urxvt PACKAGE = urxvt::term
650 731
651void 732void
652rxvt_term::destroy () 733rxvt_term::destroy ()
734
735void
736rxvt_term::grab_button (int button, U32 modifiers)
737 CODE:
738 XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
739 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
740 GrabModeSync, GrabModeSync, None, None);
741
742bool
743rxvt_term::grab (U32 eventtime, int sync = 0)
744 CODE:
745{
746 int mode = sync ? GrabModeSync : GrabModeAsync;
747
748 THIS->perl.grabtime = 0;
749
750 if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
751 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
752 mode, mode, None, None, eventtime))
753 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
754 THIS->perl.grabtime = eventtime;
755 else
756 XUngrabPointer (THIS->display->display, eventtime);
757
758 RETVAL = !!THIS->perl.grabtime;
759}
760 OUTPUT:
761 RETVAL
762
763void
764rxvt_term::allow_events_async (U32 eventtime = THIS->perl.grabtime)
765 CODE:
766 XAllowEvents (THIS->display->display, AsyncBoth, eventtime);
767
768void
769rxvt_term::allow_events_sync (U32 eventtime = THIS->perl.grabtime)
770 CODE:
771 XAllowEvents (THIS->display->display, SyncBoth, eventtime);
772
773void
774rxvt_term::allow_events_replay (U32 eventtime = THIS->perl.grabtime)
775 CODE:
776 XAllowEvents (THIS->display->display, ReplayPointer, eventtime);
777 XAllowEvents (THIS->display->display, ReplayKeyboard, eventtime);
778
779void
780rxvt_term::ungrab (U32 eventtime = THIS->perl.grabtime)
781 CODE:
782 THIS->perl.grabtime = 0;
783 XUngrabKeyboard (THIS->display->display, eventtime);
784 XUngrabPointer (THIS->display->display, eventtime);
653 785
654int 786int
655rxvt_term::strwidth (SV *str) 787rxvt_term::strwidth (SV *str)
656 CODE: 788 CODE:
657{ 789{
699 free (wstr); 831 free (wstr);
700} 832}
701 OUTPUT: 833 OUTPUT:
702 RETVAL 834 RETVAL
703 835
704# very portable, especially on objects as opposed to pods 836#define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
705#define TERM_OFFSET(sym) (((char *)&((TermWin_t *)0)->sym) - (char *)(TermWin_t *)0)
706 837
707#define TERM_OFFSET_width TERM_OFFSET(width) 838#define TERM_OFFSET_width TERM_OFFSET(width)
708#define TERM_OFFSET_height TERM_OFFSET(height) 839#define TERM_OFFSET_height TERM_OFFSET(height)
709#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth) 840#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
710#define TERM_OFFSET_fheight TERM_OFFSET(fheight) 841#define TERM_OFFSET_fheight TERM_OFFSET(fheight)
735 CODE: 866 CODE:
736 RETVAL = *(int *)((char *)THIS + ix); 867 RETVAL = *(int *)((char *)THIS + ix);
737 OUTPUT: 868 OUTPUT:
738 RETVAL 869 RETVAL
739 870
871unsigned int
872rxvt_term::ModLevel3Mask ()
873 ALIAS:
874 ModLevel3Mask = 0
875 ModMetaMask = 1
876 ModNumLockMask = 2
877 CODE:
878 switch (ix)
879 {
880 case 0: RETVAL = THIS->ModLevel3Mask; break;
881 case 1: RETVAL = THIS->ModMetaMask; break;
882 case 2: RETVAL = THIS->ModNumLockMask; break;
883 }
884 OUTPUT:
885 RETVAL
886
887U32
888rxvt_term::parent ()
889 CODE:
890 RETVAL = (U32)THIS->parent [0];
891 OUTPUT:
892 RETVAL
893
894U32
895rxvt_term::vt ()
896 CODE:
897 RETVAL = (U32)THIS->vt;
898 OUTPUT:
899 RETVAL
900
740U32 901U32
741rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle) 902rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
742 CODE: 903 CODE:
743{ 904{
744 RETVAL = THIS->rstyle; 905 RETVAL = THIS->rstyle;
778 939
779 if (GIMME_V != G_VOID) 940 if (GIMME_V != G_VOID)
780 { 941 {
781 wchar_t *wstr = new wchar_t [THIS->ncol]; 942 wchar_t *wstr = new wchar_t [THIS->ncol];
782 943
783 for (int col = 0; col <THIS->ncol; col++) 944 for (int col = 0; col < THIS->ncol; col++)
784 wstr [col] = l.t [col]; 945 wstr [col] = l.t [col];
785 946
786 XPUSHs (sv_2mortal (wcs2sv (wstr))); 947 XPUSHs (sv_2mortal (wcs2sv (wstr, THIS->ncol)));
787 948
788 delete [] wstr; 949 delete [] wstr;
789 } 950 }
790 951
791 if (new_text) 952 if (new_text)
881} 1042}
882 OUTPUT: 1043 OUTPUT:
883 RETVAL 1044 RETVAL
884 1045
885SV * 1046SV *
886rxvt_term::special_encode (SV *str) 1047rxvt_term::special_encode (SV *string)
887 CODE: 1048 CODE:
888 abort ();//TODO 1049{
1050 wchar_t *wstr = sv2wcs (string);
1051 int wlen = wcslen (wstr);
1052 wchar_t *rstr = new wchar_t [wlen]; // cannot become longer
1053
1054 rxvt_push_locale (THIS->locale);
1055
1056 wchar_t *r = rstr;
1057 for (wchar_t *s = wstr; *s; s++)
1058 if (wcwidth (*s) == 0)
1059 {
1060 if (r == rstr)
1061 croak ("leading combining character unencodable");
1062
1063 unicode_t n = rxvt_compose (r[-1], *s);
1064 if (n == NOCHAR)
1065 n = rxvt_composite.compose (r[-1], *s);
1066
1067 r[-1] = n;
1068 }
1069#if !UNICODE_3
1070 else if (*s >= 0x10000)
1071 *r++ = rxvt_composite.compose (*s);
1072#endif
1073 else
1074 *r++ = *s;
1075
1076 rxvt_pop_locale ();
1077
1078 RETVAL = wcs2sv (rstr, r - rstr);
1079
1080 delete [] rstr;
1081}
1082 OUTPUT:
1083 RETVAL
889 1084
890SV * 1085SV *
891rxvt_term::special_decode (SV *str) 1086rxvt_term::special_decode (SV *text)
892 CODE: 1087 CODE:
893 abort ();//TODO 1088{
1089 wchar_t *wstr = sv2wcs (text);
1090 int wlen = wcslen (wstr);
1091 int dlen = 0;
1092
1093 // find length
1094 for (wchar_t *s = wstr; *s; s++)
1095 if (*s == NOCHAR)
1096 ;
1097 else if (IS_COMPOSE (*s))
1098 dlen += rxvt_composite.expand (*s, 0);
1099 else
1100 dlen++;
1101
1102 wchar_t *rstr = new wchar_t [dlen];
1103
1104 // decode
1105 wchar_t *r = rstr;
1106 for (wchar_t *s = wstr; *s; s++)
1107 if (*s == NOCHAR)
1108 ;
1109 else if (IS_COMPOSE (*s))
1110 r += rxvt_composite.expand (*s, r);
1111 else
1112 *r++ = *s;
1113
1114 RETVAL = wcs2sv (rstr, r - rstr);
1115
1116 delete [] rstr;
1117}
1118 OUTPUT:
1119 RETVAL
894 1120
895void 1121void
896rxvt_term::_resource (char *name, int index, SV *newval = 0) 1122rxvt_term::_resource (char *name, int index, SV *newval = 0)
897 PPCODE: 1123 PPCODE:
898{ 1124{
963 THIS->want_refresh = 1; 1189 THIS->want_refresh = 1;
964 } 1190 }
965} 1191}
966 1192
967int 1193int
968rxvt_term::selection_grab (int eventtime = CurrentTime) 1194rxvt_term::selection_grab (U32 eventtime)
969 1195
970void 1196void
971rxvt_term::selection (SV *newtext = 0) 1197rxvt_term::selection (SV *newtext = 0)
972 PPCODE: 1198 PPCODE:
973{ 1199{
986void 1212void
987rxvt_term::scr_add_lines (SV *string) 1213rxvt_term::scr_add_lines (SV *string)
988 CODE: 1214 CODE:
989{ 1215{
990 wchar_t *wstr = sv2wcs (string); 1216 wchar_t *wstr = sv2wcs (string);
991 int wlen = wcslen (wstr);
992 unicode_t *ustr = new unicode_t [wlen];
993 int nlines = 0;
994
995 for (int i = wlen; i--; )
996 {
997 ustr [i] = wstr [i];
998 nlines += ustr [i] == '\012';
999 }
1000
1001 THIS->scr_add_lines (ustr, nlines, wlen); 1217 THIS->scr_add_lines (wstr, wcslen (wstr));
1002
1003 free (wstr); 1218 free (wstr);
1004 delete [] ustr;
1005} 1219}
1006 1220
1007void 1221void
1008rxvt_term::tt_write (SV *octets) 1222rxvt_term::tt_write (SV *octets)
1009 INIT: 1223 INIT:
1023 char *old_cmdbuf_endp = THIS->cmdbuf_endp; 1237 char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1024 1238
1025 THIS->cmdbuf_ptr = str; 1239 THIS->cmdbuf_ptr = str;
1026 THIS->cmdbuf_endp = str + len; 1240 THIS->cmdbuf_endp = str + len;
1027 1241
1242 rxvt_push_locale (THIS->locale);
1028 THIS->cmd_parse (); 1243 THIS->cmd_parse ();
1244 rxvt_pop_locale ();
1029 1245
1030 THIS->cmdbuf_ptr = old_cmdbuf_ptr; 1246 THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1031 THIS->cmdbuf_endp = old_cmdbuf_endp; 1247 THIS->cmdbuf_endp = old_cmdbuf_endp;
1032} 1248}
1033 1249

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines