Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Pod / Text / Termcap.pm
1 # Pod::Text::Termcap -- Convert POD data to ASCII text with format escapes.
2 #
3 # Copyright 1999, 2001, 2002, 2004, 2006, 2008 Russ Allbery <rra@stanford.edu>
4 #
5 # This program is free software; you may redistribute it and/or modify it
6 # under the same terms as Perl itself.
7 #
8 # This is a simple subclass of Pod::Text that overrides a few key methods to
9 # output the right termcap escape sequences for formatted text on the current
10 # terminal type.
11
12 ##############################################################################
13 # Modules and declarations
14 ##############################################################################
15
16 package Pod::Text::Termcap;
17
18 require 5.004;
19
20 use Pod::Text ();
21 use POSIX ();
22 use Term::Cap;
23
24 use strict;
25 use vars qw(@ISA $VERSION);
26
27 @ISA = qw(Pod::Text);
28
29 $VERSION = '2.05';
30
31 ##############################################################################
32 # Overrides
33 ##############################################################################
34
35 # In the initialization method, grab our terminal characteristics as well as
36 # do all the stuff we normally do.
37 sub new {
38     my ($self, @args) = @_;
39     my ($ospeed, $term, $termios);
40     $self = $self->SUPER::new (@args);
41
42     # $ENV{HOME} is usually not set on Windows.  The default Term::Cap path
43     # may not work on Solaris.
44     my $home = exists $ENV{HOME} ? "$ENV{HOME}/.termcap:" : '';
45     $ENV{TERMPATH} = $home . '/etc/termcap:/usr/share/misc/termcap'
46                            . ':/usr/share/lib/termcap';
47
48     # Fall back on a hard-coded terminal speed if POSIX::Termios isn't
49     # available (such as on VMS).
50     eval { $termios = POSIX::Termios->new };
51     if ($@) {
52         $ospeed = 9600;
53     } else {
54         $termios->getattr;
55         $ospeed = $termios->getospeed || 9600;
56     }
57
58     # Fall back on the ANSI escape sequences if Term::Cap doesn't work.
59     eval { $term = Tgetent Term::Cap { TERM => undef, OSPEED => $ospeed } };
60     $$self{BOLD} = $$term{_md} || "\e[1m";
61     $$self{UNDL} = $$term{_us} || "\e[4m";
62     $$self{NORM} = $$term{_me} || "\e[m";
63
64     unless (defined $$self{width}) {
65         $$self{opt_width} = $ENV{COLUMNS} || $$term{_co} || 80;
66         $$self{opt_width} -= 2;
67     }
68
69     return $self;
70 }
71
72 # Make level one headings bold.
73 sub cmd_head1 {
74     my ($self, $attrs, $text) = @_;
75     $text =~ s/\s+$//;
76     $self->SUPER::cmd_head1 ($attrs, "$$self{BOLD}$text$$self{NORM}");
77 }
78
79 # Make level two headings bold.
80 sub cmd_head2 {
81     my ($self, $attrs, $text) = @_;
82     $text =~ s/\s+$//;
83     $self->SUPER::cmd_head2 ($attrs, "$$self{BOLD}$text$$self{NORM}");
84 }
85
86 # Fix up B<> and I<>.  Note that we intentionally don't do F<>.
87 sub cmd_b { my $self = shift; return "$$self{BOLD}$_[1]$$self{NORM}" }
88 sub cmd_i { my $self = shift; return "$$self{UNDL}$_[1]$$self{NORM}" }
89
90 # Output any included code in bold.
91 sub output_code {
92     my ($self, $code) = @_;
93     $self->output ($$self{BOLD} . $code . $$self{NORM});
94 }
95
96 # Override the wrapping code to igore the special sequences.
97 sub wrap {
98     my $self = shift;
99     local $_ = shift;
100     my $output = '';
101     my $spaces = ' ' x $$self{MARGIN};
102     my $width = $$self{opt_width} - $$self{MARGIN};
103
104     # $codes matches a single special sequence.  $char matches any number of
105     # special sequences preceeding a single character other than a newline.
106     # We have to do $shortchar and $longchar in variables because the
107     # construct ${char}{0,$width} didn't do the right thing until Perl 5.8.x.
108     my $codes = "(?:\Q$$self{BOLD}\E|\Q$$self{UNDL}\E|\Q$$self{NORM}\E)";
109     my $char = "(?:$codes*[^\\n])";
110     my $shortchar = $char . "{0,$width}";
111     my $longchar = $char . "{$width}";
112     while (length > $width) {
113         if (s/^($shortchar)\s+// || s/^($longchar)//) {
114             $output .= $spaces . $1 . "\n";
115         } else {
116             last;
117         }
118     }
119     $output .= $spaces . $_;
120     $output =~ s/\s+$/\n\n/;
121     return $output;
122 }
123
124 ##############################################################################
125 # Module return value and documentation
126 ##############################################################################
127
128 1;
129 __END__
130
131 =head1 NAME
132
133 Pod::Text::Termcap - Convert POD data to ASCII text with format escapes
134
135 =for stopwords
136 ECMA-48 VT100 Allbery
137
138 =head1 SYNOPSIS
139
140     use Pod::Text::Termcap;
141     my $parser = Pod::Text::Termcap->new (sentence => 0, width => 78);
142
143     # Read POD from STDIN and write to STDOUT.
144     $parser->parse_from_filehandle;
145
146     # Read POD from file.pod and write to file.txt.
147     $parser->parse_from_file ('file.pod', 'file.txt');
148
149 =head1 DESCRIPTION
150
151 Pod::Text::Termcap is a simple subclass of Pod::Text that highlights output
152 text using the correct termcap escape sequences for the current terminal.
153 Apart from the format codes, it in all ways functions like Pod::Text.  See
154 L<Pod::Text> for details and available options.
155
156 =head1 NOTES
157
158 This module uses Term::Cap to retrieve the formatting escape sequences for
159 the current terminal, and falls back on the ECMA-48 (the same in this
160 regard as ANSI X3.64 and ISO 6429, the escape codes also used by DEC VT100
161 terminals) if the bold, underline, and reset codes aren't set in the
162 termcap information.
163
164 =head1 SEE ALSO
165
166 L<Pod::Text>, L<Pod::Simple>, L<Term::Cap>
167
168 The current version of this module is always available from its web site at
169 L<http://www.eyrie.org/~eagle/software/podlators/>.  It is also part of the
170 Perl core distribution as of 5.6.0.
171
172 =head1 AUTHOR
173
174 Russ Allbery <rra@stanford.edu>.
175
176 =head1 COPYRIGHT AND LICENSE
177
178 Copyright 1999, 2001, 2002, 2004, 2006, 2008 Russ Allbery
179 <rra@stanford.edu>.
180
181 This program is free software; you may redistribute it and/or modify it
182 under the same terms as Perl itself.
183
184 =cut