ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/App-Staticperl/mkbundle
(Generate patch)

Comparing cvsroot/App-Staticperl/mkbundle (file contents):
Revision 1.1 by root, Mon Dec 6 19:33:57 2010 UTC vs.
Revision 1.15 by root, Mon Jan 10 14:12:03 2011 UTC

3############################################################################# 3#############################################################################
4# cannot load modules till after the tracer BEGIN block 4# cannot load modules till after the tracer BEGIN block
5 5
6our $VERBOSE = 1; 6our $VERBOSE = 1;
7our $STRIP = "pod"; # none, pod or ppi 7our $STRIP = "pod"; # none, pod or ppi
8our $UNISTRIP = 1; # always on, try to strip unicore swash data
8our $PERL = 0; 9our $PERL = 0;
10our $APP;
9our $VERIFY = 0; 11our $VERIFY = 0;
10our $STATIC = 0; 12our $STATIC = 0;
13our $PACKLIST = 0;
14
15our $OPTIMISE_SIZE = 0; # optimise for raw file size instead of for compression?
16
17our $CACHE;
18our $CACHEVER = 1; # do not change unless you know what you are doing
11 19
12my $PREFIX = "bundle"; 20my $PREFIX = "bundle";
13my $PACKAGE = "static"; 21my $PACKAGE = "static";
14 22
15my %pm; 23my %pm;
24my %pmbin;
16my @libs; 25my @libs;
17my @static_ext; 26my @static_ext;
18my $extralibs; 27my $extralibs;
28my @staticlibs;
29my @incext;
19 30
20@ARGV 31@ARGV
21 or die "$0: use 'staticperl help' (or read the sources of staticperl)\n"; 32 or die "$0: use 'staticperl help' (or read the sources of staticperl)\n";
22 33
34# remove "." from @INC - staticperl.sh does it for us, but be on the safe side
35BEGIN { @INC = grep !/^\.$/, @INC }
36
23$|=1; 37$|=1;
24 38
25our ($TRACER_W, $TRACER_R); 39our ($TRACER_W, $TRACER_R);
26 40
27sub find_inc($) { 41sub find_incdir($) {
28 for (@INC) { 42 for (@INC) {
29 next if ref; 43 next if ref;
30 return $_ if -e "$_/$_[0]"; 44 return $_ if -e "$_/$_[0]";
31 } 45 }
32 46
33 undef 47 undef
34} 48}
35 49
50sub find_inc($) {
51 my $dir = find_incdir $_[0];
52
53 return "$dir/$_[0]"
54 if defined $dir;
55
56 undef
57}
58
36BEGIN { 59BEGIN {
37 # create a loader process to detect @INC requests before we load any modules 60 # create a loader process to detect @INC requests before we load any modules
38 my ($W_TRACER, $R_TRACER); # used by tracer 61 my ($W_TRACER, $R_TRACER); # used by tracer
39 62
40 pipe $R_TRACER, $TRACER_W or die "pipe: $!"; 63 pipe $R_TRACER, $TRACER_W or die "pipe: $!";
43 unless (fork) { 66 unless (fork) {
44 close $TRACER_R; 67 close $TRACER_R;
45 close $TRACER_W; 68 close $TRACER_W;
46 69
47 unshift @INC, sub { 70 unshift @INC, sub {
48 my $dir = find_inc $_[1] 71 my $dir = find_incdir $_[1]
49 or return; 72 or return;
50 73
51 syswrite $W_TRACER, "-\n$dir\n$_[1]\n"; 74 syswrite $W_TRACER, "-\n$dir\n$_[1]\n";
52 75
53 open my $fh, "<:perlio", "$dir/$_[1]" 76 open my $fh, "<:perlio", "$dir/$_[1]"
60 if (/use (.*)$/) { 83 if (/use (.*)$/) {
61 my $mod = $1; 84 my $mod = $1;
62 eval "require $mod"; 85 eval "require $mod";
63 warn "ERROR: $@ (while loading '$mod')\n" 86 warn "ERROR: $@ (while loading '$mod')\n"
64 if $@; 87 if $@;
65 syswrite $W_TRACER, "\n";
66 } elsif (/eval (.*)$/) { 88 } elsif (/eval (.*)$/) {
67 my $eval = $1; 89 my $eval = $1;
68 eval $eval; 90 eval $eval;
69 warn "ERROR: $@ (in '$eval')\n" 91 warn "ERROR: $@ (in '$eval')\n"
70 if $@; 92 if $@;
71 } 93 }
94
95 syswrite $W_TRACER, "\n";
72 } 96 }
73 97
74 exit 0; 98 exit 0;
75 } 99 }
76} 100}
77 101
78# module loading is now safe 102# module loading is now safe
79use Config;
80 103
81sub trace_module { 104sub trace_parse {
82 syswrite $TRACER_W, "use $_[0]\n";
83
84 for (;;) { 105 for (;;) {
85 <$TRACER_R> =~ /^-$/ or last; 106 <$TRACER_R> =~ /^-$/ or last;
86 my $dir = <$TRACER_R>; chomp $dir; 107 my $dir = <$TRACER_R>; chomp $dir;
87 my $name = <$TRACER_R>; chomp $name; 108 my $name = <$TRACER_R>; chomp $name;
88 109
89 $pm{$name} = "$dir/$name"; 110 $pm{$name} = "$dir/$name";
90 111
91 if ($name =~ /^(.*)\.pm$/) { 112 print "+ found potential dependency $name\n"
92 my $auto = "auto/$1"; 113 if $VERBOSE >= 3;
93 my $autodir = "$dir/$auto";
94
95 if (-d $autodir) {
96 opendir my $dir, $autodir
97 or die "$autodir: $!\n";
98
99 for (readdir $dir) {
100 # AutoLoader
101 $pm{"$auto/$_"} = "$autodir/$_"
102 if /\.(?:al|ix)$/;
103
104 # static ext
105 if (/\Q$Config{_a}\E$/o) {
106 push @libs, "$autodir/$_";
107 push @static_ext, $name;
108 }
109
110 # extralibs.ld
111 if ($_ eq "extralibs.ld") {
112 open my $fh, "<:perlio", "$autodir/$_"
113 or die "$autodir/$_";
114
115 local $/;
116 $extralibs .= " " . <$fh>;
117 }
118
119 # dynamic object
120 warn "WARNING: found shared object - can't link statically ($_)\n"
121 if /\.\Q$Config{dlext}\E$/o;
122
123 #TODO: extralibs?
124 }
125 }
126 }
127 } 114 }
115}
116
117sub trace_module {
118 print "tracing module $_[0]\n"
119 if $VERBOSE >= 2;
120
121 syswrite $TRACER_W, "use $_[0]\n";
122 trace_parse;
128} 123}
129 124
130sub trace_eval { 125sub trace_eval {
126 print "tracing eval $_[0]\n"
127 if $VERBOSE >= 2;
128
131 syswrite $TRACER_W, "eval $_[0]\n"; 129 syswrite $TRACER_W, "eval $_[0]\n";
130 trace_parse;
132} 131}
133 132
134sub trace_finish { 133sub trace_finish {
135 close $TRACER_W; 134 close $TRACER_W;
136 close $TRACER_R; 135 close $TRACER_R;
138 137
139############################################################################# 138#############################################################################
140# now we can use modules 139# now we can use modules
141 140
142use common::sense; 141use common::sense;
142use Config;
143use Digest::MD5; 143use Digest::MD5;
144
145sub cache($$$) {
146 my ($variant, $src, $filter) = @_;
147
148 if (length $CACHE and 2048 <= length $src and defined $variant) {
149 my $file = "$CACHE/" . Digest::MD5::md5_hex "$CACHEVER\x00$variant\x00$src";
150
151 if (open my $fh, "<:perlio", $file) {
152 print "using cache for $file\n"
153 if $VERBOSE >= 7;
154
155 local $/;
156 return <$fh>;
157 }
158
159 $src = $filter->($src);
160
161 print "creating cache entry $file\n"
162 if $VERBOSE >= 8;
163
164 if (open my $fh, ">:perlio", "$file~") {
165 if ((syswrite $fh, $src) == length $src) {
166 close $fh;
167 rename "$file~", $file;
168 }
169 }
170
171 return $src;
172 }
173
174 $filter->($src)
175}
144 176
145sub dump_string { 177sub dump_string {
146 my ($fh, $data) = @_; 178 my ($fh, $data) = @_;
147 179
148 if (length $data) { 180 if (length $data) {
158 } else { 190 } else {
159 print $fh " \"\"\n"; 191 print $fh " \"\"\n";
160 } 192 }
161} 193}
162 194
163# required for @INC loading, unfortunately 195#############################################################################
164trace_module "PerlIO::scalar";
165 196
166#trace_module "Term::ReadLine::readline"; # Term::ReadLine::Perl dependency 197sub glob2re {
167# URI is difficult 198 for (quotemeta $_[0]) {
168#trace_module "URI::http"; 199 s/\\\*/\x00/g;
169#trace_module "URI::_generic"; 200 s/\x00\x00/.*/g;
201 s/\x00/[^\/]*/g;
202 s/\\\?/[^\/]/g;
203
204 $_ = s/^\\\/// ? "^$_\$" : "(?:^|/)$_\$";
205
206 s/(?: \[\^\/\] | \. ) \*\$$//x;
207
208 return qr<$_>s
209 }
210}
211
212our %INCSKIP = (
213 "unicore/TestProp.pl" => undef, # 3.5MB of insanity, apparently just some testcase
214);
215
216sub get_dirtree {
217 my $root = shift;
218
219 my @tree;
220 my $skip;
221
222 my $scan; $scan = sub {
223 for (sort do {
224 opendir my $fh, $_[0]
225 or return;
226 readdir $fh
227 }) {
228 next if /^\./;
229
230 my $path = "$_[0]/$_";
231
232 if (-d "$path/.") {
233 $scan->($path);
234 } else {
235 $path = substr $path, $skip;
236 push @tree, $path
237 unless exists $INCSKIP{$path};
238 }
239 }
240 };
241
242 $root =~ s/\/$//;
243 $skip = 1 + length $root;
244 $scan->($root);
245
246 \@tree
247}
248
249my $inctrees;
250
251sub get_inctrees {
252 unless ($inctrees) {
253 my %inctree;
254 $inctree{$_} ||= [$_, get_dirtree $_] # entries in @INC are often duplicates
255 for @INC;
256 $inctrees = [values %inctree];
257 }
258
259 @$inctrees
260}
261
262#############################################################################
170 263
171sub cmd_boot { 264sub cmd_boot {
172 $pm{"//boot"} = $_[0]; 265 $pm{"//boot"} = $_[0];
173} 266}
174 267
175sub cmd_add { 268sub cmd_add {
176 $_[0] =~ /^(.*)(?:\s*(\S+))$/ 269 $_[0] =~ /^(.*)(?:\s+(\S+))$/
177 or die "$_[0]: cannot parse"; 270 or die "$_[0]: cannot parse";
178 271
179 my $file = $1; 272 my $file = $1;
180 my $as = defined $2 ? $2 : "/$1"; 273 my $as = defined $2 ? $2 : "/$1";
181 274
182 $pm{$as} = $file; 275 $pm{$as} = $file;
276 $pmbin{$as} = 1 if $_[1];
183} 277}
278
279sub cmd_staticlib {
280 push @staticlibs, $_
281 for split /\s+/, $_[0];
282}
283
284sub cmd_include {
285 push @incext, [$_[1], glob2re $_[0]];
286}
287
288sub cmd_incglob {
289 my ($pattern) = @_;
290
291 $pattern = glob2re $pattern;
292
293 for (get_inctrees) {
294 my ($dir, $files) = @$_;
295
296 $pm{$_} = "$dir/$_"
297 for grep /$pattern/ && /\.(pl|pm)$/, @$files;
298 }
299}
300
301sub parse_argv;
184 302
185sub cmd_file { 303sub cmd_file {
186 open my $fh, "<", $_[0] 304 open my $fh, "<", $_[0]
187 or die "$_[0]: $!\n"; 305 or die "$_[0]: $!\n";
188 306
307 local @ARGV;
308
189 while (<$fh>) { 309 while (<$fh>) {
190 chomp; 310 chomp;
311 next unless /\S/;
312 next if /^\s*#/;
313
314 s/^\s*-*/--/;
191 my ($cmd, $args) = split / /, $_, 2; 315 my ($cmd, $args) = split / /, $_, 2;
192 316
193 if ($cmd eq "strip") { 317 push @ARGV, $cmd;
194 $STRIP = $args; 318 push @ARGV, $args if defined $args;
195 } elsif ($cmd eq "eval") { 319 }
196 trace_eval $_; 320
197 } elsif ($cmd eq "use") { 321 parse_argv;
198 trace_module $_ 322}
199 for split / /, $args; 323
200 } elsif ($cmd eq "boot") { 324use Getopt::Long;
201 cmd_boot $args; 325
202 } elsif ($cmd eq "static") { 326sub parse_argv {
203 $STATIC = 1; 327 GetOptions
204 } elsif ($cmd eq "add") { 328 "strip=s" => \$STRIP,
205 cmd_add $args; 329 "cache=s" => \$CACHE, # internal option
206 } elsif (/^\s*#/) { 330 "verbose|v" => sub { ++$VERBOSE },
207 # comment 331 "quiet|q" => sub { --$VERBOSE },
208 } elsif (/\S/) { 332 "perl" => \$PERL,
209 die "$_: unsupported directive\n"; 333 "app=s" => \$APP,
334 "eval|e=s" => sub { trace_eval $_[1] },
335 "use|M=s" => sub { trace_module $_[1] },
336 "boot=s" => sub { cmd_boot $_[1] },
337 "add=s" => sub { cmd_add $_[1], 0 },
338 "addbin=s" => sub { cmd_add $_[1], 1 },
339 "incglob=s" => sub { cmd_incglob $_[1] },
340 "include|i=s" => sub { cmd_include $_[1], 1 },
341 "exclude|x=s" => sub { cmd_include $_[1], 0 },
342 "static!" => \$STATIC,
343 "usepacklists!" => \$PACKLIST,
344 "staticlib=s" => sub { cmd_staticlib $_[1] },
345 "<>" => sub { cmd_file $_[0] },
346 or exit 1;
347}
348
349Getopt::Long::Configure ("bundling", "no_auto_abbrev", "no_ignore_case");
350
351parse_argv;
352
353die "cannot specify both --app and --perl\n"
354 if $PERL and defined $APP;
355
356# required for @INC loading, unfortunately
357trace_module "PerlIO::scalar";
358
359#############################################################################
360# apply include/exclude
361
362{
363 my %pmi;
364
365 for (@incext) {
366 my ($inc, $glob) = @$_;
367
368 my @match = grep /$glob/, keys %pm;
369
370 if ($inc) {
371 # include
372 @pmi{@match} = delete @pm{@match};
373
374 print "applying include $glob - protected ", (scalar @match), " files.\n"
375 if $VERBOSE >= 5;
376 } else {
377 # exclude
378 delete @pm{@match};
379
380 print "applying exclude $glob - removed ", (scalar @match), " files.\n"
381 if $VERBOSE >= 5;
210 } 382 }
211 } 383 }
212}
213 384
214use Getopt::Long; 385 my @pmi = keys %pmi;
386 @pm{@pmi} = delete @pmi{@pmi};
387}
215 388
216Getopt::Long::Configure ("bundling", "no_auto_abbrev", "no_ignore_case"); 389#############################################################################
390# scan for AutoLoader, static archives and other dependencies
217 391
218GetOptions 392sub scan_al {
219 "strip=s" => \$STRIP, 393 my ($auto, $autodir) = @_;
220 "verbose|v" => sub { ++$VERBOSE }, 394
221 "quiet|q" => sub { --$VERBOSE }, 395 my $ix = "$autodir/autosplit.ix";
222 "perl" => \$PERL, 396
223 "eval=s" => sub { trace_eval $_[1] }, 397 print "processing autoload index for '$auto'\n"
224 "use|M=s" => sub { trace_module $_[1] }, 398 if $VERBOSE >= 6;
225 "boot=s" => sub { cmd_boot $_[1] }, 399
226 "add=s" => sub { cmd_add $_[1] }, 400 $pm{"$auto/autosplit.ix"} = $ix;
227 "static" => sub { $STATIC = 1 }, 401
228 "<>" => sub { cmd_file $_[1] }, 402 open my $fh, "<:perlio", $ix
229 or exit 1; 403 or die "$ix: $!";
404
405 my $package;
406
407 while (<$fh>) {
408 if (/^\s*sub\s+ ([^[:space:];]+) \s* (?:\([^)]*\))? \s*;?\s*$/x) {
409 my $al = "auto/$package/$1.al";
410 my $inc = find_inc $al;
411
412 defined $inc or die "$al: autoload file not found, but should be there.\n";
413
414 $pm{$al} = $inc;
415 print "found autoload function '$al'\n"
416 if $VERBOSE >= 6;
417
418 } elsif (/^\s*package\s+([^[:space:];]+)\s*;?\s*$/) {
419 ($package = $1) =~ s/::/\//g;
420 } elsif (/^\s*(?:#|1?\s*;?\s*$)/) {
421 # nop
422 } else {
423 warn "WARNING: $ix: unparsable line, please report: $_";
424 }
425 }
426}
427
428for my $pm (keys %pm) {
429 if ($pm =~ /^(.*)\.pm$/) {
430 my $auto = "auto/$1";
431 my $autodir = find_inc $auto;
432
433 if (defined $autodir && -d $autodir) {
434 # AutoLoader
435 scan_al $auto, $autodir
436 if -f "$autodir/autosplit.ix";
437
438 # extralibs.ld
439 if (open my $fh, "<:perlio", "$autodir/extralibs.ld") {
440 print "found extralibs for $pm\n"
441 if $VERBOSE >= 6;
442
443 local $/;
444 $extralibs .= " " . <$fh>;
445 }
446
447 $pm =~ /([^\/]+).pm$/ or die "$pm: unable to match last component";
448
449 my $base = $1;
450
451 # static ext
452 if (-f "$autodir/$base$Config{_a}") {
453 print "found static archive for $pm\n"
454 if $VERBOSE >= 3;
455
456 push @libs, "$autodir/$base$Config{_a}";
457 push @static_ext, $pm;
458 }
459
460 # dynamic object
461 die "ERROR: found shared object - can't link statically ($_)\n"
462 if -f "$autodir/$base.$Config{dlext}";
463
464 if ($PACKLIST && open my $fh, "<:perlio", "$autodir/.packlist") {
465 print "found .packlist for $pm\n"
466 if $VERBOSE >= 3;
467
468 while (<$fh>) {
469 chomp;
470 s/ .*$//; # newer-style .packlists might contain key=value pairs
471
472 # only include certain files (.al, .ix, .pm, .pl)
473 if (/\.(pm|pl|al|ix)$/) {
474 for my $inc (@INC) {
475 # in addition, we only add files that are below some @INC path
476 $inc =~ s/\/*$/\//;
477
478 if ($inc eq substr $_, 0, length $inc) {
479 my $base = substr $_, length $inc;
480 $pm{$base} = $_;
481
482 print "+ added .packlist dependency $base\n"
483 if $VERBOSE >= 3;
484 }
485
486 last;
487 }
488 }
489 }
490 }
491 }
492 }
493}
494
495#############################################################################
496
497print "processing bundle files (try more -v power if you get bored waiting here)...\n"
498 if $VERBOSE >= 1;
230 499
231my $data; 500my $data;
232my @index; 501my @index;
233my @order = sort { 502my @order = sort {
234 length $a <=> length $b 503 length $a <=> length $b
241 510
242for my $pm (@order) { 511for my $pm (@order) {
243 my $path = $pm{$pm}; 512 my $path = $pm{$pm};
244 513
245 128 > length $pm 514 128 > length $pm
246 or die "$pm: path too long (only 128 octets supported)\n"; 515 or die "ERROR: $pm: path too long (only 128 octets supported)\n";
247 516
248 my $src = ref $path 517 my $src = ref $path
249 ? $$path 518 ? $$path
250 : do { 519 : do {
251 open my $pm, "<:perlio", $path 520 open my $pm, "<", $path
252 or die "$path: $!"; 521 or die "$path: $!";
253 522
254 local $/; 523 local $/;
255 524
256 <$pm> 525 <$pm>
257 }; 526 };
258 527
528 my $size = length $src;
529
530 unless ($pmbin{$pm}) { # only do this unless the file is binary
259 if ($pm =~ /^auto\/POSIX\/[^\/]+\.al$/) { 531 if ($pm =~ /^auto\/POSIX\/[^\/]+\.al$/) {
260 if ($src =~ /^ unimpl \"/m) { 532 if ($src =~ /^ unimpl \"/m) {
261 warn "$pm: skipping (not implemented anyways).\n" 533 print "$pm: skipping (raises runtime error only).\n"
262 if $VERBOSE >= 2; 534 if $VERBOSE >= 3;
263 next; 535 next;
536 }
264 } 537 }
265 }
266 538
267 if ($STRIP =~ /ppi/i) { 539 $src = cache +($STRIP eq "ppi" ? "$UNISTRIP,$OPTIMISE_SIZE" : undef), $src, sub {
268 require PPI; 540 if ($UNISTRIP && $pm =~ /^unicore\/.*\.pl$/) {
541 print "applying unicore stripping $pm\n"
542 if $VERBOSE >= 6;
269 543
270 my $ppi = PPI::Document->new (\$src); 544 # special stripping for unicore swashes and properties
271 $ppi->prune ("PPI::Token::Comment"); 545 # much more could be done by going binary
272 $ppi->prune ("PPI::Token::Pod"); 546 $src =~ s{
547 (^return\ <<'END';\n) (.*?\n) (END(?:\n|\Z))
548 }{
549 my ($pre, $data, $post) = ($1, $2, $3);
273 550
274 # prune END stuff 551 for ($data) {
275 for (my $last = $ppi->last_element; $last; ) { 552 s/^([0-9a-fA-F]+)\t([0-9a-fA-F]+)\t/sprintf "%X\t%X", hex $1, hex $2/gem
276 my $prev = $last->previous_token; 553 if $OPTIMISE_SIZE;
277 554
278 if ($last->isa (PPI::Token::Whitespace::)) { 555# s{
279 $last->delete; 556# ^([0-9a-fA-F]+)\t([0-9a-fA-F]*)\t
280 } elsif ($last->isa (PPI::Statement::End::)) { 557# }{
281 $last->delete; 558# # ww - smaller filesize, UU - compress better
559# pack "C0UU",
560# hex $1,
561# length $2 ? (hex $2) - (hex $1) : 0
562# }gemx;
563
564 s/#.*\n/\n/mg;
565 s/\s+\n/\n/mg;
566 }
567
568 "$pre$data$post"
282 last; 569 }smex;
283 } elsif ($last->isa (PPI::Token::Pod::)) {
284 $last->delete;
285 } else {
286 last;
287 } 570 }
288 571
572 if ($STRIP =~ /ppi/i) {
573 require PPI;
574
575 if (my $ppi = PPI::Document->new (\$src)) {
576 $ppi->prune ("PPI::Token::Comment");
577 $ppi->prune ("PPI::Token::Pod");
578
579 # prune END stuff
580 for (my $last = $ppi->last_element; $last; ) {
581 my $prev = $last->previous_token;
582
583 if ($last->isa (PPI::Token::Whitespace::)) {
584 $last->delete;
585 } elsif ($last->isa (PPI::Statement::End::)) {
586 $last->delete;
587 last;
588 } elsif ($last->isa (PPI::Token::Pod::)) {
589 $last->delete;
590 } else {
591 last;
592 }
593
289 $last = $prev; 594 $last = $prev;
290 } 595 }
291 596
292 # prune some but not all insignificant whitespace 597 # prune some but not all insignificant whitespace
293 for my $ws (@{ $ppi->find (PPI::Token::Whitespace::) }) { 598 for my $ws (@{ $ppi->find (PPI::Token::Whitespace::) }) {
294 my $prev = $ws->previous_token; 599 my $prev = $ws->previous_token;
295 my $next = $ws->next_token; 600 my $next = $ws->next_token;
296 601
297 if (!$prev || !$next) { 602 if (!$prev || !$next) {
298 $ws->delete; 603 $ws->delete;
299 } else { 604 } else {
300 if ( 605 if (
301 $next->isa (PPI::Token::Operator::) && $next->{content} =~ /^(?:,|=|!|!=|==|=>)$/ # no ., because of digits. == float 606 $next->isa (PPI::Token::Operator::) && $next->{content} =~ /^(?:,|=|!|!=|==|=>)$/ # no ., because of digits. == float
302 or $prev->isa (PPI::Token::Operator::) && $prev->{content} =~ /^(?:,|=|\.|!|!=|==|=>)$/ 607 or $prev->isa (PPI::Token::Operator::) && $prev->{content} =~ /^(?:,|=|\.|!|!=|==|=>)$/
303 or $prev->isa (PPI::Token::Structure::) 608 or $prev->isa (PPI::Token::Structure::)
304 # decrease size, decrease compressability 609 or ($OPTIMISE_SIZE &&
305 #or ($prev->isa (PPI::Token::Word::) 610 ($prev->isa (PPI::Token::Word::)
306 # && (PPI::Token::Symbol:: eq ref $next 611 && (PPI::Token::Symbol:: eq ref $next
307 # || $next->isa (PPI::Structure::Block::) 612 || $next->isa (PPI::Structure::Block::)
308 # || $next->isa (PPI::Structure::List::) 613 || $next->isa (PPI::Structure::List::)
309 # || $next->isa (PPI::Structure::Condition::))) 614 || $next->isa (PPI::Structure::Condition::)))
615 )
310 ) { 616 ) {
311 $ws->delete; 617 $ws->delete;
312 } elsif ($prev->isa (PPI::Token::Whitespace::)) { 618 } elsif ($prev->isa (PPI::Token::Whitespace::)) {
313 $ws->{content} = ' '; 619 $ws->{content} = ' ';
314 $prev->delete; 620 $prev->delete;
621 } else {
622 $ws->{content} = ' ';
623 }
624 }
625 }
626
627 # prune whitespace around blocks
628 if ($OPTIMISE_SIZE) {
629 # these usually decrease size, but decrease compressability more
630 for my $struct (PPI::Structure::Block::, PPI::Structure::Condition::) {
631 for my $node (@{ $ppi->find ($struct) }) {
632 my $n1 = $node->first_token;
633 my $n2 = $n1->previous_token;
634 $n1->delete if $n1->isa (PPI::Token::Whitespace::);
635 $n2->delete if $n2 && $n2->isa (PPI::Token::Whitespace::);
636 my $n1 = $node->last_token;
637 my $n2 = $n1->next_token;
638 $n1->delete if $n1->isa (PPI::Token::Whitespace::);
639 $n2->delete if $n2 && $n2->isa (PPI::Token::Whitespace::);
640 }
641 }
642
643 for my $node (@{ $ppi->find (PPI::Structure::List::) }) {
644 my $n1 = $node->first_token;
645 $n1->delete if $n1->isa (PPI::Token::Whitespace::);
646 my $n1 = $node->last_token;
647 $n1->delete if $n1->isa (PPI::Token::Whitespace::);
648 }
649 }
650
651 # reformat qw() lists which often have lots of whitespace
652 for my $node (@{ $ppi->find (PPI::Token::QuoteLike::Words::) }) {
653 if ($node->{content} =~ /^qw(.)(.*)(.)$/s) {
654 my ($a, $qw, $b) = ($1, $2, $3);
655 $qw =~ s/^\s+//;
656 $qw =~ s/\s+$//;
657 $qw =~ s/\s+/ /g;
658 $node->{content} = "qw$a$qw$b";
659 }
660 }
661
662 $src = $ppi->serialize;
315 } else { 663 } else {
316 $ws->{content} = ' '; 664 warn "WARNING: $pm{$pm}: PPI failed to parse this file\n";
665 }
666 } elsif ($STRIP =~ /pod/i && $pm ne "Opcode.pm") { # opcode parses its own pod
667 require Pod::Strip;
668
669 my $stripper = Pod::Strip->new;
670
671 my $out;
672 $stripper->output_string (\$out);
673 $stripper->parse_string_document ($src)
674 or die;
675 $src = $out;
676 }
677
678 if ($VERIFY && $pm =~ /\.pm$/ && $pm ne "Opcode.pm") {
679 if (open my $fh, "-|") {
680 <$fh>;
681 } else {
682 eval "#line 1 \"$pm\"\n$src" or warn "\n\n\n$pm\n\n$src\n$@\n\n\n";
683 exit 0;
317 } 684 }
318 } 685 }
686
687 $src
319 } 688 };
320 689
321 # prune whitespace around blocks
322 if (0) {
323 # these usually decrease size, but decrease compressability more
324 for my $struct (PPI::Structure::Block::, PPI::Structure::Condition::) {
325 for my $node (@{ $ppi->find ($struct) }) {
326 my $n1 = $node->first_token;
327 my $n2 = $n1->previous_token;
328 $n1->delete if $n1->isa (PPI::Token::Whitespace::);
329 $n2->delete if $n2 && $n2->isa (PPI::Token::Whitespace::);
330 my $n1 = $node->last_token;
331 my $n2 = $n1->next_token;
332 $n1->delete if $n1->isa (PPI::Token::Whitespace::);
333 $n2->delete if $n2 && $n2->isa (PPI::Token::Whitespace::);
334 }
335 }
336
337 for my $node (@{ $ppi->find (PPI::Structure::List::) }) {
338 my $n1 = $node->first_token;
339 $n1->delete if $n1->isa (PPI::Token::Whitespace::);
340 my $n1 = $node->last_token;
341 $n1->delete if $n1->isa (PPI::Token::Whitespace::);
342 }
343 }
344
345 # reformat qw() lists which often have lots of whitespace
346 for my $node (@{ $ppi->find (PPI::Token::QuoteLike::Words::) }) {
347 if ($node->{content} =~ /^qw(.)(.*)(.)$/s) {
348 my ($a, $qw, $b) = ($1, $2, $3);
349 $qw =~ s/^\s+//;
350 $qw =~ s/\s+$//;
351 $qw =~ s/\s+/ /g;
352 $node->{content} = "qw$a$qw$b";
353 }
354 }
355
356 $src = $ppi->serialize;
357 } elsif ($STRIP =~ /pod/i && $pm ne "Opcode.pm") { # opcode parses it's own pod
358 require Pod::Strip;
359
360 my $stripper = Pod::Strip->new;
361
362 my $out;
363 $stripper->output_string (\$out);
364 $stripper->parse_string_document ($src);
365 $src = $out;
366 }
367
368 if ($VERIFY && $pm =~ /\.pm$/ && $pm ne "Opcode.pm") {
369 if (open my $fh, "-|") {
370 <$fh>;
371 } else {
372 eval "#line 1 \"$pm\"\n$src" or warn "\n\n\n$pm\n\n$src\n$@\n\n\n";
373 exit 0;
374 }
375 }
376
377# if ($pm eq "Opcode.pm") { 690# if ($pm eq "Opcode.pm") {
378# open my $fh, ">x" or die; print $fh $src;#d# 691# open my $fh, ">x" or die; print $fh $src;#d#
379# exit 1; 692# exit 1;
693# }
380# } 694 }
381 695
382 warn "adding $pm\n" 696 print "adding $pm (original size $size, stored size ", length $src, ")\n"
383 if $VERBOSE >= 2; 697 if $VERBOSE >= 2;
384 698
385 push @index, ((length $pm) << 25) | length $data; 699 push @index, ((length $pm) << 25) | length $data;
386 $data .= $pm . $src; 700 $data .= $pm . $src;
387} 701}
388 702
389length $data < 2**25 703length $data < 2**25
390 or die "bundle too large (only 32MB supported)\n"; 704 or die "ERROR: bundle too large (only 32MB supported)\n";
391 705
392my $varpfx = "bundle_" . substr +(Digest::MD5::md5_hex $data), 0, 16; 706my $varpfx = "bundle_" . substr +(Digest::MD5::md5_hex $data), 0, 16;
393 707
394############################################################################# 708#############################################################################
395# output 709# output
396 710
397print "generating $PREFIX.h... "; 711print "generating $PREFIX.h... "
712 if $VERBOSE >= 1;
398 713
399{ 714{
400 open my $fh, ">", "$PREFIX.h" 715 open my $fh, ">", "$PREFIX.h"
401 or die "$PREFIX.h: $!\n"; 716 or die "$PREFIX.h: $!\n";
402 717
403 print $fh <<EOF; 718 print $fh <<EOF;
404/* do not edit, automatically created by mkstaticbundle */ 719/* do not edit, automatically created by mkstaticbundle */
720
405#include <EXTERN.h> 721#include <EXTERN.h>
406#include <perl.h> 722#include <perl.h>
407#include <XSUB.h> 723#include <XSUB.h>
408 724
409/* public API */ 725/* public API */
410EXTERN_C PerlInterpreter *staticperl; 726EXTERN_C PerlInterpreter *staticperl;
727EXTERN_C void staticperl_xs_init (pTHX);
411EXTERN_C void staticperl_init (void); 728EXTERN_C void staticperl_init (void);
412EXTERN_C void staticperl_cleanup (void); 729EXTERN_C void staticperl_cleanup (void);
730
413EOF 731EOF
414} 732}
415 733
416print "\n"; 734print "\n"
735 if $VERBOSE >= 1;
417 736
418############################################################################# 737#############################################################################
419# output 738# output
420 739
421print "generating $PREFIX.c... "; 740print "generating $PREFIX.c... "
741 if $VERBOSE >= 1;
422 742
423open my $fh, ">", "$PREFIX.c" 743open my $fh, ">", "$PREFIX.c"
424 or die "$PREFIX.c: $!\n"; 744 or die "$PREFIX.c: $!\n";
425 745
426print $fh <<EOF; 746print $fh <<EOF;
427/* do not edit, automatically created by mkstaticbundle */ 747/* do not edit, automatically created by mkstaticbundle */
428
429#include <EXTERN.h>
430#include <perl.h>
431#include <XSUB.h>
432 748
433#include "bundle.h" 749#include "bundle.h"
434 750
435/* public API */ 751/* public API */
436PerlInterpreter *staticperl; 752PerlInterpreter *staticperl;
460printf $fh "0x%08x\n};\n", (length $data); 776printf $fh "0x%08x\n};\n", (length $data);
461 777
462print $fh "static const char $varpfx\_data [] =\n"; 778print $fh "static const char $varpfx\_data [] =\n";
463dump_string $fh, $data; 779dump_string $fh, $data;
464 780
465print $fh ";\n\n";; 781print $fh ";\n\n";
466 782
467############################################################################# 783#############################################################################
468# bootstrap 784# bootstrap
469 785
470# boot file for staticperl 786# boot file for staticperl
575 } 891 }
576 892
577 XSRETURN ($varpfx\_count); 893 XSRETURN ($varpfx\_count);
578} 894}
579 895
580static char *args[] = {
581 "staticperl",
582 "-e",
583 "0"
584};
585
586EOF 896EOF
587 897
588############################################################################# 898#############################################################################
589# xs_init 899# xs_init
590 900
591print $fh <<EOF; 901print $fh <<EOF;
592static void 902void
593xs_init (pTHX) 903staticperl_xs_init (pTHX)
594{ 904{
595EOF 905EOF
596 906
597@static_ext = ("DynaLoader", sort @static_ext); 907@static_ext = ("DynaLoader", sort @static_ext);
598 908
629EOF 939EOF
630 940
631############################################################################# 941#############################################################################
632# optional perl_init/perl_destroy 942# optional perl_init/perl_destroy
633 943
634if ($PERL) { 944if ($APP) {
635 print $fh <<EOF; 945 print $fh <<EOF;
636 946
637int 947int
638main (int argc, char *argv []) 948main (int argc, char *argv [])
639{ 949{
640 extern char **environ; 950 extern char **environ;
641 int exitstatus; 951 int exitstatus;
642 952
953 static char *args[] = {
954 "staticperl",
955 "-e",
956 "0"
957 };
958
643 PERL_SYS_INIT3 (&argc, &argv, &environ); 959 PERL_SYS_INIT3 (&argc, &argv, &environ);
644 staticperl = perl_alloc (); 960 staticperl = perl_alloc ();
645 perl_construct (staticperl); 961 perl_construct (staticperl);
646 962
647 PL_exit_flags |= PERL_EXIT_DESTRUCT_END; 963 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
648 964
965 exitstatus = perl_parse (staticperl, staticperl_xs_init, sizeof (args) / sizeof (*args), args, environ);
966 if (!exitstatus)
967 perl_run (staticperl);
968
969 exitstatus = perl_destruct (staticperl);
970 perl_free (staticperl);
971 PERL_SYS_TERM ();
972
973 return exitstatus;
974}
975EOF
976} elsif ($PERL) {
977 print $fh <<EOF;
978
979int
980main (int argc, char *argv [])
981{
982 extern char **environ;
983 int exitstatus;
984
985 PERL_SYS_INIT3 (&argc, &argv, &environ);
986 staticperl = perl_alloc ();
987 perl_construct (staticperl);
988
989 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
990
649 exitstatus = perl_parse (staticperl, xs_init, argc, argv, environ); 991 exitstatus = perl_parse (staticperl, staticperl_xs_init, argc, argv, environ);
650 if (!exitstatus) 992 if (!exitstatus)
651 perl_run (staticperl); 993 perl_run (staticperl);
652 994
653 exitstatus = perl_destruct (staticperl); 995 exitstatus = perl_destruct (staticperl);
654 perl_free (staticperl); 996 perl_free (staticperl);
665{ 1007{
666 extern char **environ; 1008 extern char **environ;
667 int argc = sizeof (args) / sizeof (args [0]); 1009 int argc = sizeof (args) / sizeof (args [0]);
668 char **argv = args; 1010 char **argv = args;
669 1011
1012 static char *args[] = {
1013 "staticperl",
1014 "-e",
1015 "0"
1016 };
1017
670 PERL_SYS_INIT3 (&argc, &argv, &environ); 1018 PERL_SYS_INIT3 (&argc, &argv, &environ);
671 staticperl = perl_alloc (); 1019 staticperl = perl_alloc ();
672 perl_construct (staticperl); 1020 perl_construct (staticperl);
673 PL_origalen = 1; 1021 PL_origalen = 1;
674 PL_exit_flags |= PERL_EXIT_DESTRUCT_END; 1022 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
675 perl_parse (staticperl, xs_init, argc, argv, environ); 1023 perl_parse (staticperl, staticperl_xs_init, argc, argv, environ);
676 1024
677 perl_run (staticperl); 1025 perl_run (staticperl);
678} 1026}
679 1027
680EXTERN_C void 1028EXTERN_C void
686 PERL_SYS_TERM (); 1034 PERL_SYS_TERM ();
687} 1035}
688EOF 1036EOF
689} 1037}
690 1038
691print -s "$PREFIX.c", " octets (", (length $data) , " data octets).\n\n"; 1039print -s "$PREFIX.c", " octets (", (length $data) , " data octets).\n\n"
1040 if $VERBOSE >= 1;
692 1041
693############################################################################# 1042#############################################################################
694# libs, cflags 1043# libs, cflags
695 1044
696{ 1045{
697 print "generating $PREFIX.ccopts... "; 1046 print "generating $PREFIX.ccopts... "
1047 if $VERBOSE >= 1;
698 1048
699 my $str = "$Config{ccflags} $Config{optimize} $Config{cppflags} -I$Config{archlibexp}/CORE"; 1049 my $str = "$Config{ccflags} $Config{optimize} $Config{cppflags} -I$Config{archlibexp}/CORE";
700 $str =~ s/([\(\)])/\\$1/g; 1050 $str =~ s/([\(\)])/\\$1/g;
701
702 print "$str\n\n";
703 1051
704 open my $fh, ">$PREFIX.ccopts" 1052 open my $fh, ">$PREFIX.ccopts"
705 or die "$PREFIX.ccopts: $!"; 1053 or die "$PREFIX.ccopts: $!";
706 print $fh $str; 1054 print $fh $str;
1055
1056 print "$str\n\n"
1057 if $VERBOSE >= 1;
707} 1058}
708 1059
709{ 1060{
710 print "generating $PREFIX.ldopts... "; 1061 print "generating $PREFIX.ldopts... ";
711 1062
712 my $str = $STATIC ? "--static " : ""; 1063 my $str = $STATIC ? "-static " : "";
713 1064
714 $str .= "$Config{ccdlflags} $Config{ldflags} @libs $Config{archlibexp}/CORE/$Config{libperl} $Config{perllibs}"; 1065 $str .= "$Config{ccdlflags} $Config{ldflags} @libs $Config{archlibexp}/CORE/$Config{libperl} $Config{perllibs}";
715 1066
716 my %seen; 1067 my %seen;
717 $str .= " $_" for grep !$seen{$_}++, ($extralibs =~ /(\S+)/g); 1068 $str .= " $_" for grep !$seen{$_}++, ($extralibs =~ /(\S+)/g);
718 1069
1070 for (@staticlibs) {
1071 $str =~ s/(^|\s) (-l\Q$_\E) ($|\s)/$1-Wl,-Bstatic $2 -Wl,-Bdynamic$3/gx;
1072 }
1073
719 $str =~ s/([\(\)])/\\$1/g; 1074 $str =~ s/([\(\)])/\\$1/g;
720
721 print "$str\n\n";
722 1075
723 open my $fh, ">$PREFIX.ldopts" 1076 open my $fh, ">$PREFIX.ldopts"
724 or die "$PREFIX.ldopts: $!"; 1077 or die "$PREFIX.ldopts: $!";
725 print $fh $str; 1078 print $fh $str;
726}
727 1079
728if ($PERL) { 1080 print "$str\n\n"
1081 if $VERBOSE >= 1;
1082}
1083
1084if ($PERL or defined $APP) {
1085 $APP = "perl" unless defined $APP;
1086
1087 print "building $APP...\n"
1088 if $VERBOSE >= 1;
1089
729 system "$Config{cc} \$(cat bundle.ccopts\) -o perl bundle.c \$(cat bundle.ldopts\)"; 1090 system "$Config{cc} \$(cat bundle.ccopts\) -o \Q$APP\E bundle.c \$(cat bundle.ldopts\)";
730 1091
731 unlink "$PREFIX.$_" 1092 unlink "$PREFIX.$_"
732 for qw(ccopts ldopts c h); 1093 for qw(ccopts ldopts c h);
733}
734 1094
1095 print "\n"
1096 if $VERBOSE >= 1;
1097}
1098

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines