ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/urxvt.pm
Revision: 1.20
Committed: Tue Jan 3 04:18:47 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.19: +37 -29 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.17 =encoding utf8
2    
3 root 1.1 =head1 NAME
4    
5 root 1.11 @@RXVT_NAME@@perl - rxvt-unicode's embedded perl interpreter
6 root 1.1
7     =head1 SYNOPSIS
8    
9 root 1.10 # create a file grab_test in $HOME:
10 root 1.1
11     sub on_sel_grab {
12     warn "you selected ", $_[0]->selection;
13 root 1.3 ()
14 root 1.1 }
15    
16 root 1.10 # start a @@RXVT_NAME@@ using it:
17    
18     @@RXVT_NAME@@ --perl-lib $HOME -pe grab_test
19 root 1.1
20     =head1 DESCRIPTION
21    
22 root 1.8 Everytime a terminal object gets created, scripts specified via the
23 root 1.10 C<perl> resource are loaded and associated with it.
24    
25     Scripts are compiled in a 'use strict' and 'use utf8' environment, and
26     thus must be encoded as UTF-8.
27 root 1.6
28     Each script will only ever be loaded once, even in @@RXVT_NAME@@d, where
29 root 1.16 scripts will be shared (but not enabled) for all terminals.
30 root 1.6
31 root 1.17 =head2 Prepackaged Extensions
32 root 1.15
33     This section describes the extensiosn delivered with this version. You can
34     find them in F<@@RXVT_LIBDIR@@/urxvt/perl/>.
35    
36     You can activate them like this:
37    
38     @@RXVT_NAME@@ -pe <extensionname>
39    
40     =over 4
41    
42     =item selection
43    
44     Miscellaneous selection modifications.
45    
46     =over 4
47    
48     =item rot13
49    
50     Rot-13 the selection when activated. Used via keyboard trigger:
51    
52     URxvt.keysym.C-M-r: perl:selection:rot13
53    
54     =back
55    
56     =item digital-clock
57    
58 root 1.20 Displays a digital clock using the built-in overlay.
59    
60     =item example-refresh-hooks
61    
62 root 1.15 Displays a very simple digital clock in the upper right corner of the
63     window. Illustrates overwriting the refresh callbacks to create your own
64     overlays or changes.
65    
66     =back
67    
68 root 1.6 =head2 General API Considerations
69    
70     All objects (such as terminals, time watchers etc.) are typical
71     reference-to-hash objects. The hash can be used to store anything you
72 root 1.7 like. All members starting with an underscore (such as C<_ptr> or
73     C<_hook>) are reserved for internal uses and must not be accessed or
74     modified).
75 root 1.6
76     When objects are destroyed on the C++ side, the perl object hashes are
77     emptied, so its best to store related objects such as time watchers and
78     the like inside the terminal object so they get destroyed as soon as the
79     terminal is destroyed.
80    
81 root 1.1 =head2 Hooks
82    
83     The following subroutines can be declared in loaded scripts, and will be called
84     whenever the relevant event happens.
85    
86     All of them must return a boolean value. If it is true, then the event
87     counts as being I<consumed>, and the invocation of other hooks is skipped,
88     and the relevant action might not be carried out by the C++ code.
89    
90     When in doubt, return a false value (preferably C<()>).
91    
92     =over 4
93    
94     =item on_init $term
95    
96     Called after a new terminal object has been initialized, but before
97     windows are created or the command gets run.
98    
99     =item on_reset $term
100    
101     Called after the screen is "reset" for any reason, such as resizing or
102     control sequences. Here is where you can react on changes to size-related
103     variables.
104    
105     =item on_start $term
106    
107     Called at the very end of initialisation of a new terminal, just before
108     returning to the mainloop.
109    
110     =item on_sel_make $term, $eventtime
111    
112     Called whenever a selection has been made by the user, but before the
113     selection text is copied, so changes to the beginning, end or type of the
114     selection will be honored.
115    
116     Returning a true value aborts selection making by urxvt, in which case you
117     have to make a selection yourself by calling C<< $term->selection_grab >>.
118    
119     =item on_sel_grab $term, $eventtime
120    
121     Called whenever a selection has been copied, but before the selection is
122     requested from the server. The selection text can be queried and changed
123     by calling C<< $term->selection >>.
124    
125     Returning a true value aborts selection grabbing. It will still be hilighted.
126    
127     =item on_focus_in $term
128    
129     Called whenever the window gets the keyboard focus, before urxvt does
130     focus in processing.
131    
132     =item on_focus_out $term
133    
134     Called wheneever the window loses keyboard focus, before urxvt does focus
135     out processing.
136    
137     =item on_view_change $term, $offset
138    
139     Called whenever the view offset changes, i..e the user or program
140     scrolls. Offset C<0> means display the normal terminal, positive values
141     show this many lines of scrollback.
142    
143     =item on_scroll_back $term, $lines, $saved
144    
145     Called whenever lines scroll out of the terminal area into the scrollback
146     buffer. C<$lines> is the number of lines scrolled out and may be larger
147     than the scroll back buffer or the terminal.
148    
149     It is called before lines are scrolled out (so rows 0 .. min ($lines - 1,
150     $nrow - 1) represent the lines to be scrolled out). C<$saved> is the total
151     number of lines that will be in the scrollback buffer.
152    
153     =item on_tty_activity $term *NYI*
154    
155     Called whenever the program(s) running in the urxvt window send output.
156    
157     =item on_refresh_begin $term
158    
159     Called just before the screen gets redrawn. Can be used for overlay
160     or similar effects by modify terminal contents in refresh_begin, and
161     restoring them in refresh_end. The built-in overlay and selection display
162     code is run after this hook, and takes precedence.
163    
164     =item on_refresh_end $term
165    
166     Called just after the screen gets redrawn. See C<on_refresh_begin>.
167    
168 root 1.11 =item on_keyboard_command $term, $string
169    
170     Called whenever the user presses a key combination that has a
171     C<perl:string> action bound to it (see description of the B<keysym>
172     resource in the @@RXVT_NAME@@(1) manpage).
173    
174 root 1.1 =back
175    
176     =head2 Functions in the C<urxvt> Package
177    
178     =over 4
179    
180     =item urxvt::fatal $errormessage
181    
182     Fatally aborts execution with the given error message. Avoid at all
183     costs! The only time this is acceptable is when the terminal process
184     starts up.
185    
186     =item urxvt::warn $string
187    
188 root 1.6 Calls C<rxvt_warn> with the given string which should not include a
189 root 1.1 newline. The module also overwrites the C<warn> builtin with a function
190     that calls this function.
191    
192     Using this function has the advantage that its output ends up in the
193     correct place, e.g. on stderr of the connecting urxvtc client.
194    
195     =item $time = urxvt::NOW
196    
197     Returns the "current time" (as per the event loop).
198    
199 root 1.18 =head2 RENDITION
200    
201     Rendition bitsets contain information about colour, font, font styles and
202     similar information for each screen cell.
203    
204     The following "macros" deal with changes in rendition sets. You should
205     never just create a bitset, you should always modify an existing one,
206     as they contain important information required for correct operation of
207     rxvt-unicode.
208    
209     =over 4
210    
211     =item $rend = urxvt::DEFAULT_RSTYLE
212    
213     Returns the default rendition, as used when the terminal is starting up or
214     being reset. Useful as a base to start when creating renditions.
215    
216     =item $rend = urxvt::OVERLAY_RSTYLE
217    
218     Return the rendition mask used for overlays by default.
219    
220     =item $rendbit = urxvt::RS_Bold, RS_Italic, RS_Blink, RS_RVid, RS_Uline
221    
222     Return the bit that enabled bold, italic, blink, reverse-video and
223 root 1.19 underline, respectively. To enable such a style, just logically OR it into
224     the bitset.
225 root 1.18
226     =item $foreground = urxvt::GET_BASEFG $rend
227    
228     =item $background = urxvt::GET_BASEBG $rend
229    
230     Return the foreground/background colour index, respectively.
231    
232     =item $rend = urxvt::SET_FGCOLOR ($rend, $new_colour)
233    
234     =item $rend = urxvt::SET_BGCOLOR ($rend, $new_colour)
235    
236     Replace the foreground/background colour in the rendition mask with the
237     specified one.
238    
239 root 1.19 =item $value = urxvt::GET_CUSTOM ($rend)
240    
241     Return the "custom" value: Every rendition has 5 bits for use by
242     extensions. They can be set and changed as you like and are initially
243     zero.
244    
245     =item $rend = urxvt::SET_CUSTOM ($rend, $new_value)
246    
247     Change the custom value.
248    
249 root 1.18 =back
250    
251 root 1.1 =cut
252    
253     package urxvt;
254    
255     use strict;
256    
257     our $term;
258     our @HOOKNAME;
259     our $LIBDIR;
260    
261     BEGIN {
262     urxvt->bootstrap;
263    
264     # overwrite perl's warn
265     *CORE::GLOBAL::warn = sub {
266     my $msg = join "", @_;
267     $msg .= "\n"
268     unless $msg =~ /\n$/;
269     urxvt::warn ($msg);
270     };
271     }
272    
273 root 1.8 my @hook_count;
274 root 1.7 my $verbosity = $ENV{URXVT_PERL_VERBOSITY};
275 root 1.1
276     sub verbose {
277     my ($level, $msg) = @_;
278 root 1.8 warn "$msg\n" if $level <= $verbosity;
279 root 1.1 }
280    
281     # find on_xxx subs in the package and register them
282     # as hooks
283     sub register_package($) {
284     my ($pkg) = @_;
285    
286 root 1.7 for my $htype (0.. $#HOOKNAME) {
287     my $name = $HOOKNAME[$htype];
288 root 1.1
289     my $ref = $pkg->can ("on_" . lc $name)
290     or next;
291    
292 root 1.7 $term->{_hook}[$htype]{$ref*1} = $ref;
293     $hook_count[$htype]++
294     or set_should_invoke $htype, 1;
295 root 1.1 }
296     }
297    
298     my $script_pkg = "script0000";
299     my %script_pkg;
300    
301     # load a single script into its own package, once only
302 root 1.7 sub script_package($) {
303 root 1.1 my ($path) = @_;
304    
305     $script_pkg{$path} ||= do {
306 root 1.8 my $pkg = "urxvt::" . ($script_pkg++);
307    
308 root 1.1 verbose 3, "loading script '$path' into package '$pkg'";
309    
310     open my $fh, "<:raw", $path
311     or die "$path: $!";
312    
313 root 1.8 my $source = "package $pkg; use strict; use utf8;\n"
314     . "#line 1 \"$path\"\n{\n"
315     . (do { local $/; <$fh> })
316     . "\n};\n1";
317    
318     eval $source or die "$path: $@";
319 root 1.1
320     $pkg
321 root 1.7 }
322 root 1.1 }
323    
324 root 1.8 # called by the rxvt core
325     sub invoke {
326     local $term = shift;
327     my $htype = shift;
328 root 1.6
329 root 1.8 if ($htype == 0) { # INIT
330 root 1.9 my @dirs = ((split /:/, $term->resource ("perl_lib")), "$LIBDIR/perl");
331 root 1.6
332 root 1.8 for my $ext (split /:/, $term->resource ("perl_ext")) {
333     my @files = grep -f $_, map "$_/$ext", @dirs;
334 root 1.6
335 root 1.8 if (@files) {
336     register_package script_package $files[0];
337     } else {
338     warn "perl extension '$ext' not found in perl library search path\n";
339     }
340     }
341 root 1.6
342 root 1.8 } elsif ($htype == 1) { # DESTROY
343     if (my $hook = $term->{_hook}) {
344     for my $htype (0..$#$hook) {
345     $hook_count[$htype] -= scalar keys %{ $hook->[$htype] || {} }
346     or set_should_invoke $htype, 0;
347     }
348     }
349     }
350 root 1.6
351 root 1.8 my $cb = $term->{_hook}[$htype]
352     or return;
353 root 1.6
354 root 1.8 verbose 10, "$HOOKNAME[$htype] (" . (join ", ", $term, @_) . ")"
355     if $verbosity >= 10;
356 root 1.7
357 root 1.8 while (my ($k, $v) = each %$cb) {
358     return 1 if $v->($term, @_);
359 root 1.7 }
360    
361 root 1.8 0
362 root 1.7 }
363 root 1.1
364     =back
365    
366     =head2 The C<urxvt::term> Class
367    
368     =over 4
369    
370 root 1.4 =item $value = $term->resource ($name[, $newval])
371    
372     Returns the current resource value associated with a given name and
373     optionally sets a new value. Setting values is most useful in the C<init>
374     hook. Unset resources are returned and accepted as C<undef>.
375    
376     The new value must be properly encoded to a suitable character encoding
377     before passing it to this method. Similarly, the returned value may need
378     to be converted from the used encoding to text.
379    
380     Resource names are as defined in F<src/rsinc.h>. Colours can be specified
381     as resource names of the form C<< color+<index> >>, e.g. C<color+5>. (will
382     likely change).
383    
384     Please note that resource strings will currently only be freed when the
385     terminal is destroyed, so changing options frequently will eat memory.
386    
387 root 1.5 Here is a a likely non-exhaustive list of resource names, not all of which
388     are supported in every build, please see the source to see the actual
389     list:
390    
391     answerbackstring backgroundPixmap backspace_key boldFont boldItalicFont
392     borderLess color cursorBlink cursorUnderline cutchars delete_key
393     display_name embed ext_bwidth fade font geometry hold iconName
394     imFont imLocale inputMethod insecure int_bwidth intensityStyles
395 root 1.8 italicFont jumpScroll lineSpace loginShell mapAlert menu meta8 modifier
396     mouseWheelScrollPage name pastableTabs path perl_eval perl_ext
397 root 1.6 perl_lib pointerBlank pointerBlankDelay preeditType print_pipe pty_fd
398     reverseVideo saveLines scrollBar scrollBar_align scrollBar_floating
399     scrollBar_right scrollBar_thickness scrollTtyKeypress scrollTtyOutput
400     scrollWithBuffer scrollstyle secondaryScreen secondaryScroll selectstyle
401     shade term_name title transparent transparent_all tripleclickwords
402     utmpInhibit visualBell
403 root 1.5
404 root 1.4 =cut
405    
406     sub urxvt::term::resource($$;$) {
407     my ($self, $name) = (shift, shift);
408     unshift @_, $self, $name, ($name =~ s/\s*\+\s*(\d+)$// ? $1 : 0);
409     goto &urxvt::term::_resource;
410     }
411    
412 root 1.1 =item ($row, $col) = $term->selection_mark ([$row, $col])
413    
414     =item ($row, $col) = $term->selection_beg ([$row, $col])
415    
416     =item ($row, $col) = $term->selection_end ([$row, $col])
417    
418     Return the current values of the selection mark, begin or end positions,
419     and optionally set them to new values.
420    
421     =item $success = $term->selection_grab ($eventtime)
422    
423     Try to request the primary selection from the server (for example, as set
424     by the next method).
425    
426     =item $oldtext = $term->selection ([$newtext])
427    
428     Return the current selection text and optionally replace it by C<$newtext>.
429    
430 root 1.20 #=item $term->overlay ($x, $y, $text)
431     #
432     #Create a simple multi-line overlay box. See the next method for details.
433     #
434     #=cut
435 root 1.1
436     sub urxvt::term::scr_overlay {
437 root 1.20 die;
438 root 1.1 my ($self, $x, $y, $text) = @_;
439    
440     my @lines = split /\n/, $text;
441    
442     my $w = 0;
443 root 1.6 for (map $self->strwidth ($_), @lines) {
444 root 1.1 $w = $_ if $w < $_;
445     }
446    
447     $self->scr_overlay_new ($x, $y, $w, scalar @lines);
448     $self->scr_overlay_set (0, $_, $lines[$_]) for 0.. $#lines;
449     }
450    
451 root 1.20 =item $term->overlay ($x, $y, $width, $height[, $rstyle[, $border]])
452 root 1.1
453     Create a new (empty) overlay at the given position with the given
454 root 1.20 width/height. C<$rstyle> defines the initial rendition style
455     (default: C<OVERLAY_RSTYLE>).
456 root 1.1
457 root 1.20 If C<$border> is C<2> (default), then a decorative border will be put
458     around the box.
459 root 1.1
460 root 1.20 If either C<$x> or C<$y> is negative, then this is counted from the
461     right/bottom side, respectively.
462 root 1.1
463 root 1.20 This method returns an urxvt::overlay object. The overlay will be visible
464     as long as the perl object is referenced.
465 root 1.1
466 root 1.20 Currently, the only method on the C<urxvt::overlay> object is C<set>:
467 root 1.1
468 root 1.20 =item $overlay->set ($x, $y, $text, $rend)
469 root 1.1
470 root 1.20 Similar to C<< $term->ROW_t >> and C<< $term->ROW_r >> in that it puts
471     text in rxvt-unicode's special encoding and an array of rendition values
472     at a specific position inside the overlay.
473 root 1.1
474 root 1.6 =item $cellwidth = $term->strwidth $string
475    
476     Returns the number of screen-cells this string would need. Correctly
477     accounts for wide and combining characters.
478    
479     =item $octets = $term->locale_encode $string
480    
481     Convert the given text string into the corresponding locale encoding.
482    
483     =item $string = $term->locale_decode $octets
484    
485     Convert the given locale-encoded octets into a perl string.
486    
487     =item $term->tt_write ($octets)
488    
489     Write the octets given in C<$data> to the tty (i.e. as program input). To
490 root 1.12 pass characters instead of octets, you should convert your strings first
491     to the locale-specific encoding using C<< $term->locale_encode >>.
492    
493 root 1.13 =item $nrow = $term->nrow
494    
495     =item $ncol = $term->ncol
496    
497     Return the number of rows/columns of the terminal window (i.e. as
498     specified by C<-geometry>, excluding any scrollback).
499    
500 root 1.12 =item $nsaved = $term->nsaved
501    
502     Returns the number of lines in the scrollback buffer.
503    
504     =item $view_start = $term->view_start ([$newvalue])
505    
506     Returns the negative row number of the topmost line. Minimum value is
507     C<0>, which displays the normal terminal contents. Larger values scroll
508     this many lines into the scrollback buffer.
509    
510 root 1.14 =item $term->want_refresh
511    
512     Requests a screen refresh. At the next opportunity, rxvt-unicode will
513     compare the on-screen display with its stored representation. If they
514     differ, it redraws the differences.
515    
516     Used after changing terminal contents to display them.
517    
518 root 1.13 =item $text = $term->ROW_t ($row_number[, $new_text[, $start_col]])
519 root 1.12
520     Returns the text of the entire row with number C<$row_number>. Row C<0>
521     is the topmost terminal line, row C<< $term->$ncol-1 >> is the bottommost
522     terminal line. The scrollback buffer starts at line C<-1> and extends to
523     line C<< -$term->nsaved >>.
524    
525 root 1.13 If C<$new_text> is specified, it will replace characters in the current
526     line, starting at column C<$start_col> (default C<0>), which is useful
527 root 1.18 to replace only parts of a line. The font index in the rendition will
528 root 1.13 automatically be updated.
529 root 1.12
530     C<$text> is in a special encoding: tabs and wide characters that use more
531     than one cell when displayed are padded with urxvt::NOCHAR characters
532     (C<chr 65535>). Characters with combining characters and other characters
533     that do not fit into the normal tetx encoding will be replaced with
534     characters in the private use area.
535    
536     You have to obey this encoding when changing text. The advantage is
537     that C<substr> and similar functions work on screen cells and not on
538     characters.
539    
540     The methods C<< $term->special_encode >> and C<< $term->special_decode >>
541     can be used to convert normal strings into this encoding and vice versa.
542    
543 root 1.13 =item $rend = $term->ROW_r ($row_number[, $new_rend[, $start_col]])
544    
545     Like C<< $term->ROW_t >>, but returns an arrayref with rendition
546     bitsets. Rendition bitsets contain information about colour, font, font
547     styles and similar information. See also C<< $term->ROW_t >>.
548    
549     When setting rendition, the font mask will be ignored.
550 root 1.12
551 root 1.18 See the section on RENDITION, above.
552 root 1.13
553     =item $length = $term->ROW_l ($row_number[, $new_length])
554    
555     Returns the number of screen cells that are in use ("the line length"). If
556     it is C<-1>, then the line is part of a multiple-row logical "line", which
557     means all characters are in use and it is continued on the next row.
558 root 1.12
559     =item $text = $term->special_encode $string
560    
561     Converts a perl string into the special encoding used by rxvt-unicode,
562     where one character corresponds to one screen cell. See
563     C<< $term->ROW_t >> for details.
564    
565     =item $string = $term->special_decode $text
566    
567     Converts rxvt-unicodes text reprsentation into a perl string. See
568     C<< $term->ROW_t >> for details.
569 root 1.6
570 root 1.1 =back
571    
572     =head2 The C<urxvt::timer> Class
573    
574     This class implements timer watchers/events. Time is represented as a
575     fractional number of seconds since the epoch. Example:
576    
577 root 1.20 $term->{overlay} = $term->overlay (-1, 0, 8, 1, urxvt::OVERLAY_RSTYLE, 0);
578 root 1.1 $term->{timer} = urxvt::timer
579     ->new
580 root 1.20 ->interval (1)
581 root 1.1 ->cb (sub {
582 root 1.20 $term->{overlay}->set (0, 0,
583     sprintf "%2d:%02d:%02d", (localtime urxvt::NOW)[2,1,0]);
584     });
585 root 1.1
586     =over 4
587    
588     =item $timer = new urxvt::timer
589    
590 root 1.20 Create a new timer object in started state. It is scheduled to fire
591     immediately.
592 root 1.1
593     =item $timer = $timer->cb (sub { my ($timer) = @_; ... })
594    
595     Set the callback to be called when the timer triggers.
596    
597     =item $tstamp = $timer->at
598    
599     Return the time this watcher will fire next.
600    
601     =item $timer = $timer->set ($tstamp)
602    
603     Set the time the event is generated to $tstamp.
604    
605 root 1.20 =item $timer = $timer->interval ($interval)
606    
607     Normally (and when C<$interval> is C<0>), the timer will automatically
608     stop after it has fired once. If C<$interval> is non-zero, then the timer
609     is automatically rescheduled at the given intervals.
610    
611 root 1.1 =item $timer = $timer->start
612    
613     Start the timer.
614    
615     =item $timer = $timer->start ($tstamp)
616    
617     Set the event trigger time to C<$tstamp> and start the timer.
618    
619     =item $timer = $timer->stop
620    
621     Stop the timer.
622    
623     =back
624    
625     =head2 The C<urxvt::iow> Class
626    
627     This class implements io watchers/events. Example:
628    
629     $term->{socket} = ...
630     $term->{iow} = urxvt::iow
631     ->new
632     ->fd (fileno $term->{socket})
633     ->events (1) # wait for read data
634     ->start
635     ->cb (sub {
636     my ($iow, $revents) = @_;
637     # $revents must be 1 here, no need to check
638     sysread $term->{socket}, my $buf, 8192
639     or end-of-file;
640     });
641    
642    
643     =over 4
644    
645     =item $iow = new urxvt::iow
646    
647     Create a new io watcher object in stopped state.
648    
649     =item $iow = $iow->cb (sub { my ($iow, $reventmask) = @_; ... })
650    
651     Set the callback to be called when io events are triggered. C<$reventmask>
652     is a bitset as described in the C<events> method.
653    
654     =item $iow = $iow->fd ($fd)
655    
656     Set the filedescriptor (not handle) to watch.
657    
658     =item $iow = $iow->events ($eventmask)
659    
660     Set the event mask to watch. Bit #0 (value C<1>) enables watching for read
661     data, Bit #1 (value C<2>) enables watching for write data.
662    
663     =item $iow = $iow->start
664    
665     Start watching for requested events on the given handle.
666    
667     =item $iow = $iow->stop
668    
669     Stop watching for events on the given filehandle.
670    
671     =back
672    
673 root 1.4 =head1 ENVIRONMENT
674    
675     =head2 URXVT_PERL_VERBOSITY
676    
677     This variable controls the verbosity level of the perl extension. Higher
678     numbers indicate more verbose output.
679    
680     =over 4
681    
682     =item 0 - only fatal messages
683    
684     =item 3 - script loading and management
685    
686     =item 10 - all events received
687    
688     =back
689    
690 root 1.1 =head1 AUTHOR
691    
692     Marc Lehmann <pcg@goof.com>
693     http://software.schmorp.de/pkg/rxvt-unicode
694    
695     =cut
696    
697     1