line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Latin5; |
2
|
204
|
|
|
204
|
|
108883
|
use strict; |
|
204
|
|
|
|
|
1526
|
|
|
204
|
|
|
|
|
6017
|
|
3
|
|
|
|
|
|
|
###################################################################### |
4
|
|
|
|
|
|
|
# |
5
|
|
|
|
|
|
|
# Latin5 - Source code filter to escape Latin-5 script |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
# http://search.cpan.org/dist/Char-Latin5/ |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018, 2019 INABA Hitoshi |
10
|
|
|
|
|
|
|
###################################################################### |
11
|
|
|
|
|
|
|
|
12
|
204
|
|
|
204
|
|
4544
|
use 5.00503; # Galapagos Consensus 1998 for primetools |
|
204
|
|
|
|
|
886
|
|
13
|
|
|
|
|
|
|
# use 5.008001; # Lancaster Consensus 2013 for toolchains |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
# 12.3. Delaying use Until Runtime |
16
|
|
|
|
|
|
|
# in Chapter 12. Packages, Libraries, and Modules |
17
|
|
|
|
|
|
|
# of ISBN 0-596-00313-7 Perl Cookbook, 2nd Edition. |
18
|
|
|
|
|
|
|
# (and so on) |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
# Version numbers should be boring |
21
|
|
|
|
|
|
|
# http://www.dagolden.com/index.php/369/version-numbers-should-be-boring/ |
22
|
|
|
|
|
|
|
# For the impatient, the disinterested or those who just want to follow |
23
|
|
|
|
|
|
|
# a recipe, my advice for all modules is this: |
24
|
|
|
|
|
|
|
# our $VERSION = "0.001"; # or "0.001_001" for a dev release |
25
|
|
|
|
|
|
|
# $VERSION = CORE::eval $VERSION; # No!! because '1.10' makes '1.1' |
26
|
|
|
|
|
|
|
|
27
|
204
|
|
|
204
|
|
1085
|
use vars qw($VERSION); |
|
204
|
|
|
|
|
328
|
|
|
204
|
|
|
|
|
32458
|
|
28
|
|
|
|
|
|
|
$VERSION = '1.13'; |
29
|
|
|
|
|
|
|
$VERSION = $VERSION; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
BEGIN { |
32
|
204
|
50
|
|
204
|
|
1487
|
if ($^X =~ / jperl /oxmsi) { |
33
|
0
|
|
|
|
|
0
|
die __FILE__, ": needs perl(not jperl) 5.00503 or later. (\$^X==$^X)\n"; |
34
|
|
|
|
|
|
|
} |
35
|
204
|
|
|
|
|
328
|
if (CORE::ord('A') == 193) { |
36
|
|
|
|
|
|
|
die __FILE__, ": is not US-ASCII script (may be EBCDIC or EBCDIK script).\n"; |
37
|
|
|
|
|
|
|
} |
38
|
204
|
|
|
|
|
15780
|
if (CORE::ord('A') != 0x41) { |
39
|
|
|
|
|
|
|
die __FILE__, ": is not US-ASCII script (must be US-ASCII script).\n"; |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
} |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
BEGIN { |
44
|
204
|
|
|
204
|
|
1982
|
(my $dirname = __FILE__) =~ s{^(.+)/[^/]*$}{$1}; |
45
|
204
|
|
|
|
|
769
|
unshift @INC, $dirname; |
46
|
204
|
|
|
|
|
292624
|
CORE::require Elatin5; |
47
|
|
|
|
|
|
|
} |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
# instead of Symbol.pm |
50
|
612
|
|
|
|
|
990
|
BEGIN { |
51
|
|
|
|
|
|
|
sub gensym () { |
52
|
612
|
|
|
612
|
0
|
3086
|
return \do { local *_ }; |
|
204
|
|
|
|
|
12419
|
|
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
} |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
# P.714 29.2.39. flock |
57
|
|
|
|
|
|
|
# in Chapter 29: Functions |
58
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
# P.863 flock |
61
|
|
|
|
|
|
|
# in Chapter 27: Functions |
62
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
# P.228 Inlining Constant Functions |
65
|
|
|
|
|
|
|
# in Chapter 6: Subroutines |
66
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
# P.331 Inlining Constant Functions |
69
|
|
|
|
|
|
|
# in Chapter 7: Subroutines |
70
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
sub LOCK_SH() {1} |
73
|
|
|
|
|
|
|
sub LOCK_EX() {2} |
74
|
|
|
|
|
|
|
sub LOCK_UN() {8} |
75
|
|
|
|
|
|
|
sub LOCK_NB() {4} |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
0
|
|
|
sub unimport {} |
78
|
|
|
|
|
|
|
sub Latin5::escape_script; |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
# 6.18. Matching Multiple-Byte Characters |
81
|
|
|
|
|
|
|
# in Chapter 6. Pattern Matching |
82
|
|
|
|
|
|
|
# of ISBN 978-1-56592-243-3 Perl Perl Cookbook. |
83
|
|
|
|
|
|
|
# (and so on) |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
# regexp of character |
86
|
|
|
|
|
|
|
my $qq_char = qr/(?> \\c[\x40-\x5F] | \\? (?:[\x00-\xFF] | [\x00-\xFF]) )/oxms; |
87
|
|
|
|
|
|
|
my $q_char = qr/(?> [\x00-\xFF] | [\x00-\xFF] )/oxms; |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
# when this script is main program |
90
|
|
|
|
|
|
|
if ($0 eq __FILE__) { |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
# show usage |
93
|
|
|
|
|
|
|
unless (@ARGV) { |
94
|
|
|
|
|
|
|
die <
|
95
|
|
|
|
|
|
|
$0: usage |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
perl $0 Latin-5_script.pl > Escaped_script.pl.e |
98
|
|
|
|
|
|
|
END |
99
|
|
|
|
|
|
|
} |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
print Latin5::escape_script($ARGV[0]); |
102
|
|
|
|
|
|
|
exit 0; |
103
|
|
|
|
|
|
|
} |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
my($package,$filename,$line,$subroutine,$hasargs,$wantarray,$evaltext,$is_require,$hints,$bitmask) = caller 0; |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
# called any package not main |
108
|
|
|
|
|
|
|
if ($package ne 'main') { |
109
|
|
|
|
|
|
|
die <
|
110
|
|
|
|
|
|
|
@{[__FILE__]}: escape by manually command '$^X @{[__FILE__]} "$filename" > "@{[__PACKAGE__]}::$filename"' |
111
|
|
|
|
|
|
|
and rewrite "use $package;" to "use @{[__PACKAGE__]}::$package;" of script "$0". |
112
|
|
|
|
|
|
|
END |
113
|
|
|
|
|
|
|
} |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
# P.302 Module Privacy and the Exporter |
116
|
|
|
|
|
|
|
# in Chapter 11: Modules |
117
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
118
|
|
|
|
|
|
|
# |
119
|
|
|
|
|
|
|
# A module can do anything it jolly well pleases when it's used, since use just |
120
|
|
|
|
|
|
|
# calls the ordinary import method for the module, and you can define that |
121
|
|
|
|
|
|
|
# method to do anything you like. |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
# P.406 Module Privacy and the Exporter |
124
|
|
|
|
|
|
|
# in Chapter 11: Modules |
125
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
126
|
|
|
|
|
|
|
# |
127
|
|
|
|
|
|
|
# A module can do anything it jolly well pleases when it's used, since use just |
128
|
|
|
|
|
|
|
# calls the ordinary import method for the module, and you can define that |
129
|
|
|
|
|
|
|
# method to do anything you like. |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
sub import { |
132
|
|
|
|
|
|
|
|
133
|
0
|
50
|
|
204
|
|
0
|
if (-e("$filename.e")) { |
134
|
0
|
0
|
|
|
|
0
|
if (exists $ENV{'CHAR_DEBUG'}) { |
|
|
0
|
|
|
|
|
|
135
|
0
|
|
|
|
|
0
|
unlink "$filename.e"; |
136
|
|
|
|
|
|
|
} |
137
|
|
|
|
|
|
|
elsif (-z("$filename.e")) { |
138
|
0
|
|
|
|
|
0
|
unlink "$filename.e"; |
139
|
|
|
|
|
|
|
} |
140
|
|
|
|
|
|
|
else { |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
#---------------------------------------------------- |
143
|
|
|
|
|
|
|
# older > |
144
|
|
|
|
|
|
|
# newer >>>>> |
145
|
|
|
|
|
|
|
#---------------------------------------------------- |
146
|
|
|
|
|
|
|
# Filter > |
147
|
|
|
|
|
|
|
# Source >>>>> |
148
|
|
|
|
|
|
|
# Escape >>> needs re-escape (Source was changed) |
149
|
|
|
|
|
|
|
# |
150
|
|
|
|
|
|
|
# Filter >>> |
151
|
|
|
|
|
|
|
# Source >>>>> |
152
|
|
|
|
|
|
|
# Escape > needs re-escape (Source was changed) |
153
|
|
|
|
|
|
|
# |
154
|
|
|
|
|
|
|
# Filter >>>>> |
155
|
|
|
|
|
|
|
# Source >>> |
156
|
|
|
|
|
|
|
# Escape > needs re-escape (Source was changed) |
157
|
|
|
|
|
|
|
# |
158
|
|
|
|
|
|
|
# Filter >>>>> |
159
|
|
|
|
|
|
|
# Source > |
160
|
|
|
|
|
|
|
# Escape >>> needs re-escape (Filter was changed) |
161
|
|
|
|
|
|
|
# |
162
|
|
|
|
|
|
|
# Filter > |
163
|
|
|
|
|
|
|
# Source >>> |
164
|
|
|
|
|
|
|
# Escape >>>>> executable without re-escape |
165
|
|
|
|
|
|
|
# |
166
|
|
|
|
|
|
|
# Filter >>> |
167
|
|
|
|
|
|
|
# Source > |
168
|
|
|
|
|
|
|
# Escape >>>>> executable without re-escape |
169
|
|
|
|
|
|
|
#---------------------------------------------------- |
170
|
|
|
|
|
|
|
|
171
|
0
|
|
|
|
|
0
|
my $mtime_filter = (stat(__FILE__ ))[9]; |
172
|
0
|
|
|
|
|
0
|
my $mtime_source = (stat($filename ))[9]; |
173
|
0
|
|
|
|
|
0
|
my $mtime_escape = (stat("$filename.e"))[9]; |
174
|
0
|
0
|
0
|
|
|
0
|
if (($mtime_escape < $mtime_source) or ($mtime_escape < $mtime_filter)) { |
175
|
204
|
|
|
|
|
2046
|
unlink "$filename.e"; |
176
|
|
|
|
|
|
|
} |
177
|
|
|
|
|
|
|
} |
178
|
|
|
|
|
|
|
} |
179
|
|
|
|
|
|
|
|
180
|
204
|
50
|
|
|
|
658
|
if (not -e("$filename.e")) { |
181
|
204
|
|
|
|
|
1010
|
my $fh = gensym(); |
182
|
204
|
50
|
|
|
|
1830
|
Elatin5::_open_a($fh, "$filename.e") or die __FILE__, ": Can't write open file: $filename.e\n"; |
183
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
# 7.19. Flushing Output |
185
|
|
|
|
|
|
|
# in Chapter 7. File Access |
186
|
|
|
|
|
|
|
# of ISBN 0-596-00313-7 Perl Cookbook, 2nd Edition. |
187
|
|
|
|
|
|
|
|
188
|
204
|
|
|
|
|
923
|
select((select($fh), $|=1)[0]); |
189
|
|
|
|
|
|
|
|
190
|
0
|
50
|
|
|
|
0
|
if (0) { |
191
|
|
|
|
|
|
|
} |
192
|
0
|
|
|
|
|
0
|
elsif (exists $ENV{'CHAR_NONBLOCK'}) { |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
# P.419 File Locking |
195
|
|
|
|
|
|
|
# in Chapter 16: Interprocess Communication |
196
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
197
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
# P.524 File Locking |
199
|
|
|
|
|
|
|
# in Chapter 15: Interprocess Communication |
200
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
201
|
|
|
|
|
|
|
|
202
|
|
|
|
|
|
|
# P.571 Handling Race Conditions |
203
|
|
|
|
|
|
|
# in Chapter 23: Security |
204
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
205
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
# P.663 Handling Race Conditions |
207
|
|
|
|
|
|
|
# in Chapter 20: Security |
208
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
209
|
|
|
|
|
|
|
|
210
|
|
|
|
|
|
|
# (and so on) |
211
|
|
|
|
|
|
|
|
212
|
0
|
|
|
|
|
0
|
CORE::eval q{ flock($fh, LOCK_EX | LOCK_NB) }; |
213
|
0
|
0
|
|
|
|
0
|
if ($@) { |
214
|
204
|
|
|
|
|
12506
|
die __FILE__, ": Can't immediately write-lock the file: $filename.e\n"; |
215
|
|
|
|
|
|
|
} |
216
|
|
|
|
|
|
|
} |
217
|
|
|
|
|
|
|
else { |
218
|
204
|
|
|
|
|
9604
|
CORE::eval q{ flock($fh, LOCK_EX) }; |
219
|
|
|
|
|
|
|
} |
220
|
|
|
|
|
|
|
|
221
|
204
|
|
|
|
|
3923
|
CORE::eval q{ truncate($fh, 0) }; |
222
|
204
|
50
|
|
|
|
668
|
seek($fh, 0, 0) or die __FILE__, ": Can't seek file: $filename.e\n"; |
223
|
|
|
|
|
|
|
|
224
|
204
|
|
|
|
|
531
|
my $e_script = Latin5::escape_script($filename); |
225
|
204
|
|
|
|
|
15824
|
print {$fh} $e_script; |
|
204
|
|
|
|
|
5739
|
|
226
|
|
|
|
|
|
|
|
227
|
204
|
|
|
|
|
5292
|
my $mode = (stat($filename))[2] & 0777; |
228
|
204
|
|
|
|
|
24544
|
chmod $mode, "$filename.e"; |
229
|
|
|
|
|
|
|
|
230
|
204
|
50
|
|
|
|
1732
|
close($fh) or die __FILE__, ": Can't close file: $filename.e\n"; |
231
|
|
|
|
|
|
|
} |
232
|
|
|
|
|
|
|
|
233
|
204
|
|
|
|
|
1354
|
my $fh = gensym(); |
234
|
204
|
50
|
|
|
|
1253
|
Elatin5::_open_r($fh, "$filename.e") or die __FILE__, ": Can't read open file: $filename.e\n"; |
235
|
|
|
|
|
|
|
|
236
|
0
|
50
|
|
|
|
0
|
if (0) { |
237
|
|
|
|
|
|
|
} |
238
|
0
|
|
|
|
|
0
|
elsif (exists $ENV{'CHAR_NONBLOCK'}) { |
239
|
0
|
|
|
|
|
0
|
CORE::eval q{ flock($fh, LOCK_SH | LOCK_NB) }; |
240
|
0
|
0
|
|
|
|
0
|
if ($@) { |
241
|
204
|
|
|
|
|
15841
|
die __FILE__, ": Can't immediately read-lock the file: $filename.e\n"; |
242
|
|
|
|
|
|
|
} |
243
|
|
|
|
|
|
|
} |
244
|
|
|
|
|
|
|
else { |
245
|
204
|
|
|
|
|
992
|
CORE::eval q{ flock($fh, LOCK_SH) }; |
246
|
|
|
|
|
|
|
} |
247
|
|
|
|
|
|
|
|
248
|
204
|
|
|
|
|
1189
|
my @switch = (); |
249
|
0
|
50
|
|
|
|
0
|
if ($^W) { |
250
|
204
|
|
|
|
|
898
|
push @switch, '-w'; |
251
|
|
|
|
|
|
|
} |
252
|
0
|
50
|
|
|
|
0
|
if (defined $^I) { |
253
|
0
|
|
|
|
|
0
|
push @switch, '-i' . $^I; |
254
|
204
|
|
|
|
|
393
|
undef $^I; |
255
|
|
|
|
|
|
|
} |
256
|
|
|
|
|
|
|
|
257
|
|
|
|
|
|
|
# P.707 29.2.33. exec |
258
|
|
|
|
|
|
|
# in Chapter 29: Functions |
259
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
260
|
|
|
|
|
|
|
# |
261
|
|
|
|
|
|
|
# If there is more than one argument in LIST, or if LIST is an array with more |
262
|
|
|
|
|
|
|
# than one value, the system shell will never be used. This also bypasses any |
263
|
|
|
|
|
|
|
# shell processing of the command. The presence or absence of metacharacters in |
264
|
|
|
|
|
|
|
# the arguments doesn't affect this list-triggered behavior, which makes it the |
265
|
|
|
|
|
|
|
# preferred from in security-conscious programs that do not with to expose |
266
|
|
|
|
|
|
|
# themselves to potential shell escapes. |
267
|
|
|
|
|
|
|
# Environment variable PERL5SHELL(Microsoft ports only) will never be used, too. |
268
|
|
|
|
|
|
|
|
269
|
|
|
|
|
|
|
# P.855 exec |
270
|
|
|
|
|
|
|
# in Chapter 27: Functions |
271
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
272
|
|
|
|
|
|
|
# |
273
|
|
|
|
|
|
|
# If there is more than one argument in LIST, or if LIST is an array with more |
274
|
|
|
|
|
|
|
# than one value, the system shell will never be used. This also bypasses any |
275
|
|
|
|
|
|
|
# shell processing of the command. The presence or absence of metacharacters in |
276
|
|
|
|
|
|
|
# the arguments doesn't affect this list-triggered behavior, which makes it the |
277
|
|
|
|
|
|
|
# preferred from in security-conscious programs that do not wish to expose |
278
|
|
|
|
|
|
|
# themselves to injection attacks via shell escapes. |
279
|
|
|
|
|
|
|
# Environment variable PERL5SHELL(Microsoft ports only) will never be used, too. |
280
|
|
|
|
|
|
|
|
281
|
|
|
|
|
|
|
# P.489 #! and Quoting on Non-Unix Systems |
282
|
|
|
|
|
|
|
# in Chapter 19: The Command-Line Interface |
283
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
284
|
|
|
|
|
|
|
|
285
|
|
|
|
|
|
|
# P.578 #! and Quoting on Non-Unix Systems |
286
|
|
|
|
|
|
|
# in Chapter 17: The Command-Line Interface |
287
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
288
|
|
|
|
|
|
|
|
289
|
204
|
|
|
|
|
1374
|
my $system = 0; |
290
|
|
|
|
|
|
|
|
291
|
|
|
|
|
|
|
# DOS-like system |
292
|
0
|
50
|
|
|
|
0
|
if ($^O =~ /\A (?: MSWin32 | NetWare | symbian | dos ) \z/oxms) { |
293
|
|
|
|
|
|
|
$system = Elatin5::_systemx( |
294
|
|
|
|
|
|
|
_escapeshellcmd_MSWin32($^X), |
295
|
|
|
|
|
|
|
|
296
|
|
|
|
|
|
|
# -I switch can not treat space included path |
297
|
|
|
|
|
|
|
# (map { '-I' . _escapeshellcmd_MSWin32($_) } @INC), |
298
|
0
|
|
|
|
|
0
|
(map { '-I' . $_ } @INC), |
299
|
|
|
|
|
|
|
|
300
|
|
|
|
|
|
|
@switch, |
301
|
|
|
|
|
|
|
'--', |
302
|
0
|
|
|
|
|
0
|
map { _escapeshellcmd_MSWin32($_) } "$filename.e", @ARGV |
|
204
|
|
|
|
|
782
|
|
303
|
|
|
|
|
|
|
); |
304
|
|
|
|
|
|
|
} |
305
|
|
|
|
|
|
|
|
306
|
|
|
|
|
|
|
# UNIX-like system |
307
|
|
|
|
|
|
|
else { |
308
|
|
|
|
|
|
|
$system = Elatin5::_systemx( |
309
|
|
|
|
|
|
|
_escapeshellcmd($^X), |
310
|
204
|
|
|
|
|
593
|
(map { '-I' . _escapeshellcmd($_) } @INC), |
311
|
|
|
|
|
|
|
@switch, |
312
|
|
|
|
|
|
|
'--', |
313
|
2448
|
|
|
|
|
3251
|
map { _escapeshellcmd($_) } "$filename.e", @ARGV |
|
204
|
|
|
|
|
358052
|
|
314
|
|
|
|
|
|
|
); |
315
|
|
|
|
|
|
|
} |
316
|
|
|
|
|
|
|
|
317
|
|
|
|
|
|
|
# exit with actual exit value |
318
|
0
|
|
|
|
|
0
|
exit($system >> 8); |
319
|
|
|
|
|
|
|
} |
320
|
|
|
|
|
|
|
|
321
|
|
|
|
|
|
|
# escape shell command line on DOS-like system |
322
|
|
|
|
|
|
|
sub _escapeshellcmd_MSWin32 { |
323
|
0
|
|
|
0
|
|
0
|
my($word) = @_; |
324
|
0
|
0
|
|
|
|
0
|
if ($word =~ / [ ] /oxms) { |
325
|
0
|
|
|
|
|
0
|
return qq{"$word"}; |
326
|
|
|
|
|
|
|
} |
327
|
|
|
|
|
|
|
else { |
328
|
2856
|
|
|
|
|
4078
|
return $word; |
329
|
|
|
|
|
|
|
} |
330
|
|
|
|
|
|
|
} |
331
|
|
|
|
|
|
|
|
332
|
|
|
|
|
|
|
# escape shell command line on UNIX-like system |
333
|
|
|
|
|
|
|
sub _escapeshellcmd { |
334
|
2856
|
|
|
2856
|
|
7303
|
my($word) = @_; |
335
|
204
|
|
|
|
|
462
|
return $word; |
336
|
|
|
|
|
|
|
} |
337
|
|
|
|
|
|
|
|
338
|
|
|
|
|
|
|
# P.619 Source Filters |
339
|
|
|
|
|
|
|
# in Chapter 24: Common Practices |
340
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
341
|
|
|
|
|
|
|
|
342
|
|
|
|
|
|
|
# P.718 Source Filters |
343
|
|
|
|
|
|
|
# in Chapter 21: Common Practices |
344
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
345
|
|
|
|
|
|
|
|
346
|
|
|
|
|
|
|
# escape Latin-5 script |
347
|
|
|
|
|
|
|
sub Latin5::escape_script { |
348
|
204
|
|
|
204
|
0
|
311
|
my($script) = @_; |
349
|
204
|
|
|
|
|
408
|
my $e_script = ''; |
350
|
|
|
|
|
|
|
|
351
|
|
|
|
|
|
|
# read Latin-5 script |
352
|
204
|
|
|
|
|
729
|
my $fh = gensym(); |
353
|
204
|
50
|
|
|
|
1102
|
Elatin5::_open_r($fh, $script) or die __FILE__, ": Can't open file: $script\n"; |
354
|
204
|
|
|
|
|
5835
|
local $/ = undef; # slurp mode |
355
|
204
|
|
|
|
|
2579
|
$_ = <$fh>; |
356
|
204
|
50
|
|
|
|
1267
|
close($fh) or die __FILE__, ": Can't close file: $script\n"; |
357
|
|
|
|
|
|
|
|
358
|
0
|
50
|
|
|
|
0
|
if (/^ use Elatin5(?:(?>\s+)(?>[0-9\.]*))?(?>\s*); $/oxms) { |
359
|
204
|
|
|
|
|
658
|
return $_; |
360
|
|
|
|
|
|
|
} |
361
|
|
|
|
|
|
|
else { |
362
|
|
|
|
|
|
|
|
363
|
|
|
|
|
|
|
# #! shebang line |
364
|
0
|
50
|
|
|
|
0
|
if (s/\A(#!.+?\n)//oms) { |
365
|
0
|
|
|
|
|
0
|
my $head = $1; |
366
|
0
|
|
|
|
|
0
|
$head =~ s/\bjperl\b/perl/gi; |
367
|
204
|
|
|
|
|
499
|
$e_script .= $head; |
368
|
|
|
|
|
|
|
} |
369
|
|
|
|
|
|
|
|
370
|
|
|
|
|
|
|
# DOS-like system header |
371
|
0
|
50
|
|
|
|
0
|
if (s/\A(\@rem(?>\s*)=(?>\s*)'.*?'(?>\s*);\s*\n)//oms) { |
372
|
0
|
|
|
|
|
0
|
my $head = $1; |
373
|
0
|
|
|
|
|
0
|
$head =~ s/\bjperl\b/perl/gi; |
374
|
204
|
|
|
|
|
7159
|
$e_script .= $head; |
375
|
|
|
|
|
|
|
} |
376
|
|
|
|
|
|
|
|
377
|
|
|
|
|
|
|
# P.618 Generating Perl in Other Languages |
378
|
|
|
|
|
|
|
# in Chapter 24: Common Practices |
379
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
380
|
|
|
|
|
|
|
|
381
|
|
|
|
|
|
|
# P.717 Generating Perl in Other Languages |
382
|
|
|
|
|
|
|
# in Chapter 21: Common Practices |
383
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
384
|
|
|
|
|
|
|
|
385
|
0
|
50
|
|
|
|
0
|
if (s/(.*^#(?>\s*)line(?>\s+)(?>[0-9]+)(?:(?>\s+)"(?:$q_char)+?")?\s*\n)//oms) { |
386
|
0
|
|
|
|
|
0
|
my $head = $1; |
387
|
0
|
|
|
|
|
0
|
$head =~ s/\bjperl\b/perl/gi; |
388
|
204
|
|
|
|
|
1090
|
$e_script .= $head; |
389
|
|
|
|
|
|
|
} |
390
|
|
|
|
|
|
|
|
391
|
|
|
|
|
|
|
# P.210 5.10.3.3. Match-time code evaluation |
392
|
|
|
|
|
|
|
# in Chapter 5: Pattern Matching |
393
|
|
|
|
|
|
|
# of ISBN 0-596-00027-8 Programming Perl Third Edition. |
394
|
|
|
|
|
|
|
|
395
|
|
|
|
|
|
|
# P.255 Match-time code evaluation |
396
|
|
|
|
|
|
|
# in Chapter 5: Pattern Matching |
397
|
|
|
|
|
|
|
# of ISBN 978-0-596-00492-7 Programming Perl 4th Edition. |
398
|
|
|
|
|
|
|
|
399
|
|
|
|
|
|
|
# '...' quote to avoid "Octal number in vector unsupported" on perl 5.6 |
400
|
|
|
|
|
|
|
|
401
|
204
|
|
|
|
|
2703
|
$e_script .= sprintf("use Elatin5 '%s.0'; # 'quote' for perl5.6\n", $Latin5::VERSION); # require run-time routines version |
402
|
|
|
|
|
|
|
|
403
|
|
|
|
|
|
|
# use Latin5 version qw(ord reverse getc); |
404
|
204
|
50
|
|
|
|
725
|
if (s/^ (?>\s*) use (?>\s+) (?: Char | Latin5 ) (?>\s*) ([^;]*) ; \s* \n? $//oxms) { |
405
|
|
|
|
|
|
|
|
406
|
|
|
|
|
|
|
# require version |
407
|
204
|
|
|
|
|
1046
|
my $list = $1; |
408
|
0
|
50
|
|
|
|
0
|
if ($list =~ s/\A ((?>[0-9]+)\.(?>[0-9]+)) \.0 (?>\s*) //oxms) { |
|
|
50
|
|
|
|
|
|
409
|
0
|
|
|
|
|
0
|
my $version = $1; |
410
|
0
|
0
|
|
|
|
0
|
if ($version ne $Latin5::VERSION) { |
411
|
0
|
|
|
|
|
0
|
my @file = grep -e, map {qq{$_/Latin5.pm}} @INC; |
|
0
|
|
|
|
|
0
|
|
412
|
0
|
|
|
|
|
0
|
my %file = map { $_ => 1 } @file; |
|
0
|
|
|
|
|
0
|
|
413
|
0
|
0
|
|
|
|
0
|
if (scalar(keys %file) >= 2) { |
414
|
0
|
|
|
|
|
0
|
my $file = join "\n", sort keys %file; |
415
|
0
|
|
|
|
|
0
|
warn <
|
416
|
|
|
|
|
|
|
**************************************************** |
417
|
|
|
|
|
|
|
C A U T I O N |
418
|
|
|
|
|
|
|
|
419
|
|
|
|
|
|
|
CONFLICT Latin5.pm FILE |
420
|
|
|
|
|
|
|
|
421
|
|
|
|
|
|
|
$file |
422
|
|
|
|
|
|
|
**************************************************** |
423
|
|
|
|
|
|
|
|
424
|
|
|
|
|
|
|
END |
425
|
|
|
|
|
|
|
} |
426
|
0
|
|
|
|
|
0
|
die "Script $0 expects Latin5.pm $version, but @{[__FILE__]} is version $Latin5::VERSION\n"; |
|
0
|
|
|
|
|
0
|
|
427
|
|
|
|
|
|
|
} |
428
|
0
|
|
|
|
|
0
|
$e_script .= qq{die "Script \$0 expects Elatin5.pm $version, but \\\$Elatin5::VERSION is \$Elatin5::VERSION" if \$Elatin5::VERSION ne '$version';\n}; |
429
|
|
|
|
|
|
|
} |
430
|
|
|
|
|
|
|
elsif ($list =~ s/\A ((?>[0-9]+)(?>\.[0-9]*)) (?>\s*) //oxms) { |
431
|
0
|
|
|
|
|
0
|
my $version = $1; |
432
|
0
|
0
|
|
|
|
0
|
if ($version > $Latin5::VERSION) { |
433
|
0
|
|
|
|
|
0
|
die "Script $0 required Latin5.pm $version, but @{[__FILE__]} is only version $Latin5::VERSION\n"; |
|
204
|
|
|
|
|
906
|
|
434
|
|
|
|
|
|
|
} |
435
|
|
|
|
|
|
|
} |
436
|
|
|
|
|
|
|
|
437
|
|
|
|
|
|
|
# demand ord, reverse, and getc |
438
|
3
|
100
|
|
|
|
4
|
if ($list !~ /\A (?>\s*) \z/oxms) { |
439
|
3
|
|
|
|
|
143
|
local $@; |
440
|
3
|
|
|
|
|
9
|
my @list = CORE::eval $list; |
441
|
3
|
|
|
|
|
9
|
for (@list) { |
442
|
3
|
50
|
|
|
|
6
|
$Elatin5::function_ord = 'Latin5::ord' if /\A ord \z/oxms; |
443
|
3
|
50
|
|
|
|
7
|
$Elatin5::function_ord_ = 'Latin5::ord_' if /\A ord \z/oxms; |
444
|
3
|
50
|
|
|
|
13
|
$Elatin5::function_reverse = 'Latin5::reverse' if /\A reverse \z/oxms; |
445
|
204
|
50
|
|
|
|
761
|
$Elatin5::function_getc = 'Latin5::getc' if /\A getc \z/oxms; |
446
|
|
|
|
|
|
|
} |
447
|
|
|
|
|
|
|
} |
448
|
|
|
|
|
|
|
} |
449
|
|
|
|
|
|
|
} |
450
|
|
|
|
|
|
|
|
451
|
204
|
|
|
|
|
1856
|
$e_script .= Latin5::escape(); |
452
|
|
|
|
|
|
|
|
453
|
|
|
|
|
|
|
return $e_script; |
454
|
|
|
|
|
|
|
} |
455
|
|
|
|
|
|
|
|
456
|
|
|
|
|
|
|
1; |
457
|
|
|
|
|
|
|
|
458
|
|
|
|
|
|
|
__END__ |