reject XSLoader at fatnode module loader if it made it through
[scpubgit/Object-Remote.git] / lib / Object / Remote / FatNode.pm
1 package Object::Remote::FatNode;
2
3 use strictures 1;
4 use Config;
5 use B qw(perlstring);
6
7 sub stripspace {
8   my ($text) = @_;
9   $text =~ /^(\s+)/ && $text =~ s/^$1//mg;
10   $text;
11 }
12
13 my %maybe_libs = map +($_ => 1), grep defined, (values %Config, '.');
14
15 my @extra_libs = grep not(ref($_) or $maybe_libs{$_}), @INC;
16
17 my $extra_libs = join '', map "  -I$_\n", @extra_libs;
18
19 my $command = qq(
20   $^X
21   $extra_libs
22   -mObject::Remote
23   -mObject::Remote::Connector::STDIO
24   -mCPS::Future
25   -mMRO::Compat
26   -mClass::C3
27   -mClass::C3::next
28   -mAlgorithm::C3
29   -mObject::Remote::ModuleLoader
30   -mObject::Remote::Node
31   -mMethod::Generate::BuildAll
32   -mMethod::Generate::DemolishAll
33   -mJSON::PP
34   -e 'print join "\\n", \%INC'
35 );
36
37 $command =~ s/\n/ /g;
38
39 chomp(my @inc = qx($command));
40
41 my %mods = reverse @inc;
42
43 #my @non_core = grep +(
44 #  not (
45 #    /^\Q$Config{privlibexp}/ or /^\Q$Config{archlibexp}/
46 #  )
47 #), keys %mods;
48
49 my @non_core = keys %mods; 
50
51 #my @core_non_arch = grep +(
52 #  /^\Q$Config{privlibexp}/
53 #), grep !/\Q$Config{archname}/, grep !/\Q$Config{myarchname}/, keys %mods;
54 my @core_non_arch; 
55
56 my $start = stripspace <<'END_START';
57   # This chunk of stuff was generated by Object::Remote::FatNode. To find
58   # the original file's code, look for the end of this BEGIN block or the
59   # string 'FATPACK'
60   BEGIN {
61   my (%fatpacked,%fatpacked_extra);
62 END_START
63 my $end = stripspace <<'END_END';
64   s/^  //mg for values %fatpacked, values %fatpacked_extra;
65
66   sub load_from_hash {
67     if ($_[1] eq 'XSLoader.pm') {
68       warn "XSLoader made it into the fat node";
69       return undef; 
70     }
71
72     if (my $fat = $_[0]->{$_[1]}) {
73       open my $fh, '<', \$fat;
74       return $fh;
75     }
76     
77     #Uncomment this to find brokenness
78     #warn "Missing $_[1]";
79     return
80   }
81
82   unshift @INC, sub { load_from_hash(\%fatpacked, $_[1]) };
83   push @INC, sub { load_from_hash(\%fatpacked_extra, $_[1]) };
84
85   } # END OF FATPACK CODE
86
87   use strictures 1;
88   use Object::Remote::Node;
89   Object::Remote::Node->run;
90 END_END
91
92 my %files = map +($mods{$_} => scalar do { local (@ARGV, $/) = ($_); <> }),
93               @non_core, @core_non_arch;
94
95 sub generate_fatpack_hash {
96   my ($hash_name, $orig) = @_;
97   (my $stub = $orig) =~ s/\.pm$//;
98   my $name = uc join '_', split '/', $stub;
99   my $data = $files{$orig} or die $orig; $data =~ s/^/  /mg;
100   return '$'.$hash_name.'{'.perlstring($orig).qq!} = <<'${name}';\n!
101   .qq!${data}${name}\n!;
102 }
103
104 use Data::Dumper;
105 warn "Dumping list of shipped modules";
106 print STDERR "Core non-arch: ", Dumper(\@core_non_arch);
107 print STDERR "Non-core: ", Dumper(\@non_core); 
108
109 my @segments = (
110   map(generate_fatpack_hash('fatpacked', $_), sort map $mods{$_}, @non_core),
111   map(generate_fatpack_hash('fatpacked_extra', $_), sort map $mods{$_}, @core_non_arch),
112 );
113
114 our $DATA = join "\n", $start, @segments, $end;
115
116 1;