| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# vim: set ts=2 sts=2 sw=2 expandtab smarttab: |
|
2
|
|
|
|
|
|
|
# |
|
3
|
|
|
|
|
|
|
# This file is part of HTML-FromANSI-Tiny |
|
4
|
|
|
|
|
|
|
# |
|
5
|
|
|
|
|
|
|
# This software is copyright (c) 2011 by Randy Stauner. |
|
6
|
|
|
|
|
|
|
# |
|
7
|
|
|
|
|
|
|
# This is free software; you can redistribute it and/or modify it under |
|
8
|
|
|
|
|
|
|
# the same terms as the Perl 5 programming language system itself. |
|
9
|
|
|
|
|
|
|
# |
|
10
|
10
|
|
|
10
|
|
115049
|
use strict; |
|
|
10
|
|
|
|
|
140
|
|
|
|
10
|
|
|
|
|
421
|
|
|
11
|
10
|
|
|
10
|
|
108
|
use warnings; |
|
|
10
|
|
|
|
|
29
|
|
|
|
10
|
|
|
|
|
13833
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
package HTML::FromANSI::Tiny; |
|
14
|
|
|
|
|
|
|
# git description: v0.104-2-g306f93b |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:RWSTAUNER'; |
|
17
|
|
|
|
|
|
|
# ABSTRACT: Easily convert colored command line output to HTML |
|
18
|
|
|
|
|
|
|
$HTML::FromANSI::Tiny::VERSION = '0.105'; |
|
19
|
|
|
|
|
|
|
our @COLORS = map { "#$_" } |
|
20
|
|
|
|
|
|
|
qw( |
|
21
|
|
|
|
|
|
|
000 f33 2c2 bb0 55c d3d 0cc bbb |
|
22
|
|
|
|
|
|
|
555 f66 6d6 dd6 99f f6f 6dd fff |
|
23
|
|
|
|
|
|
|
); |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
# 256 palette. |
|
26
|
|
|
|
|
|
|
our @COLORS256 = ( |
|
27
|
|
|
|
|
|
|
# First 16 are the same. |
|
28
|
|
|
|
|
|
|
@COLORS, |
|
29
|
|
|
|
|
|
|
# rgbXYZ |
|
30
|
|
|
|
|
|
|
do { |
|
31
|
|
|
|
|
|
|
my @c; |
|
32
|
|
|
|
|
|
|
for my $r ( 0 .. 5 ){ |
|
33
|
|
|
|
|
|
|
for my $g ( 0 .. 5 ){ |
|
34
|
|
|
|
|
|
|
for my $b ( 0 .. 5 ){ |
|
35
|
|
|
|
|
|
|
push @c, '#' . join('', map { sprintf '%02x', $_ * (255/5) } ($r, $g, $b)); |
|
36
|
|
|
|
|
|
|
} |
|
37
|
|
|
|
|
|
|
} |
|
38
|
|
|
|
|
|
|
} |
|
39
|
|
|
|
|
|
|
@c; # return |
|
40
|
|
|
|
|
|
|
}, |
|
41
|
|
|
|
|
|
|
# "nearly black to nearly white" |
|
42
|
|
|
|
|
|
|
(map { '#' . join('', (sprintf '%02x', ($_ + 1) * 10) x 3) } (0 .. 23)), |
|
43
|
|
|
|
|
|
|
); |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
our @ALLCOLORS = (@COLORS, @COLORS256); |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
sub new { |
|
49
|
38
|
|
|
38
|
1
|
68723
|
my $class = shift; |
|
50
|
|
|
|
|
|
|
my $self = { |
|
51
|
|
|
|
|
|
|
class_prefix => '', |
|
52
|
|
|
|
|
|
|
selector_prefix => '', |
|
53
|
|
|
|
|
|
|
tag => 'span', |
|
54
|
|
|
|
|
|
|
# It seems particularly unlikely that somebody would want these in their HTML. |
|
55
|
|
|
|
|
|
|
remove_escapes => 1, |
|
56
|
38
|
100
|
|
|
|
388
|
@_ == 1 ? %{ $_[0] } : @_, |
|
|
5
|
|
|
|
|
42
|
|
|
57
|
|
|
|
|
|
|
}; |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
require Parse::ANSIColor::Tiny |
|
60
|
38
|
100
|
|
|
|
5324
|
if !$self->{ansi_parser}; |
|
61
|
|
|
|
|
|
|
require HTML::Entities |
|
62
|
38
|
100
|
|
|
|
81250
|
if !$self->{html_encode}; |
|
63
|
|
|
|
|
|
|
|
|
64
|
38
|
|
|
|
|
66950
|
bless $self, $class; |
|
65
|
|
|
|
|
|
|
} |
|
66
|
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
sub ansi_parser { |
|
69
|
55
|
|
|
55
|
1
|
4198
|
my ($self) = @_; |
|
70
|
55
|
|
66
|
|
|
378
|
return $self->{ansi_parser} ||= do { |
|
71
|
|
|
|
|
|
|
# hash slice |
|
72
|
36
|
|
|
|
|
175
|
my (@fields, %copy) = qw( |
|
73
|
|
|
|
|
|
|
auto_reverse |
|
74
|
|
|
|
|
|
|
foreground background |
|
75
|
|
|
|
|
|
|
remove_escapes |
|
76
|
|
|
|
|
|
|
); |
|
77
|
36
|
|
|
|
|
226
|
@copy{ @fields } = @$self{ @fields }; |
|
78
|
36
|
|
|
|
|
320
|
Parse::ANSIColor::Tiny->new(%copy); |
|
79
|
|
|
|
|
|
|
}; |
|
80
|
|
|
|
|
|
|
} |
|
81
|
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
sub css { |
|
84
|
9
|
|
|
9
|
1
|
10877
|
my ($self) = @_; |
|
85
|
9
|
|
|
|
|
78
|
my $prefix = $self->{selector_prefix} . '.' . $self->{class_prefix}; |
|
86
|
|
|
|
|
|
|
|
|
87
|
9
|
|
|
|
|
52
|
my $styles = $self->_css_class_attr; |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
my @css = ( |
|
90
|
9
|
|
|
|
|
2782
|
map { "${prefix}$_ { " . $self->_css_attr_string($styles->{$_}) . " }" } |
|
|
4932
|
|
|
|
|
17986
|
|
|
91
|
|
|
|
|
|
|
sort keys %$styles |
|
92
|
|
|
|
|
|
|
); |
|
93
|
|
|
|
|
|
|
|
|
94
|
9
|
50
|
|
|
|
2572
|
return wantarray ? @css : join('', @css); |
|
95
|
|
|
|
|
|
|
} |
|
96
|
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
sub _css_class_attr { |
|
98
|
11
|
|
|
11
|
|
41
|
my ($self) = @_; |
|
99
|
11
|
|
66
|
|
|
87
|
return $self->{_all_styles} ||= do { |
|
100
|
|
|
|
|
|
|
|
|
101
|
10
|
|
|
|
|
52
|
my $parser = $self->ansi_parser; |
|
102
|
10
|
|
|
|
|
500
|
my $styles = { |
|
103
|
|
|
|
|
|
|
bold => { 'font-weight' => 'bold' }, |
|
104
|
|
|
|
|
|
|
dark => { 'opacity' => '0.7' }, |
|
105
|
|
|
|
|
|
|
underline => { 'text-decoration' => 'underline' }, |
|
106
|
|
|
|
|
|
|
concealed => { 'visibility' => 'hidden' }, |
|
107
|
|
|
|
|
|
|
}; |
|
108
|
|
|
|
|
|
|
{ |
|
109
|
10
|
|
|
|
|
104
|
my $i = 0; |
|
|
10
|
|
|
|
|
36
|
|
|
110
|
10
|
|
|
|
|
63
|
foreach my $fg ( $parser->foreground_colors ){ |
|
111
|
2720
|
|
|
|
|
11817
|
$styles->{$fg} = { color => $ALLCOLORS[$i++] }; |
|
112
|
|
|
|
|
|
|
} |
|
113
|
10
|
|
|
|
|
239
|
$i = 0; |
|
114
|
10
|
|
|
|
|
92
|
foreach my $bg ( $parser->background_colors ){ |
|
115
|
2720
|
|
|
|
|
18290
|
$styles->{$bg} = { 'background-color' => $ALLCOLORS[$i++] }; |
|
116
|
|
|
|
|
|
|
} |
|
117
|
|
|
|
|
|
|
} |
|
118
|
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
# return |
|
120
|
|
|
|
|
|
|
+{ |
|
121
|
|
|
|
|
|
|
%$styles, |
|
122
|
10
|
100
|
|
|
|
1131
|
%{ $self->{styles} || {} }, |
|
|
10
|
|
|
|
|
2575
|
|
|
123
|
|
|
|
|
|
|
}; |
|
124
|
|
|
|
|
|
|
}; |
|
125
|
|
|
|
|
|
|
} |
|
126
|
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
sub _css_attr_string { |
|
128
|
4944
|
|
|
4944
|
|
14769
|
my ($self, $attr) = @_; |
|
129
|
4944
|
|
|
|
|
16777
|
return join ' ', map { "$_: $attr->{$_};" } keys %$attr; |
|
|
4944
|
|
|
|
|
30779
|
|
|
130
|
|
|
|
|
|
|
} |
|
131
|
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
sub html { |
|
134
|
36
|
|
|
36
|
1
|
25828
|
my ($self, $text) = @_; |
|
135
|
36
|
100
|
|
|
|
232
|
$text = $self->ansi_parser->parse($text) |
|
136
|
|
|
|
|
|
|
unless ref($text) eq 'ARRAY'; |
|
137
|
|
|
|
|
|
|
|
|
138
|
36
|
|
|
|
|
7867
|
my $tag = $self->{tag}; |
|
139
|
36
|
|
|
|
|
96
|
my $prefix = $self->{class_prefix}; |
|
140
|
|
|
|
|
|
|
# Preload if needed; Don't load if not. |
|
141
|
36
|
100
|
|
|
|
139
|
my $styles = $self->{inline_style} ? $self->_css_class_attr : {}; |
|
142
|
|
|
|
|
|
|
|
|
143
|
36
|
|
|
|
|
90
|
local $_; |
|
144
|
|
|
|
|
|
|
my @html = map { |
|
145
|
36
|
|
|
|
|
113
|
my ($attr, $text) = @$_; |
|
|
91
|
|
|
|
|
248
|
|
|
146
|
91
|
|
|
|
|
251
|
my $h = $self->html_encode($text); |
|
147
|
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
$self->{no_plain_tags} && !@$attr |
|
149
|
|
|
|
|
|
|
? $h |
|
150
|
91
|
100
|
100
|
|
|
1977
|
: do { |
|
151
|
|
|
|
|
|
|
sprintf q[<%s %s="%s">%s%s>], $tag, |
|
152
|
|
|
|
|
|
|
($self->{inline_style} |
|
153
|
12
|
|
|
|
|
71
|
? (style => join ' ', map { $self->_css_attr_string($styles->{$_}) } @$attr) |
|
154
|
82
|
100
|
|
|
|
373
|
: (class => join ' ', map { $prefix . $_ } @$attr) |
|
|
75
|
|
|
|
|
456
|
|
|
155
|
|
|
|
|
|
|
), $h, $tag; |
|
156
|
|
|
|
|
|
|
} |
|
157
|
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
} @$text; |
|
159
|
|
|
|
|
|
|
|
|
160
|
36
|
100
|
|
|
|
429
|
return wantarray ? @html : join('', @html); |
|
161
|
|
|
|
|
|
|
} |
|
162
|
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
sub html_encode { |
|
165
|
91
|
|
|
91
|
1
|
671
|
my ($self, $text) = @_; |
|
166
|
|
|
|
|
|
|
return $self->{html_encode}->($text) |
|
167
|
91
|
100
|
|
|
|
293
|
if $self->{html_encode}; |
|
168
|
86
|
|
|
|
|
285
|
return HTML::Entities::encode_entities($text); |
|
169
|
|
|
|
|
|
|
} |
|
170
|
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
sub style_tag { |
|
173
|
1
|
|
|
1
|
1
|
3779
|
my ($self) = @_; |
|
174
|
1
|
|
|
|
|
7
|
my @style = (''); |
|
175
|
1
|
50
|
|
|
|
169
|
return wantarray ? @style : join('', @style); |
|
176
|
|
|
|
|
|
|
} |
|
177
|
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
our @EXPORT_OK = qw( html_from_ansi ); |
|
180
|
2
|
|
|
2
|
1
|
155
|
sub html_from_ansi { __PACKAGE__->new->html(@_) } |
|
181
|
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
sub import { |
|
183
|
1
|
|
|
1
|
|
14
|
my $class = shift; |
|
184
|
1
|
50
|
|
|
|
7
|
return unless @_; |
|
185
|
|
|
|
|
|
|
|
|
186
|
1
|
|
|
|
|
17
|
my $caller = caller; |
|
187
|
10
|
|
|
10
|
|
101
|
no strict 'refs'; ## no critic (NoStrict) |
|
|
10
|
|
|
|
|
33
|
|
|
|
10
|
|
|
|
|
1891
|
|
|
188
|
|
|
|
|
|
|
|
|
189
|
1
|
|
|
|
|
5
|
foreach my $arg ( @_ ){ |
|
190
|
|
|
|
|
|
|
die "'$arg' is not exported by $class" |
|
191
|
1
|
50
|
|
|
|
3
|
unless grep { $arg eq $_ } @EXPORT_OK; |
|
|
1
|
|
|
|
|
7
|
|
|
192
|
1
|
|
|
|
|
4
|
*{"${caller}::$arg"} = *{"${class}::$arg"}{CODE}; |
|
|
1
|
|
|
|
|
1941
|
|
|
|
1
|
|
|
|
|
8
|
|
|
193
|
|
|
|
|
|
|
} |
|
194
|
|
|
|
|
|
|
} |
|
195
|
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
1; |
|
197
|
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
__END__ |