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.34 by root, Fri Jan 6 21:06:09 2006 UTC vs.
Revision 1.71 by root, Tue Jan 17 16:22:41 2006 UTC

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
34#include "unistd.h"
35
36#include "iom.h"
33#include "rxvt.h" 37#include "rxvt.h"
34#include "iom.h" 38#include "keyboard.h"
35#include "rxvtutil.h" 39#include "rxvtutil.h"
36#include "rxvtperl.h" 40#include "rxvtperl.h"
37 41
38#include "perlxsi.c" 42#include "perlxsi.c"
43
44#ifdef HAVE_SCROLLBARS
45# define GRAB_CURSOR THIS->leftptr_cursor
46#else
47# define GRAB_CURSOR None
48#endif
39 49
40#undef LINENO 50#undef LINENO
41#define LINENO(n) MOD (THIS->term_start + int(n), THIS->total_rows) 51#define LINENO(n) MOD (THIS->term_start + int(n), THIS->total_rows)
42#undef ROW 52#undef ROW
43#define ROW(n) THIS->row_buf [LINENO (n)] 53#define ROW(n) THIS->row_buf [LINENO (n)]
44 54
55#define ENABLE_PERL_FRILLS 1
56
45///////////////////////////////////////////////////////////////////////////// 57/////////////////////////////////////////////////////////////////////////////
46 58
47static wchar_t * 59static wchar_t *
48sv2wcs (SV *sv) 60sv2wcs (SV *sv)
49{ 61{
101 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass); 113 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
102 114
103 return (long)mg->mg_ptr; 115 return (long)mg->mg_ptr;
104} 116}
105 117
106#define newSVterm(term) SvREFCNT_inc ((SV *)term->self) 118#define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
107#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term") 119#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term")
108 120
109///////////////////////////////////////////////////////////////////////////// 121/////////////////////////////////////////////////////////////////////////////
110 122
111struct perl_watcher 123struct perl_watcher
290void 302void
291overlay::show () 303overlay::show ()
292{ 304{
293 char key[33]; sprintf (key, "%32lx", (long)this); 305 char key[33]; sprintf (key, "%32lx", (long)this);
294 306
295 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->self), "_overlay", 8, 0)); 307 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); 308 hv_store (hv, key, 32, newSViv ((long)this), 0);
297} 309}
298 310
299void 311void
300overlay::hide () 312overlay::hide ()
301{ 313{
302 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->self), "_overlay", 8, 0); 314 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
303 315
304 if (ovs) 316 if (ovs)
305 { 317 {
306 char key[33]; sprintf (key, "%32lx", (long)this); 318 char key[33]; sprintf (key, "%32lx", (long)this);
307 319
321 for (int y = ov_h; y--; ) 333 for (int y = ov_h; y--; )
322 { 334 {
323 text_t *t1 = text [y]; 335 text_t *t1 = text [y];
324 rend_t *r1 = rend [y]; 336 rend_t *r1 = rend [y];
325 337
326 text_t *t2 = ROW(y + ov_y - THIS->view_start).t + ov_x; 338 text_t *t2 = ROW(y + ov_y + THIS->view_start).t + ov_x;
327 rend_t *r2 = ROW(y + ov_y - THIS->view_start).r + ov_x; 339 rend_t *r2 = ROW(y + ov_y + THIS->view_start).r + ov_x;
328 340
329 for (int x = ov_w; x--; ) 341 for (int x = ov_w; x--; )
330 { 342 {
331 text_t t = *t1; *t1++ = *t2; *t2++ = t; 343 text_t t = *t1; *t1++ = *t2; *t2++ = t;
332 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t)); 344 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t));
369 381
370struct rxvt_perl_interp rxvt_perl; 382struct rxvt_perl_interp rxvt_perl;
371 383
372static PerlInterpreter *perl; 384static PerlInterpreter *perl;
373 385
374rxvt_perl_interp::rxvt_perl_interp ()
375{
376}
377
378rxvt_perl_interp::~rxvt_perl_interp () 386rxvt_perl_interp::~rxvt_perl_interp ()
379{ 387{
380 if (perl) 388 if (perl)
381 { 389 {
382 perl_destruct (perl); 390 perl_destruct (perl);
383 perl_free (perl); 391 perl_free (perl);
384 } 392 }
385} 393}
386 394
387void 395void
388rxvt_perl_interp::init () 396rxvt_perl_interp::init (rxvt_term *term)
389{ 397{
390 if (!perl) 398 if (!perl)
391 { 399 {
400 rxvt_push_locale (""); // perl init destroys current locale
401
402 perl_environ = rxvt_environ;
403 swap (perl_environ, environ);
404
392 char *argv[] = { 405 char *argv[] = {
393 "", 406 "",
394 "-edo '" LIBDIR "/urxvt.pm' or ($@ and die $@) or exit 1", 407 "-edo '" LIBDIR "/urxvt.pm' or ($@ and die $@) or exit 1",
395 }; 408 };
396 409
404 417
405 perl_destruct (perl); 418 perl_destruct (perl);
406 perl_free (perl); 419 perl_free (perl);
407 perl = 0; 420 perl = 0;
408 } 421 }
422
423 swap (perl_environ, environ);
424
425 rxvt_pop_locale ();
426 }
427
428 if (perl)
429 {
430 // runs outside of perls ENV
431 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
432 hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
433 }
434}
435
436static void
437ungrab (rxvt_term *THIS)
438{
439 if (THIS->perl.grabtime)
440 {
441 XUngrabKeyboard (THIS->display->display, THIS->perl.grabtime);
442 XUngrabPointer (THIS->display->display, THIS->perl.grabtime);
443 THIS->perl.grabtime = 0;
444 }
445}
446
447static void
448swap_overlays (rxvt_term *term)
449{
450 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
451
452 if (HvKEYS (hv))
453 {
454 hv_iterinit (hv);
455
456 while (HE *he = hv_iternext (hv))
457 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
409 } 458 }
410} 459}
411 460
412bool 461bool
413rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...) 462rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
414{ 463{
415 if (!perl) 464 if (!perl || !term->perl.self)
416 return false; 465 return false;
417 466
418 if (htype == HOOK_INIT) // first hook ever called 467 // pre-handling of some events
419 { 468 if (htype == HOOK_REFRESH_END)
420 term->self = (void *)newSVptr ((void *)term, "urxvt::term"); 469 swap_overlays (term);
421 hv_store ((HV *)SvRV ((SV *)term->self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
422 }
423 else if (!term->self)
424 return false; // perl not initialized for this instance
425 else if (htype == HOOK_DESTROY)
426 {
427 // handled later
428 }
429 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END)
430 {
431 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->self), "_overlay", 8, 0));
432 470
433 if (HvKEYS (hv)) 471 swap (perl_environ, environ);
434 {
435 hv_iterinit (hv);
436 472
437 while (HE *he = hv_iternext (hv)) 473 bool event_consumed;
438 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
439 }
440 }
441 else if (!should_invoke [htype])
442 return false;
443 474
444 dSP; 475 if (htype == HOOK_INIT || htype == HOOK_DESTROY // must be called always
445 va_list ap; 476 || term->perl.should_invoke [htype])
446 477 try
447 va_start (ap, htype);
448
449 ENTER;
450 SAVETMPS;
451
452 PUSHMARK (SP);
453
454 XPUSHs (sv_2mortal (newSVterm (term)));
455 XPUSHs (sv_2mortal (newSViv (htype)));
456
457 for (;;) {
458 data_type dt = (data_type)va_arg (ap, int);
459
460 switch (dt)
461 { 478 {
479 dSP;
480 va_list ap;
481
482 va_start (ap, htype);
483
484 ENTER;
485 SAVETMPS;
486
487 PUSHMARK (SP);
488
489 XPUSHs (sv_2mortal (newSVterm (term)));
490 XPUSHs (sv_2mortal (newSViv (htype)));
491
492 for (;;) {
493 data_type dt = (data_type)va_arg (ap, int);
494
495 switch (dt)
496 {
462 case DT_INT: 497 case DT_INT:
463 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int)))); 498 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int))));
464 break; 499 break;
465 500
466 case DT_LONG: 501 case DT_LONG:
467 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long)))); 502 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
468 break; 503 break;
469 504
470 case DT_STR: 505 case DT_STR:
471 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0))); 506 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
472 break; 507 break;
473 508
474 case DT_STR_LEN: 509 case DT_STR_LEN:
475 { 510 {
476 char *str = va_arg (ap, char *); 511 char *str = va_arg (ap, char *);
477 int len = va_arg (ap, int); 512 int len = va_arg (ap, int);
478 513
479 XPUSHs (sv_2mortal (newSVpvn (str, len))); 514 XPUSHs (sv_2mortal (newSVpvn (str, len)));
480 } 515 }
481 break; 516 break;
482 517
483 case DT_WCS_LEN: 518 case DT_WCS_LEN:
484 { 519 {
485 wchar_t *wstr = va_arg (ap, wchar_t *); 520 wchar_t *wstr = va_arg (ap, wchar_t *);
486 int wlen = va_arg (ap, int); 521 int wlen = va_arg (ap, int);
487 522
488 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen))); 523 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen)));
489 } 524 }
490 break; 525 break;
491 526
492 case DT_XEVENT: 527 case DT_XEVENT:
493 { 528 {
494 XEvent *xe = va_arg (ap, XEvent *); 529 XEvent *xe = va_arg (ap, XEvent *);
495 HV *hv = newHV (); 530 HV *hv = newHV ();
496 531
497# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0) 532# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0)
498# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0) 533# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0)
499# undef set 534# undef set
500 535
501 setiv (type, xe->type); 536 setiv (type, xe->type);
502 setiv (send_event, xe->xany.send_event); 537 setiv (send_event, xe->xany.send_event);
503 setiv (serial, xe->xany.serial); 538 setiv (serial, xe->xany.serial);
504 539
505 switch (xe->type) 540 switch (xe->type)
506 { 541 {
507 case KeyPress: 542 case KeyPress:
508 case KeyRelease: 543 case KeyRelease:
509 case ButtonPress: 544 case ButtonPress:
510 case ButtonRelease: 545 case ButtonRelease:
511 case MotionNotify: 546 case MotionNotify:
512 setiv (time, xe->xmotion.time); 547 setiv (time, xe->xmotion.time);
513 setiv (x, xe->xmotion.x); 548 setiv (x, xe->xmotion.x);
514 setiv (y, xe->xmotion.y); 549 setiv (y, xe->xmotion.y);
515 setiv (row, xe->xmotion.y / term->fheight); 550 setiv (row, xe->xmotion.y / term->fheight);
516 setiv (col, xe->xmotion.x / term->fwidth); 551 setiv (col, xe->xmotion.x / term->fwidth);
517 setiv (x_root, xe->xmotion.x_root); 552 setiv (x_root, xe->xmotion.x_root);
518 setiv (y_root, xe->xmotion.y_root); 553 setiv (y_root, xe->xmotion.y_root);
519 setiv (state, xe->xmotion.state); 554 setiv (state, xe->xmotion.state);
555 break;
556 }
557
558 switch (xe->type)
559 {
560 case KeyPress:
561 case KeyRelease:
562 setiv (keycode, xe->xkey.keycode);
563 break;
564
565 case ButtonPress:
566 case ButtonRelease:
567 setiv (button, xe->xbutton.button);
568 break;
569
570 case MotionNotify:
571 setiv (is_hint, xe->xmotion.is_hint);
572 break;
573 }
574
575 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
576 }
520 break; 577 break;
578
579 case DT_END:
580 goto call;
581
582 default:
583 rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
521 } 584 }
522
523 switch (xe->type)
524 {
525 case KeyPress:
526 case KeyRelease:
527 setiv (keycode, xe->xkey.keycode);
528 break;
529
530 case ButtonPress:
531 case ButtonRelease:
532 setiv (button, xe->xbutton.button);
533 break;
534
535 case MotionNotify:
536 setiv (is_hint, xe->xmotion.is_hint);
537 break;
538 }
539
540 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
541 } 585 }
542 break;
543 586
544 case DT_END: 587 call:
545 {
546 va_end (ap); 588 va_end (ap);
547 589
548 PUTBACK; 590 PUTBACK;
549 int count = call_pv ("urxvt::invoke", G_ARRAY | G_EVAL); 591 int count = call_pv ("urxvt::invoke", G_ARRAY | G_EVAL);
550 SPAGAIN; 592 SPAGAIN;
551 593
552 if (count) 594 if (count)
553 { 595 {
554 SV *status = POPs; 596 SV *status = POPs;
555 count = SvTRUE (status); 597 count = SvTRUE (status);
556 } 598 }
557 599
558 PUTBACK; 600 PUTBACK;
559 FREETMPS; 601 FREETMPS;
560 LEAVE; 602 LEAVE;
561 603
562 if (SvTRUE (ERRSV)) 604 if (SvTRUE (ERRSV))
605 {
563 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV)); 606 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
564 607 ungrab (term); // better lose the grab than the session
565 if (htype == HOOK_DESTROY)
566 {
567 clearSVptr ((SV *)term->self);
568 SvREFCNT_dec ((SV *)term->self);
569 } 608 }
570 609
571 return count; 610 event_consumed = !!count;
572 }
573
574 default:
575 rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
576 } 611 }
612 catch (...)
613 {
614 swap (perl_environ, environ);
615 throw;
616 }
617 else
618 event_consumed = false;
619
620 // post-handling of some events
621 if (htype == HOOK_REFRESH_BEGIN)
622 swap_overlays (term);
623 else if (htype == HOOK_DESTROY)
624 {
625 clearSVptr ((SV *)term->perl.self);
626 SvREFCNT_dec ((SV *)term->perl.self);
577 } 627 }
628
629 swap (perl_environ, environ);
630
631 return event_consumed;
578} 632}
579 633
580///////////////////////////////////////////////////////////////////////////// 634/////////////////////////////////////////////////////////////////////////////
581 635
582MODULE = urxvt PACKAGE = urxvt 636MODULE = urxvt PACKAGE = urxvt
583 637
584PROTOTYPES: ENABLE 638PROTOTYPES: ENABLE
585 639
586BOOT: 640BOOT:
587{ 641{
588# define export_const(name) newCONSTSUB (gv_stashpv ("urxvt", 1), # name, newSViv (name)); 642 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
643 sv_setsv (get_sv ("urxvt::RESNAME", 1), newSVpvn (RESNAME, sizeof (RESNAME) - 1));
644 sv_setsv (get_sv ("urxvt::RESCLASS", 1), newSVpvn (RESCLASS, sizeof (RESCLASS) - 1));
645 sv_setsv (get_sv ("urxvt::RXVTNAME", 1), newSVpvn (RXVTNAME, sizeof (RXVTNAME) - 1));
646
589 AV *hookname = get_av ("urxvt::HOOKNAME", 1); 647 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
590# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0)); 648# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
591# include "hookinc.h" 649# include "hookinc.h"
592# undef def 650# undef def
593 651
652 HV *option = get_hv ("urxvt::OPTION", 1);
653# define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
654# define nodef(name)
655# include "optinc.h"
656# undef nodef
657# undef def
658
659 HV *stash = gv_stashpv ("urxvt", 1);
660 struct {
661 const char *name;
662 IV iv;
663 } *civ, const_iv[] = {
664# define const_iv(name) { # name, (IV)name }
594 export_const (DEFAULT_RSTYLE); 665 const_iv (DEFAULT_RSTYLE),
595 export_const (OVERLAY_RSTYLE); 666 const_iv (OVERLAY_RSTYLE),
596 export_const (RS_Bold); 667 const_iv (RS_Bold),
597 export_const (RS_Italic); 668 const_iv (RS_Italic),
598 export_const (RS_Blink); 669 const_iv (RS_Blink),
599 export_const (RS_RVid); 670 const_iv (RS_RVid),
600 export_const (RS_Uline); 671 const_iv (RS_Uline),
601 672
602 sv_setpv (get_sv ("urxvt::LIBDIR", 1), LIBDIR); 673 const_iv (CurrentTime),
603} 674 const_iv (ShiftMask),
675 const_iv (LockMask),
676 const_iv (ControlMask),
677 const_iv (Mod1Mask),
678 const_iv (Mod2Mask),
679 const_iv (Mod3Mask),
680 const_iv (Mod4Mask),
681 const_iv (Mod5Mask),
682 const_iv (Button1Mask),
683 const_iv (Button2Mask),
684 const_iv (Button3Mask),
685 const_iv (Button4Mask),
686 const_iv (Button5Mask),
687 const_iv (AnyModifier),
604 688
605SV * 689 const_iv (EVENT_NONE),
606new (...) 690 const_iv (EVENT_READ),
607 CODE: 691 const_iv (EVENT_WRITE),
608{
609 stringvec *argv = new stringvec;
610 bool success;
611 692
612 for (int i = 0; i < items ;i++) 693 const_iv (NoEventMask),
613 argv->push_back (strdup (SvPVbyte_nolen (ST (i)))); 694 const_iv (KeyPressMask),
695 const_iv (KeyReleaseMask),
696 const_iv (ButtonPressMask),
697 const_iv (ButtonReleaseMask),
698 const_iv (EnterWindowMask),
699 const_iv (LeaveWindowMask),
700 const_iv (PointerMotionMask),
701 const_iv (PointerMotionHintMask),
702 const_iv (Button1MotionMask),
703 const_iv (Button2MotionMask),
704 const_iv (Button3MotionMask),
705 const_iv (Button4MotionMask),
706 const_iv (Button5MotionMask),
707 const_iv (ButtonMotionMask),
708 const_iv (KeymapStateMask),
709 const_iv (ExposureMask),
710 const_iv (VisibilityChangeMask),
711 const_iv (StructureNotifyMask),
712 const_iv (ResizeRedirectMask),
713 const_iv (SubstructureNotifyMask),
714 const_iv (SubstructureRedirectMask),
715 const_iv (FocusChangeMask),
716 const_iv (PropertyChangeMask),
717 const_iv (ColormapChangeMask),
718 const_iv (OwnerGrabButtonMask),
614 719
615 rxvt_term *term = new rxvt_term; 720 const_iv (KeyPress),
721 const_iv (KeyRelease),
722 const_iv (ButtonPress),
723 const_iv (ButtonRelease),
724 const_iv (MotionNotify),
725 const_iv (EnterNotify),
726 const_iv (LeaveNotify),
727 const_iv (FocusIn),
728 const_iv (FocusOut),
729 const_iv (KeymapNotify),
730 const_iv (Expose),
731 const_iv (GraphicsExpose),
732 const_iv (NoExpose),
733 const_iv (VisibilityNotify),
734 const_iv (CreateNotify),
735 const_iv (DestroyNotify),
736 const_iv (UnmapNotify),
737 const_iv (MapNotify),
738 const_iv (MapRequest),
739 const_iv (ReparentNotify),
740 const_iv (ConfigureNotify),
741 const_iv (ConfigureRequest),
742 const_iv (GravityNotify),
743 const_iv (ResizeRequest),
744 const_iv (CirculateNotify),
745 const_iv (CirculateRequest),
746 const_iv (PropertyNotify),
747 const_iv (SelectionClear),
748 const_iv (SelectionRequest),
749 const_iv (SelectionNotify),
750 const_iv (ColormapNotify),
751 const_iv (ClientMessage),
752 const_iv (MappingNotify),
753 };
616 754
617 term->argv = argv; 755 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]);
618 756 civ-- > const_iv; )
619 try 757 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
620 {
621 if (!term->init (argv->size (), argv->begin ()))
622 term = 0;
623 }
624 catch (const class rxvt_failure_exception &e)
625 {
626 term->destroy ();
627 croak ("exception caught while initializing new terminal instance");
628 }
629
630 RETVAL = term && term->self ? newSVterm (term) : &PL_sv_undef;
631} 758}
632 OUTPUT:
633 RETVAL
634
635void
636set_should_invoke (int htype, int value)
637 CODE:
638 rxvt_perl.should_invoke [htype] = value;
639 759
640void 760void
641warn (const char *msg) 761warn (const char *msg)
642 CODE: 762 CODE:
643 rxvt_warn ("%s", msg); 763 rxvt_warn ("%s", msg);
644 764
645void 765void
646fatal (const char *msg) 766fatal (const char *msg)
647 CODE: 767 CODE:
648 rxvt_fatal ("%s", msg); 768 rxvt_fatal ("%s", msg);
769
770void
771_exit (int status)
649 772
650NV 773NV
651NOW () 774NOW ()
652 CODE: 775 CODE:
653 RETVAL = NOW; 776 RETVAL = NOW;
702 OUTPUT: 825 OUTPUT:
703 RETVAL 826 RETVAL
704 827
705MODULE = urxvt PACKAGE = urxvt::term 828MODULE = urxvt PACKAGE = urxvt::term
706 829
830SV *
831_new (...)
832 CODE:
833{
834 if (items < 1 || !SvROK (ST (0)) || SvTYPE (SvRV (ST (0))) != SVt_PVAV)
835 croak ("first argument to urxvt::term->_new must be arrayref");
836
837 rxvt_term *term = new rxvt_term;
838
839 term->argv = new stringvec;
840 term->envv = new stringvec;
841
842 for (int i = 1; i < items; i++)
843 term->argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
844
845 AV *envv = (AV *)SvRV (ST (0));
846 for (int i = av_len (envv) + 1; i--; )
847 term->envv->push_back (strdup (SvPVbyte_nolen (*av_fetch (envv, i, 1))));
848
849 term->envv->push_back (0);
850
851 bool success;
852
853 try
854 {
855 success = term->init (term->argv->size (), term->argv->begin ());
856 }
857 catch (const class rxvt_failure_exception &e)
858 {
859 success = false;
860 }
861
862 if (!success)
863 {
864 term->destroy ();
865 croak ("error while initializing new terminal instance");
866 }
867
868 RETVAL = term && term->perl.self
869 ? newSVterm (term) : &PL_sv_undef;
870}
871 OUTPUT:
872 RETVAL
873
707void 874void
708rxvt_term::destroy () 875rxvt_term::destroy ()
876
877#if ENABLE_PERL_FRILLS
878
879void
880rxvt_term::XListProperties (U32 window)
881 PPCODE:
882{
883 int count;
884 Atom *props = XListProperties (THIS->display->display, (Window)window, &count);
885
886 EXTEND (SP, count);
887 while (count--)
888 PUSHs (newSVuv ((U32)props [count]));
889
890 XFree (props);
891}
892
893void
894rxvt_term::XGetWindowProperty (U32 window, U32 property)
895 PPCODE:
896{
897 Atom type;
898 int format;
899 unsigned long nitems;
900 unsigned long bytes_after;
901 unsigned char *prop;
902 XGetWindowProperty (THIS->display->display, (Window)window, (Atom)property,
903 0, 1<<30, 0, AnyPropertyType,
904 &type, &format, &nitems, &bytes_after, &prop);
905 if (type != None)
906 {
907 EXTEND (SP, 3);
908 PUSHs (newSVuv ((U32)type));
909 PUSHs (newSViv (format));
910 PUSHs (newSVpvn ((char *)prop, nitems * format / 8));
911 XFree (prop);
912 }
913}
914
915void
916rxvt_term::XChangeWindowProperty (U32 window, U32 property, U32 type, int format, SV *data)
917 CODE:
918{
919 STRLEN len;
920 char *data_ = SvPVbyte (data, len);
921
922 XChangeProperty (THIS->display->display, (Window)window, (Atom)property,
923 type, format, PropModeReplace,
924 (unsigned char *)data, len * 8 / format);
925}
926
927void
928rxvt_term::XDeleteProperty (U32 window, U32 property)
929 CODE:
930 XDeleteProperty (THIS->display->display, (Window)window, (Atom)property);
931
932U32
933rxvt_term::DefaultRootWindow ()
934 CODE:
935 RETVAL = (U32)THIS->display->root;
936 OUTPUT:
937 RETVAL
938
939U32
940rxvt_term::XCreateSimpleWindow (U32 parent, int x, int y, unsigned int width, unsigned int height)
941 CODE:
942 RETVAL = XCreateSimpleWindow (THIS->display->display, (Window)parent,
943 x, y, width, height, 0,
944 THIS->pix_colors_focused[Color_border],
945 THIS->pix_colors_focused[Color_border]);
946 OUTPUT:
947 RETVAL
948
949void
950rxvt_term::XReparentWindow (U32 window, U32 parent, int x = 0, int y = 0)
951 CODE:
952 XReparentWindow (THIS->display->display, (Window)window, (Window)parent, x, y);
953
954void
955rxvt_term::XMapWindow (U32 window)
956 CODE:
957 XMapWindow (THIS->display->display, (Window)window);
958
959void
960rxvt_term::XUnmapWindow (U32 window)
961 CODE:
962 XUnmapWindow (THIS->display->display, (Window)window);
963
964#endif
965
966void
967rxvt_term::set_should_invoke (int htype, int inc)
968 CODE:
969 THIS->perl.should_invoke [htype] += inc;
970
971void
972rxvt_term::grab_button (int button, U32 modifiers)
973 CODE:
974 XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
975 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
976 GrabModeSync, GrabModeSync, None, GRAB_CURSOR);
977
978bool
979rxvt_term::grab (U32 eventtime, int sync = 0)
980 CODE:
981{
982 int mode = sync ? GrabModeSync : GrabModeAsync;
983
984 THIS->perl.grabtime = 0;
985
986 if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
987 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
988 mode, mode, None, GRAB_CURSOR, eventtime))
989 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
990 THIS->perl.grabtime = eventtime;
991 else
992 XUngrabPointer (THIS->display->display, eventtime);
993
994 RETVAL = !!THIS->perl.grabtime;
995}
996 OUTPUT:
997 RETVAL
998
999void
1000rxvt_term::allow_events_async ()
1001 CODE:
1002 XAllowEvents (THIS->display->display, AsyncBoth, THIS->perl.grabtime);
1003
1004void
1005rxvt_term::allow_events_sync ()
1006 CODE:
1007 XAllowEvents (THIS->display->display, SyncBoth, THIS->perl.grabtime);
1008
1009void
1010rxvt_term::allow_events_replay ()
1011 CODE:
1012 XAllowEvents (THIS->display->display, ReplayPointer, THIS->perl.grabtime);
1013 XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime);
1014
1015void
1016rxvt_term::ungrab ()
1017 CODE:
1018 ungrab (THIS);
709 1019
710int 1020int
711rxvt_term::strwidth (SV *str) 1021rxvt_term::strwidth (SV *str)
712 CODE: 1022 CODE:
713{ 1023{
755 free (wstr); 1065 free (wstr);
756} 1066}
757 OUTPUT: 1067 OUTPUT:
758 RETVAL 1068 RETVAL
759 1069
760# very portable, especially on objects as opposed to pods 1070#define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
761#define TERM_OFFSET(sym) (((char *)&((TermWin_t *)0)->sym) - (char *)(TermWin_t *)0)
762 1071
763#define TERM_OFFSET_width TERM_OFFSET(width) 1072#define TERM_OFFSET_width TERM_OFFSET(width)
764#define TERM_OFFSET_height TERM_OFFSET(height) 1073#define TERM_OFFSET_height TERM_OFFSET(height)
765#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth) 1074#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
766#define TERM_OFFSET_fheight TERM_OFFSET(fheight) 1075#define TERM_OFFSET_fheight TERM_OFFSET(fheight)
769#define TERM_OFFSET_ncol TERM_OFFSET(ncol) 1078#define TERM_OFFSET_ncol TERM_OFFSET(ncol)
770#define TERM_OFFSET_focus TERM_OFFSET(focus) 1079#define TERM_OFFSET_focus TERM_OFFSET(focus)
771#define TERM_OFFSET_mapped TERM_OFFSET(mapped) 1080#define TERM_OFFSET_mapped TERM_OFFSET(mapped)
772#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines) 1081#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines)
773#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows) 1082#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
774#define TERM_OFFSET_nsaved TERM_OFFSET(nsaved) 1083#define TERM_OFFSET_top_row TERM_OFFSET(top_row)
775 1084
776int 1085int
777rxvt_term::width () 1086rxvt_term::width ()
778 ALIAS: 1087 ALIAS:
779 width = TERM_OFFSET_width 1088 width = TERM_OFFSET_width
785 ncol = TERM_OFFSET_ncol 1094 ncol = TERM_OFFSET_ncol
786 focus = TERM_OFFSET_focus 1095 focus = TERM_OFFSET_focus
787 mapped = TERM_OFFSET_mapped 1096 mapped = TERM_OFFSET_mapped
788 saveLines = TERM_OFFSET_saveLines 1097 saveLines = TERM_OFFSET_saveLines
789 total_rows = TERM_OFFSET_total_rows 1098 total_rows = TERM_OFFSET_total_rows
790 nsaved = TERM_OFFSET_nsaved 1099 top_row = TERM_OFFSET_top_row
791 CODE: 1100 CODE:
792 RETVAL = *(int *)((char *)THIS + ix); 1101 RETVAL = *(int *)((char *)THIS + ix);
793 OUTPUT: 1102 OUTPUT:
1103 RETVAL
1104
1105unsigned int
1106rxvt_term::ModLevel3Mask ()
1107 ALIAS:
1108 ModLevel3Mask = 0
1109 ModMetaMask = 1
1110 ModNumLockMask = 2
1111 CODE:
1112 switch (ix)
1113 {
1114 case 0: RETVAL = THIS->ModLevel3Mask; break;
1115 case 1: RETVAL = THIS->ModMetaMask; break;
1116 case 2: RETVAL = THIS->ModNumLockMask; break;
1117 }
1118 OUTPUT:
1119 RETVAL
1120
1121char *
1122rxvt_term::display_id ()
1123 ALIAS:
1124 display_id = 0
1125 locale = 1
1126 CODE:
1127 switch (ix)
1128 {
1129 case 0: RETVAL = THIS->display->id; break;
1130 case 1: RETVAL = THIS->locale; break;
1131 }
1132 OUTPUT:
1133 RETVAL
1134
1135SV *
1136rxvt_term::_env ()
1137 CODE:
1138{
1139 if (THIS->envv)
1140 {
1141 AV *av = newAV ();
1142
1143 for (char **i = THIS->envv->begin (); i != THIS->envv->end (); ++i)
1144 if (*i)
1145 av_push (av, newSVpv (*i, 0));
1146
1147 RETVAL = newRV_noinc ((SV *)av);
1148 }
1149 else
1150 RETVAL = &PL_sv_undef;
1151}
1152 OUTPUT:
1153 RETVAL
1154
1155int
1156rxvt_term::pty_ev_events (int events = EVENT_UNDEF)
1157 CODE:
1158 RETVAL = THIS->pty_ev.events;
1159 if (events != EVENT_UNDEF)
1160 THIS->pty_ev.set (events);
1161 OUTPUT:
794 RETVAL 1162 RETVAL
795 1163
796U32 1164U32
797rxvt_term::parent () 1165rxvt_term::parent ()
798 CODE: 1166 CODE:
805 CODE: 1173 CODE:
806 RETVAL = (U32)THIS->vt; 1174 RETVAL = (U32)THIS->vt;
807 OUTPUT: 1175 OUTPUT:
808 RETVAL 1176 RETVAL
809 1177
1178void
1179rxvt_term::vt_emask_add (U32 emask)
1180 CODE:
1181 THIS->vt_emask_perl |= emask;
1182 THIS->vt_select_input ();
1183
810U32 1184U32
811rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle) 1185rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
812 CODE: 1186 CODE:
813{
814 RETVAL = THIS->rstyle; 1187 RETVAL = THIS->rstyle;
815 THIS->rstyle = new_rstyle; 1188 THIS->rstyle = new_rstyle;
816}
817 OUTPUT: 1189 OUTPUT:
818 RETVAL 1190 RETVAL
819 1191
820int 1192int
821rxvt_term::view_start (int newval = -1) 1193rxvt_term::view_start (int newval = 1)
1194 PROTOTYPE: $;$
822 CODE: 1195 CODE:
823{ 1196{
824 RETVAL = THIS->view_start; 1197 RETVAL = THIS->view_start;
825 1198
826 if (newval >= 0) 1199 if (newval <= 0)
827 { 1200 THIS->scr_changeview (max (newval, THIS->top_row));
828 THIS->view_start = min (newval, THIS->nsaved);
829 THIS->scr_changeview (RETVAL);
830 }
831} 1201}
832 OUTPUT: 1202 OUTPUT:
833 RETVAL 1203 RETVAL
834 1204
835void 1205void
839 1209
840void 1210void
841rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS) 1211rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
842 PPCODE: 1212 PPCODE:
843{ 1213{
844 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1214 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
845 XSRETURN_EMPTY; 1215 XSRETURN_EMPTY;
846 1216
847 line_t &l = ROW(row_number); 1217 line_t &l = ROW(row_number);
848 1218
849 if (GIMME_V != G_VOID) 1219 if (GIMME_V != G_VOID)
882 1252
883void 1253void
884rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS) 1254rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
885 PPCODE: 1255 PPCODE:
886{ 1256{
887 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1257 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
888 XSRETURN_EMPTY; 1258 XSRETURN_EMPTY;
889 1259
890 line_t &l = ROW(row_number); 1260 line_t &l = ROW(row_number);
891 1261
892 if (GIMME_V != G_VOID) 1262 if (GIMME_V != G_VOID)
922 1292
923int 1293int
924rxvt_term::ROW_l (int row_number, int new_length = -1) 1294rxvt_term::ROW_l (int row_number, int new_length = -1)
925 CODE: 1295 CODE:
926{ 1296{
927 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1297 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
928 XSRETURN_EMPTY; 1298 XSRETURN_EMPTY;
929 1299
930 line_t &l = ROW(row_number); 1300 line_t &l = ROW(row_number);
931 RETVAL = l.l; 1301 RETVAL = l.l;
932 1302
938 1308
939bool 1309bool
940rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1) 1310rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
941 CODE: 1311 CODE:
942{ 1312{
943 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1313 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
944 XSRETURN_EMPTY; 1314 XSRETURN_EMPTY;
945 1315
946 line_t &l = ROW(row_number); 1316 line_t &l = ROW(row_number);
947 RETVAL = l.is_longer (); 1317 RETVAL = l.is_longer ();
948 1318
1065 else 1435 else
1066 THIS->rs [index] = 0; 1436 THIS->rs [index] = 0;
1067 } 1437 }
1068} 1438}
1069 1439
1440const char *
1441rxvt_term::x_resource (const char *name)
1442
1443bool
1444rxvt_term::option (U32 optval, int set = -1)
1445 CODE:
1446{
1447 RETVAL = THIS->options & optval;
1448
1449 if (set >= 0)
1450 {
1451 if (set)
1452 THIS->options |= optval;
1453 else
1454 THIS->options &= ~optval;
1455
1456 switch (optval)
1457 {
1458 case Opt_skipBuiltinGlyphs:
1459 THIS->set_fonts ();
1460 THIS->scr_remap_chars ();
1461 THIS->scr_touch (true);
1462 THIS->want_refresh = 1;
1463 break;
1464
1465 case Opt_cursorUnderline:
1466 THIS->want_refresh = 1;
1467 break;
1468
1469# case Opt_scrollBar_floating:
1470# case Opt_scrollBar_right:
1471# THIS->resize_all_windows (THIS->width, THIS->height, 1);
1472# break;
1473 }
1474 }
1475}
1476 OUTPUT:
1477 RETVAL
1478
1479bool
1480rxvt_term::parse_keysym (char *keysym, char *str)
1481 CODE:
1482 RETVAL = 0 < THIS->parse_keysym (keysym, str);
1483 THIS->keyboard->register_done ();
1484 OUTPUT:
1485 RETVAL
1486
1070void 1487void
1071rxvt_term::cur (...) 1488rxvt_term::screen_cur (...)
1072 PROTOTYPE: $;$$ 1489 PROTOTYPE: $;$$
1073 ALIAS: 1490 ALIAS:
1074 screen_cur = 0 1491 screen_cur = 0
1075 selection_beg = 1 1492 selection_beg = 1
1076 selection_end = 2 1493 selection_end = 2
1089 PUSHs (sv_2mortal (newSViv (rc.col))); 1506 PUSHs (sv_2mortal (newSViv (rc.col)));
1090 } 1507 }
1091 1508
1092 if (items == 3) 1509 if (items == 3)
1093 { 1510 {
1094 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1); 1511 rc.row = clamp (SvIV (ST (1)), THIS->top_row, THIS->nrow - 1);
1095 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1); 1512 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
1096 1513
1097 if (ix) 1514 if (ix)
1098 THIS->want_refresh = 1; 1515 THIS->want_refresh = 1;
1099 } 1516 }
1100} 1517}
1101 1518
1519char
1520rxvt_term::cur_charset ()
1521 CODE:
1522 RETVAL = THIS->charsets [THIS->screen.charset];
1523 OUTPUT:
1524 RETVAL
1525
1526#void
1527#rxvt_term::selection_clear ()
1528
1529void
1530rxvt_term::selection_make (U32 eventtime, bool rect = false)
1531 CODE:
1532 THIS->selection.op = SELECTION_CONT;
1533 THIS->selection.rect = rect;
1534 THIS->selection_make (eventtime);
1535
1102int 1536int
1103rxvt_term::selection_grab (int eventtime = CurrentTime) 1537rxvt_term::selection_grab (U32 eventtime)
1104 1538
1105void 1539void
1106rxvt_term::selection (SV *newtext = 0) 1540rxvt_term::selection (SV *newtext = 0)
1107 PPCODE: 1541 PPCODE:
1108{ 1542{
1109 if (GIMME_V != G_VOID) 1543 if (GIMME_V != G_VOID)
1544 XPUSHs (THIS->selection.text
1110 XPUSHs (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len))); 1545 ? sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len))
1546 : &PL_sv_undef);
1111 1547
1112 if (newtext) 1548 if (newtext)
1113 { 1549 {
1114 free (THIS->selection.text); 1550 free (THIS->selection.text);
1115 1551
1116 THIS->selection.text = sv2wcs (newtext); 1552 THIS->selection.text = sv2wcs (newtext);
1117 THIS->selection.len = wcslen (THIS->selection.text); 1553 THIS->selection.len = wcslen (THIS->selection.text);
1118 } 1554 }
1119} 1555}
1556
1557void
1558rxvt_term::scr_xor_rect (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle1 = RS_RVid, U32 rstyle2 = RS_RVid | RS_Uline)
1559
1560void
1561rxvt_term::scr_xor_span (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle = RS_RVid)
1562
1563void
1564rxvt_term::scr_bell ()
1120 1565
1121void 1566void
1122rxvt_term::scr_add_lines (SV *string) 1567rxvt_term::scr_add_lines (SV *string)
1123 CODE: 1568 CODE:
1124{ 1569{
1146 char *old_cmdbuf_endp = THIS->cmdbuf_endp; 1591 char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1147 1592
1148 THIS->cmdbuf_ptr = str; 1593 THIS->cmdbuf_ptr = str;
1149 THIS->cmdbuf_endp = str + len; 1594 THIS->cmdbuf_endp = str + len;
1150 1595
1596 rxvt_push_locale (THIS->locale);
1151 THIS->cmd_parse (); 1597 THIS->cmd_parse ();
1598 rxvt_pop_locale ();
1152 1599
1153 THIS->cmdbuf_ptr = old_cmdbuf_ptr; 1600 THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1154 THIS->cmdbuf_endp = old_cmdbuf_endp; 1601 THIS->cmdbuf_endp = old_cmdbuf_endp;
1155} 1602}
1156 1603

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines