1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
|
package Apache::src;
use strict;
use vars qw($VERSION $AUTOLOAD);
use File::Path ();
use IO::File ();
use Cwd ();
use Config;
#this is stuff ripped out of mod_perl's Makefile.PL
#there's still commented out crap
#there's still stuff to be added
#once it is sane, we'll use these methods in Makefile.PL
$VERSION = '0.01';
sub IS_MOD_PERL_BUILD () {-e "../lib/mod_perl.pm"}
my $Is_Win32 = ($^O eq "MSWin32");
sub new {
my $class = shift;
my $dir;
if(IS_MOD_PERL_BUILD) {
eval {
require "../lib/Apache/MyConfig.pm";
};
print $@ if $@;
unless ($@) {
$dir = $Apache::MyConfig::Setup{Apache_Src};
for ($dir, "../$dir", "../../$dir") {
last if -d ($dir = $_);
}
}
}
unless ($dir) {
for (@INC) {
last if -d ($dir = "$_/auto/Apache/include");
}
}
bless {
dir => $dir,
@_,
}, $class;
}
sub mmn_eq {
my($class, $dir) = @_;
return 1 if $Is_Win32; #just assume, till Apache::src works under win32
my $instsrc;
{
local @INC = grep { !/blib/ } @INC;
my $instdir;
for (@INC) {
last if -d ($instdir = "$_/auto/Apache/include");
}
$instsrc = $class->new(dir => $instdir);
}
my $targsrc = $class->new($dir ? (dir => $dir) : ());
my $inst_mmn = $instsrc->module_magic_number;
my $targ_mmn = $targsrc->module_magic_number;
unless ($inst_mmn && $targ_mmn) {
return 0;
}
if ($inst_mmn == $targ_mmn) {
return 1;
}
print "Installed MMN $inst_mmn does not match target $targ_mmn\n";
return 0;
}
sub default_dir {
eval { require Apache::MyConfig };
return $@ ?
'../apache_x.x/src' :
$Apache::MyConfig::Setup{Apache_Src};
}
sub find {
my $self = shift;
my %seen = ();
my @dirs = ();
for my $src_dir ($self->dir,
$self->default_dir,
<../apache*/src>,
<../stronghold*/src>,
"../src", "./src")
{
next unless (-d $src_dir || -l $src_dir);
next if $seen{$src_dir}++;
=pod
next unless $vers = httpd_version($src_dir);
unless(exists $vers_map{$vers}) {
print STDERR "Apache version '$vers' unsupported\n";
next;
}
$mft_map{$src_dir} = $vers_map{$vers};
#print STDERR "$src_dir -> $vers_map{$vers}\n";
=cut
push @dirs, $src_dir;
#$modified{$src_dir} = (stat($src_dir))[9];
}
return @dirs;
}
sub dir {
my($self, $dir) = @_;
$self->{dir} = $dir if $dir;
return $self->{dir};
}
sub main {
my $self = shift;
asrc(shift || $self->dir);
}
sub asrc {
my $d = shift;
return $d if -e "$d/httpd.h";
return "$d/include" if -e "$d/include/httpd.h";
return "$d/main" if -e "$d/main/httpd.h";
return undef;
}
sub module_magic_number {
my $self = shift;
my $d = asrc(shift || $self->dir);
return 0 unless $d;
#return $mcache{$d} if $mcache{$d};
my $fh;
for (qw(ap_mmn.h http_config.h)) {
last if $fh = IO::File->new("$d/$_");
}
return 0 unless $fh;
my $n;
my $mmn_pat = join "|", qw(MODULE_MAGIC_NUMBER_MAJOR MODULE_MAGIC_NUMBER);
while(<$fh>) {
if(s/^#define\s+($mmn_pat)\s+(\d+).*/$2/) {
chomp($n = $_);
last;
}
}
$fh->close;
#return($mcache{$d} = $n);
return $n;
}
sub httpd_version {
my($self, $dir, $vnumber) = @_;
$dir = asrc($dir || $self->dir);
if($vnumber) {
#return $vcache{$dir} if $vcache{$dir};
}
my $fh = IO::File->new("$dir/httpd.h") or return undef;
my($server, $version, $rest);
my($fserver, $fversion, $frest);
my($string, $extra, @vers);
while(<$fh>) {
next unless /^#define/;
s/SERVER_PRODUCT \"/\"Apache/; #1.3.13+
next unless s/^#define\s+SERVER_(BASE|)VERSION\s+"(.*)\s*".*/$2/;
chomp($string = $_);
#print STDERR "Examining SERVER_VERSION '$string'...";
#could be something like:
#Stronghold-1.4b1-dev Ben-SSL/1.3 Apache/1.1.1
@vers = split /\s+/, $string;
foreach (@vers) {
next unless ($fserver,$fversion,$frest) =
m,^([^/]+)/(\d\.\d+\.?\d*)([^ ]*),i;
if($fserver eq "Apache") {
($server, $version) = ($fserver, $fversion);
#$frest =~ s/^(a|b)(\d+).*/'_' . (length($2) > 1 ? $2 : "0$2")/e;
$version .= $frest if $frest;
}
}
}
$fh->close;
return $version;
}
sub find_in_inc {
my $name = shift;
for (@INC) {
my $file;
if (-e ($file = "$_/auto/Apache/$name")) {
return $file;
}
}
}
sub otherldflags {
my @ldflags = ();
if ($^O eq "aix") {
if (my $file = find_in_inc("mod_perl.exp")) {
push @ldflags, "-bI:" . $file;
}
require Apache::MyConfig;
if (my $apxs = $Apache::MyConfig::Setup{'APXS'}) {
my $httpdexp = `$apxs -q LIBEXECDIR` . "/httpd.exp";
push @ldflags, "-bI:$httpdexp" if -e $httpdexp;
}
}
return join(' ', @ldflags);
}
sub typemaps {
my $typemaps = [];
if (my $file = find_in_inc("typemap")) {
push @$typemaps, $file;
}
if(IS_MOD_PERL_BUILD) {
push @$typemaps, "../Apache/typemap";
}
return $typemaps;
}
sub inc {
my $self = shift;
my $src = $self->dir;
my $main = $self->main;
my $os = $Is_Win32 ? "win32" : "unix";
my @inc = ();
for ($src, "$src/modules/perl", $main, "$src/regex", "$src/os/$os") {
push @inc, "-I$_" if -d $_;
}
my $ssl_dir = "$src/../ssl/include";
unless (-d $ssl_dir) {
eval { require Apache::MyConfig };
$ssl_dir = "$Apache::MyConfig::Setup{SSL_BASE}/include";
}
push @inc, "-I$ssl_dir" if -d $ssl_dir;
require Apache::MyConfig;
if (my $apxs = $Apache::MyConfig::Setup{'APXS'}) {
my $ainc = `$apxs -q INCLUDEDIR`;
push @inc, "-I$ainc" if -d $ainc;
}
return "@inc";
}
sub define {
my $self = shift;
if($Config{usethreads}) {
return "-DPERL_THREADS";
}
return "";
}
=pod
my $src = Apache::src->new;
for my $path ($src->find) {
my $mmn = $src->module_magic_number($path);
my $v = $src->httpd_version($path);
next unless $v;
print "path = $path ($mmn,$v)\n";
my $dir = $src->prompt("Configure with $path?");
}
=cut
1;
__END__
=head1 NAME
Apache::src - Methods for locating and parsing bits of Apache source code
=head1 SYNOPSIS
use Apache::src ();
my $src = Apache::src->new;
=head1 DESCRIPTION
This module provides methods for locating and parsing bits of Apache
source code.
=head1 METHODS
=over 4
=item new
Create an object blessed into the B<Apache::src> class.
my $src = Apache::src->new;
=item dir
Top level directory where source files are located.
my $dir = $src->dir;
-d $dir or die "can't stat $dir $!\n";
=item main
Apache's source tree was reorganized during development of version 1.3.
So, common header files such as C<httpd.h> are in different directories
between versions less than 1.3 and those equal to or greater. This
method will return the right directory.
Example:
-e join "/", $src->main, "httpd.h" or die "can't stat httpd.h\n";
=item find
Searches for apache source directories, return a list of those found.
Example:
for my $dir ($src->find) {
my $yn = prompt "Configure with $dir ?", "y";
...
}
=item inc
Print include paths for MakeMaker's B<INC> argument to
C<WriteMakefile>.
Example:
use ExtUtils::MakeMaker;
use Apache::src ();
WriteMakefile(
'NAME' => 'Apache::Module',
'VERSION' => '0.01',
'INC' => Apache::src->new->inc,
);
=item module_magic_number
Return the B<MODULE_MAGIC_NUMBER> defined in the apache source.
Example:
my $mmn = $src->module_magic_number;
=item httpd_version
Return the server version.
Example:
my $v = $src->httpd_version;
=item otherldflags
Return other ld flags for MakeMaker's B<dynamic_lib> argument to
C<WriteMakefile>. This might be needed on systems like AIX that need
special flags to the linker to be able to reference mod_perl or httpd
symbols.
Example:
use ExtUtils::MakeMaker;
use Apache::src ();
WriteMakefile(
'NAME' => 'Apache::Module',
'VERSION' => '0.01',
'INC' => Apache::src->new->inc,
'dynamic_lib' => {
'OTHERLDFLAGS' => Apache::src->new->otherldflags,
},
);
=back
=head1 AUTHOR
Doug MacEachern
|