ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/urxvt.pm
Revision: 1.18
Committed: Tue Jan 3 02:01:27 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.17: +45 -24 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     Displays a very simple digital clock in the upper right corner of the
59     window. Illustrates overwriting the refresh callbacks to create your own
60     overlays or changes.
61    
62     =item simple-overlay-clock
63    
64 root 1.18 Displays a digital clock using the built-in overlay (colourful, useless).
65 root 1.15
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     underline, respectively. To enable such a style, just or it onto the
224     bitset.
225    
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     =back
240    
241 root 1.1 =cut
242    
243     package urxvt;
244    
245     use strict;
246    
247     our $term;
248     our @HOOKNAME;
249     our $LIBDIR;
250    
251     BEGIN {
252     urxvt->bootstrap;
253    
254     # overwrite perl's warn
255     *CORE::GLOBAL::warn = sub {
256     my $msg = join "", @_;
257     $msg .= "\n"
258     unless $msg =~ /\n$/;
259     urxvt::warn ($msg);
260     };
261     }
262    
263 root 1.8 my @hook_count;
264 root 1.7 my $verbosity = $ENV{URXVT_PERL_VERBOSITY};
265 root 1.1
266     sub verbose {
267     my ($level, $msg) = @_;
268 root 1.8 warn "$msg\n" if $level <= $verbosity;
269 root 1.1 }
270    
271     # find on_xxx subs in the package and register them
272     # as hooks
273     sub register_package($) {
274     my ($pkg) = @_;
275    
276 root 1.7 for my $htype (0.. $#HOOKNAME) {
277     my $name = $HOOKNAME[$htype];
278 root 1.1
279     my $ref = $pkg->can ("on_" . lc $name)
280     or next;
281    
282 root 1.7 $term->{_hook}[$htype]{$ref*1} = $ref;
283     $hook_count[$htype]++
284     or set_should_invoke $htype, 1;
285 root 1.1 }
286     }
287    
288     my $script_pkg = "script0000";
289     my %script_pkg;
290    
291     # load a single script into its own package, once only
292 root 1.7 sub script_package($) {
293 root 1.1 my ($path) = @_;
294    
295     $script_pkg{$path} ||= do {
296 root 1.8 my $pkg = "urxvt::" . ($script_pkg++);
297    
298 root 1.1 verbose 3, "loading script '$path' into package '$pkg'";
299    
300     open my $fh, "<:raw", $path
301     or die "$path: $!";
302    
303 root 1.8 my $source = "package $pkg; use strict; use utf8;\n"
304     . "#line 1 \"$path\"\n{\n"
305     . (do { local $/; <$fh> })
306     . "\n};\n1";
307    
308     eval $source or die "$path: $@";
309 root 1.1
310     $pkg
311 root 1.7 }
312 root 1.1 }
313    
314 root 1.8 # called by the rxvt core
315     sub invoke {
316     local $term = shift;
317     my $htype = shift;
318 root 1.6
319 root 1.8 if ($htype == 0) { # INIT
320 root 1.9 my @dirs = ((split /:/, $term->resource ("perl_lib")), "$LIBDIR/perl");
321 root 1.6
322 root 1.8 for my $ext (split /:/, $term->resource ("perl_ext")) {
323     my @files = grep -f $_, map "$_/$ext", @dirs;
324 root 1.6
325 root 1.8 if (@files) {
326     register_package script_package $files[0];
327     } else {
328     warn "perl extension '$ext' not found in perl library search path\n";
329     }
330     }
331 root 1.6
332 root 1.8 } elsif ($htype == 1) { # DESTROY
333     if (my $hook = $term->{_hook}) {
334     for my $htype (0..$#$hook) {
335     $hook_count[$htype] -= scalar keys %{ $hook->[$htype] || {} }
336     or set_should_invoke $htype, 0;
337     }
338     }
339     }
340 root 1.6
341 root 1.8 my $cb = $term->{_hook}[$htype]
342     or return;
343 root 1.6
344 root 1.8 verbose 10, "$HOOKNAME[$htype] (" . (join ", ", $term, @_) . ")"
345     if $verbosity >= 10;
346 root 1.7
347 root 1.8 while (my ($k, $v) = each %$cb) {
348     return 1 if $v->($term, @_);
349 root 1.7 }
350    
351 root 1.8 0
352 root 1.7 }
353 root 1.1
354     =back
355    
356     =head2 The C<urxvt::term> Class
357    
358     =over 4
359    
360 root 1.4 =item $value = $term->resource ($name[, $newval])
361    
362     Returns the current resource value associated with a given name and
363     optionally sets a new value. Setting values is most useful in the C<init>
364     hook. Unset resources are returned and accepted as C<undef>.
365    
366     The new value must be properly encoded to a suitable character encoding
367     before passing it to this method. Similarly, the returned value may need
368     to be converted from the used encoding to text.
369    
370     Resource names are as defined in F<src/rsinc.h>. Colours can be specified
371     as resource names of the form C<< color+<index> >>, e.g. C<color+5>. (will
372     likely change).
373    
374     Please note that resource strings will currently only be freed when the
375     terminal is destroyed, so changing options frequently will eat memory.
376    
377 root 1.5 Here is a a likely non-exhaustive list of resource names, not all of which
378     are supported in every build, please see the source to see the actual
379     list:
380    
381     answerbackstring backgroundPixmap backspace_key boldFont boldItalicFont
382     borderLess color cursorBlink cursorUnderline cutchars delete_key
383     display_name embed ext_bwidth fade font geometry hold iconName
384     imFont imLocale inputMethod insecure int_bwidth intensityStyles
385 root 1.8 italicFont jumpScroll lineSpace loginShell mapAlert menu meta8 modifier
386     mouseWheelScrollPage name pastableTabs path perl_eval perl_ext
387 root 1.6 perl_lib pointerBlank pointerBlankDelay preeditType print_pipe pty_fd
388     reverseVideo saveLines scrollBar scrollBar_align scrollBar_floating
389     scrollBar_right scrollBar_thickness scrollTtyKeypress scrollTtyOutput
390     scrollWithBuffer scrollstyle secondaryScreen secondaryScroll selectstyle
391     shade term_name title transparent transparent_all tripleclickwords
392     utmpInhibit visualBell
393 root 1.5
394 root 1.4 =cut
395    
396     sub urxvt::term::resource($$;$) {
397     my ($self, $name) = (shift, shift);
398     unshift @_, $self, $name, ($name =~ s/\s*\+\s*(\d+)$// ? $1 : 0);
399     goto &urxvt::term::_resource;
400     }
401    
402 root 1.1 =item ($row, $col) = $term->selection_mark ([$row, $col])
403    
404     =item ($row, $col) = $term->selection_beg ([$row, $col])
405    
406     =item ($row, $col) = $term->selection_end ([$row, $col])
407    
408     Return the current values of the selection mark, begin or end positions,
409     and optionally set them to new values.
410    
411     =item $success = $term->selection_grab ($eventtime)
412    
413     Try to request the primary selection from the server (for example, as set
414     by the next method).
415    
416     =item $oldtext = $term->selection ([$newtext])
417    
418     Return the current selection text and optionally replace it by C<$newtext>.
419    
420     =item $term->scr_overlay ($x, $y, $text)
421    
422     Create a simple multi-line overlay box. See the next method for details.
423    
424     =cut
425    
426     sub urxvt::term::scr_overlay {
427     my ($self, $x, $y, $text) = @_;
428    
429     my @lines = split /\n/, $text;
430    
431     my $w = 0;
432 root 1.6 for (map $self->strwidth ($_), @lines) {
433 root 1.1 $w = $_ if $w < $_;
434     }
435    
436     $self->scr_overlay_new ($x, $y, $w, scalar @lines);
437     $self->scr_overlay_set (0, $_, $lines[$_]) for 0.. $#lines;
438     }
439    
440     =item $term->scr_overlay_new ($x, $y, $width, $height)
441    
442     Create a new (empty) overlay at the given position with the given
443     width/height. A border will be put around the box. If either C<$x> or
444     C<$y> is negative, then this is counted from the right/bottom side,
445     respectively.
446    
447     =item $term->scr_overlay_off
448    
449     Switch the overlay off again.
450    
451     =item $term->scr_overlay_set_char ($x, $y, $char, $rend = OVERLAY_RSTYLE)
452    
453     Put a single character (specified numerically) at the given overlay
454     position.
455    
456     =item $term->scr_overlay_set ($x, $y, $text)
457    
458     Write a string at the given position into the overlay.
459    
460 root 1.6 =item $cellwidth = $term->strwidth $string
461    
462     Returns the number of screen-cells this string would need. Correctly
463     accounts for wide and combining characters.
464    
465     =item $octets = $term->locale_encode $string
466    
467     Convert the given text string into the corresponding locale encoding.
468    
469     =item $string = $term->locale_decode $octets
470    
471     Convert the given locale-encoded octets into a perl string.
472    
473     =item $term->tt_write ($octets)
474    
475     Write the octets given in C<$data> to the tty (i.e. as program input). To
476 root 1.12 pass characters instead of octets, you should convert your strings first
477     to the locale-specific encoding using C<< $term->locale_encode >>.
478    
479 root 1.13 =item $nrow = $term->nrow
480    
481     =item $ncol = $term->ncol
482    
483     Return the number of rows/columns of the terminal window (i.e. as
484     specified by C<-geometry>, excluding any scrollback).
485    
486 root 1.12 =item $nsaved = $term->nsaved
487    
488     Returns the number of lines in the scrollback buffer.
489    
490     =item $view_start = $term->view_start ([$newvalue])
491    
492     Returns the negative row number of the topmost line. Minimum value is
493     C<0>, which displays the normal terminal contents. Larger values scroll
494     this many lines into the scrollback buffer.
495    
496 root 1.14 =item $term->want_refresh
497    
498     Requests a screen refresh. At the next opportunity, rxvt-unicode will
499     compare the on-screen display with its stored representation. If they
500     differ, it redraws the differences.
501    
502     Used after changing terminal contents to display them.
503    
504 root 1.13 =item $text = $term->ROW_t ($row_number[, $new_text[, $start_col]])
505 root 1.12
506     Returns the text of the entire row with number C<$row_number>. Row C<0>
507     is the topmost terminal line, row C<< $term->$ncol-1 >> is the bottommost
508     terminal line. The scrollback buffer starts at line C<-1> and extends to
509     line C<< -$term->nsaved >>.
510    
511 root 1.13 If C<$new_text> is specified, it will replace characters in the current
512     line, starting at column C<$start_col> (default C<0>), which is useful
513 root 1.18 to replace only parts of a line. The font index in the rendition will
514 root 1.13 automatically be updated.
515 root 1.12
516     C<$text> is in a special encoding: tabs and wide characters that use more
517     than one cell when displayed are padded with urxvt::NOCHAR characters
518     (C<chr 65535>). Characters with combining characters and other characters
519     that do not fit into the normal tetx encoding will be replaced with
520     characters in the private use area.
521    
522     You have to obey this encoding when changing text. The advantage is
523     that C<substr> and similar functions work on screen cells and not on
524     characters.
525    
526     The methods C<< $term->special_encode >> and C<< $term->special_decode >>
527     can be used to convert normal strings into this encoding and vice versa.
528    
529 root 1.13 =item $rend = $term->ROW_r ($row_number[, $new_rend[, $start_col]])
530    
531     Like C<< $term->ROW_t >>, but returns an arrayref with rendition
532     bitsets. Rendition bitsets contain information about colour, font, font
533     styles and similar information. See also C<< $term->ROW_t >>.
534    
535     When setting rendition, the font mask will be ignored.
536 root 1.12
537 root 1.18 See the section on RENDITION, above.
538 root 1.13
539     =item $length = $term->ROW_l ($row_number[, $new_length])
540    
541     Returns the number of screen cells that are in use ("the line length"). If
542     it is C<-1>, then the line is part of a multiple-row logical "line", which
543     means all characters are in use and it is continued on the next row.
544 root 1.12
545     =item $text = $term->special_encode $string
546    
547     Converts a perl string into the special encoding used by rxvt-unicode,
548     where one character corresponds to one screen cell. See
549     C<< $term->ROW_t >> for details.
550    
551     =item $string = $term->special_decode $text
552    
553     Converts rxvt-unicodes text reprsentation into a perl string. See
554     C<< $term->ROW_t >> for details.
555 root 1.6
556 root 1.1 =back
557    
558     =head2 The C<urxvt::timer> Class
559    
560     This class implements timer watchers/events. Time is represented as a
561     fractional number of seconds since the epoch. Example:
562    
563     # create a digital clock display in upper right corner
564     $term->{timer} = urxvt::timer
565     ->new
566     ->start (urxvt::NOW)
567     ->cb (sub {
568     my ($timer) = @_;
569     my $time = $timer->at;
570     $timer->start ($time + 1);
571     $self->scr_overlay (-1, 0,
572     POSIX::strftime "%H:%M:%S", localtime $time);
573     });
574    
575     =over 4
576    
577     =item $timer = new urxvt::timer
578    
579     Create a new timer object in stopped state.
580    
581     =item $timer = $timer->cb (sub { my ($timer) = @_; ... })
582    
583     Set the callback to be called when the timer triggers.
584    
585     =item $tstamp = $timer->at
586    
587     Return the time this watcher will fire next.
588    
589     =item $timer = $timer->set ($tstamp)
590    
591     Set the time the event is generated to $tstamp.
592    
593     =item $timer = $timer->start
594    
595     Start the timer.
596    
597     =item $timer = $timer->start ($tstamp)
598    
599     Set the event trigger time to C<$tstamp> and start the timer.
600    
601     =item $timer = $timer->stop
602    
603     Stop the timer.
604    
605     =back
606    
607     =head2 The C<urxvt::iow> Class
608    
609     This class implements io watchers/events. Example:
610    
611     $term->{socket} = ...
612     $term->{iow} = urxvt::iow
613     ->new
614     ->fd (fileno $term->{socket})
615     ->events (1) # wait for read data
616     ->start
617     ->cb (sub {
618     my ($iow, $revents) = @_;
619     # $revents must be 1 here, no need to check
620     sysread $term->{socket}, my $buf, 8192
621     or end-of-file;
622     });
623    
624    
625     =over 4
626    
627     =item $iow = new urxvt::iow
628    
629     Create a new io watcher object in stopped state.
630    
631     =item $iow = $iow->cb (sub { my ($iow, $reventmask) = @_; ... })
632    
633     Set the callback to be called when io events are triggered. C<$reventmask>
634     is a bitset as described in the C<events> method.
635    
636     =item $iow = $iow->fd ($fd)
637    
638     Set the filedescriptor (not handle) to watch.
639    
640     =item $iow = $iow->events ($eventmask)
641    
642     Set the event mask to watch. Bit #0 (value C<1>) enables watching for read
643     data, Bit #1 (value C<2>) enables watching for write data.
644    
645     =item $iow = $iow->start
646    
647     Start watching for requested events on the given handle.
648    
649     =item $iow = $iow->stop
650    
651     Stop watching for events on the given filehandle.
652    
653     =back
654    
655 root 1.4 =head1 ENVIRONMENT
656    
657     =head2 URXVT_PERL_VERBOSITY
658    
659     This variable controls the verbosity level of the perl extension. Higher
660     numbers indicate more verbose output.
661    
662     =over 4
663    
664     =item 0 - only fatal messages
665    
666     =item 3 - script loading and management
667    
668     =item 10 - all events received
669    
670     =back
671    
672 root 1.1 =head1 AUTHOR
673    
674     Marc Lehmann <pcg@goof.com>
675     http://software.schmorp.de/pkg/rxvt-unicode
676    
677     =cut
678    
679     1