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.9 by root, Tue Jan 3 01:15:00 2006 UTC vs.
Revision 1.40 by root, Sun Jan 8 00:07:18 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"
51 char *str = SvPVutf8 (sv, len); 52 char *str = SvPVutf8 (sv, len);
52 return rxvt_utf8towcs (str, len); 53 return rxvt_utf8towcs (str, len);
53} 54}
54 55
55static SV * 56static SV *
57wcs2sv (wchar_t *wstr, int len = -1)
58{
59 char *str = rxvt_wcstoutf8 (wstr, len);
60
61 SV *sv = newSVpv (str, 0);
62 SvUTF8_on (sv);
63 free (str);
64
65 return sv;
66}
67
68static SV *
56new_ref (HV *hv, const char *klass) 69new_ref (HV *hv, const char *klass)
57{ 70{
58 return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1)); 71 return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1));
59} 72}
60 73
61//TODO: use magic 74//TODO: use magic
62static SV * 75static SV *
63newSVptr (void *ptr, const char *klass) 76newSVptr (void *ptr, const char *klass)
64{ 77{
65 HV *hv = newHV (); 78 HV *hv = newHV ();
66 hv_store (hv, "_ptr", 4, newSViv ((long)ptr), 0); 79 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
67 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1)); 80 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
81}
82
83static void
84clearSVptr (SV *sv)
85{
86 if (SvROK (sv))
87 sv = SvRV (sv);
88
89 hv_clear ((HV *)sv);
90 sv_unmagic (sv, PERL_MAGIC_ext);
68} 91}
69 92
70static long 93static long
71SvPTR (SV *sv, const char *klass) 94SvPTR (SV *sv, const char *klass)
72{ 95{
73 if (!sv_derived_from (sv, klass)) 96 if (!sv_derived_from (sv, klass))
74 croak ("object of type %s expected", klass); 97 croak ("object of type %s expected", klass);
75 98
76 IV iv = SvIV (*hv_fetch ((HV *)SvRV (sv), "_ptr", 4, 1)); 99 MAGIC *mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
77 100
78 if (!iv) 101 if (!mg)
79 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);
80 103
81 return (long)iv; 104 return (long)mg->mg_ptr;
82} 105}
83 106
84#define newSVterm(term) SvREFCNT_inc ((SV *)term->self) 107#define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
85#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term") 108#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term")
86 109
87///////////////////////////////////////////////////////////////////////////// 110/////////////////////////////////////////////////////////////////////////////
88 111
89struct perl_watcher 112struct perl_watcher
139#define newSVtimer(timer) new_ref (timer->self, "urxvt::timer") 162#define newSVtimer(timer) new_ref (timer->self, "urxvt::timer")
140#define SvTIMER(sv) (timer *)SvPTR (sv, "urxvt::timer") 163#define SvTIMER(sv) (timer *)SvPTR (sv, "urxvt::timer")
141 164
142struct timer : time_watcher, perl_watcher 165struct timer : time_watcher, perl_watcher
143{ 166{
167 tstamp interval;
168
144 timer () 169 timer ()
145 : time_watcher (this, &timer::execute) 170 : time_watcher (this, &timer::execute)
146 { 171 {
147 } 172 }
148 173
149 void execute (time_watcher &w) 174 void execute (time_watcher &w)
150 { 175 {
176 if (interval)
177 start (at + interval);
178
151 invoke ("urxvt::timer", newSVtimer (this)); 179 invoke ("urxvt::timer", newSVtimer (this));
152 } 180 }
153}; 181};
154 182
155#define newSViow(iow) new_ref (iow->self, "urxvt::iow") 183#define newSViow(iow) new_ref (iow->self, "urxvt::iow")
165 void execute (io_watcher &w, short revents) 193 void execute (io_watcher &w, short revents)
166 { 194 {
167 invoke ("urxvt::iow", newSViow (this), revents); 195 invoke ("urxvt::iow", newSViow (this), revents);
168 } 196 }
169}; 197};
198
199/////////////////////////////////////////////////////////////////////////////
200
201#define SvOVERLAY(sv) (overlay *)SvPTR (sv, "urxvt::overlay")
202
203struct overlay {
204 HV *self;
205 rxvt_term *THIS;
206 int x, y, w, h;
207 int border;
208 text_t **text;
209 rend_t **rend;
210
211 overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border);
212 ~overlay ();
213
214 void show ();
215 void hide ();
216
217 void swap ();
218
219 void set (int x, int y, SV *str, SV *rend);
220};
221
222overlay::overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border)
223: THIS(THIS), x(x_), y(y_), w(w_), h(h_), border(border == 2)
224{
225 if (border == 2)
226 {
227 w += 2;
228 h += 2;
229 }
230
231 text = new text_t *[h];
232 rend = new rend_t *[h];
233
234 for (int y = 0; y < h; y++)
235 {
236 text_t *tp = text[y] = new text_t[w];
237 rend_t *rp = rend[y] = new rend_t[w];
238
239 text_t t0, t1, t2;
240 rend_t r = rstyle;
241
242 if (border == 2)
243 {
244 if (y == 0)
245 t0 = 0x2554, t1 = 0x2550, t2 = 0x2557;
246 else if (y < h - 1)
247 t0 = 0x2551, t1 = 0x0020, t2 = 0x2551;
248 else
249 t0 = 0x255a, t1 = 0x2550, t2 = 0x255d;
250
251 *tp++ = t0;
252 *rp++ = r;
253
254 for (int x = w - 2; x-- > 0; )
255 {
256 *tp++ = t1;
257 *rp++ = r;
258 }
259
260 *tp = t2;
261 *rp = r;
262 }
263 else
264 for (int x = w; x-- > 0; )
265 {
266 *tp++ = 0x0020;
267 *rp++ = r;
268 }
269 }
270
271 show ();
272 THIS->want_refresh = 1;
273}
274
275overlay::~overlay ()
276{
277 hide ();
278
279 for (int y = h; y--; )
280 {
281 delete [] text[y];
282 delete [] rend[y];
283 }
284
285 delete [] text;
286 delete [] rend;
287
288 THIS->want_refresh = 1;
289}
290
291void
292overlay::show ()
293{
294 char key[33]; sprintf (key, "%32lx", (long)this);
295
296 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0));
297 hv_store (hv, key, 32, newSViv ((long)this), 0);
298}
299
300void
301overlay::hide ()
302{
303 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
304
305 if (ovs)
306 {
307 char key[33]; sprintf (key, "%32lx", (long)this);
308
309 HV *hv = (HV *)SvRV (*ovs);
310 hv_delete (hv, key, 32, G_DISCARD);
311 }
312}
313
314void overlay::swap ()
315{
316 int ov_x = max (0, min (MOD (x, THIS->ncol), THIS->ncol - w));
317 int ov_y = max (0, min (MOD (y, THIS->nrow), THIS->nrow - h));
318
319 int ov_w = min (w, THIS->ncol - ov_x);
320 int ov_h = min (h, THIS->nrow - ov_y);
321
322 for (int y = ov_h; y--; )
323 {
324 text_t *t1 = text [y];
325 rend_t *r1 = rend [y];
326
327 text_t *t2 = ROW(y + ov_y - THIS->view_start).t + ov_x;
328 rend_t *r2 = ROW(y + ov_y - THIS->view_start).r + ov_x;
329
330 for (int x = ov_w; x--; )
331 {
332 text_t t = *t1; *t1++ = *t2; *t2++ = t;
333 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t));
334 }
335 }
336
337}
338
339void overlay::set (int x, int y, SV *text, SV *rend)
340{
341 x += border;
342 y += border;
343
344 if (!IN_RANGE_EXC (y, 0, h - border))
345 return;
346
347 wchar_t *wtext = sv2wcs (text);
348
349 for (int col = min (wcslen (wtext), w - x - border); col--; )
350 this->text [y][x + col] = wtext [col];
351
352 free (wtext);
353
354 if (rend)
355 {
356 if (!SvROK (rend) || SvTYPE (SvRV (rend)) != SVt_PVAV)
357 croak ("rend must be arrayref");
358
359 AV *av = (AV *)SvRV (rend);
360
361 for (int col = min (av_len (av) + 1, w - x - border); col--; )
362 this->rend [y][x + col] = SvIV (*av_fetch (av, col, 1));
363 }
364
365 THIS->want_refresh = 1;
366}
367
170 368
171///////////////////////////////////////////////////////////////////////////// 369/////////////////////////////////////////////////////////////////////////////
172 370
173struct rxvt_perl_interp rxvt_perl; 371struct rxvt_perl_interp rxvt_perl;
174 372
213} 411}
214 412
215bool 413bool
216rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...) 414rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
217{ 415{
218 if (!perl 416 if (!perl)
219 || (!should_invoke [htype] && htype != HOOK_INIT && htype != HOOK_DESTROY))
220 return false; 417 return false;
221 418
222 if (htype == HOOK_INIT) // first hook ever called 419 if (htype == HOOK_INIT) // first hook ever called
420 {
223 term->self = (void *)newSVptr ((void *)term, "urxvt::term"); 421 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
422 hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
423 }
424 else if (!term->perl.self)
425 return false; // perl not initialized for this instance
426 else if (htype == HOOK_DESTROY)
427 {
428 // handled later
429 }
430 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END)
431 {
432 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
433
434 if (HvKEYS (hv))
435 {
436 hv_iterinit (hv);
437
438 while (HE *he = hv_iternext (hv))
439 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
440 }
441 }
442 else if (!should_invoke [htype])
443 return false;
224 444
225 dSP; 445 dSP;
226 va_list ap; 446 va_list ap;
227 447
228 va_start (ap, htype); 448 va_start (ap, htype);
246 466
247 case DT_LONG: 467 case DT_LONG:
248 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long)))); 468 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
249 break; 469 break;
250 470
251 case DT_STRING: 471 case DT_STR:
252 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0))); 472 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
473 break;
474
475 case DT_STR_LEN:
476 {
477 char *str = va_arg (ap, char *);
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 {
486 wchar_t *wstr = va_arg (ap, wchar_t *);
487 int wlen = va_arg (ap, int);
488
489 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen)));
490 }
491 break;
492
493 case DT_XEVENT:
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 }
253 break; 543 break;
254 544
255 case DT_END: 545 case DT_END:
256 { 546 {
257 va_end (ap); 547 va_end (ap);
273 if (SvTRUE (ERRSV)) 563 if (SvTRUE (ERRSV))
274 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));
275 565
276 if (htype == HOOK_DESTROY) 566 if (htype == HOOK_DESTROY)
277 { 567 {
278 // TODO: clear magic
279 hv_clear ((HV *)SvRV ((SV *)term->self)); 568 clearSVptr ((SV *)term->perl.self);
280 SvREFCNT_dec ((SV *)term->self); 569 SvREFCNT_dec ((SV *)term->perl.self);
281 } 570 }
282 571
283 return count; 572 return count;
284 } 573 }
285 574
295 584
296PROTOTYPES: ENABLE 585PROTOTYPES: ENABLE
297 586
298BOOT: 587BOOT:
299{ 588{
300# define set_hookname(sym) av_store (hookname, PP_CONCAT(HOOK_, sym), newSVpv (PP_STRINGIFY(sym), 0)) 589 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
590
301 AV *hookname = get_av ("urxvt::HOOKNAME", 1); 591 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
302 set_hookname (INIT); 592# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
303 set_hookname (RESET); 593# include "hookinc.h"
304 set_hookname (START); 594# undef def
305 set_hookname (DESTROY);
306 set_hookname (SEL_BEGIN);
307 set_hookname (SEL_EXTEND);
308 set_hookname (SEL_MAKE);
309 set_hookname (SEL_GRAB);
310 set_hookname (FOCUS_IN);
311 set_hookname (FOCUS_OUT);
312 set_hookname (VIEW_CHANGE);
313 set_hookname (SCROLL_BACK);
314 set_hookname (TTY_ACTIVITY);
315 set_hookname (REFRESH_BEGIN);
316 set_hookname (REFRESH_END);
317 set_hookname (KEYBOARD_COMMAND);
318 595
319 newCONSTSUB (gv_stashpv ("urxvt", 1), "DEFAULT_RSTYLE", newSViv (DEFAULT_RSTYLE)); 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
320 602
321 sv_setpv (get_sv ("urxvt::LIBDIR", 1), LIBDIR); 603 HV *stash = gv_stashpv ("urxvt", 1);
604# define export_const_iv(name) newCONSTSUB (stash, # name, newSViv (name));
605 export_const_iv (DEFAULT_RSTYLE);
606 export_const_iv (OVERLAY_RSTYLE);
607 export_const_iv (RS_Bold);
608 export_const_iv (RS_Italic);
609 export_const_iv (RS_Blink);
610 export_const_iv (RS_RVid);
611 export_const_iv (RS_Uline);
612
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);
322} 628}
629
630SV *
631new (...)
632 CODE:
633{
634 stringvec *argv = new stringvec;
635 bool success;
636
637 for (int i = 0; i < items ;i++)
638 argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
639
640 rxvt_term *term = new rxvt_term;
641
642 term->argv = argv;
643
644 try
645 {
646 if (!term->init (argv->size (), argv->begin ()))
647 term = 0;
648 }
649 catch (const class rxvt_failure_exception &e)
650 {
651 term->destroy ();
652 croak ("exception caught while initializing new terminal instance");
653 }
654
655 RETVAL = term && term->perl.self ? newSVterm (term) : &PL_sv_undef;
656}
657 OUTPUT:
658 RETVAL
323 659
324void 660void
325set_should_invoke (int htype, int value) 661set_should_invoke (int htype, int value)
326 CODE: 662 CODE:
327 rxvt_perl.should_invoke [htype] = value; 663 rxvt_perl.should_invoke [htype] = value;
341 CODE: 677 CODE:
342 RETVAL = NOW; 678 RETVAL = NOW;
343 OUTPUT: 679 OUTPUT:
344 RETVAL 680 RETVAL
345 681
682int
683GET_BASEFG (int rend)
684 CODE:
685 RETVAL = GET_BASEFG (rend);
686 OUTPUT:
687 RETVAL
688
689int
690GET_BASEBG (int rend)
691 CODE:
692 RETVAL = GET_BASEBG (rend);
693 OUTPUT:
694 RETVAL
695
696int
697SET_FGCOLOR (int rend, int new_color)
698 CODE:
699 RETVAL = SET_FGCOLOR (rend, new_color);
700 OUTPUT:
701 RETVAL
702
703int
704SET_BGCOLOR (int rend, int new_color)
705 CODE:
706 RETVAL = SET_BGCOLOR (rend, new_color);
707 OUTPUT:
708 RETVAL
709
710int
711GET_CUSTOM (int rend)
712 CODE:
713 RETVAL = (rend && RS_customMask) >> RS_customShift;
714 OUTPUT:
715 RETVAL
716
717int
718SET_CUSTOM (int rend, int new_value)
719 CODE:
720{
721 if (!IN_RANGE_EXC (new_value, 0, RS_customCount))
722 croak ("custom value out of range, must be 0..%d", RS_customCount - 1);
723
724 RETVAL = (rend & ~RS_customMask)
725 | ((new_value << RS_customShift) & RS_customMask);
726}
727 OUTPUT:
728 RETVAL
729
346MODULE = urxvt PACKAGE = urxvt::term 730MODULE = urxvt PACKAGE = urxvt::term
731
732void
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);
347 785
348int 786int
349rxvt_term::strwidth (SV *str) 787rxvt_term::strwidth (SV *str)
350 CODE: 788 CODE:
351{ 789{
387 825
388 rxvt_push_locale (THIS->locale); 826 rxvt_push_locale (THIS->locale);
389 wchar_t *wstr = rxvt_mbstowcs (data, len); 827 wchar_t *wstr = rxvt_mbstowcs (data, len);
390 rxvt_pop_locale (); 828 rxvt_pop_locale ();
391 829
392 char *str = rxvt_wcstoutf8 (wstr); 830 RETVAL = wcs2sv (wstr);
393 free (wstr); 831 free (wstr);
394
395 RETVAL = newSVpv (str, 0);
396 SvUTF8_on (RETVAL);
397 free (str);
398} 832}
399 OUTPUT: 833 OUTPUT:
400 RETVAL 834 RETVAL
401 835
836#define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
837
838#define TERM_OFFSET_width TERM_OFFSET(width)
839#define TERM_OFFSET_height TERM_OFFSET(height)
840#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
841#define TERM_OFFSET_fheight TERM_OFFSET(fheight)
842#define TERM_OFFSET_fbase TERM_OFFSET(fbase)
843#define TERM_OFFSET_nrow TERM_OFFSET(nrow)
844#define TERM_OFFSET_ncol TERM_OFFSET(ncol)
845#define TERM_OFFSET_focus TERM_OFFSET(focus)
846#define TERM_OFFSET_mapped TERM_OFFSET(mapped)
847#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines)
848#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
849#define TERM_OFFSET_nsaved TERM_OFFSET(nsaved)
850
402int 851int
852rxvt_term::width ()
853 ALIAS:
854 width = TERM_OFFSET_width
855 height = TERM_OFFSET_height
856 fwidth = TERM_OFFSET_fwidth
857 fheight = TERM_OFFSET_fheight
858 fbase = TERM_OFFSET_fbase
859 nrow = TERM_OFFSET_nrow
860 ncol = TERM_OFFSET_ncol
861 focus = TERM_OFFSET_focus
862 mapped = TERM_OFFSET_mapped
863 saveLines = TERM_OFFSET_saveLines
864 total_rows = TERM_OFFSET_total_rows
865 nsaved = TERM_OFFSET_nsaved
866 CODE:
867 RETVAL = *(int *)((char *)THIS + ix);
868 OUTPUT:
869 RETVAL
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
403rxvt_term::nsaved () 895rxvt_term::vt ()
404 CODE: 896 CODE:
897 RETVAL = (U32)THIS->vt;
898 OUTPUT:
899 RETVAL
900
901U32
902rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
903 CODE:
904{
405 RETVAL = THIS->nsaved; 905 RETVAL = THIS->rstyle;
906 THIS->rstyle = new_rstyle;
907}
406 OUTPUT: 908 OUTPUT:
407 RETVAL 909 RETVAL
408 910
409int 911int
410rxvt_term::view_start (int newval = -1) 912rxvt_term::view_start (int newval = -1)
411 CODE: 913 CODE:
412{ 914{
419 } 921 }
420} 922}
421 OUTPUT: 923 OUTPUT:
422 RETVAL 924 RETVAL
423 925
424int
425rxvt_term::nrow ()
426 CODE:
427 RETVAL = THIS->nrow;
428 OUTPUT:
429 RETVAL
430
431int
432rxvt_term::ncol ()
433 CODE:
434 RETVAL = THIS->ncol;
435 OUTPUT:
436 RETVAL
437
438void 926void
439rxvt_term::want_refresh () 927rxvt_term::want_refresh ()
440 CODE: 928 CODE:
441 THIS->want_refresh = 1; 929 THIS->want_refresh = 1;
442 930
443void 931void
444rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0) 932rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
445 PPCODE: 933 PPCODE:
446{ 934{
447 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 935 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
448 croak ("row_number number of out range"); 936 XSRETURN_EMPTY;
449 937
450 line_t &l = ROW(row_number); 938 line_t &l = ROW(row_number);
451 939
452 if (GIMME_V != G_VOID) 940 if (GIMME_V != G_VOID)
453 { 941 {
454 wchar_t *wstr = new wchar_t [THIS->ncol]; 942 wchar_t *wstr = new wchar_t [THIS->ncol];
455 943
456 for (int col = 0; col <THIS->ncol; col++) 944 for (int col = 0; col < THIS->ncol; col++)
457 wstr [col] = l.t [col]; 945 wstr [col] = l.t [col];
458 946
459 char *str = rxvt_wcstoutf8 (wstr, THIS->ncol);
460 free (wstr);
461
462 SV *sv = newSVpv (str, 0);
463 SvUTF8_on (sv);
464 XPUSHs (sv_2mortal (sv)); 947 XPUSHs (sv_2mortal (wcs2sv (wstr, THIS->ncol)));
465 free (str); 948
949 delete [] wstr;
466 } 950 }
467 951
468 if (new_text) 952 if (new_text)
469 { 953 {
470 STRLEN slen;
471 char *str = SvPVutf8 (new_text, slen); 954 wchar_t *wstr = sv2wcs (new_text);
472 wchar_t *wstr = rxvt_utf8towcs (str, slen);
473 955
474 int len = wcslen (wstr); 956 int len = min (wcslen (wstr) - start_ofs, max_len);
475 957
476 if (start_col + len > THIS->ncol) 958 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
477 { 959 {
478 free (wstr); 960 free (wstr);
479 croak ("new_text extends beyond right margin"); 961 croak ("new_text extends beyond horizontal margins");
480 } 962 }
481 963
482 for (int col = start_col; col < start_col + len; col++) 964 for (int col = start_col; col < start_col + len; col++)
483 { 965 {
484 l.t [col] = wstr [col - start_col]; 966 l.t [col] = wstr [start_ofs + col - start_col];
485 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col])); 967 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col]));
486 } 968 }
487 969
488 free (wstr); 970 free (wstr);
489 } 971 }
490} 972}
491 973
492void 974void
493rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0) 975rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
494 PPCODE: 976 PPCODE:
495{ 977{
496 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 978 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
497 croak ("row_number number of out range"); 979 XSRETURN_EMPTY;
498 980
499 line_t &l = ROW(row_number); 981 line_t &l = ROW(row_number);
500 982
501 if (GIMME_V != G_VOID) 983 if (GIMME_V != G_VOID)
502 { 984 {
513 { 995 {
514 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV) 996 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV)
515 croak ("new_rend must be arrayref"); 997 croak ("new_rend must be arrayref");
516 998
517 AV *av = (AV *)SvRV (new_rend); 999 AV *av = (AV *)SvRV (new_rend);
518 int len = av_len (av) + 1; 1000 int len = min (av_len (av) + 1 - start_ofs, max_len);
519 1001
520 if (start_col + len > THIS->ncol) 1002 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
521 croak ("new_rend array extends beyond right margin"); 1003 croak ("new_rend array extends beyond horizontal margins");
522 1004
523 for (int col = start_col; col < start_col + len; col++) 1005 for (int col = start_col; col < start_col + len; col++)
524 { 1006 {
525 rend_t r = SvIV (*av_fetch (av, col - start_col, 1)) & ~RS_fontMask; 1007 rend_t r = SvIV (*av_fetch (av, start_ofs + col - start_col, 1)) & ~RS_fontMask;
526 1008
527 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col])); 1009 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col]));
528 } 1010 }
529 } 1011 }
530} 1012}
531 1013
532int 1014int
533rxvt_term::ROW_l (int row_number, int new_length = -2) 1015rxvt_term::ROW_l (int row_number, int new_length = -1)
534 CODE: 1016 CODE:
535{ 1017{
536 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1018 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
537 croak ("row_number number of out range"); 1019 XSRETURN_EMPTY;
538 1020
539 line_t &l = ROW(row_number); 1021 line_t &l = ROW(row_number);
540 RETVAL = l.l; 1022 RETVAL = l.l;
541 1023
542 if (new_length >= -1) 1024 if (new_length >= 0)
543 l.l = new_length; 1025 l.l = new_length;
544} 1026}
545 OUTPUT: 1027 OUTPUT:
546 RETVAL 1028 RETVAL
547 1029
1030bool
1031rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
1032 CODE:
1033{
1034 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1035 XSRETURN_EMPTY;
1036
1037 line_t &l = ROW(row_number);
1038 RETVAL = l.is_longer ();
1039
1040 if (new_is_longer >= 0)
1041 l.is_longer (new_is_longer);
1042}
1043 OUTPUT:
1044 RETVAL
1045
548SV * 1046SV *
549rxvt_term::special_encode (SV *str) 1047rxvt_term::special_encode (SV *string)
550 CODE: 1048 CODE:
551 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
552 1084
553SV * 1085SV *
554rxvt_term::special_decode (SV *str) 1086rxvt_term::special_decode (SV *text)
555 CODE: 1087 CODE:
556 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
557 1120
558void 1121void
559rxvt_term::_resource (char *name, int index, SV *newval = 0) 1122rxvt_term::_resource (char *name, int index, SV *newval = 0)
560 PPCODE: 1123 PPCODE:
561{ 1124{
562 struct resval { const char *name; int value; } rslist [] = { 1125 struct resval { const char *name; int value; } rslist [] = {
563# define Rs_def(name) { # name, Rs_ ## name }, 1126# define def(name) { # name, Rs_ ## name },
564# define Rs_reserve(name,count) 1127# define reserve(name,count)
565# include "rsinc.h" 1128# include "rsinc.h"
566# undef Rs_def 1129# undef def
567# undef Rs_reserve 1130# undef reserve
568 }; 1131 };
569 1132
570 struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]); 1133 struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]);
571 1134
572 do { 1135 do {
593 else 1156 else
594 THIS->rs [index] = 0; 1157 THIS->rs [index] = 0;
595 } 1158 }
596} 1159}
597 1160
1161bool
1162rxvt_term::option (U32 optval, int set = -1)
1163 CODE:
1164{
1165 RETVAL = THIS->options & optval;
1166
1167 if (set >= 0)
1168 {
1169 if (set)
1170 THIS->options |= optval;
1171 else
1172 THIS->options &= ~optval;
1173
1174 switch (optval)
1175 {
1176 case Opt_skipBuiltinGlyphs:
1177 THIS->set_fonts ();
1178 THIS->scr_remap_chars ();
1179 THIS->scr_touch (true);
1180 THIS->want_refresh = 1;
1181 break;
1182
1183 case Opt_cursorUnderline:
1184 THIS->want_refresh = 1;
1185 break;
1186
1187# case Opt_scrollBar_floating:
1188# case Opt_scrollBar_right:
1189# THIS->resize_all_windows (THIS->width, THIS->height, 1);
1190# break;
1191 }
1192 }
1193}
1194 OUTPUT:
1195 RETVAL
1196
598void 1197void
599rxvt_term::selection_mark (...) 1198rxvt_term::cur (...)
600 PROTOTYPE: $;$$ 1199 PROTOTYPE: $;$$
601 ALIAS: 1200 ALIAS:
1201 screen_cur = 0
602 selection_beg = 1 1202 selection_beg = 1
603 selection_end = 2 1203 selection_end = 2
1204 selection_mark = 3
604 PPCODE: 1205 PPCODE:
605{ 1206{
606 row_col_t &sel = ix == 1 ? THIS->selection.beg 1207 row_col_t &rc = ix == 0 ? THIS->screen.cur
1208 : ix == 1 ? THIS->selection.beg
607 : ix == 2 ? THIS->selection.end 1209 : ix == 2 ? THIS->selection.end
608 : THIS->selection.mark; 1210 : THIS->selection.mark;
609 1211
610 if (GIMME_V != G_VOID) 1212 if (GIMME_V != G_VOID)
611 { 1213 {
612 EXTEND (SP, 2); 1214 EXTEND (SP, 2);
613 PUSHs (sv_2mortal (newSViv (sel.row))); 1215 PUSHs (sv_2mortal (newSViv (rc.row)));
614 PUSHs (sv_2mortal (newSViv (sel.col))); 1216 PUSHs (sv_2mortal (newSViv (rc.col)));
615 } 1217 }
616 1218
617 if (items == 3) 1219 if (items == 3)
618 { 1220 {
619 sel.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1); 1221 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1);
620 sel.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1); 1222 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
621 1223
622 if (ix) 1224 if (ix)
623 THIS->want_refresh = 1; 1225 THIS->want_refresh = 1;
624 } 1226 }
625} 1227}
626 1228
627int 1229int
628rxvt_term::selection_grab (int eventtime) 1230rxvt_term::selection_grab (U32 eventtime)
629 1231
630void 1232void
631rxvt_term::selection (SV *newtext = 0) 1233rxvt_term::selection (SV *newtext = 0)
632 PPCODE: 1234 PPCODE:
633{ 1235{
634 if (GIMME_V != G_VOID) 1236 if (GIMME_V != G_VOID)
635 { 1237 XPUSHs (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)));
636 char *sel = rxvt_wcstoutf8 (THIS->selection.text, THIS->selection.len);
637 SV *sv = newSVpv (sel, 0);
638 SvUTF8_on (sv);
639 free (sel);
640 XPUSHs (sv_2mortal (sv));
641 }
642 1238
643 if (newtext) 1239 if (newtext)
644 { 1240 {
645 free (THIS->selection.text); 1241 free (THIS->selection.text);
646 1242
647 THIS->selection.text = sv2wcs (newtext); 1243 THIS->selection.text = sv2wcs (newtext);
648 THIS->selection.len = wcslen (THIS->selection.text); 1244 THIS->selection.len = wcslen (THIS->selection.text);
649 } 1245 }
650} 1246}
651
652void
653rxvt_term::scr_overlay_new (int x, int y, int w, int h)
654 1247
655void 1248void
656rxvt_term::scr_overlay_off () 1249rxvt_term::scr_add_lines (SV *string)
657
658void
659rxvt_term::scr_overlay_set_char (int x, int y, U32 text, U32 rend = OVERLAY_RSTYLE)
660 CODE: 1250 CODE:
661 THIS->scr_overlay_set (x, y, text, rend);
662
663void
664rxvt_term::scr_overlay_set (int x, int y, SV *text)
665 CODE:
666{ 1251{
667 wchar_t *wtext = sv2wcs (text); 1252 wchar_t *wstr = sv2wcs (string);
668 THIS->scr_overlay_set (x, y, wtext); 1253 THIS->scr_add_lines (wstr, wcslen (wstr));
669 free (wtext); 1254 free (wstr);
670} 1255}
671 1256
672void 1257void
673rxvt_term::tt_write (SV *octets) 1258rxvt_term::tt_write (SV *octets)
674 INIT: 1259 INIT:
675 STRLEN len; 1260 STRLEN len;
676 char *str = SvPVbyte (octets, len); 1261 char *str = SvPVbyte (octets, len);
677 C_ARGS: 1262 C_ARGS:
678 (unsigned char *)str, len 1263 str, len
1264
1265void
1266rxvt_term::cmd_parse (SV *octets)
1267 CODE:
1268{
1269 STRLEN len;
1270 char *str = SvPVbyte (octets, len);
1271
1272 char *old_cmdbuf_ptr = THIS->cmdbuf_ptr;
1273 char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1274
1275 THIS->cmdbuf_ptr = str;
1276 THIS->cmdbuf_endp = str + len;
1277
1278 rxvt_push_locale (THIS->locale);
1279 THIS->cmd_parse ();
1280 rxvt_pop_locale ();
1281
1282 THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1283 THIS->cmdbuf_endp = old_cmdbuf_endp;
1284}
1285
1286SV *
1287rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2)
1288 CODE:
1289{
1290 overlay *o = new overlay (THIS, x, y, w, h, rstyle, border);
1291 RETVAL = newSVptr ((void *)o, "urxvt::overlay");
1292 o->self = (HV *)SvRV (RETVAL);
1293}
1294 OUTPUT:
1295 RETVAL
1296
1297MODULE = urxvt PACKAGE = urxvt::overlay
1298
1299void
1300overlay::set (int x, int y, SV *text, SV *rend = 0)
1301
1302void
1303overlay::show ()
1304
1305void
1306overlay::hide ()
1307
1308void
1309overlay::DESTROY ()
679 1310
680MODULE = urxvt PACKAGE = urxvt::timer 1311MODULE = urxvt PACKAGE = urxvt::timer
681 1312
682SV * 1313SV *
683timer::new () 1314timer::new ()
684 CODE: 1315 CODE:
685 timer *w = new timer; 1316 timer *w = new timer;
1317 w->start (NOW);
686 RETVAL = newSVptr ((void *)w, "urxvt::timer"); 1318 RETVAL = newSVptr ((void *)w, "urxvt::timer");
687 w->self = (HV *)SvRV (RETVAL); 1319 w->self = (HV *)SvRV (RETVAL);
688 OUTPUT: 1320 OUTPUT:
689 RETVAL 1321 RETVAL
690 1322
698 1330
699NV 1331NV
700timer::at () 1332timer::at ()
701 CODE: 1333 CODE:
702 RETVAL = THIS->at; 1334 RETVAL = THIS->at;
1335 OUTPUT:
1336 RETVAL
1337
1338timer *
1339timer::interval (NV interval)
1340 CODE:
1341 THIS->interval = interval;
1342 RETVAL = THIS;
703 OUTPUT: 1343 OUTPUT:
704 RETVAL 1344 RETVAL
705 1345
706timer * 1346timer *
707timer::set (NV tstamp) 1347timer::set (NV tstamp)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines