| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Text::ParseWords; |
|
2
|
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
1051
|
use strict; |
|
|
2
|
|
|
|
|
8
|
|
|
|
2
|
|
|
|
|
44
|
|
|
4
|
2
|
|
|
2
|
|
7
|
use warnings; |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
70
|
|
|
5
|
|
|
|
|
|
|
require 5.006; |
|
6
|
|
|
|
|
|
|
our $VERSION = "3.31"; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
2
|
|
|
2
|
|
9
|
use Exporter; |
|
|
2
|
|
|
|
|
3
|
|
|
|
2
|
|
|
|
|
741
|
|
|
10
|
|
|
|
|
|
|
our @ISA = qw(Exporter); |
|
11
|
|
|
|
|
|
|
our @EXPORT = qw(shellwords quotewords nested_quotewords parse_line); |
|
12
|
|
|
|
|
|
|
our @EXPORT_OK = qw(old_shellwords); |
|
13
|
|
|
|
|
|
|
our $PERL_SINGLE_QUOTE; |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
sub shellwords { |
|
17
|
5
|
|
|
5
|
0
|
2747
|
my (@lines) = @_; |
|
18
|
5
|
|
|
|
|
9
|
my @allwords; |
|
19
|
|
|
|
|
|
|
|
|
20
|
5
|
|
|
|
|
11
|
foreach my $line (@lines) { |
|
21
|
7
|
|
|
|
|
21
|
$line =~ s/^\s+//; |
|
22
|
7
|
|
|
|
|
17
|
my @words = parse_line('\s+', 0, $line); |
|
23
|
7
|
100
|
100
|
|
|
29
|
pop @words if (@words and !defined $words[-1]); |
|
24
|
7
|
100
|
66
|
|
|
26
|
return() unless (@words || !length($line)); |
|
25
|
5
|
|
|
|
|
13
|
push(@allwords, @words); |
|
26
|
|
|
|
|
|
|
} |
|
27
|
3
|
|
|
|
|
17
|
return(@allwords); |
|
28
|
|
|
|
|
|
|
} |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
sub quotewords { |
|
33
|
4
|
|
|
4
|
0
|
2897
|
my($delim, $keep, @lines) = @_; |
|
34
|
4
|
|
|
|
|
6
|
my($line, @words, @allwords); |
|
35
|
|
|
|
|
|
|
|
|
36
|
4
|
|
|
|
|
9
|
foreach $line (@lines) { |
|
37
|
4
|
|
|
|
|
7
|
@words = parse_line($delim, $keep, $line); |
|
38
|
4
|
100
|
66
|
|
|
16
|
return() unless (@words || !length($line)); |
|
39
|
3
|
|
|
|
|
8
|
push(@allwords, @words); |
|
40
|
|
|
|
|
|
|
} |
|
41
|
3
|
|
|
|
|
14
|
return(@allwords); |
|
42
|
|
|
|
|
|
|
} |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
sub nested_quotewords { |
|
47
|
2
|
|
|
2
|
0
|
853
|
my($delim, $keep, @lines) = @_; |
|
48
|
2
|
|
|
|
|
4
|
my($i, @allwords); |
|
49
|
|
|
|
|
|
|
|
|
50
|
2
|
|
|
|
|
6
|
for ($i = 0; $i < @lines; $i++) { |
|
51
|
4
|
|
|
|
|
8
|
@{$allwords[$i]} = parse_line($delim, $keep, $lines[$i]); |
|
|
4
|
|
|
|
|
9
|
|
|
52
|
4
|
100
|
66
|
|
|
4
|
return() unless (@{$allwords[$i]} || !length($lines[$i])); |
|
|
4
|
|
|
|
|
17
|
|
|
53
|
|
|
|
|
|
|
} |
|
54
|
1
|
|
|
|
|
4
|
return(@allwords); |
|
55
|
|
|
|
|
|
|
} |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
sub parse_line { |
|
60
|
26
|
|
|
26
|
0
|
4834
|
my($delimiter, $keep, $line) = @_; |
|
61
|
26
|
|
|
|
|
35
|
my($word, @pieces); |
|
62
|
|
|
|
|
|
|
|
|
63
|
2
|
|
|
2
|
|
12
|
no warnings 'uninitialized'; # we will be testing undef strings |
|
|
2
|
|
|
|
|
3
|
|
|
|
2
|
|
|
|
|
544
|
|
|
64
|
|
|
|
|
|
|
|
|
65
|
26
|
|
|
|
|
55
|
while (length($line)) { |
|
66
|
|
|
|
|
|
|
# This pattern is optimised to be stack conservative on older perls. |
|
67
|
|
|
|
|
|
|
# Do not refactor without being careful and testing it on very long strings. |
|
68
|
|
|
|
|
|
|
# See Perl bug #42980 for an example of a stack busting input. |
|
69
|
106
|
100
|
|
|
|
1350
|
$line =~ s/^ |
|
70
|
|
|
|
|
|
|
(?: |
|
71
|
|
|
|
|
|
|
# double quoted string |
|
72
|
|
|
|
|
|
|
(") # $quote |
|
73
|
|
|
|
|
|
|
((?>[^\\"]*(?:\\.[^\\"]*)*))" # $quoted |
|
74
|
|
|
|
|
|
|
| # --OR-- |
|
75
|
|
|
|
|
|
|
# singe quoted string |
|
76
|
|
|
|
|
|
|
(') # $quote |
|
77
|
|
|
|
|
|
|
((?>[^\\']*(?:\\.[^\\']*)*))' # $quoted |
|
78
|
|
|
|
|
|
|
| # --OR-- |
|
79
|
|
|
|
|
|
|
# unquoted string |
|
80
|
|
|
|
|
|
|
( # $unquoted |
|
81
|
|
|
|
|
|
|
(?:\\.|[^\\"'])*? |
|
82
|
|
|
|
|
|
|
) |
|
83
|
|
|
|
|
|
|
# followed by |
|
84
|
|
|
|
|
|
|
( # $delim |
|
85
|
|
|
|
|
|
|
\Z(?!\n) # EOL |
|
86
|
|
|
|
|
|
|
| # --OR-- |
|
87
|
|
|
|
|
|
|
(?-x:$delimiter) # delimiter |
|
88
|
|
|
|
|
|
|
| # --OR-- |
|
89
|
|
|
|
|
|
|
(?!^)(?=["']) # a quote |
|
90
|
|
|
|
|
|
|
) |
|
91
|
|
|
|
|
|
|
)//xs or return; # extended layout |
|
92
|
101
|
100
|
|
|
|
354
|
my ($quote, $quoted, $unquoted, $delim) = (($1 ? ($1,$2) : ($3,$4)), $5, $6); |
|
93
|
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
|
95
|
101
|
50
|
100
|
|
|
280
|
return() unless( defined($quote) || length($unquoted) || length($delim)); |
|
|
|
|
66
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
|
97
|
101
|
100
|
|
|
|
141
|
if ($keep) { |
|
98
|
27
|
|
|
|
|
41
|
$quoted = "$quote$quoted$quote"; |
|
99
|
|
|
|
|
|
|
} |
|
100
|
|
|
|
|
|
|
else { |
|
101
|
74
|
|
|
|
|
115
|
$unquoted =~ s/\\(.)/$1/sg; |
|
102
|
74
|
100
|
|
|
|
108
|
if (defined $quote) { |
|
103
|
17
|
100
|
|
|
|
40
|
$quoted =~ s/\\(.)/$1/sg if ($quote eq '"'); |
|
104
|
17
|
100
|
100
|
|
|
44
|
$quoted =~ s/\\([\\'])/$1/g if ( $PERL_SINGLE_QUOTE && $quote eq "'"); |
|
105
|
|
|
|
|
|
|
} |
|
106
|
|
|
|
|
|
|
} |
|
107
|
101
|
|
|
|
|
153
|
$word .= substr($line, 0, 0); # leave results tainted |
|
108
|
101
|
100
|
|
|
|
163
|
$word .= defined $quote ? $quoted : $unquoted; |
|
109
|
|
|
|
|
|
|
|
|
110
|
101
|
100
|
|
|
|
148
|
if (length($delim)) { |
|
111
|
55
|
|
|
|
|
79
|
push(@pieces, $word); |
|
112
|
55
|
100
|
|
|
|
84
|
push(@pieces, $delim) if ($keep eq 'delimiters'); |
|
113
|
55
|
|
|
|
|
59
|
undef $word; |
|
114
|
|
|
|
|
|
|
} |
|
115
|
101
|
100
|
|
|
|
215
|
if (!length($line)) { |
|
116
|
21
|
|
|
|
|
51
|
push(@pieces, $word); |
|
117
|
|
|
|
|
|
|
} |
|
118
|
|
|
|
|
|
|
} |
|
119
|
21
|
|
|
|
|
97
|
return(@pieces); |
|
120
|
|
|
|
|
|
|
} |
|
121
|
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
sub old_shellwords { |
|
125
|
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
# Usage: |
|
127
|
|
|
|
|
|
|
# use ParseWords; |
|
128
|
|
|
|
|
|
|
# @words = old_shellwords($line); |
|
129
|
|
|
|
|
|
|
# or |
|
130
|
|
|
|
|
|
|
# @words = old_shellwords(@lines); |
|
131
|
|
|
|
|
|
|
# or |
|
132
|
|
|
|
|
|
|
# @words = old_shellwords(); # defaults to $_ (and clobbers it) |
|
133
|
|
|
|
|
|
|
|
|
134
|
2
|
|
|
2
|
|
20
|
no warnings 'uninitialized'; # we will be testing undef strings |
|
|
2
|
|
|
|
|
11
|
|
|
|
2
|
|
|
|
|
747
|
|
|
135
|
2
|
50
|
|
2
|
0
|
490
|
local *_ = \join('', @_) if @_; |
|
136
|
2
|
|
|
|
|
6
|
my (@words, $snippet); |
|
137
|
|
|
|
|
|
|
|
|
138
|
2
|
|
|
|
|
8
|
s/\A\s+//; |
|
139
|
2
|
|
|
|
|
6
|
while ($_ ne '') { |
|
140
|
2
|
|
|
|
|
7
|
my $field = substr($_, 0, 0); # leave results tainted |
|
141
|
2
|
|
|
|
|
4
|
for (;;) { |
|
142
|
5
|
50
|
|
|
|
39
|
if (s/\A"(([^"\\]|\\.)*)"//s) { |
|
|
|
50
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
143
|
0
|
|
|
|
|
0
|
($snippet = $1) =~ s#\\(.)#$1#sg; |
|
144
|
|
|
|
|
|
|
} |
|
145
|
|
|
|
|
|
|
elsif (/\A"/) { |
|
146
|
0
|
|
|
|
|
0
|
require Carp; |
|
147
|
0
|
|
|
|
|
0
|
Carp::carp("Unmatched double quote: $_"); |
|
148
|
0
|
|
|
|
|
0
|
return(); |
|
149
|
|
|
|
|
|
|
} |
|
150
|
|
|
|
|
|
|
elsif (s/\A'(([^'\\]|\\.)*)'//s) { |
|
151
|
0
|
|
|
|
|
0
|
($snippet = $1) =~ s#\\(.)#$1#sg; |
|
152
|
|
|
|
|
|
|
} |
|
153
|
|
|
|
|
|
|
elsif (/\A'/) { |
|
154
|
0
|
|
|
|
|
0
|
require Carp; |
|
155
|
0
|
|
|
|
|
0
|
Carp::carp("Unmatched single quote: $_"); |
|
156
|
0
|
|
|
|
|
0
|
return(); |
|
157
|
|
|
|
|
|
|
} |
|
158
|
|
|
|
|
|
|
elsif (s/\A\\(.?)//s) { |
|
159
|
1
|
|
|
|
|
2
|
$snippet = $1; |
|
160
|
|
|
|
|
|
|
} |
|
161
|
|
|
|
|
|
|
elsif (s/\A([^\s\\'"]+)//) { |
|
162
|
2
|
|
|
|
|
5
|
$snippet = $1; |
|
163
|
|
|
|
|
|
|
} |
|
164
|
|
|
|
|
|
|
else { |
|
165
|
2
|
|
|
|
|
4
|
s/\A\s+//; |
|
166
|
2
|
|
|
|
|
10
|
last; |
|
167
|
|
|
|
|
|
|
} |
|
168
|
3
|
|
|
|
|
6
|
$field .= $snippet; |
|
169
|
|
|
|
|
|
|
} |
|
170
|
2
|
|
|
|
|
10
|
push(@words, $field); |
|
171
|
|
|
|
|
|
|
} |
|
172
|
2
|
|
|
|
|
9
|
return @words; |
|
173
|
|
|
|
|
|
|
} |
|
174
|
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
1; |
|
176
|
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
__END__ |