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.35 by root, Sat Jan 7 04:19:43 2006 UTC vs.
Revision 1.72 by root, Wed Jan 18 08:33:34 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 "-e"
408 "BEGIN {"
409 " urxvt->bootstrap;"
410 " unshift @INC, '" LIBDIR "';"
411 "}"
412 ""
413 "use urxvt;"
395 }; 414 };
396 415
397 perl = perl_alloc (); 416 perl = perl_alloc ();
398 perl_construct (perl); 417 perl_construct (perl);
399 418
404 423
405 perl_destruct (perl); 424 perl_destruct (perl);
406 perl_free (perl); 425 perl_free (perl);
407 perl = 0; 426 perl = 0;
408 } 427 }
428
429 swap (perl_environ, environ);
430
431 rxvt_pop_locale ();
432 }
433
434 if (perl)
435 {
436 // runs outside of perls ENV
437 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
438 hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
439 }
440}
441
442static void
443ungrab (rxvt_term *THIS)
444{
445 if (THIS->perl.grabtime)
446 {
447 XUngrabKeyboard (THIS->display->display, THIS->perl.grabtime);
448 XUngrabPointer (THIS->display->display, THIS->perl.grabtime);
449 THIS->perl.grabtime = 0;
450 }
451}
452
453static void
454swap_overlays (rxvt_term *term)
455{
456 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
457
458 if (HvKEYS (hv))
459 {
460 hv_iterinit (hv);
461
462 while (HE *he = hv_iternext (hv))
463 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
409 } 464 }
410} 465}
411 466
412bool 467bool
413rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...) 468rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
414{ 469{
415 if (!perl) 470 if (!perl || !term->perl.self)
416 return false; 471 return false;
417 472
418 if (htype == HOOK_INIT) // first hook ever called 473 // pre-handling of some events
419 { 474 if (htype == HOOK_REFRESH_END)
420 term->self = (void *)newSVptr ((void *)term, "urxvt::term"); 475 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 476
433 if (HvKEYS (hv)) 477 swap (perl_environ, environ);
434 {
435 hv_iterinit (hv);
436 478
437 while (HE *he = hv_iternext (hv)) 479 bool event_consumed;
438 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
439 }
440 }
441 else if (!should_invoke [htype])
442 return false;
443 480
444 dSP; 481 if (htype == HOOK_INIT || htype == HOOK_DESTROY // must be called always
445 va_list ap; 482 || term->perl.should_invoke [htype])
446 483 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 { 484 {
485 dSP;
486 va_list ap;
487
488 va_start (ap, htype);
489
490 ENTER;
491 SAVETMPS;
492
493 PUSHMARK (SP);
494
495 XPUSHs (sv_2mortal (newSVterm (term)));
496 XPUSHs (sv_2mortal (newSViv (htype)));
497
498 for (;;) {
499 data_type dt = (data_type)va_arg (ap, int);
500
501 switch (dt)
502 {
462 case DT_INT: 503 case DT_INT:
463 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int)))); 504 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int))));
464 break; 505 break;
465 506
466 case DT_LONG: 507 case DT_LONG:
467 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long)))); 508 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
468 break; 509 break;
469 510
470 case DT_STR: 511 case DT_STR:
471 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0))); 512 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
472 break; 513 break;
473 514
474 case DT_STR_LEN: 515 case DT_STR_LEN:
475 { 516 {
476 char *str = va_arg (ap, char *); 517 char *str = va_arg (ap, char *);
477 int len = va_arg (ap, int); 518 int len = va_arg (ap, int);
478 519
479 XPUSHs (sv_2mortal (newSVpvn (str, len))); 520 XPUSHs (sv_2mortal (newSVpvn (str, len)));
480 } 521 }
481 break; 522 break;
482 523
483 case DT_WCS_LEN: 524 case DT_WCS_LEN:
484 { 525 {
485 wchar_t *wstr = va_arg (ap, wchar_t *); 526 wchar_t *wstr = va_arg (ap, wchar_t *);
486 int wlen = va_arg (ap, int); 527 int wlen = va_arg (ap, int);
487 528
488 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen))); 529 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen)));
489 } 530 }
490 break; 531 break;
491 532
492 case DT_XEVENT: 533 case DT_XEVENT:
493 { 534 {
494 XEvent *xe = va_arg (ap, XEvent *); 535 XEvent *xe = va_arg (ap, XEvent *);
495 HV *hv = newHV (); 536 HV *hv = newHV ();
496 537
497# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0) 538# 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) 539# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0)
499# undef set 540# undef set
500 541
501 setiv (type, xe->type); 542 setiv (type, xe->type);
502 setiv (send_event, xe->xany.send_event); 543 setiv (send_event, xe->xany.send_event);
503 setiv (serial, xe->xany.serial); 544 setiv (serial, xe->xany.serial);
504 545
505 switch (xe->type) 546 switch (xe->type)
506 { 547 {
507 case KeyPress: 548 case KeyPress:
508 case KeyRelease: 549 case KeyRelease:
509 case ButtonPress: 550 case ButtonPress:
510 case ButtonRelease: 551 case ButtonRelease:
511 case MotionNotify: 552 case MotionNotify:
512 setiv (time, xe->xmotion.time); 553 setiv (time, xe->xmotion.time);
513 setiv (x, xe->xmotion.x); 554 setiv (x, xe->xmotion.x);
514 setiv (y, xe->xmotion.y); 555 setiv (y, xe->xmotion.y);
515 setiv (row, xe->xmotion.y / term->fheight); 556 setiv (row, xe->xmotion.y / term->fheight);
516 setiv (col, xe->xmotion.x / term->fwidth); 557 setiv (col, xe->xmotion.x / term->fwidth);
517 setiv (x_root, xe->xmotion.x_root); 558 setiv (x_root, xe->xmotion.x_root);
518 setiv (y_root, xe->xmotion.y_root); 559 setiv (y_root, xe->xmotion.y_root);
519 setiv (state, xe->xmotion.state); 560 setiv (state, xe->xmotion.state);
561 break;
562 }
563
564 switch (xe->type)
565 {
566 case KeyPress:
567 case KeyRelease:
568 setiv (keycode, xe->xkey.keycode);
569 break;
570
571 case ButtonPress:
572 case ButtonRelease:
573 setiv (button, xe->xbutton.button);
574 break;
575
576 case MotionNotify:
577 setiv (is_hint, xe->xmotion.is_hint);
578 break;
579 }
580
581 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
582 }
520 break; 583 break;
584
585 case DT_END:
586 goto call;
587
588 default:
589 rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
521 } 590 }
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 } 591 }
542 break;
543 592
544 case DT_END: 593 call:
545 {
546 va_end (ap); 594 va_end (ap);
547 595
548 PUTBACK; 596 PUTBACK;
549 int count = call_pv ("urxvt::invoke", G_ARRAY | G_EVAL); 597 int count = call_pv ("urxvt::invoke", G_ARRAY | G_EVAL);
550 SPAGAIN; 598 SPAGAIN;
551 599
552 if (count) 600 if (count)
553 { 601 {
554 SV *status = POPs; 602 SV *status = POPs;
555 count = SvTRUE (status); 603 count = SvTRUE (status);
556 } 604 }
557 605
558 PUTBACK; 606 PUTBACK;
559 FREETMPS; 607 FREETMPS;
560 LEAVE; 608 LEAVE;
561 609
562 if (SvTRUE (ERRSV)) 610 if (SvTRUE (ERRSV))
611 {
563 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV)); 612 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
564 613 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 } 614 }
570 615
571 return count; 616 event_consumed = !!count;
572 }
573
574 default:
575 rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
576 } 617 }
618 catch (...)
619 {
620 swap (perl_environ, environ);
621 throw;
622 }
623 else
624 event_consumed = false;
625
626 // post-handling of some events
627 if (htype == HOOK_REFRESH_BEGIN)
628 swap_overlays (term);
629 else if (htype == HOOK_DESTROY)
630 {
631 clearSVptr ((SV *)term->perl.self);
632 SvREFCNT_dec ((SV *)term->perl.self);
577 } 633 }
634
635 swap (perl_environ, environ);
636
637 return event_consumed;
578} 638}
579 639
580///////////////////////////////////////////////////////////////////////////// 640/////////////////////////////////////////////////////////////////////////////
581 641
582MODULE = urxvt PACKAGE = urxvt 642MODULE = urxvt PACKAGE = urxvt
583 643
584PROTOTYPES: ENABLE 644PROTOTYPES: ENABLE
585 645
586BOOT: 646BOOT:
587{ 647{
588# define export_const(name) newCONSTSUB (gv_stashpv ("urxvt", 1), # name, newSViv (name)); 648 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
649 sv_setsv (get_sv ("urxvt::RESNAME", 1), newSVpvn (RESNAME, sizeof (RESNAME) - 1));
650 sv_setsv (get_sv ("urxvt::RESCLASS", 1), newSVpvn (RESCLASS, sizeof (RESCLASS) - 1));
651 sv_setsv (get_sv ("urxvt::RXVTNAME", 1), newSVpvn (RXVTNAME, sizeof (RXVTNAME) - 1));
652
589 AV *hookname = get_av ("urxvt::HOOKNAME", 1); 653 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
590# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0)); 654# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
591# include "hookinc.h" 655# include "hookinc.h"
592# undef def 656# undef def
593 657
658 HV *option = get_hv ("urxvt::OPTION", 1);
659# define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
660# define nodef(name)
661# include "optinc.h"
662# undef nodef
663# undef def
664
665 HV *stash = gv_stashpv ("urxvt", 1);
666 struct {
667 const char *name;
668 IV iv;
669 } *civ, const_iv[] = {
670# define const_iv(name) { # name, (IV)name }
594 export_const (DEFAULT_RSTYLE); 671 const_iv (DEFAULT_RSTYLE),
595 export_const (OVERLAY_RSTYLE); 672 const_iv (OVERLAY_RSTYLE),
596 export_const (RS_Bold); 673 const_iv (RS_Bold),
597 export_const (RS_Italic); 674 const_iv (RS_Italic),
598 export_const (RS_Blink); 675 const_iv (RS_Blink),
599 export_const (RS_RVid); 676 const_iv (RS_RVid),
600 export_const (RS_Uline); 677 const_iv (RS_Uline),
601 678
602 sv_setpv (get_sv ("urxvt::LIBDIR", 1), LIBDIR); 679 const_iv (CurrentTime),
603} 680 const_iv (ShiftMask),
681 const_iv (LockMask),
682 const_iv (ControlMask),
683 const_iv (Mod1Mask),
684 const_iv (Mod2Mask),
685 const_iv (Mod3Mask),
686 const_iv (Mod4Mask),
687 const_iv (Mod5Mask),
688 const_iv (Button1Mask),
689 const_iv (Button2Mask),
690 const_iv (Button3Mask),
691 const_iv (Button4Mask),
692 const_iv (Button5Mask),
693 const_iv (AnyModifier),
604 694
605SV * 695 const_iv (EVENT_NONE),
606new (...) 696 const_iv (EVENT_READ),
607 CODE: 697 const_iv (EVENT_WRITE),
608{
609 stringvec *argv = new stringvec;
610 bool success;
611 698
612 for (int i = 0; i < items ;i++) 699 const_iv (NoEventMask),
613 argv->push_back (strdup (SvPVbyte_nolen (ST (i)))); 700 const_iv (KeyPressMask),
701 const_iv (KeyReleaseMask),
702 const_iv (ButtonPressMask),
703 const_iv (ButtonReleaseMask),
704 const_iv (EnterWindowMask),
705 const_iv (LeaveWindowMask),
706 const_iv (PointerMotionMask),
707 const_iv (PointerMotionHintMask),
708 const_iv (Button1MotionMask),
709 const_iv (Button2MotionMask),
710 const_iv (Button3MotionMask),
711 const_iv (Button4MotionMask),
712 const_iv (Button5MotionMask),
713 const_iv (ButtonMotionMask),
714 const_iv (KeymapStateMask),
715 const_iv (ExposureMask),
716 const_iv (VisibilityChangeMask),
717 const_iv (StructureNotifyMask),
718 const_iv (ResizeRedirectMask),
719 const_iv (SubstructureNotifyMask),
720 const_iv (SubstructureRedirectMask),
721 const_iv (FocusChangeMask),
722 const_iv (PropertyChangeMask),
723 const_iv (ColormapChangeMask),
724 const_iv (OwnerGrabButtonMask),
614 725
615 rxvt_term *term = new rxvt_term; 726 const_iv (KeyPress),
727 const_iv (KeyRelease),
728 const_iv (ButtonPress),
729 const_iv (ButtonRelease),
730 const_iv (MotionNotify),
731 const_iv (EnterNotify),
732 const_iv (LeaveNotify),
733 const_iv (FocusIn),
734 const_iv (FocusOut),
735 const_iv (KeymapNotify),
736 const_iv (Expose),
737 const_iv (GraphicsExpose),
738 const_iv (NoExpose),
739 const_iv (VisibilityNotify),
740 const_iv (CreateNotify),
741 const_iv (DestroyNotify),
742 const_iv (UnmapNotify),
743 const_iv (MapNotify),
744 const_iv (MapRequest),
745 const_iv (ReparentNotify),
746 const_iv (ConfigureNotify),
747 const_iv (ConfigureRequest),
748 const_iv (GravityNotify),
749 const_iv (ResizeRequest),
750 const_iv (CirculateNotify),
751 const_iv (CirculateRequest),
752 const_iv (PropertyNotify),
753 const_iv (SelectionClear),
754 const_iv (SelectionRequest),
755 const_iv (SelectionNotify),
756 const_iv (ColormapNotify),
757 const_iv (ClientMessage),
758 const_iv (MappingNotify),
759 };
616 760
617 term->argv = argv; 761 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]);
618 762 civ-- > const_iv; )
619 try 763 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} 764}
632 OUTPUT:
633 RETVAL
634
635void
636set_should_invoke (int htype, int value)
637 CODE:
638 rxvt_perl.should_invoke [htype] = value;
639 765
640void 766void
641warn (const char *msg) 767warn (const char *msg)
642 CODE: 768 CODE:
643 rxvt_warn ("%s", msg); 769 rxvt_warn ("%s", msg);
644 770
645void 771void
646fatal (const char *msg) 772fatal (const char *msg)
647 CODE: 773 CODE:
648 rxvt_fatal ("%s", msg); 774 rxvt_fatal ("%s", msg);
775
776void
777_exit (int status)
649 778
650NV 779NV
651NOW () 780NOW ()
652 CODE: 781 CODE:
653 RETVAL = NOW; 782 RETVAL = NOW;
702 OUTPUT: 831 OUTPUT:
703 RETVAL 832 RETVAL
704 833
705MODULE = urxvt PACKAGE = urxvt::term 834MODULE = urxvt PACKAGE = urxvt::term
706 835
836SV *
837_new (...)
838 CODE:
839{
840 if (items < 1 || !SvROK (ST (0)) || SvTYPE (SvRV (ST (0))) != SVt_PVAV)
841 croak ("first argument to urxvt::term->_new must be arrayref");
842
843 rxvt_term *term = new rxvt_term;
844
845 term->argv = new stringvec;
846 term->envv = new stringvec;
847
848 for (int i = 1; i < items; i++)
849 term->argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
850
851 AV *envv = (AV *)SvRV (ST (0));
852 for (int i = av_len (envv) + 1; i--; )
853 term->envv->push_back (strdup (SvPVbyte_nolen (*av_fetch (envv, i, 1))));
854
855 term->envv->push_back (0);
856
857 bool success;
858
859 try
860 {
861 success = term->init (term->argv->size (), term->argv->begin ());
862 }
863 catch (const class rxvt_failure_exception &e)
864 {
865 success = false;
866 }
867
868 if (!success)
869 {
870 term->destroy ();
871 croak ("error while initializing new terminal instance");
872 }
873
874 RETVAL = term && term->perl.self
875 ? newSVterm (term) : &PL_sv_undef;
876}
877 OUTPUT:
878 RETVAL
879
707void 880void
708rxvt_term::destroy () 881rxvt_term::destroy ()
709 882
883#if ENABLE_PERL_FRILLS
884
710void 885void
711rxvt_term::grab (int eventtime) 886rxvt_term::XListProperties (U32 window)
712 CODE: 887 PPCODE:
713{ 888{
714return; 889 int count;
715 XGrabPointer (THIS->display->display, THIS->vt, 0, 890 Atom *props = XListProperties (THIS->display->display, (Window)window, &count);
891
892 EXTEND (SP, count);
893 while (count--)
894 PUSHs (newSVuv ((U32)props [count]));
895
896 XFree (props);
897}
898
899void
900rxvt_term::XGetWindowProperty (U32 window, U32 property)
901 PPCODE:
902{
903 Atom type;
904 int format;
905 unsigned long nitems;
906 unsigned long bytes_after;
907 unsigned char *prop;
908 XGetWindowProperty (THIS->display->display, (Window)window, (Atom)property,
909 0, 1<<30, 0, AnyPropertyType,
910 &type, &format, &nitems, &bytes_after, &prop);
911 if (type != None)
912 {
913 EXTEND (SP, 3);
914 PUSHs (newSVuv ((U32)type));
915 PUSHs (newSViv (format));
916 PUSHs (newSVpvn ((char *)prop, nitems * format / 8));
917 XFree (prop);
918 }
919}
920
921void
922rxvt_term::XChangeWindowProperty (U32 window, U32 property, U32 type, int format, SV *data)
923 CODE:
924{
925 STRLEN len;
926 char *data_ = SvPVbyte (data, len);
927
928 XChangeProperty (THIS->display->display, (Window)window, (Atom)property,
929 type, format, PropModeReplace,
930 (unsigned char *)data, len * 8 / format);
931}
932
933void
934rxvt_term::XDeleteProperty (U32 window, U32 property)
935 CODE:
936 XDeleteProperty (THIS->display->display, (Window)window, (Atom)property);
937
938U32
939rxvt_term::DefaultRootWindow ()
940 CODE:
941 RETVAL = (U32)THIS->display->root;
942 OUTPUT:
943 RETVAL
944
945U32
946rxvt_term::XCreateSimpleWindow (U32 parent, int x, int y, unsigned int width, unsigned int height)
947 CODE:
948 RETVAL = XCreateSimpleWindow (THIS->display->display, (Window)parent,
949 x, y, width, height, 0,
950 THIS->pix_colors_focused[Color_border],
951 THIS->pix_colors_focused[Color_border]);
952 OUTPUT:
953 RETVAL
954
955void
956rxvt_term::XReparentWindow (U32 window, U32 parent, int x = 0, int y = 0)
957 CODE:
958 XReparentWindow (THIS->display->display, (Window)window, (Window)parent, x, y);
959
960void
961rxvt_term::XMapWindow (U32 window)
962 CODE:
963 XMapWindow (THIS->display->display, (Window)window);
964
965void
966rxvt_term::XUnmapWindow (U32 window)
967 CODE:
968 XUnmapWindow (THIS->display->display, (Window)window);
969
970#endif
971
972void
973rxvt_term::set_should_invoke (int htype, int inc)
974 CODE:
975 THIS->perl.should_invoke [htype] += inc;
976
977void
978rxvt_term::grab_button (int button, U32 modifiers)
979 CODE:
980 XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
716 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask, 981 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
717 GrabModeAsync, GrabModeAsync, None, None, eventtime); 982 GrabModeSync, GrabModeSync, None, GRAB_CURSOR);
983
984bool
985rxvt_term::grab (U32 eventtime, int sync = 0)
986 CODE:
987{
988 int mode = sync ? GrabModeSync : GrabModeAsync;
989
990 THIS->perl.grabtime = 0;
991
992 if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
993 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
994 mode, mode, None, GRAB_CURSOR, eventtime))
718 XGrabKeyboard (THIS->display->display, THIS->vt, 0, GrabModeAsync, GrabModeAsync, eventtime); 995 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
996 THIS->perl.grabtime = eventtime;
997 else
998 XUngrabPointer (THIS->display->display, eventtime);
999
1000 RETVAL = !!THIS->perl.grabtime;
719} 1001}
1002 OUTPUT:
1003 RETVAL
1004
1005void
1006rxvt_term::allow_events_async ()
1007 CODE:
1008 XAllowEvents (THIS->display->display, AsyncBoth, THIS->perl.grabtime);
1009
1010void
1011rxvt_term::allow_events_sync ()
1012 CODE:
1013 XAllowEvents (THIS->display->display, SyncBoth, THIS->perl.grabtime);
1014
1015void
1016rxvt_term::allow_events_replay ()
1017 CODE:
1018 XAllowEvents (THIS->display->display, ReplayPointer, THIS->perl.grabtime);
1019 XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime);
1020
1021void
1022rxvt_term::ungrab ()
1023 CODE:
1024 ungrab (THIS);
720 1025
721int 1026int
722rxvt_term::strwidth (SV *str) 1027rxvt_term::strwidth (SV *str)
723 CODE: 1028 CODE:
724{ 1029{
766 free (wstr); 1071 free (wstr);
767} 1072}
768 OUTPUT: 1073 OUTPUT:
769 RETVAL 1074 RETVAL
770 1075
771# very portable, especially on objects as opposed to pods 1076#define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
772#define TERM_OFFSET(sym) (((char *)&((TermWin_t *)0)->sym) - (char *)(TermWin_t *)0)
773 1077
774#define TERM_OFFSET_width TERM_OFFSET(width) 1078#define TERM_OFFSET_width TERM_OFFSET(width)
775#define TERM_OFFSET_height TERM_OFFSET(height) 1079#define TERM_OFFSET_height TERM_OFFSET(height)
776#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth) 1080#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
777#define TERM_OFFSET_fheight TERM_OFFSET(fheight) 1081#define TERM_OFFSET_fheight TERM_OFFSET(fheight)
780#define TERM_OFFSET_ncol TERM_OFFSET(ncol) 1084#define TERM_OFFSET_ncol TERM_OFFSET(ncol)
781#define TERM_OFFSET_focus TERM_OFFSET(focus) 1085#define TERM_OFFSET_focus TERM_OFFSET(focus)
782#define TERM_OFFSET_mapped TERM_OFFSET(mapped) 1086#define TERM_OFFSET_mapped TERM_OFFSET(mapped)
783#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines) 1087#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines)
784#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows) 1088#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
785#define TERM_OFFSET_nsaved TERM_OFFSET(nsaved) 1089#define TERM_OFFSET_top_row TERM_OFFSET(top_row)
786 1090
787int 1091int
788rxvt_term::width () 1092rxvt_term::width ()
789 ALIAS: 1093 ALIAS:
790 width = TERM_OFFSET_width 1094 width = TERM_OFFSET_width
796 ncol = TERM_OFFSET_ncol 1100 ncol = TERM_OFFSET_ncol
797 focus = TERM_OFFSET_focus 1101 focus = TERM_OFFSET_focus
798 mapped = TERM_OFFSET_mapped 1102 mapped = TERM_OFFSET_mapped
799 saveLines = TERM_OFFSET_saveLines 1103 saveLines = TERM_OFFSET_saveLines
800 total_rows = TERM_OFFSET_total_rows 1104 total_rows = TERM_OFFSET_total_rows
801 nsaved = TERM_OFFSET_nsaved 1105 top_row = TERM_OFFSET_top_row
802 CODE: 1106 CODE:
803 RETVAL = *(int *)((char *)THIS + ix); 1107 RETVAL = *(int *)((char *)THIS + ix);
804 OUTPUT: 1108 OUTPUT:
1109 RETVAL
1110
1111unsigned int
1112rxvt_term::ModLevel3Mask ()
1113 ALIAS:
1114 ModLevel3Mask = 0
1115 ModMetaMask = 1
1116 ModNumLockMask = 2
1117 CODE:
1118 switch (ix)
1119 {
1120 case 0: RETVAL = THIS->ModLevel3Mask; break;
1121 case 1: RETVAL = THIS->ModMetaMask; break;
1122 case 2: RETVAL = THIS->ModNumLockMask; break;
1123 }
1124 OUTPUT:
1125 RETVAL
1126
1127char *
1128rxvt_term::display_id ()
1129 ALIAS:
1130 display_id = 0
1131 locale = 1
1132 CODE:
1133 switch (ix)
1134 {
1135 case 0: RETVAL = THIS->display->id; break;
1136 case 1: RETVAL = THIS->locale; break;
1137 }
1138 OUTPUT:
1139 RETVAL
1140
1141SV *
1142rxvt_term::_env ()
1143 CODE:
1144{
1145 if (THIS->envv)
1146 {
1147 AV *av = newAV ();
1148
1149 for (char **i = THIS->envv->begin (); i != THIS->envv->end (); ++i)
1150 if (*i)
1151 av_push (av, newSVpv (*i, 0));
1152
1153 RETVAL = newRV_noinc ((SV *)av);
1154 }
1155 else
1156 RETVAL = &PL_sv_undef;
1157}
1158 OUTPUT:
1159 RETVAL
1160
1161int
1162rxvt_term::pty_ev_events (int events = EVENT_UNDEF)
1163 CODE:
1164 RETVAL = THIS->pty_ev.events;
1165 if (events != EVENT_UNDEF)
1166 THIS->pty_ev.set (events);
1167 OUTPUT:
805 RETVAL 1168 RETVAL
806 1169
807U32 1170U32
808rxvt_term::parent () 1171rxvt_term::parent ()
809 CODE: 1172 CODE:
816 CODE: 1179 CODE:
817 RETVAL = (U32)THIS->vt; 1180 RETVAL = (U32)THIS->vt;
818 OUTPUT: 1181 OUTPUT:
819 RETVAL 1182 RETVAL
820 1183
1184void
1185rxvt_term::vt_emask_add (U32 emask)
1186 CODE:
1187 THIS->vt_emask_perl |= emask;
1188 THIS->vt_select_input ();
1189
821U32 1190U32
822rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle) 1191rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
823 CODE: 1192 CODE:
824{
825 RETVAL = THIS->rstyle; 1193 RETVAL = THIS->rstyle;
826 THIS->rstyle = new_rstyle; 1194 THIS->rstyle = new_rstyle;
827}
828 OUTPUT: 1195 OUTPUT:
829 RETVAL 1196 RETVAL
830 1197
831int 1198int
832rxvt_term::view_start (int newval = -1) 1199rxvt_term::view_start (int newval = 1)
1200 PROTOTYPE: $;$
833 CODE: 1201 CODE:
834{ 1202{
835 RETVAL = THIS->view_start; 1203 RETVAL = THIS->view_start;
836 1204
837 if (newval >= 0) 1205 if (newval <= 0)
838 { 1206 THIS->scr_changeview (max (newval, THIS->top_row));
839 THIS->view_start = min (newval, THIS->nsaved);
840 THIS->scr_changeview (RETVAL);
841 }
842} 1207}
843 OUTPUT: 1208 OUTPUT:
844 RETVAL 1209 RETVAL
845 1210
846void 1211void
850 1215
851void 1216void
852rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS) 1217rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
853 PPCODE: 1218 PPCODE:
854{ 1219{
855 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1220 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
856 XSRETURN_EMPTY; 1221 XSRETURN_EMPTY;
857 1222
858 line_t &l = ROW(row_number); 1223 line_t &l = ROW(row_number);
859 1224
860 if (GIMME_V != G_VOID) 1225 if (GIMME_V != G_VOID)
893 1258
894void 1259void
895rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS) 1260rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
896 PPCODE: 1261 PPCODE:
897{ 1262{
898 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1263 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
899 XSRETURN_EMPTY; 1264 XSRETURN_EMPTY;
900 1265
901 line_t &l = ROW(row_number); 1266 line_t &l = ROW(row_number);
902 1267
903 if (GIMME_V != G_VOID) 1268 if (GIMME_V != G_VOID)
933 1298
934int 1299int
935rxvt_term::ROW_l (int row_number, int new_length = -1) 1300rxvt_term::ROW_l (int row_number, int new_length = -1)
936 CODE: 1301 CODE:
937{ 1302{
938 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1303 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
939 XSRETURN_EMPTY; 1304 XSRETURN_EMPTY;
940 1305
941 line_t &l = ROW(row_number); 1306 line_t &l = ROW(row_number);
942 RETVAL = l.l; 1307 RETVAL = l.l;
943 1308
949 1314
950bool 1315bool
951rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1) 1316rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
952 CODE: 1317 CODE:
953{ 1318{
954 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1319 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
955 XSRETURN_EMPTY; 1320 XSRETURN_EMPTY;
956 1321
957 line_t &l = ROW(row_number); 1322 line_t &l = ROW(row_number);
958 RETVAL = l.is_longer (); 1323 RETVAL = l.is_longer ();
959 1324
1076 else 1441 else
1077 THIS->rs [index] = 0; 1442 THIS->rs [index] = 0;
1078 } 1443 }
1079} 1444}
1080 1445
1446const char *
1447rxvt_term::x_resource (const char *name)
1448
1449bool
1450rxvt_term::option (U32 optval, int set = -1)
1451 CODE:
1452{
1453 RETVAL = THIS->options & optval;
1454
1455 if (set >= 0)
1456 {
1457 if (set)
1458 THIS->options |= optval;
1459 else
1460 THIS->options &= ~optval;
1461
1462 switch (optval)
1463 {
1464 case Opt_skipBuiltinGlyphs:
1465 THIS->set_fonts ();
1466 THIS->scr_remap_chars ();
1467 THIS->scr_touch (true);
1468 THIS->want_refresh = 1;
1469 break;
1470
1471 case Opt_cursorUnderline:
1472 THIS->want_refresh = 1;
1473 break;
1474
1475# case Opt_scrollBar_floating:
1476# case Opt_scrollBar_right:
1477# THIS->resize_all_windows (THIS->width, THIS->height, 1);
1478# break;
1479 }
1480 }
1481}
1482 OUTPUT:
1483 RETVAL
1484
1485bool
1486rxvt_term::parse_keysym (char *keysym, char *str)
1487 CODE:
1488 RETVAL = 0 < THIS->parse_keysym (keysym, str);
1489 THIS->keyboard->register_done ();
1490 OUTPUT:
1491 RETVAL
1492
1081void 1493void
1082rxvt_term::cur (...) 1494rxvt_term::screen_cur (...)
1083 PROTOTYPE: $;$$ 1495 PROTOTYPE: $;$$
1084 ALIAS: 1496 ALIAS:
1085 screen_cur = 0 1497 screen_cur = 0
1086 selection_beg = 1 1498 selection_beg = 1
1087 selection_end = 2 1499 selection_end = 2
1100 PUSHs (sv_2mortal (newSViv (rc.col))); 1512 PUSHs (sv_2mortal (newSViv (rc.col)));
1101 } 1513 }
1102 1514
1103 if (items == 3) 1515 if (items == 3)
1104 { 1516 {
1105 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1); 1517 rc.row = clamp (SvIV (ST (1)), THIS->top_row, THIS->nrow - 1);
1106 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1); 1518 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
1107 1519
1108 if (ix) 1520 if (ix)
1109 THIS->want_refresh = 1; 1521 THIS->want_refresh = 1;
1110 } 1522 }
1111} 1523}
1112 1524
1525char
1526rxvt_term::cur_charset ()
1527 CODE:
1528 RETVAL = THIS->charsets [THIS->screen.charset];
1529 OUTPUT:
1530 RETVAL
1531
1532#void
1533#rxvt_term::selection_clear ()
1534
1535void
1536rxvt_term::selection_make (U32 eventtime, bool rect = false)
1537 CODE:
1538 THIS->selection.op = SELECTION_CONT;
1539 THIS->selection.rect = rect;
1540 THIS->selection_make (eventtime);
1541
1113int 1542int
1114rxvt_term::selection_grab (int eventtime = CurrentTime) 1543rxvt_term::selection_grab (U32 eventtime)
1115 1544
1116void 1545void
1117rxvt_term::selection (SV *newtext = 0) 1546rxvt_term::selection (SV *newtext = 0)
1118 PPCODE: 1547 PPCODE:
1119{ 1548{
1120 if (GIMME_V != G_VOID) 1549 if (GIMME_V != G_VOID)
1550 XPUSHs (THIS->selection.text
1121 XPUSHs (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len))); 1551 ? sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len))
1552 : &PL_sv_undef);
1122 1553
1123 if (newtext) 1554 if (newtext)
1124 { 1555 {
1125 free (THIS->selection.text); 1556 free (THIS->selection.text);
1126 1557
1127 THIS->selection.text = sv2wcs (newtext); 1558 THIS->selection.text = sv2wcs (newtext);
1128 THIS->selection.len = wcslen (THIS->selection.text); 1559 THIS->selection.len = wcslen (THIS->selection.text);
1129 } 1560 }
1130} 1561}
1562
1563void
1564rxvt_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)
1565
1566void
1567rxvt_term::scr_xor_span (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle = RS_RVid)
1568
1569void
1570rxvt_term::scr_bell ()
1131 1571
1132void 1572void
1133rxvt_term::scr_add_lines (SV *string) 1573rxvt_term::scr_add_lines (SV *string)
1134 CODE: 1574 CODE:
1135{ 1575{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines