espie b50533eff0 disentangle the config/init code from the rest.
- move the meat of handle_options from dpb into config->parse_command_line
(this means a backcall to still inherit from OpenBSD::State).
- move parse_config_files from core into config.
- move the prop handling into proper HostProperties (part of config
obviously)
- create a Core::Init file that contains all the former DPB::Host::Factory
and associated jobs.

there's still a wee little bit of cleanup to do, but this should be
easier to maintain, as all option handling is now in one place, and
startup and host confi is now easier to figure out.

- add a -DMIRROR=0/1  setup that controls whether SUPDISTFILES will be
fetched (defaults to 1 for -F and 0 for -f).

- actually allow for several host files to be parsed, as the name implies
2013-06-21 09:05:18 +00:00

225 lines
5.2 KiB
Perl

# ex:ts=8 sw=4:
# $OpenBSD: Vars.pm,v 1.35 2013/06/21 09:05:18 espie Exp $
#
# Copyright (c) 2010 Marc Espie <espie@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
use strict;
use warnings;
package DPB::GetThings;
sub subdirlist
{
my ($class, $list) = @_;
return join(' ', sort keys %$list);
}
sub run_command
{
my ($class, $core, $shell, $grabber, $subdirs, @args) = @_;
my $ports = $grabber->ports;
$shell->chdir($ports);
if (defined $subdirs) {
$shell->env(SUBDIR => $class->subdirlist($subdirs));
}
$shell->exec($grabber->make_args, @args);
exit(1);
}
package DPB::Vars;
our @ISA = qw(DPB::GetThings);
use OpenBSD::Paths;
sub get
{
my ($class, $make, @names) = @_;
pipe(my $rh, my $wh);
my $pid = fork();
if ($pid == 0) {
$DB::inhibit_exit = 0;
print $wh "print-data:\n";
for my $_ (@names) {
print $wh "\t\@echo \${$_}\n";
}
print $wh <<EOT;
COMMENT = test
CATEGORIES = test
PKGPATH = test/a
PERMIT_PACKAGE_CDROM=Yes
WRKOBJDIR=
IGNORE=Yes
_MAKEFILE_INC_DONE=Yes
ECHO_MSG=:
.PHONY: print-data
.include <bsd.port.mk>
EOT
close $wh;
exit 0;
}
close $wh;
my @list;
my $pid2 = open(my $output, "-|");
if ($pid2) {
close $rh;
@list = <$output>;
chomp for @list;
waitpid($pid2, 0);
waitpid($pid, 0);
} else {
close STDIN;
chdir('/');
open(STDIN, '<&', $rh);
exec {$make} ('make', '-f', '-', 'print-data');
die "oops couldn't exec $make";
}
return @list;
}
sub run_pipe
{
my ($class, $core, $grabber, $subdirs, $dpb) = @_;
$core->start_pipe(sub {
my $shell = shift;
close STDERR;
open STDERR, '>&', STDOUT or die "bad redirect";
$class->run_command($core, $shell, $grabber, $subdirs,
'dump-vars', "DPB=$dpb", "BATCH=Yes", "REPORT_PROBLEM=:");
}, "LISTING");
}
sub grab_list
{
my ($class, $core, $grabber, $subdirs, $log, $dpb, $code) = @_;
$class->run_pipe($core, $grabber, $subdirs, $dpb);
my $h = {};
my $seen = {};
my $fh = $core->fh;
my $subdir;
my $category;
my $reset = sub {
$h = DPB::PkgPath->handle_equivalences($grabber->{state},
$h, $subdirs);
$grabber->{fetch}->build_distinfo($h, $grabber->{state}{mirror});
DPB::PkgPath->merge_depends($h);
&$code($h);
$h = {};
};
my @current = ();
my ($o, $info);
my $previous = '';
while(<$fh>) {
push(@current, $_);
chomp;
if (m/^\=\=\=\>\s*Exiting (.*) with an error$/) {
undef $category;
my $dir = DPB::PkgPath->new($1);
$dir->break("exiting with an error");
$h->{$dir} = $dir;
open my $quicklog, '>>',
$grabber->logger->log_pkgpath($dir);
print $quicklog @current;
&$reset;
next;
}
if (m/^\=\=\=\>\s*(.*)/) {
@current = ("$_\n");
$core->job->set_status(" at $1");
$subdir = DPB::PkgPath->new($1);
print $log $_;
if (defined $subdir->{parent}) {
print $log " (", $subdir->{parent}->fullpkgpath, ")";
}
print $log "\n";
if (defined $category) {
$category->{category} = 1;
}
$category = $subdir;
$previous = '';
&$reset;
} elsif (my ($pkgpath, $var, $value) =
m/^(.*?)\.([A-Z][A-Z_0-9]*)\=\s*(.*)\s*$/) {
undef $category;
next unless DPB::PortInfo->wanted($var);
if ($value =~ m/^\"(.*)\"$/) {
$value = $1;
}
if ($pkgpath ne $previous) {
$o = DPB::PkgPath->compose($pkgpath, $subdir);
$info = $seen->{$o} = DPB::PortInfo->new($o);
$h->{$o} = $o;
$previous = $pkgpath;
}
eval { $info->add($var, $value, $o); };
if ($@) {
print $log $@;
$o->break("error with adding $var=$value");
}
} elsif (m/^\>\>\s*Broken dependency:\s*(.*?)\s*non existent/) {
my $dir = DPB::PkgPath->new($1);
$dir->break("broken dependency");
$h->{$dir} = $dir;
print $log $_, "\n";
print $log "Broken ", $dir->fullpkgpath, "\n";
&$reset;
} else {
print $log $_, "\n";
}
}
&$reset;
$core->terminate;
}
package DPB::PortSignature;
our @ISA = qw(DPB::GetThings);
sub grab_signature
{
my ($class, $core, $grabber, $subdir) = @_;
my $signature;
$core->start_pipe(sub {
my $shell = shift;
$class->run_command($core, $shell, $grabber, {$subdir => 1},
'print-package-signature', 'ECHO_MSG=:')
}, "PORT-SIGNATURE");
my $fh = $core->fh;
while (<$fh>) {
chomp;
$signature = $_;
}
$core->terminate;
return $signature;
}
package DPB::CleanPackages;
our @ISA = qw(DPB::GetThings);
sub clean
{
my ($class, $core, $grabber, $subdir) = @_;
$core->start_pipe(sub {
my $shell = shift;
$class->run_command($core, $shell, $grabber, {$subdir => 1},
'clean=package')
}, "CLEAN-PACKAGES");
my $fh = $core->fh;
while (<$fh>) {
}
$core->terminate;
}
1;