]> git.donarmstrong.com Git - wannabuild.git/blob - bin/wanna-build
adjust handling of buildpri:
[wannabuild.git] / bin / wanna-build
1 #!/usr/bin/perl
2
3 # wanna-build: coordination script for Debian buildds
4 # Copyright (C) 1998 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
5 # Copyright (C) 2005-2008 Ryan Murray <rmurray@debian.org>
6 # Copyright (C) 2010      Andreas Barth <aba@not.so.argh.org>
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; either version 2 of the
11 # License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 use strict;
23 use warnings;
24 use 5.010;
25
26 package conf;
27
28 use vars qw< $basedir $dbbase $transactlog $mailprog $buildd_domain >;
29 # defaults
30 $basedir ||= "/var/lib/debbuild";
31 $dbbase ||= "build-db";
32 $transactlog ||= "transactions.log";
33 $mailprog ||= "/usr/sbin/sendmail";
34 require "/org/wanna-build/etc/wanna-build.conf";
35 die "$conf::basedir is not a directory\n" if ! -d $conf::basedir;
36 die "dbbase is empty\n" if ! $dbbase;
37 die "transactlog is empty\n" if ! $transactlog;
38 die "mailprog binary $conf::mailprog does not exist or isn't executable\n"
39         if !-x $conf::mailprog;
40 package main;
41
42 use POSIX;
43 use FileHandle;
44 use File::Copy;
45 use DBI;
46 use Getopt::Long qw ( :config gnu_getopt );
47 use lib '/org/wanna-build/lib';
48 #use lib 'lib';
49 use WannaBuild;
50 use YAML::Tiny;
51 use Data::Dumper;
52 use Hash::Merge qw ( merge );
53 use String::Format;
54 use Date::Parse;
55 use List::Util qw[max];
56 use Dpkg::Version (); # import nothing
57 if ( defined $Dpkg::Version::VERSION ) {
58     *vercmp = \&Dpkg::Version::version_compare;
59 } else {
60     *vercmp = \&Dpkg::Version::vercmp;
61 }
62
63 use Dpkg::Deps; # TODO: same
64
65 our ($verbose, $mail_logs, $list_order, $list_state,
66     $curr_date, $op_mode, $user, $real_user, $distribution,
67     $fail_reason, $opt_override, $import_from, $export_to,
68     %prioval, %sectval,
69     $info_all_dists, $arch,
70     $short_date, $list_min_age, $list_max_age, $dbbase, @curr_time,
71     $build_priority, %new_vers, $binNMUver, %merge_srcvers, %merge_binsrc,
72     $printformat, $ownprintformat, $privmode, $extra_depends, $extra_conflicts,
73     %distributions, %distribution_aliases
74     );
75 our $Pas = '/org/buildd.debian.org/etc/packages-arch-specific/Packages-arch-specific';
76 our $simulate = 0;
77 our $simulate_edos = 0;
78 our $api = undef; # allow buildds to specify an different api
79 our $recorduser = undef;
80
81 # global vars
82 $ENV{'PATH'} = "/bin:/usr/bin:/usr/local/bin:/org/wanna-build/bin/";
83 $ENV{'LC_ALL'} = 'C';
84 $verbose = 0;
85 $mail_logs = "";
86 @curr_time = gmtime;
87 $curr_date = strftime("%Y %b %d %H:%M:%S",@curr_time);
88 $short_date = strftime("%m/%d/%y",@curr_time);
89 $| = 1;
90
91 # set mode of operation based on command line switch. Should be used
92 # by GetOptions below.
93 sub _set_mode_set { $op_mode = "set-$_[0]" }
94 sub _set_mode { $op_mode = "$_[0]" }
95
96 sub _option_deprecated { warn "Option $_[0] is deprecated" }
97
98 GetOptions(
99     # this is not supported by all operations (yet)!
100     'simulate'      => \$simulate,
101     'simulate-edos' => \$simulate_edos,
102     'simulate-all'  => sub { $simulate = 1; $simulate_edos = 1; },
103     'api=i'         => sub {
104         $api = $_[1];
105         die "$api too large" unless $api <= 1;
106     },
107     'verbose|v'       => \$verbose,
108     'override|o'      => \$opt_override,
109     'correct-compare' => \$WannaBuild::opt_correct_version_cmp,
110
111     # TODO: remove after buildds no longer pass to wanna-build
112     'no-propagation|N'      => \&_option_deprecated,
113     'no-down-propagation|D' => \&_option_deprecated,
114
115     # normal actions
116     'building|take'         => \&_set_mode_set,
117     'failed|f'              => \&_set_mode_set,
118     'uploaded|u'            => \&_set_mode_set,
119     'not-for-us|no-build|n' => \&_set_mode_set,
120     'built'                 => \&_set_mode_set,
121     'attempted'             => \&_set_mode_set,
122     'needs-build|give-back' => \&_set_mode_set,
123     'dep-wait'              => \&_set_mode_set,
124     'update'                => \&_set_mode_set,
125     'forget'                => \&_set_mode,
126     'forget-user'           => \&_set_mode,
127     'merge-v3'              => \&_set_mode,
128     'info|i'                => \&_set_mode,
129     'binary-nmu|binNMU=i'   => sub {
130         _set_mode_set(@_);
131         $binNMUver = $_[1];
132     },
133     'permanent-build-priority|perm-build-priority=i' => sub {
134         _set_mode_set(@_);
135         $build_priority = $_[1];
136     },
137     'build-priority=i' => sub {
138         _set_mode_set(@_);
139         $build_priority = $_[1];
140     },
141     'list|l=s' => sub {
142         _set_mode(@_);
143         $list_state = $_[1];
144         die "Unknown state to list: $list_state\n"
145           if not $list_state ~~ [
146               qw( needs-build building uploaded built
147                   build-attempted failed installed
148                   dep-wait not-for-us auto-not-for-us
149                   all failed-removed install-wait
150                   reupload-wait bd-uninstallable ) ];
151     },
152     'dist|d=s' => sub {
153         $distribution = $_[1];
154         given ( $_[1] ) {
155             when ( [qw< a all >] ) {
156                 $info_all_dists = 1;
157                 $distribution   = '';
158             }
159             when ('o') { $distribution = 'oldstable'; }
160             when ('s') { $distribution = 'stable'; }
161             when ('t') { $distribution = 'testing'; }
162             when ('u') { $distribution = 'unstable'; }
163         }
164     },
165     'order|O=s' => sub {
166         $list_order = $_[1];
167         die "Bad ordering character\n"
168           if $list_order !~ /^[PSpsncbCWT]+$/;
169     },
170     'message|m=s'  => \$fail_reason,
171     'database|b=s' => sub {
172         warn "database is deprecated, please use 'arch' instead.\n";
173         $conf::dbbase = $_[1];
174     },
175     'arch|A=s'     => \$arch,
176     'user|U=s'     => \$user,
177     'min-age|a=i'       => \$list_min_age,
178     'max-age=i'         => \$list_max_age,
179     'format=s'          => \$printformat,
180     'own-format=s'      => \$ownprintformat,
181     'Pas=s'             => \$Pas,
182     'extra-depends=s'   => \$extra_depends,
183     'extra-conflicts=s' => \$extra_conflicts,
184
185     # special actions
186     'export=s' => sub { _set_mode(@_); $export_to   = $_[1]; },
187     'import=s' => sub { _set_mode(@_); $import_from = $_[1]; },
188     'manual-edit'                => \&_set_mode,
189     'distribution-architectures' => \&_set_mode,
190     'distribution-aliases'       => \&_set_mode,
191 ) or usage();
192 $list_min_age = -1 * $list_max_age if $list_max_age;
193
194 my $dbh;
195
196 END {
197         if (defined $dbh)
198         {
199                 $dbh->disconnect or warn $dbh->errstr;
200         }
201 }
202
203 $distribution ||= "sid";
204 if ($distribution eq 'any-priv') {
205     $privmode = 1;
206     $distribution = 'any';
207 }
208 if ($distribution eq 'any-unpriv') {
209     $privmode = 0;
210     $distribution = 'any';
211 }
212
213 my $schema_suffix = '';
214 $recorduser //= (not -t and $user//"" =~ /^buildd_/);
215 if ((isin( $op_mode, qw(list info)) && $distribution !~ /security/ && !$recorduser && !($privmode)) || $simulate) {
216         $dbh = DBI->connect("DBI:Pg:service=wanna-build") || 
217                 die "FATAL: Cannot open database: $DBI::errstr\n";
218         $schema_suffix = '_public';
219 }
220 else
221 {
222         $dbh = DBI->connect("DBI:Pg:service=wanna-build-privileged") || 
223                 die "FATAL: Cannot open database: $DBI::errstr\n";
224 }
225
226 # TODO: This shouldn't be needed, file a bug.
227 $dbh->{pg_server_prepare} = 0;
228
229 $dbh->begin_work or die $dbh->errstr;
230
231 my $q = 'SELECT distribution, public, auto_dep_wait, build_dep_resolver, suppress_successful_logs, archive FROM distributions';
232 my $rows = $dbh->selectall_hashref($q, 'distribution');
233 foreach my $name (keys %$rows) {
234         $distributions{$name} = {};
235         $distributions{$name}->{'noadw'} = 1 if !($rows->{$name}->{'auto_dep_wait'});
236         $distributions{$name}->{'hidden'} = 1 if !($rows->{$name}->{'public'});
237         $distributions{$name}->{'build_dep_resolver'} = $rows->{$name}->{'build_dep_resolver'} if $rows->{$name}->{'build_dep_resolver'};
238         $distributions{$name}->{'suppress_successful_logs'} = $rows->{$name}->{'suppress_successful_logs'} if $rows->{$name}->{'suppress_successful_logs'};
239         $distributions{$name}->{'archive'} = $rows->{$name}->{'archive'} if $rows->{$name}->{'archive'};
240 }
241
242 $q = 'SELECT alias, distribution FROM distribution_aliases';
243 $rows = $dbh->selectall_hashref($q, 'alias');
244 foreach my $name (keys %$rows) {
245         $distribution_aliases{$name} = $rows->{$name}->{'distribution'};
246 }
247 $distribution = $distribution_aliases{$distribution} if (isin($distribution, keys %distribution_aliases));
248
249 $op_mode ||= "set-building";
250 undef $distribution if $distribution eq 'any';
251 if ($distribution) {
252     my @dists = split(/[, ]+/, $distribution);
253     foreach my $dist (@dists) {
254         die "Bad distribution '$distribution'\n"
255             if !isin($dist, keys %distributions);
256     }
257 }
258 if (!isin ( $op_mode, qw(list) ) && ( !$distribution || $distribution =~ /[ ,]/)) {
259     die "multiple distributions are only allowed for list";
260 }
261
262 # If they didn't specify an arch, try to get it from database name which
263 # is in the form of $arch/build-db
264 # This is for backwards compatibity with older versions that didn't
265 # specify the arch yet.
266 $conf::dbbase =~ m#^([^/]+)#;
267 $arch ||= $1;
268
269 # TODO: Check that it's an known arch (for that dist), and give
270 # a proper error.
271
272 if ($verbose) {
273         my $version = '$Revision: db181a534e9d $ $Date: 2008/03/26 06:20:22 $ $Author: rmurray $';
274         $version =~ s/(^\$| \$ .*$)//g;
275         print "wanna-build $version for $distribution on $arch\n";
276 }
277
278 if (!@ARGV && !isin( $op_mode, qw(list merge-quinn merge-partial-quinn import export
279                                   merge-packages manual-edit
280                                   merge-sources distribution-architectures
281                                   distribution-aliases))) {
282         warn "No packages given.\n";
283         usage();
284 }
285
286 $real_user = (getpwuid($<))[0];
287 die "Can't determine your user name\n"
288         if $op_mode ne "list" && !$user &&
289            !($user = $real_user);
290
291 if (!$fail_reason) {
292         if ($op_mode eq "set-failed" ) {
293                 print "Enter reason for failing (end with '.' alone on ".
294                       "its line):\n";
295                 my $line;
296                 while(!eof(STDIN)) {
297                         $line = <STDIN>;
298                         last if $line eq ".\n";
299                         $fail_reason .= $line;
300                 }
301                 chomp( $fail_reason );
302         } elsif ($op_mode eq "set-dep-wait") {
303                 print "Enter dependencies (one line):\n";
304                 my $line;
305                 while( !$line && !eof(STDIN) ) {
306                         chomp( $line = <STDIN> );
307                 }
308                 die "No dependencies given\n" if !$line;
309                 $fail_reason = $line;
310         } elsif ($op_mode eq "set-binary-nmu" and $binNMUver > 0) {
311                 print "Enter changelog entry (one line):\n";
312                 my $line;
313                 while( !$line && !eof(STDIN) ) {
314                         chomp( $line = <STDIN> );
315                 }
316                 die "No changelog entry given\n" if !$line;
317                 $fail_reason = $line;
318         }
319 }
320
321 my $yamlmap = ();
322 my $yamldir = "/org/wanna-build/etc/yaml";
323 my @files = ('wanna-build.yaml');
324 if ((getpwuid($>))[7]) { push (@files, ((getpwuid($>))[7])."/.wanna-build.yaml"); }
325 if ($user && $user =~ /(buildd.*)-/) { push (@files, "$1.yaml") };
326 if ($user) { push ( @files, "$user.yaml"); }
327 foreach my $file (@files) {
328         my $cfile = File::Spec->rel2abs( $file, $yamldir );
329         if ($verbose >= 2) { print "Trying to read $file ($cfile) ...\n"; }
330         next unless -f $cfile;
331         if ($verbose >= 2) { print "Read $file ($cfile) ...\n"; }
332         my $m = YAML::Tiny->read( $cfile )->[0];
333         $yamlmap = merge($m, $yamlmap);
334 }
335 if (not $yamlmap) {
336         die "FATAL: no configuration found\n";
337 }
338 $list_order = $yamlmap->{"list-order"}{$list_state} if !$list_order and $list_state;
339 $list_order ||= $yamlmap->{"list-order"}{'default'};
340 $api //= $yamlmap->{"api"};
341 $api //= 0;
342
343 process();
344
345 $dbh->commit;
346 $dbh->disconnect;
347
348 if ($mail_logs && $conf::log_mail) {
349         send_mail( $conf::log_mail,
350                            "wanna-build $distribution state changes $curr_date",
351                            "State changes at $curr_date for distribution ".
352                            "$distribution:\n\n$mail_logs\n" );
353 }
354
355 exit 0;
356
357
358 sub process {
359
360         SWITCH: foreach ($op_mode) {
361                 /^set-(.+)/ && do {
362                         add_packages( $1, @ARGV );
363                         last SWITCH;
364                 };
365                 /^list/ && do {
366                         list_packages( $list_state );
367                         last SWITCH;
368                 };
369                 /^info/ && do {
370                         info_packages( @ARGV );
371                         last SWITCH;
372                 };
373                 /^forget-user/ && do {
374                         die "This operation is restricted to admin users\n"
375                                 if (defined @conf::admin_users and
376                                     !isin( $real_user, @conf::admin_users));
377                         forget_users( @ARGV );
378                         last SWITCH;
379                 };
380                 /^forget/ && do {
381                         forget_packages( @ARGV );
382                         last SWITCH;
383                 };
384                 /^merge-v3/ && do {
385                         die "This operation is restricted to admin users\n"
386                             if (defined @conf::admin_users and !isin( $real_user, @conf::admin_users) and !$simulate);
387                         # call with installed-packages+ . installed-sources+ [ . available-for-build-packages* [ . consider-as-installed-source* ]  ]
388                         # in case available-for-build-packages is not specified, installed-packages are used
389                         lock_table() unless $simulate;
390                         my $replacemap = { '%ARCH%' => $arch, '%SUITE%' => $distribution };
391                         map { my $k = $_; grep { $k =~ s,$_,$replacemap->{$_}, } keys %{$replacemap}; $_ = $k; } @ARGV;
392                         my @ipkgs = &parse_argv( \@ARGV, '.');
393                         my @isrcs = &parse_argv( \@ARGV, '.');
394                         my @bpkgs = &parse_argv( \@ARGV, '.');
395                         my @psrcs = &parse_argv( \@ARGV, '.');
396                         use WB::QD;
397                         my $srcs = WB::QD::readsourcebins($arch, $Pas, \@isrcs, \@ipkgs);
398                         if (@psrcs) {
399                             my $psrcs = WB::QD::readsourcebins($arch, $Pas, \@psrcs, []);
400                             foreach my $k (keys %$$psrcs) {
401                                 next if $$srcs->{$k};
402                                 my $pkg = $$psrcs->{$k};
403                                 $pkg->{'status'} = 'related';
404                                 $$srcs->{$k} = $pkg;
405                             }
406                         }
407                         parse_all_v3($$srcs, {'arch' => $arch, 'suite' => $distribution, 'time' => $curr_date});
408                         @bpkgs = @ipkgs unless @bpkgs;
409                         call_edos_depcheck( {'arch' => $arch, 'pkgs' => \@bpkgs, 'srcs' => $$srcs, 'depwait' => 1 });
410                         last SWITCH;
411                 };
412                 /^import/ && do {
413                         die "This operation is restricted to admin users\n"
414                                 if (defined @conf::admin_users and
415                                     !isin( $real_user, @conf::admin_users));
416                         $dbh->do("DELETE from " . table_name() . 
417                                 " WHERE distribution = ?", undef,
418                                 $distribution)
419                                 or die $dbh->errstr;
420                         forget_users();
421                         read_db( $import_from );
422                         last SWITCH;
423                 };
424                 /^export/ && do {
425                         export_db( $export_to );
426                         last SWITCH;
427                 };
428                 /^distribution-architectures/ && do {
429                         show_distribution_architectures();
430                         last SWITCH;
431                 };
432                 /^distribution-aliases/ && do {
433                         show_distribution_aliases();
434                         last SWITCH;
435                 };
436
437                 die "Unexpected operation mode $op_mode\n";
438         }
439         if ($recorduser) {
440                 my $userinfo = get_user_info($user);
441                 if (!defined $userinfo)
442                 {
443                         add_user_info($user);
444                 }
445                 else
446                 {
447                         update_user_info($user);
448                 }
449         }
450 }
451
452 sub add_packages {
453         my $newstate = shift;
454         my( $package, $name, $version, $ok, $reason );
455         
456         foreach $package (@_) {
457                 $package =~ s,^.*/,,; # strip path
458                 $package =~ s/\.(dsc|diff\.gz|tar\.gz|deb)$//; # strip extension
459                 $package =~ s/_[a-zA-Z\d-]+\.changes$//; # strip extension
460                 if ($package =~ /^([\w\d.+-]+)_([\w\d:.+~-]+)/) {
461                         ($name,$version) = ($1,$2);
462                 }
463                 else {
464                         warn "$package: can't extract package name and version ".
465                                  "(bad format)\n";
466                         next;
467                 }
468
469                 if ($op_mode eq "set-building") {
470                         add_one_building( $name, $version );
471                 }
472                 elsif ($op_mode eq "set-built") {
473                         add_one_built( $name, $version );
474                 }
475                 elsif ($op_mode eq "set-attempted") {
476                         add_one_attempted( $name, $version );
477                 }
478                 elsif ($op_mode eq "set-uploaded") {
479                         add_one_uploaded( $name, $version );
480                 }
481                 elsif ($op_mode eq "set-failed") {
482                         add_one_failed( $name, $version );
483                 }
484                 elsif ($op_mode eq "set-not-for-us") {
485                         add_one_notforus( $name, $version );
486                 }
487                 elsif ($op_mode eq "set-needs-build") {
488                         add_one_needsbuild( $name, $version );
489                 }
490                 elsif ($op_mode eq "set-dep-wait") {
491                         add_one_depwait( $name, $version );
492                 }
493                 elsif ($op_mode eq "set-build-priority") {
494                         set_one_buildpri( $name, $version, 'buildpri' );
495                 }
496                 elsif ($op_mode eq "set-permanent-build-priority") {
497                         set_one_buildpri( $name, $version, 'permbuildpri' );
498                 }
499                 elsif ($op_mode eq "set-binary-nmu") {
500                         set_one_binnmu( $name, $version );
501                 }
502                 elsif ($op_mode eq "set-update") {
503                         set_one_update( $name, $version );
504                 }
505         }
506 }
507
508 sub add_one_building {
509         my $name = shift;
510         my $version = shift;
511         my( $ok, $reason );
512
513         $ok = 1;
514         my $pkg = get_source_info($name);
515         if (defined($pkg)) {
516                 if ($pkg->{'state'} eq "Not-For-Us") {
517                         $ok = 0;
518                         $reason = "not suitable for this architecture";
519                 }
520                 elsif ($pkg->{'state'} =~ /^Dep-Wait/) {
521                         $ok = 0;
522                         $reason = "not all source dependencies available yet";
523                 }
524                 elsif ($pkg->{'state'} =~ /^BD-Uninstallable/) {
525                         $ok = 0;
526                         $reason = "source dependencies are not installable";
527                 }
528                 elsif ($pkg->{'state'} eq "Uploaded" &&
529                            (version_lesseq($version, $pkg->{'version'}))) {
530                         $ok = 0;
531                         $reason = "already uploaded by $pkg->{'builder'}";
532                         $reason .= " (in newer version $pkg->{'version'})"
533                                 if !version_eq($pkg, $version);
534                 }
535                 elsif ($pkg->{'state'} eq "Installed" &&
536                            version_less($version,$pkg->{'version'})) {
537                         if ($opt_override) {
538                                 print "$name: Warning: newer version $pkg->{'version'} ".
539                                           "already installed, but overridden.\n";
540                         }
541                         else {
542                                 $ok = 0;
543                                 $reason = "newer version $pkg->{'version'} already in ".
544                                                   "archive; doesn't need rebuilding";
545                                 print "$name: Note: If the following is due to an epoch ",
546                                           " change, use --override\n";
547                         }
548                 }
549                 elsif ($pkg->{'state'} eq "Installed" &&
550                            pkg_version_eq($pkg,$version)) {
551                         $ok = 0;
552                         $reason = "is up-to-date in the archive; doesn't need rebuilding";
553                 }
554                 elsif ($pkg->{'state'} eq "Needs-Build" &&
555                            version_less($version,$pkg->{'version'})) {
556                         if ($opt_override) {
557                                 print "$name: Warning: newer version $pkg->{'version'} ".
558                                           "needs building, but overridden.";
559                         }
560                         else {
561                                 $ok = 0;
562                                 $reason = "newer version $pkg->{'version'} needs building, ".
563                                                   "not $version";
564                         }
565                 }
566                 elsif (isin($pkg->{'state'},qw(Building Built Build-Attempted))) {
567                         if (version_less($pkg->{'version'},$version)) {
568                                 print "$name: Warning: Older version $pkg->{'version'} ",
569                                       "is being built by $pkg->{'builder'}\n";
570                                 if ($pkg->{'builder'} ne $user) {
571                                         send_mail( $pkg->{'builder'},
572                                                            "package takeover in newer version",
573                                                            "You are building package '$name' in ".
574                                                            "version $version\n".
575                                                            "(as far as I'm informed).\n".
576                                                            "$user now has taken the newer ".
577                                                            "version $version for building.".
578                                                            "You can abort the build if you like.\n" );
579                                 }
580                         }
581                         else {
582                                 if ($opt_override) {
583                                         print "User $pkg->{'builder'} had already ",
584                                               "taken the following package,\n",
585                                                   "but overriding this as you request:\n";
586                                         send_mail( $pkg->{'builder'}, "package takeover",
587                                                            "The package '$name' (version $version) that ".
588                                                            "was taken by you\n".
589                                                            "has been taken over by $user\n" );
590                                 }
591                                 elsif ($pkg->{'builder'} eq $user) {
592                                         print "$name: Note: already taken by you.\n";
593                                         print "$name: ok\n" if $verbose;
594                                         return;
595                                 }
596                                 else {
597                                         $ok = 0;
598                                         $reason = "already taken by $pkg->{'builder'}";
599                                         $reason .= " (in newer version $pkg->{'version'})"
600                                                 if !version_eq($pkg->{'version'}, $version);
601                                 }
602                         }
603                 }
604                 elsif ($pkg->{'state'} =~ /^Failed/ &&
605                            pkg_version_eq($pkg, $version)) {
606                         if ($opt_override) {
607                                 print "The following package previously failed ",
608                                           "(by $pkg->{'builder'})\n",
609                                           "but overriding this as you request:\n";
610                                 send_mail( $pkg->{'builder'}, "failed package takeover",
611                                                    "The package '$name' (version $version) that ".
612                                                    "is taken by you\n".
613                                                    "and has failed previously has been taken over ".
614                                                    "by $user\n" )
615                                         if $pkg->{'builder'} ne $user;
616                         }
617                         else {
618                                 $ok = 0;
619                                 $reason = "build of $version failed previously:\n    ";
620                                 $reason .= join( "\n    ", split( "\n", $pkg->{'failed'} ));
621                                 $reason .= "\nalso the package doesn't need builing"
622                                         if $pkg->{'state'} eq 'Failed-Removed';
623                         }
624                 }
625         }
626         if ($ok) {
627             if ($api < 1) {
628                 my $ok = 'ok';
629                 if ($pkg->{'binary_nmu_version'}) {
630                         print "$name: Warning: needs binary NMU $pkg->{'binary_nmu_version'}\n" .
631                               "$pkg->{'binary_nmu_changelog'}\n";
632                         $ok = 'aok';
633                 } else {
634                         print "$name: Warning: Previous version failed!\n"
635                                 if $pkg->{'previous_state'} =~ /^Failed/ ||
636                                    $pkg->{'state'} =~ /^Failed/;
637                 }
638                 print "$name: $ok\n" if $verbose;
639             } else {
640                 print  "- $name:\n";
641                 print  "    - status: ok\n";
642                 printf "    - pkg-ver: %s_%s\n", $name, $version;
643                 print  "    - binNMU: $pkg->{'binary_nmu_version'}\n" if $pkg->{'binary_nmu_version'};
644                 print  "    - extra-changelog: $pkg->{'binary_nmu_changelog'}\n" if $pkg->{'binary_nmu_changelog'} && $pkg->{'binary_nmu_version'};
645                 print  "    - extra-depends: $pkg->{'extra_depends'}\n" if $pkg->{'extra_depends'};
646                 print  "    - extra-conflicts: $pkg->{'extra_conflicts'}\n" if $pkg->{'extra_conflicts'};
647                 print  "    - archive: $distributions{$distribution}->{'archive'}\n" if $distributions{$distribution}->{'archive'};
648                 print  "    - build_dep_resolver: $distributions{$distribution}->{'build_dep_resolver'}\n" if $distributions{$distribution}->{'build_dep_resolver'};
649                 print  "    - arch_all: $pkg->{'build_arch_all'}\n" if $pkg->{'build_arch_all'};
650                 print  "    - suppress_successful_logs: $distributions{$distribution}->{'suppress_successful_logs'}\n" if $distributions{$distribution}->{'suppress_successful_logs'};
651             }
652                 change_state( \$pkg, 'Building' );
653                 $pkg->{'package'} = $name;
654                 $pkg->{'version'} = $version;
655                 $pkg->{'builder'} = $user;
656                 log_ta( $pkg, "--take" );
657                 update_source_info($pkg);
658         }
659         else {
660             if ($api < 1) {
661                 print "$name: NOT OK!\n  $reason\n";
662             } else {
663                 print "- $name:\n    - status: not ok\n    - reason: \"$reason\"\n";
664             }
665         }
666 }
667
668 sub add_one_attempted {
669         my $name = shift;
670         my $version = shift;
671         my $pkg = get_source_info($name);
672
673         if (!defined($pkg)) {
674                 print "$name: not registered yet.\n";
675                 return;
676         }
677
678         if (($pkg->{'state'} ne "Building") && ($pkg->{'state'} ne "Build-Attempted")) {
679                 print "$name: not taken for building (state is $pkg->{'state'}). ",
680                           "Skipping.\n";
681                 return;
682         }
683         if ($pkg->{'builder'} ne $user) {
684                 print "$name: not taken by you, but by $pkg->{'builder'}. Skipping.\n";
685                 return;
686         }
687         elsif ( !pkg_version_eq($pkg, $version) ) {
688                 print "$name: version mismatch ".
689                           "$(pkg->{'version'} ".
690                           "by $pkg->{'builder'})\n";
691                 return;
692         }
693
694         change_state( \$pkg, 'Build-Attempted' );
695         log_ta( $pkg, "--attempted" );
696         update_source_info($pkg);
697         print "$name: registered as uploaded\n" if $verbose;
698 }
699
700 sub add_one_built {
701         my $name = shift;
702         my $version = shift;
703         my $pkg = get_source_info($name);
704
705         if (!defined($pkg)) {
706                 print "$name: not registered yet.\n";
707                 return;
708         }
709
710         if (($pkg->{'state'} ne "Building") && ($pkg->{'state'} ne "Build-Attempted")) {
711                 print "$name: not taken for building (state is $pkg->{'state'}). ",
712                           "Skipping.\n";
713                 return;
714         }
715         if ($pkg->{'builder'} ne $user) {
716                 print "$name: not taken by you, but by $pkg->{'builder'}. Skipping.\n";
717                 return;
718         }
719         elsif ( !pkg_version_eq($pkg, $version) ) {
720                 print "$name: version mismatch ".
721                           "$(pkg->{'version'} ".
722                           "by $pkg->{'builder'})\n";
723                 return;
724         }
725         change_state( \$pkg, 'Built' );
726         log_ta( $pkg, "--built" );
727         update_source_info($pkg);
728         print "$name: registered as built\n" if $verbose;
729 }
730
731 sub add_one_uploaded {
732         my $name = shift;
733         my $version = shift;
734         my $pkg = get_source_info($name);
735
736         if (!defined($pkg)) {
737                 print "$name: not registered yet.\n";
738                 return;
739         }
740
741         if ($pkg->{'state'} eq "Uploaded" &&
742                 pkg_version_eq($pkg,$version)) {
743                 print "$name: already uploaded\n";
744                 return;
745         }
746         if (!isin( $pkg->{'state'}, qw(Building Built Build-Attempted))) {
747                 print "$name: not taken for building (state is $pkg->{'state'}). ",
748                           "Skipping.\n";
749                 return;
750         }
751         if ($pkg->{'builder'} ne $user) {
752                 print "$name: not taken by you, but by $pkg->{'builder'}. Skipping.\n";
753                 return;
754         }
755         # strip epoch -- buildd-uploader used to go based on the filename.
756         # (to remove at some point)
757         my $pkgver;
758         ($pkgver = $pkg->{'version'}) =~ s/^\d+://;
759         $version =~ s/^\d+://; # for command line use
760         if ($pkg->{'binary_nmu_version'} ) {
761                 my $nmuver = binNMU_version($pkgver, $pkg->{'binary_nmu_version'});
762                 if (!version_eq( $nmuver, $version )) {
763                         print "$name: version mismatch ($nmuver registered). ",
764                                   "Skipping.\n";
765                         return;
766                 }
767         } elsif (!version_eq($pkgver, $version)) {
768                 print "$name: version mismatch ($pkg->{'version'} registered). ",
769                           "Skipping.\n";
770                 return;
771         }
772
773         change_state( \$pkg, 'Uploaded' );
774         log_ta( $pkg, "--uploaded" );
775         update_source_info($pkg);
776         print "$name: registered as uploaded\n" if $verbose;
777 }
778
779 sub add_one_failed {
780         my $name = shift;
781         my $version = shift;
782         my $state;
783         my $pkg = get_source_info($name);
784
785         if (!defined($pkg)) {
786                 print "$name: not registered yet.\n";
787                 return;
788         }
789         $state = $pkg->{'state'};
790
791         if ($state eq "Not-For-Us") {
792                 print "$name: not suitable for this architecture anyway. Skipping.\n";
793                 return;
794         }
795         elsif ($state eq "Failed-Removed") {
796                 print "$name: failed previously and doesn't need building. Skipping.\n";
797                 return;
798         }
799         elsif ($state eq "Installed") {
800                 print "$name: Is already installed in archive. Skipping.\n";
801                 return;
802         }
803         elsif ($pkg->{'builder'} &&
804                    (($user ne $pkg->{'builder'}) &&
805                     !($pkg->{'builder'} =~ /^(\w+)-\w+/ && $1 eq $user))) {
806                 print "$name: not taken by you, but by ".
807                           "$pkg->{'builder'}. Skipping.\n";
808                 return;
809         }
810         elsif ( !pkg_version_eq($pkg, $version) ) {
811                 print "$name: version mismatch ".
812                           "$(pkg->{'version'} ".
813                           "by $pkg->{'builder'})\n";
814                 return;
815         }
816
817         if ($state eq "Needs-Build") {
818                 print "$name: Warning: not registered for building previously, ".
819                           "but processing anyway.\n";
820         }
821         elsif ($state eq "Uploaded") {
822                 print "$name: Warning: marked as uploaded previously, ".
823                           "but processing anyway.\n";
824         }
825         elsif ($state eq "Dep-Wait") {
826                 print "$name: Warning: marked as waiting for dependencies, ".
827                           "but processing anyway.\n";
828         }
829         elsif ($state eq "BD-Uninstallable") {
830                 print "$name: Warning: marked as having uninstallable build-dependencies, ".
831                           "but processing anyway.\n";
832         }
833         elsif ($state eq "Failed") {
834                 print "$name: already registered as failed; will append new message\n"
835                         if $fail_reason;
836         }
837
838         change_state( \$pkg, 'Failed' );
839         $pkg->{'builder'} = $user;
840         $pkg->{'failed'} .= "\n" if $pkg->{'failed'};
841         $pkg->{'failed'} .= $fail_reason;
842         log_ta( $pkg, "--failed" );
843         update_source_info($pkg);
844         print "$name: registered as failed\n" if $verbose;
845 }
846
847 sub add_one_notforus {
848         my $name = shift;
849         my $version = shift;
850         my $pkg = get_source_info($name);
851
852         if ($pkg->{'state'} eq 'Not-For-Us') {
853                 # reset Not-For-Us state in case it's called twice; this is
854                 # the only way to get a package out of this state...
855                 # There is no really good state in which such packages should
856                 # be put :-( So use Failed for now.
857                 change_state( \$pkg, 'Failed' );
858                 $pkg->{'package'} = $name;
859                 $pkg->{'failed'} = "Was Not-For-Us previously";
860                 delete $pkg->{'builder'};
861                 delete $pkg->{'depends'};
862                 log_ta( $pkg, "--no-build(rev)" );
863                 print "$name: now not unsuitable anymore\n";
864
865                 send_mail( $conf::notforus_maint,
866                                    "$name moved out of Not-For-Us state",
867                                    "The package '$name' has been moved out of the Not-For-Us ".
868                                    "state by $user.\n".
869                                    "It should probably also be removed from ".
870                                    "Packages-arch-specific or\n".
871                                    "the action was wrong.\n" )
872                         if $conf::notforus_maint;
873         }
874         else {
875                 change_state( \$pkg, 'Not-For-Us' );
876                 $pkg->{'package'} = $name;
877                 delete $pkg->{'builder'};
878                 delete $pkg->{'depends'};
879                 delete $pkg->{'binary_nmu_version'};
880                 delete $pkg->{'binary_nmu_changelog'};
881                 log_ta( $pkg, "--no-build" );
882                 print "$name: registered as unsuitable\n" if $verbose;
883
884                 send_mail( $conf::notforus_maint,
885                                    "$name set to Not-For-Us",
886                                    "The package '$name' has been set to state Not-For-Us ".
887                                    "by $user.\n".
888                                    "It should probably also be added to ".
889                                    "Packages-arch-specific or\n".
890                                    "the Not-For-Us state is wrong.\n" )
891                         if $conf::notforus_maint;
892         }
893         update_source_info($pkg);
894 }
895
896 sub add_one_needsbuild {
897         my $name = shift;
898         my $version = shift;
899         my $state;
900         my $pkg = get_source_info($name);
901
902         if (!defined($pkg)) {
903                 print "$name: not registered; can't give back.\n";
904                 return;
905         }
906         $state = $pkg->{'state'};
907
908         if ($state eq "BD-Uninstallable") {
909                 if ($opt_override) {
910                         print "$name: Forcing uninstallability mark to be removed. This is not permanent and might be reset with the next trigger run\n";
911
912                         change_state( \$pkg, 'Needs-Build' );
913                         delete $pkg->{'builder'};
914                         delete $pkg->{'depends'};
915                         log_ta( $pkg, "--give-back" );
916                         update_source_info($pkg);
917                         print "$name: given back\n" if $verbose;
918                         return;
919                 }
920                 else {
921                         print "$name: has uninstallable build-dependencies. Skipping\n",
922                                   "  (use --override to clear dependency list and ",
923                                   "give back anyway)\n";
924                         return;
925                 }
926         }
927         elsif ($state eq "Dep-Wait") {
928                 if ($opt_override) {
929                         print "$name: Forcing source dependency list to be cleared\n";
930                 }
931                 else {
932                         print "$name: waiting for source dependencies. Skipping\n",
933                                   "  (use --override to clear dependency list and ",
934                                   "give back anyway)\n";
935                         return;
936                 }
937         }
938         elsif (!isin( $state, qw(Building Built Build-Attempted))) {
939                 print "$name: not taken for building (state is $state).";
940                 if ($opt_override) {
941                         print "\n$name: Forcing give-back\n";
942                 }
943                 else {
944                         print " Skipping.\n";
945                         return;
946                 }
947         }
948         if (defined ($pkg->{'builder'}) && $user ne $pkg->{'builder'} &&
949                 !($pkg->{'builder'} =~ /^(\w+)-\w+/ && $1 eq $user) &&
950                 !$opt_override) {
951                 print "$name: not taken by you, but by ".
952                           "$pkg->{'builder'}. Skipping.\n";
953                 return;
954         }
955         if (!pkg_version_eq($pkg, $version)) {
956                 print "$name: version mismatch ($pkg->{'version'} registered). ",
957                           "Skipping.\n";
958                 return;
959         }
960         if (!defined $distributions{$distribution}{noadw}) {
961                 change_state( \$pkg, 'BD-Uninstallable' );
962                 $pkg->{'bd_problem'} = "Installability of build dependencies not tested yet";
963         } else {
964                 change_state( \$pkg, 'Needs-Build' );
965         }
966         $pkg->{'builder'} = undef;
967         $pkg->{'depends'} = undef;
968         log_ta( $pkg, "--give-back" );
969         update_source_info($pkg);
970         print "$name: given back\n" if $verbose;
971 }
972
973 sub set_one_binnmu {
974         my $name = shift;
975         my $version = shift;
976         my $pkg = get_source_info($name);
977         my $state;
978
979         if (!defined($pkg)) {
980                 print "$name: not registered; can't register for binNMU.\n";
981                 return;
982         }
983         my $db_ver = $pkg->{'version'};
984
985         if (!version_eq($db_ver, $version)) {
986                 print "$name: version mismatch ($db_ver registered). ",
987                           "Skipping.\n";
988                 return;
989         }
990         $state = $pkg->{'state'};
991
992         if (defined $pkg->{'binary_nmu_version'}) {
993                 if ($binNMUver == 0) {
994                         change_state( \$pkg, 'Installed' );
995                         delete $pkg->{'builder'};
996                         delete $pkg->{'depends'};
997                         delete $pkg->{'binary_nmu_version'};
998                         delete $pkg->{'binary_nmu_changelog'};
999                         delete $pkg->{'buildpri'};
1000                 } elsif ($binNMUver <= $pkg->{'binary_nmu_version'}) {
1001                         print "$name: already building binNMU $pkg->{'binary_nmu_version'}\n";
1002                         return;
1003                 } else {
1004                         $pkg->{'binary_nmu_version'} = $binNMUver;
1005                         $pkg->{'binary_nmu_changelog'} = $fail_reason;
1006                         $pkg->{'notes'} = 'out-of-date';
1007                         delete $pkg->{'buildpri'};
1008                         if (defined $distributions{$distribution}{noadw}) {
1009                                 change_state( \$pkg, 'Installed' );
1010                         } else {
1011                                 change_state( \$pkg, 'BD-Uninstallable' );
1012                         }
1013                 }
1014                 log_ta( $pkg, "--binNMU" );
1015                 update_source_info($pkg);
1016                 return;
1017         } elsif ($binNMUver == 0) {
1018                 print "${name}_$version: no scheduled binNMU to cancel.\n";
1019                 return;
1020         }
1021
1022         if ($state ne 'Installed') {
1023                 print "${name}_$version: not installed; can't register for binNMU.\n";
1024                 return;
1025         }
1026
1027         my $fullver = binNMU_version($version,$binNMUver);
1028         if ( version_lesseq( $fullver, $pkg->{'installed_version'} ) )
1029         {
1030                 print "$name: binNMU $fullver is not newer than current version $pkg->{'installed_version'}\n";
1031                 return;
1032         }
1033
1034         if (!defined $distributions{$distribution}{noadw}) {
1035                 change_state( \$pkg, 'BD-Uninstallable' );
1036                 $pkg->{'bd_problem'} = "Installability of build dependencies not tested yet";
1037         }
1038         else
1039         {
1040                 change_state( \$pkg, 'Needs-Build' );
1041         }
1042         delete $pkg->{'builder'};
1043         delete $pkg->{'depends'};
1044         $pkg->{'binary_nmu_version'} = $binNMUver;
1045         $pkg->{'binary_nmu_changelog'} = $fail_reason;
1046         $pkg->{'notes'} = 'out-of-date';
1047         delete $pkg->{'buildpri'};
1048         log_ta( $pkg, "--binNMU" );
1049         update_source_info($pkg);
1050         print "${name}: registered for binNMU $fullver\n" if $verbose;
1051 }
1052
1053 sub set_one_buildpri {
1054         my $name = shift;
1055         my $version = shift;
1056         my $key = shift;
1057         my $pkg = get_source_info($name);
1058         my $state;
1059
1060         if (!defined($pkg)) {
1061                 print "$name: not registered; can't set priority.\n";
1062                 return;
1063         }
1064         $state = $pkg->{'state'};
1065
1066         if ($state eq "Not-For-Us") {
1067                 print "$name: not suitable for this architecture. Skipping.\n";
1068                 return;
1069         } elsif ($state eq "Failed-Removed") {
1070                 print "$name: failed previously and doesn't need building. Skipping.\n";
1071                 return;
1072         }
1073         if (!pkg_version_eq($pkg, $version)) {
1074                 print "$name: version mismatch ($pkg->{'version'} registered). ",
1075                           "Skipping.\n";
1076                 return;
1077         }
1078         if ( $build_priority == 0 ) {
1079                 delete $pkg->{$key};
1080         } else {
1081                 $pkg->{$key} = $build_priority;
1082         }
1083         update_source_info($pkg);
1084         print "$name: set to build priority $build_priority\n" if $verbose;
1085 }
1086
1087 sub add_one_depwait {
1088         my $name = shift;
1089         my $version = shift;
1090         my $state;
1091         my $pkg = get_source_info($name);
1092
1093         if (!defined($pkg)) {
1094                 print "$name: not registered yet.\n";
1095                 return;
1096         }
1097         $state = $pkg->{'state'};
1098
1099         if ($state eq "Dep-Wait") {
1100                 print "$name: merging with previously registered dependencies\n";
1101         }
1102         
1103         if (isin( $state, qw(Needs-Build Failed BD-Uninstallable))) {
1104                 print "$name: Warning: not registered for building previously, ".
1105                           "but processing anyway.\n";
1106         }
1107         elsif ($state eq "Not-For-Us") {
1108                 print "$name: not suitable for this architecture anyway. Skipping.\n";
1109                 return;
1110         }
1111         elsif ($state eq "Failed-Removed") {
1112                 print "$name: failed previously and doesn't need building. Skipping.\n";
1113                 return;
1114         }
1115         elsif ($state eq "Installed") {
1116                 print "$name: Is already installed in archive. Skipping.\n";
1117                 return;
1118         }
1119         elsif ($state eq "Uploaded") {
1120                 print "$name: Is already uploaded. Skipping.\n";
1121                 return;
1122         }
1123         elsif ($pkg->{'builder'} &&
1124                    $user ne $pkg->{'builder'}) {
1125                 print "$name: not taken by you, but by ".
1126                           "$pkg->{'builder'}. Skipping.\n";
1127                 return;
1128         }
1129         elsif ( !pkg_version_eq($pkg,$version)) {
1130                 print "$name: version mismatch ".
1131                           "($pkg->{'version'} ".
1132                           "by $pkg->{'builder'})\n";
1133                 return;
1134         }
1135         elsif ($fail_reason =~ /^\s*$/ ||
1136                    !parse_deplist( $fail_reason, 1 )) {
1137                 print "$name: Bad dependency list\n";
1138                 return;
1139         }
1140         change_state( \$pkg, 'Dep-Wait' );
1141         $pkg->{'builder'} = $user;
1142         my $deplist = parse_deplist( $pkg->{'depends'} );
1143         my $new_deplist = parse_deplist( $fail_reason );
1144         # add new dependencies, maybe overwriting old entries
1145         foreach (keys %$new_deplist) {
1146                 $deplist->{$_} = $new_deplist->{$_};
1147         }
1148         $pkg->{'depends'} = build_deplist($deplist);
1149         log_ta( $pkg, "--dep-wait" );
1150         update_source_info($pkg);
1151         print "$name: registered as waiting for dependencies\n" if $verbose;
1152 }
1153
1154 sub set_one_update {
1155         my $name = shift;
1156         my $version = shift;
1157         my $pkg = get_source_info($name);
1158
1159         if (!defined($pkg)) {
1160                 print "$name: not registered yet.\n";
1161                 return;
1162         }
1163         $pkg->{'version'} =~ s/\+b[0-9]+$//;
1164
1165         log_ta( $pkg, "--update" );
1166         update_source_info($pkg);
1167 }
1168
1169
1170 # for sorting priorities and sections
1171 BEGIN {
1172         %prioval = ( required             => -5,
1173                                  important            => -4,
1174                                  standard             => -3,
1175                                  optional             => -2,
1176                                  extra                => -1,
1177                                  unknown              => -1 );
1178         %sectval = ( 
1179                                  libs                   => -200,
1180                                  'debian-installer'     => -199,
1181                                  base                   => -198,
1182                                  devel                  => -197,
1183                                  kernel                 => -196,
1184                                  shells                 => -195,
1185                                  perl                   => -194,
1186                                  python                 => -193,
1187                                  graphics               => -192,
1188                                  admin                  => -191,
1189                                  utils                  => -190,
1190                                  x11                    => -189,
1191                                  editors                => -188,
1192                                  net                    => -187,
1193                                  httpd                  => -186,
1194                                  mail                   => -185,
1195                                  news                   => -184,
1196                                  tex                    => -183,
1197                                  text                   => -182,
1198                                  web                    => -181,
1199                                  vcs                    => -180,
1200                                  doc                    => -179,
1201                                  localizations          => -178,
1202                                  interpreters           => -177,
1203                                  ruby                   => -176,
1204                                  java                   => -175,
1205                                  ocaml                  => -174,
1206                                  lisp                   => -173,
1207                                  haskell                => -172,
1208                                  'cli-mono'             => -171,
1209                                  gnome                  => -170,
1210                                  kde                    => -169,
1211                                  xfce                   => -168,
1212                                  gnustep                => -167,
1213                                  database               => -166,
1214                                  video                  => -165,
1215                                  debug                  => -164,
1216                                  games                  => -163,
1217                                  misc                   => -162,
1218                                  fonts                  => -161,
1219                                  otherosfs              => -160,
1220                                  oldlibs                => -159,
1221                                  libdevel               => -158,
1222                                  sound                  => -157,
1223                                  math                   => -156,
1224                                  'gnu-r'                => -155,
1225                                  science                => -154,
1226                                  comm                   => -153,
1227                                  electronics            => -152,
1228                                  hamradio               => -151,
1229                                  embedded               => -150,
1230                                  php                    => -149,
1231                                  zope                   => -148,
1232         );
1233         foreach my $i (keys %sectval) {
1234                 $sectval{"contrib/$i"} = $sectval{$i}+40;
1235                 $sectval{"non-free/$i"} = $sectval{$i}+80;
1236         }
1237         $sectval{'unknown'}     = -165;
1238
1239 }
1240
1241 sub sort_list_func {
1242     my $map_funcs = {
1243         'C' => ['<->', sub { return $_[0]->{'calprio'}; }],
1244         'W' => ['<->', sub { return $_[0]->{'state_days'}; }],
1245         'P' => ['<->', sub { return ($_[0]->{'buildpri'}//0) + ($_[0]->{'permbuildpri'}//0); }],
1246         'p' => ['<=>', sub { return $prioval{$_[0]->{'priority'}//""}//0; }],
1247         's' => ['<=>', sub { return $sectval{$_[0]->{'section'}//""}//0; }],
1248         'n' => ['cmp', sub { return $_[0]->{'package'}; }],
1249         'b' => ['cmp', sub { return $_[0]->{'builder'}; }],
1250         'c' => ['<=>', sub { return ($_[0]->{'notes'}//"" =~ /^(out-of-date|partial)/) ? 0: ($_[0]->{'notes'}//"" =~ /^uncompiled/) ? 2 : 1; }],
1251         'S' => ['<->', sub { return isin($_[0]->{'priority'}, qw(required important standard)); }],
1252         'T' => ['<->', sub { return $_[0]->{'state_time'} % 86400;} ], # Fractions of a day
1253     };
1254
1255         foreach my $letter (split( //, $list_order )) {
1256             my $r;
1257             $r = (&{$map_funcs->{$letter}[1]}($b)//0 ) <=> (&{$map_funcs->{$letter}[1]}($a)//0 ) if $map_funcs->{$letter}[0] eq '<->';
1258             $r = (&{$map_funcs->{$letter}[1]}($a)//0 ) <=> (&{$map_funcs->{$letter}[1]}($b)//0 ) if $map_funcs->{$letter}[0] eq '<=>';
1259             $r = (&{$map_funcs->{$letter}[1]}($a)//"") cmp (&{$map_funcs->{$letter}[1]}($b)//"") if $map_funcs->{$letter}[0] eq 'cmp';
1260             return $r if $r != 0;
1261         }
1262         return 0;
1263 }
1264
1265 sub calculate_prio {
1266         my $priomap = $yamlmap->{priority};
1267         my $pkg = shift;
1268         my @s=split("/", $pkg->{'section'}//"");
1269         $pkg->{'component'} = $s[0] if $s[1];
1270         $pkg->{'component'} ||= 'main';
1271         $pkg->{'calprio'} = 0;
1272         foreach my $k (keys %{$priomap->{keys}}) {
1273                 $pkg->{'calprio'} += $priomap->{keys}->{$k}{$pkg->{$k}} if $pkg->{$k} and $priomap->{keys}->{$k}{$pkg->{$k}};
1274         }
1275
1276         my $days = $pkg->{'state_days'};
1277         $days = $priomap->{'waitingdays'}->{'min'} if $priomap->{'waitingdays'}->{'min'} and $days < $priomap->{'waitingdays'}->{'min'};
1278         $days = $priomap->{'waitingdays'}->{'max'} if $priomap->{'waitingdays'}->{'max'} and $days > $priomap->{'waitingdays'}->{'max'};
1279         my $scale = $priomap->{'waitingdays'}->{'scale'} || 1;
1280         $pkg->{'calprio'} += $days * $scale;
1281
1282         my $btime = max($pkg->{'anytime'}//0, $pkg->{'successtime'}//0);
1283         my $bhours = $btime ? int($btime/3600) : ($priomap->{'buildhours'}->{'default'} || 2);
1284         $bhours = $priomap->{'buildhours'}->{'min'} if $priomap->{'buildhours'}->{'min'} and $bhours < $priomap->{'buildhours'}->{'min'};
1285         $bhours = $priomap->{'buildhours'}->{'max'} if $priomap->{'buildhours'}->{'max'} and $bhours > $priomap->{'buildhours'}->{'max'};
1286         $scale = $priomap->{'buildhours'}->{'scale'} || 1;
1287         $pkg->{'calprio'} -= $bhours * $scale;
1288
1289         $pkg->{'calprio'} += $pkg->{'permbuildpri'} if  $pkg->{'permbuildpri'};
1290         $pkg->{'calprio'} += $pkg->{'buildpri'} if  $pkg->{'buildpri'};
1291
1292         return $pkg;
1293 }
1294
1295
1296 sub seconds2time {
1297     my $t = shift;
1298     return "" unless $t;
1299     my $sec = $t % 60;
1300     my $min = int($t/60) % 60;
1301     my $hours = int($t / 3600);
1302     return sprintf("%d:%02d:%02d", $hours, $min, $sec) if $hours;
1303     return sprintf("%d:%02d", $min, $sec);
1304 }
1305
1306
1307 sub use_fmt {
1308     my $r;
1309
1310     if (ref($_[0]) eq 'CODE') {
1311         $r = &{$_[0]};
1312     } else {
1313         $r = $_[0];
1314     }
1315
1316     shift;
1317     my $t = shift;
1318
1319     $r ||= "";
1320     return $r unless $t;
1321
1322     my $pkg = shift;
1323     my $var = shift;
1324     if (substr($t,0,1) eq '!') {
1325         $t = substr($t,1);
1326         return "" if $r;
1327     } else {
1328         return "" unless $r;
1329     }
1330     if ($t =~ /%/) {
1331         return print_format($t, $pkg, $var);
1332     }
1333     return $t;
1334 }
1335 sub make_fmt { my $c = shift; my $pkg = shift; my $var = shift; return sub { use_fmt($c, $_[0], $pkg, $var); } };
1336
1337 sub print_format {
1338     my $printfmt = shift;
1339     my $pkg = shift;
1340     my $var = shift;
1341
1342 =pod
1343
1344 Within an format string, the following values are allowed (need to be preceded by %).
1345 This can be combined to e.g.
1346 wanna-build --format='wanna-build -A %a --give-back %p_%v' -A mipsel --list=failed
1347
1348 a Architecture
1349 c section (e.g. libs or utils)
1350 D in case of BD-Uninstallable the reason for the uninstallability
1351 d distribution
1352 E in case of Dep-Wait the packages being waited on, in case of Needs-Build the number in the queue
1353 F in case of Failed the fail reason
1354 n newline
1355 o time of last successful build (seconds)
1356 O time of last successful build (formated)
1357 P previous state
1358 p Package name
1359 q time of last build (seconds)
1360 Q time of last build (formated)
1361 r max time of last (successful) build (seconds)
1362 R max time of last (successful) build (formated)
1363 S Package state
1364 s Time in this state in full seconds since epoch
1365 t time of state change
1366 T time since state change
1367 u Builder (e.g. buildd_mipsel-rem)
1368 v Package version
1369 V full Package version (i.e. with +b.., = %v%{+b}B%B
1370 X the string normally between [], e.g. optional:out-of-date:calprio{61}:days{25}
1371
1372 %{Text}?  print Text in case ? is not empty; ? is never printed
1373 %{!Text}? print Text in case ? is empty; ? is never printed
1374 Text could contain further %. To start with !, use %!
1375
1376 =cut
1377
1378     return stringf($printfmt, (
1379         'p' => make_fmt( $pkg->{'package'}, $pkg, $var),
1380         'a' => make_fmt( $arch, $pkg, $var),
1381         's' => make_fmt( sub { return floor(str2time($pkg->{'state_change'})); }, $pkg, $var),
1382         'v' => make_fmt( $pkg->{'version'}, $pkg, $var),
1383         'V' => make_fmt( sub { $pkg->{'binary_nmu_version'} ? $pkg->{'version'}."+b".$pkg->{'binary_nmu_version'} : $pkg->{'version'} }, $pkg, $var),
1384         'S' => make_fmt( $pkg->{'state'}, $pkg, $var),
1385         'u' => make_fmt( $pkg->{'builder'}, $pkg, $var),
1386         'X' => make_fmt( sub {
1387             no warnings;
1388             my $c = "$pkg->{'priority'}:$pkg->{'notes'}";
1389             $c .= ":PREV-FAILED" if $pkg->{'previous_state'} && $pkg->{'previous_state'} =~ /^Failed/;
1390             $c .= ":bp{" . (($pkg->{'buildpri'}//0)+($pkg->{'permbuildpri'}//0)) . "}" if (($pkg->{'buildpri'}//0)+($pkg->{'permbuildpri'}//0));
1391             $c .= ":binNMU{" . $pkg->{'binary_nmu_version'} . "}" if defined $pkg->{'binary_nmu_version'};
1392             $c .= ":calprio{". $pkg->{'calprio'}."}";
1393             $c .= ":days{". $pkg->{'state_days'}."}";
1394             return $c;
1395             }, $pkg, $var),
1396         'c' => make_fmt( $pkg->{'section'}, $pkg, $var),
1397         'P' => make_fmt( $pkg->{'previous_state'} || "unknwon", $pkg, $var),
1398         'E' => make_fmt( sub { return $pkg->{'depends'} if $pkg->{'state'} eq "Dep-Wait";
1399             return $var->{scnt}{'Needs-Build'} + 1 if $pkg->{'state'} eq 'Needs-Build';
1400             return ""; }, $pkg, $var),
1401         'F' => make_fmt( sub { return "" unless $pkg->{'failed'};
1402             my $failed = $pkg->{'failed'};
1403             $failed =~ s/\\/\\\\/g;
1404             return $pkg->{'package'}."#".$arch."-failure\n ".
1405             join("\\0a",split("\n",$failed))."\\0a\n"; }, $pkg, $var),
1406         'D' => make_fmt( sub { return "" unless $pkg->{'bd_problem'};
1407             return $pkg->{'package'}."#".$arch."-bd-problem\n".
1408             join("\\0a",split("\n",$pkg->{'bd_problem'}))."\\0a\n"; }, $pkg, $var),
1409         'B' => make_fmt( sub { return $pkg->{'binary_nmu_version'} if defined $pkg->{'binary_nmu_version'}; }, $pkg, $var),
1410         'd' => make_fmt( $pkg->{'distribution'}, $pkg, $var),
1411         't' => make_fmt( $pkg->{'state_change'}, $pkg, $var),
1412         'T' => make_fmt( sub { return seconds2time(time() - floor(str2time($pkg->{'state_change'}))); }, $pkg, $var),
1413         'o' => make_fmt( $pkg->{'successtime'}, $pkg, $var),
1414         'O' => make_fmt( sub { return seconds2time ( $pkg->{'successtime'}); }, $pkg, $var),
1415         'q' => make_fmt( $pkg->{'anytime'}, $pkg, $var),
1416         'Q' => make_fmt( sub { return seconds2time ( $pkg->{'anytime'}); }, $pkg, $var),
1417         'r' => make_fmt( sub { my $c = max($pkg->{'successtime'}//0, $pkg->{'anytime'}//0); return $c if $c; return; }, $pkg, $var),
1418         'R' => make_fmt( sub { return seconds2time ( max($pkg->{'successtime'}//0, $pkg->{'anytime'}//0)); }, $pkg, $var),
1419     ));
1420 }
1421
1422 sub list_packages {
1423         my $state = shift;
1424         my( $name, $pkg, @list );
1425         my $cnt = 0;
1426         my %scnt;
1427         my $ctime = time;
1428
1429         my $db = get_all_source_info(state => $state, user => $user, list_min_age => $list_min_age);
1430         foreach $name (keys %$db) {
1431                 next if $name =~ /^_/;
1432                 push @list, calculate_prio($db->{$name});
1433         }
1434
1435         # filter components
1436         @list = grep { my $i = $_->{'component'}; grep { $i eq $_ } split /[, ]+/, $yamlmap->{"restrict"}{'component'} } @list;
1437         # extra depends / conflicts only from api 1 on
1438         @list = grep { !$_->{'extra_depends'} and !$_->{'extra_conflicts'} } @list if $api < 1 ;
1439
1440         # first adjust ownprintformat, then set printformat accordingly
1441         $printformat ||= $yamlmap->{"format"}{$ownprintformat} if $ownprintformat;
1442         $printformat ||= $yamlmap->{"format"}{"default"}{$state};
1443         $printformat ||= $yamlmap->{"format"}{"default"}{"default"};
1444         undef $printformat if ($ownprintformat && $ownprintformat eq 'none');
1445
1446         foreach $pkg (sort sort_list_func @list) {
1447                 no warnings;
1448                 if ($printformat) {
1449                     print print_format($printformat, $pkg, {'cnt' => $cnt, 'scnt' => \%scnt})."\n";
1450                     ++$cnt;
1451                     $scnt{$pkg->{'state'}}++;
1452                     next;
1453                 }
1454                 print print_format("%c/%p_%v", $pkg, {});
1455                 print print_format(": %S", $pkg, {})
1456                         if $state eq "all";
1457                 print print_format("%{ by }u%u", $pkg, {})
1458                         if $pkg->{'state'} ne "Needs-Build";
1459                 print print_format(" [%X]\n", $pkg, {});
1460                 print "  Reasons for failing:\n",
1461                           join("\n    ",split("\n",$pkg->{'failed'})), "\n"
1462                         if $pkg->{'state'} =~ /^Failed/;
1463                 print "  Dependencies: $pkg->{'depends'}\n"
1464                         if $pkg->{'state'} eq "Dep-Wait";
1465                 print "  Reasons for BD-Uninstallable:\n    ",
1466                           join("\n    ",split("\n",$pkg->{'bd_problem'})), "\n"
1467                         if $pkg->{'state'} eq "BD-Uninstallable";
1468                 print "  Previous state was $pkg->{'previous_state'}\n"
1469                         if $verbose && $pkg->{'previous_state'};
1470                 print "  No previous state recorded\n"
1471                         if $verbose && !$pkg->{'previous_state'};
1472                 print "  State changed at $pkg->{'state_change'}\n"
1473                         if $verbose && $pkg->{'state_change'};
1474                 print "  Previous state $pkg->{'previous_state'} left $pkg->{'state_time'} ago\n"
1475                         if $verbose && $pkg->{'previous_state'};
1476                 print "  Previous failing reasons:\n    ",
1477                       join("\n    ",split("\n",$pkg->{'old_failed'})), "\n"
1478                         if $verbose && $pkg->{'old_failed'};
1479                 ++$cnt;
1480                 $scnt{$pkg->{'state'}}++ if $state eq "all";
1481         }
1482         if ($state eq "all" && !$printformat) {
1483                 foreach (sort keys %scnt) {
1484                         print "Total $scnt{$_} package(s) in state $_.\n";
1485                 }
1486         }
1487         print "Total $cnt package(s)\n" unless $printformat;
1488         
1489 }
1490
1491 sub info_packages {
1492         my( $name, $pkg, $key, $dist );
1493         my @firstkeys = qw(package version builder state section priority
1494                                            installed_version previous_state state_change);
1495         my @dists = $info_all_dists ? keys %distributions : ($distribution);
1496         my %beautykeys = ( 'package' => 'Package', 'version' => 'Version', 'builder' => 'Builder',
1497                 'state' => 'State', 'section' => 'Section', 'priority' => 'Priority',
1498                 'installed_version' => 'Installed-Version', 'previous_state' => 'Previous-State',
1499                 'state_change' => 'State-Change',
1500                 'bd_problem' => 'BD-Problem', 
1501                 'binary_nmu_changelog' => 'Binary-NMU-Changelog', 'binary_nmu_version' => 'Binary-NMU-Version',
1502                 'buildpri' => 'BuildPri', 'depends' => 'Depends', 'failed' => 'Failed',
1503                 'notes' => 'Notes',
1504                 'distribution' => 'Distribution', 'old_failed' => 'Old-Failed',
1505                 'permbuildpri' => 'PermBuildPri', 'rel' => 'Rel',
1506                 'calprio' => 'CalculatedPri', 'state_days' => 'State-Days', 'state_time' => 'State-Time',
1507                 'successtime' => 'Success-build-time',
1508                 'anytime' => 'Build-time',
1509                 'extra_depends' => 'Extra-Dependencies',
1510                 'extra_conflicts' => 'Extra-Conflicts',
1511                 'build_arch_all' => 'Build-Arch-All',
1512                          );
1513         
1514         foreach $name (@_) {
1515                 $name =~ s/_.*$//; # strip version
1516                 foreach $dist (@dists) {
1517                         my $pname = "$name" . ($info_all_dists ? "($dist)" : "");
1518                         
1519                         $pkg = get_readonly_source_info($name);
1520                         if (!defined( $pkg )) {
1521                                 print "$pname: not registered\n";
1522                                 next;
1523                         }
1524                         $pkg = calculate_prio($pkg);
1525
1526                         print "$pname:\n";
1527                         foreach $key (@firstkeys) {
1528                                 next if !defined $pkg->{$key};
1529                                 my $val = $pkg->{$key};
1530                                 chomp( $val );
1531                                 $val = "\n$val" if isin( $key, qw(Failed Old-Failed));
1532                                 $val =~ s/\n/\n    /g;
1533                                 my $print_key = $key;
1534                                 $print_key = $beautykeys{$print_key} if $beautykeys{$print_key};
1535                                 printf "  %-20s: %s\n", $print_key, $val;
1536                         }
1537                         foreach $key (sort keys %$pkg) {
1538                                 next if isin( $key, @firstkeys );
1539                                 my $val = $pkg->{$key};
1540                                 next if !defined($val);
1541                                 chomp( $val );
1542                                 $val = "\n$val" if isin( $key, qw(Failed Old-Failed));
1543                                 $val =~ s/\n/\n    /g;
1544                                 my $print_key = $key;
1545                                 $print_key = $beautykeys{$print_key} if $beautykeys{$print_key};
1546                                 printf "  %-20s: %s\n", $print_key, $val;
1547                         }
1548                 }
1549         }
1550 }
1551
1552 sub forget_packages {
1553         no warnings;
1554         my( $name, $pkg, $key, $data );
1555         
1556         foreach $name (@_) {
1557                 $name =~ s/_.*$//; # strip version
1558                 $pkg = get_source_info($name);
1559                 if (!defined( $pkg )) {
1560                         print "$name: not registered\n";
1561                         next;
1562                 }
1563
1564                 $data = "";
1565                 foreach $key (sort keys %$pkg) {
1566                         my $val = $pkg->{$key};
1567                         chomp( $val );
1568                         $val =~ s/\n/\n /g;
1569                         $data .= sprintf "  %-20s: %s\n", $key, $val;
1570                 }
1571                 send_mail( $conf::db_maint,
1572                                    "$name deleted from DB " . table_name() . " " . $distribution,
1573                                    "The package '$name' has been deleted from the database ".
1574                                    "by $user.\n\n".
1575                                    "Data registered about the deleted package:\n".
1576                                    "$data\n" ) if $conf::db_maint;
1577                 change_state( \$pkg, 'deleted' );
1578                 log_ta( $pkg, "--forget" );
1579                 del_source_info($name);
1580                 print "$name: deleted from database\n" if $verbose;
1581         }
1582 }
1583
1584 sub forget_users {
1585         $dbh->do("DELETE from " . user_table_name() . 
1586                 " WHERE distribution = ?", undef, $distribution) or die $dbh->errstr;
1587 }
1588
1589 sub read_db {
1590         my $file = shift;
1591
1592         print "Reading ASCII database from $file..." if $verbose >= 1;
1593         open( my $fh, '<', $file ) or
1594                 die "Can't open database $file: $!\n";
1595
1596         local($/) = ""; # read in paragraph mode
1597         while( <$fh> ) {
1598                 my( %thispkg, $name );
1599                 s/[\s\n]+$//;
1600                 s/\n[ \t]+/\376\377/g;  # fix continuation lines
1601                 s/\376\377\s*\376\377/\376\377/og;
1602   
1603                 while( /^(\S+):[ \t]*(.*)[ \t]*$/mg ) {
1604                         my ($key, $val) = ($1, $2);
1605                         $key =~ s/-/_/g;
1606                         $key =~ tr/A-Z/a-z/;
1607                         $val =~ s/\376\377/\n/g;
1608                         $thispkg{$key} = $val;
1609                 }
1610                 check_entry( \%thispkg );
1611                 # add to db
1612                 if (exists($thispkg{'package'})) {
1613                         update_source_info(\%thispkg);
1614                 }
1615                 elsif(exists($thispkg{'user'})) {
1616                         # user in import, username in database.
1617                         $dbh->do('INSERT INTO ' . user_table_name() .
1618                                         ' (username, distribution, last_seen)' .
1619                                         ' values (?, ?, ?)',
1620                                 undef, $thispkg{'user'}, $distribution,
1621                                 $thispkg{'last_seen'})
1622                                 or die $dbh->errstr;
1623                  }
1624         }
1625         close( $fh );
1626         print "done\n" if $verbose >= 1;
1627 }
1628
1629 sub check_entry {
1630         my $pkg = shift;
1631         my $field;
1632
1633         return if $op_mode eq "manual-edit"; # no checks then
1634         
1635         # check for required fields
1636         if (exists $pkg->{'user'}) {
1637                 return;
1638         }
1639         if (!exists $pkg->{'package'}) {
1640                 print STDERR "Bad entry: ",
1641                           join( "\n", map { "$_: $pkg->{$_}" } keys %$pkg ), "\n";
1642                 die "Database entry lacks package or username field\n";
1643         }
1644         # if no State: field, generate one (for old db compat)
1645         if (!exists($pkg->{'state'})) {
1646                 $pkg->{'state'} =
1647                         exists $pkg->{'failed'} ? 'Failed' : 'Building';
1648         }
1649         if (!exists $pkg->{'version'} and $pkg->{'state'} ne 'Not-For-Us') {
1650                 die "Database entry for $pkg->{'package'} lacks Version: field\n";
1651         }
1652         # check state field
1653         die "Bad state $pkg->{'state'} of package $pkg->{Package}\n"
1654                 if !isin( $pkg->{'state'},
1655                                   qw(Needs-Build Building Built Build-Attempted Uploaded Installed Dep-Wait Dep-Wait-Removed
1656                                          Failed Failed-Removed Not-For-Us BD-Uninstallable Auto-Not-For-Us
1657                                          ) );
1658 }
1659
1660 sub export_db {
1661         my $file = shift;
1662         my($name,$pkg,$key);
1663
1664         print "Writing ASCII database to $file..." if $verbose >= 1;
1665         open( my $fh, '>', $file ) or
1666                 die "Can't open export $file: $!\n";
1667
1668         my $db = get_all_source_info();
1669         foreach $name (keys %$db) {
1670                 next if $name =~ /^_/;
1671                 my $pkg = $db->{$name};
1672                 foreach $key (keys %{$pkg}) {
1673                         my $val = $pkg->{$key};
1674                         next if !defined($val);
1675                         $val =~ s/\n*$//;
1676                         $val =~ s/^/ /mg;
1677                         $val =~ s/^ +$/ ./mg;
1678                         print $fh "$key: $val\n";
1679                 }
1680                 print $fh "\n";
1681        }
1682        close( $fh );
1683        print "done\n" if $verbose >= 1;
1684 }
1685
1686 sub change_state {
1687         my $pkgr = shift;
1688         my $pkg = $$pkgr;
1689         my $newstate = shift;
1690         my $state = \$pkg->{'state'};
1691         
1692         return if defined($$state) and $$state eq $newstate;
1693         $pkg->{'previous_state'} = $$state if defined($$state);
1694         $pkg->{'state_change'} = $curr_date;
1695         $pkg->{'do_state_change'} = 1;
1696
1697         if (defined($$state) and $$state eq 'Failed') {
1698                 $pkg->{'old_failed'} =
1699                         "-"x20 . " $pkg->{'version'} " . "-"x20 . "\n" .
1700                         ($pkg->{'failed'} // ""). "\n" .
1701                         ($pkg->{'old_failed'} // "");
1702                 delete $pkg->{'failed'};
1703         }
1704         if (defined($$state) and $$state eq 'BD-Uninstallable') {
1705                 delete $pkg->{'bd_problem'};
1706         }
1707         $$state = $newstate;
1708 }
1709
1710 sub log_ta {
1711         my $pkg = shift;
1712         my $action = shift;
1713         my $dist = $distribution;
1714         my $str;
1715         my $prevstate;
1716
1717         $prevstate = $pkg->{'previous_state'};
1718         $str = "$action($dist): $pkg->{'package'}_$pkg->{'version'} ".
1719                    "changed from $prevstate to $pkg->{'state'} ".
1720                    "by $real_user as $user";
1721         
1722         if ($simulate) {
1723             printf "update transactions: %s %s %s %s %s %s %s %s\n",
1724                 $pkg->{'package'}, $distribution,
1725                 $pkg->{'version'}, $action, $prevstate, $pkg->{'state'},
1726                 $real_user, $user;
1727             return;
1728         }
1729         $dbh->do('INSERT INTO ' . transactions_table_name() .
1730                         ' (package, distribution, version, action, ' .
1731                         ' prevstate, state, real_user, set_user, time) ' .
1732                         ' values (?, ?, ?, ?, ?, ?, ?, ?, ?)',
1733                 undef, $pkg->{'package'}, $distribution,
1734                 $pkg->{'version'}, $action, $prevstate, $pkg->{'state'},
1735                 $real_user, $user, 'now()') or die $dbh->errstr;
1736
1737         if (!($prevstate eq 'Failed' && $pkg->{'state'} eq 'Failed')) {
1738                 $str .= " (with --override)"
1739                         if $opt_override;
1740                 $mail_logs .= "$str\n";
1741         }
1742 }
1743
1744
1745 sub send_mail {
1746         my $to = shift;
1747         my $subject = shift;
1748         my $text = shift;
1749
1750         my $from = $conf::db_maint;
1751         my $domain = $conf::buildd_domain;
1752
1753         $from .= "\@$domain" if $from !~ /\@/;
1754
1755         $to .= '@' . $domain if $to !~ /\@/;
1756         $text =~ s/^\.$/../mg;
1757         local $SIG{'PIPE'} = 'IGNORE';
1758         open( my $pipe,  '|-', "$conf::mailprog -oem $to" )
1759                 or die "Can't open pipe to $conf::mailprog: $!\n";
1760         chomp $text;
1761         print $pipe "From: $from\n";
1762         print $pipe "Subject: $subject\n\n";
1763         print $pipe "$text\n";
1764         close( $pipe );
1765 }
1766
1767 # for parsing input to dep-wait
1768 sub parse_deplist {
1769     my $deps = shift;
1770     my $verify = shift;
1771     my %result;
1772     
1773     foreach (split( /\s*,\s*/, $deps )) {
1774         if ($verify) {
1775             # verification requires > starting prompts, no | crap
1776             if (!/^(\S+)\s*(\(\s*(>(?:[>=])?)\s*(\S+)\s*\))?\s*$/) {
1777                 return 0;
1778             }
1779             next;
1780         }
1781         my @alts = split( /\s*\|\s*/, $_ );
1782         # Anything with an | is ignored, as it can be configured on a
1783         # per-buildd basis what will be installed
1784         next if $#alts != 0;
1785         $_ = shift @alts;
1786
1787         if (!/^(\S+)\s*(\(\s*(>=|=|==|>|>>|<<|<=)\s*(\S+)\s*\))?\s*$/) {
1788             warn( "parse_deplist: bad dependency $_\n" );
1789             next;
1790         }
1791         my($dep, $rel, $relv) = ($1, $3, $4);
1792         $rel = ">>" if defined($rel) and $rel eq ">";
1793         $result{$dep}->{'package'} = $dep;
1794         if ($rel && $relv) {
1795             $result{$dep}->{'rel'} = $rel;
1796             $result{$dep}->{'version'} = $relv;
1797         }
1798     }
1799     return 1 if $verify;
1800     return \%result;
1801 }
1802
1803 sub build_deplist {
1804         my $list = shift;
1805         my($key, $result);
1806         
1807         foreach $key (keys %$list) {
1808                 $result .= ", " if $result;
1809                 $result .= $key;
1810                 $result .= " ($list->{$key}->{'rel'} $list->{$key}->{'version'})"
1811                         if $list->{$key}->{'rel'} && $list->{$key}->{'version'};
1812         }
1813         return $result;
1814 }
1815
1816
1817 sub filterarch {
1818     return "" unless $_[0];
1819     return Dpkg::Deps::parse($_[0], ("reduce_arch" => 1, "host_arch" => $_[1]))->dump();
1820 }
1821
1822 sub wb_edos_builddebcheck {
1823 # Copyright (C) 2008 Ralf Treinen <treinen@debian.org>
1824 # This program is free software: you can redistribute it and/or modify it under
1825 # the terms of the GNU General Public License as published by the Free Software
1826 # Foundation, version 2 of the License.
1827 # integrated into wanna-builds code by Andreas Barth 2010
1828
1829     my $args = shift;
1830     my $sourceprefix="source---";
1831     my $architecture=$args->{'arch'};
1832     my $edosoptions = "-failures -explain -quiet";
1833     my $packagefiles = $args->{'pkgs'};
1834     my $sourcesfile = $args->{'src'};
1835
1836     my $packagearch="";
1837     foreach my $packagefile (@$packagefiles) {
1838         open(my $fh,'<', $packagefile);
1839         while (<$fh>) {
1840             next unless /^Architecture/;
1841             next if /^Architecture:\s*all/;
1842             /Architecture:\s*([^\s]*)/;
1843             if ($packagearch eq "") {
1844                 $packagearch = $1;
1845             } elsif ( $packagearch ne $1) {
1846                 return "Package file contains different architectures: $packagearch, $1";
1847             }
1848         }
1849         close $fh;
1850     }
1851
1852     if ( $architecture eq "" ) {
1853         if ( $packagearch eq "" ) {
1854         return "No architecture option given, " .
1855             "and no non-all architecture found in the Packages file";
1856         } else {
1857             $architecture = $packagearch;
1858         }
1859     } else {
1860         if ( $packagearch ne "" & $architecture ne $packagearch) {
1861             return "Architecture option is $architecture ".
1862             "but the package file contains architecture $packagearch";
1863         }   
1864     }
1865
1866     print "calling: edos-debcheck $edosoptions < $sourcesfile ".join('', map {" '-base FILE' ".$_ } @$packagefiles)."\n";
1867     open(my $result_cmd, '-|',
1868         "edos-debcheck $edosoptions < $sourcesfile ".join('', map {" '-base FILE' ".$_ } @$packagefiles));
1869
1870     my $explanation="";
1871     my $result={};
1872     my $binpkg="";
1873
1874     while (<$result_cmd>) {
1875 # source---pulseaudio (= 0.9.15-4.1~bpo50+1): FAILED
1876 #   source---pulseaudio (= 0.9.15-4.1~bpo50+1) depends on missing:
1877 #   - libltdl-dev (>= 2.2.6a-2)
1878 # source---libcanberra (= 0.22-1~bpo50+1): FAILED
1879 #   source---libcanberra (= 0.22-1~bpo50+1) depends on missing:
1880 #   - libltdl-dev
1881 #   - libltdl7-dev (>= 2.2.6)
1882
1883         if (/^\s+/) {
1884             s/^(\s*)$sourceprefix(.*)depends on/$1$2build-depends on/o;
1885             s/^(\s*)$sourceprefix(.*) and (.*) conflict/$1$2 build-conflicts with $3/o;
1886             $explanation .= $_;
1887         } else {
1888             if (/^$sourceprefix(.*) \(.*\): FAILED/o) {
1889                 $result->{$binpkg} = $explanation if $binpkg;
1890                 $explanation = "";
1891                 $binpkg = $1;
1892             } elsif (/^(depwait---.*) \(.*\): FAILED/o) {
1893                 $result->{$binpkg} = $explanation if $binpkg;
1894                 $explanation = "";
1895                 $binpkg = $1;
1896             } else { # else something broken is happening
1897                 #print "ignoring $_\n";
1898                 1;
1899             }
1900         }
1901     }
1902
1903     close $result_cmd;
1904     $result->{$binpkg} = $explanation if $binpkg;
1905     return $result;
1906
1907 }
1908
1909
1910 sub call_edos_depcheck {
1911     return if $simulate_edos;
1912     my $args = shift;
1913     my $srcs = $args->{'srcs'};
1914     my $key;
1915     
1916     return if defined ($distributions{$distribution}{noadw}) && not defined $args->{'depwait'};
1917
1918     # We need to check all of needs-build, as any new upload could make
1919     # something in needs-build have uninstallable deps
1920     # We also check everything in bd-uninstallable, as any new upload could
1921     # make that work again
1922     my (%interesting_packages, %interesting_packages_depwait);
1923     my $db = get_all_source_info();
1924     foreach $key (keys %$db) {
1925         my $pkg = $db->{$key};
1926         if (defined $pkg and isin($pkg->{'state'}, qw/Needs-Build BD-Uninstallable/) and not defined ($distributions{$distribution}{noadw})) {
1927                 $interesting_packages{$key} = undef;
1928         }
1929         if (defined $pkg and isin($pkg->{'state'}, qw/Dep-Wait/) and defined $args->{'depwait'}) {
1930                 $interesting_packages_depwait{$key} = undef;
1931                 # we always check for BD-Uninstallability in depwait - could be that depwait is satisfied but package is uninstallable
1932                 $interesting_packages{$key} = undef unless defined ($distributions{$distribution}{noadw});
1933         }
1934     }
1935     
1936     #print "I would look at these sources with edos-depcheck:\n";
1937     #print join " ", keys %interesting_packages,"\n";
1938     return unless %interesting_packages || %interesting_packages_depwait;
1939
1940     my $tmpfile_pattern = "/tmp/wanna-build-interesting-sources-$distribution.$$-XXXXX";
1941     use File::Temp qw/ tempfile /;
1942     my ($SOURCES, $tmpfile) = tempfile( $tmpfile_pattern, UNLINK => 1 );
1943     for my $key (keys %interesting_packages) {
1944         my $pkg = $db->{$key};
1945         # we print the source files as binary ones (with "source---"-prefixed),
1946         # so we can try if these "binary" packages are installable.
1947         # If such a "binary" package is installable, the corresponding source package is buildable.
1948         print $SOURCES "Package: source---$key\n";
1949         print $SOURCES "Version: $pkg->{'version'}\n";
1950         my $t = &filterarch($srcs->{$key}{'dep'} || $srcs->{$key}{'depends'}, $arch);
1951         my $tt = &filterarch($pkg->{'extra_depends'}, $arch);
1952         $t = $t ? ($tt ? "$t, $tt" : $t) : $tt;
1953         print $SOURCES "Depends: $t\n" if $t;
1954         my $u = &filterarch($srcs->{$key}{'conf'} || $srcs->{$key}{'conflicts'}, $arch);
1955         my $uu = &filterarch($pkg->{'extra_conflicts'}, $arch);
1956         $u = $u ? ($uu ? "$u, $uu" : $u) : $uu;
1957         print $SOURCES "Conflicts: $u\n" if $u;
1958         print $SOURCES "Architecture: all\n";
1959         print $SOURCES "\n";
1960     }
1961     for my $key (keys %interesting_packages_depwait) {
1962         my $pkg = $db->{$key};
1963         # we print the source files as binary ones (with "depwait---"-prefixed),
1964         # so we can try if these "binary" packages are installable.
1965         # If such a "binary" package is installable, the corresponding source package goes out of depwait
1966         print $SOURCES "Package: depwait---$key\n";
1967         print $SOURCES "Version: $pkg->{'version'}\n";
1968         print $SOURCES "Depends: $pkg->{'depends'}\n";
1969         print $SOURCES "Architecture: all\n";
1970         print $SOURCES "\n";
1971     }
1972     close $SOURCES;
1973
1974     my $edosresults = wb_edos_builddebcheck({'arch' => $args->{'arch'}, 'pkgs' => $args->{'pkgs'}, 'src' => $tmpfile});
1975     if (ref($edosresults) eq 'HASH') {
1976         foreach my $key (grep { $_ !~ /^depwait---/ } keys %$edosresults) {
1977                 if (exists $interesting_packages{$key}) {
1978                     $interesting_packages{$key} = $edosresults->{$key};
1979                 } else {
1980                     #print "TODO: edos reported a package we do not care about now\n" if $verbose;
1981                 }
1982         }
1983         foreach my $key (grep { $_ =~ /^depwait---/ } keys %$edosresults) {
1984                 $key =~ /^depwait---(.*)/ and $key = $1;
1985                 if (exists $interesting_packages_depwait{$key}) {
1986                     $interesting_packages_depwait{$key} = $edosresults->{"depwait---".$key};
1987                 } else {
1988                     #print "TODO: edos reported a package we do not care about now\n" if $verbose;
1989                 }
1990         }
1991     } else {
1992         # if $edosresults isn't an hash, then something went wrong and the string is the error message
1993         print "ERROR: Could not run wb-edos-builddebcheck. I am continuing, assuming\n" .
1994              "all packages have installable build-dependencies."
1995     }
1996     
1997     unlink( $tmpfile );
1998
1999     for my $key (keys %interesting_packages) {
2000         next if defined $interesting_packages_depwait{$key};
2001         my $pkg = $db->{$key};
2002         my $change = 
2003             (defined $interesting_packages{$key} and $pkg->{'state'} eq 'Needs-Build') ||
2004             (not defined $interesting_packages{$key} and $pkg->{'state'} eq 'BD-Uninstallable');
2005         my $problemchange = ($interesting_packages{$key}//"") ne ($pkg->{'bd_problem'}//"");
2006         if ($change) {
2007             if (defined $interesting_packages{$key}) {
2008                     change_state( \$pkg, 'BD-Uninstallable' );
2009                     $pkg->{'bd_problem'} = $interesting_packages{$key};
2010             } else {
2011                     change_state( \$pkg, 'Needs-Build' );
2012             }
2013         }
2014         if ($problemchange) {
2015             if (defined $interesting_packages{$key}) {
2016                     $pkg->{'bd_problem'} = $interesting_packages{$key};
2017             }   
2018         }
2019         if ($change) {
2020             log_ta( $pkg, "--merge-all (edos)" ) unless $simulate;
2021             print "edos-builddebchange changed state of ${key}_$pkg->{'version'} ($args->{'arch'}) to $pkg->{'state'}\n" if $verbose || $simulate;
2022         }
2023         if ($change || $problemchange) {
2024             update_source_info($pkg) unless $simulate;
2025         }
2026     }
2027
2028     for my $key (keys %interesting_packages_depwait) {
2029         if ($interesting_packages_depwait{$key}) {
2030             print "dep-wait for $key ($args->{'arch'}) not fullfiled yet\n" if $verbose || $simulate;
2031             next;
2032         }
2033         my $pkg = $db->{$key};
2034             if (defined $interesting_packages{$key}) {
2035                     change_state( \$pkg, 'BD-Uninstallable' );
2036                     $pkg->{'bd_problem'} = $interesting_packages{$key};
2037             } else {
2038                     change_state( \$pkg, 'Needs-Build' );
2039             }
2040         log_ta( $pkg, "edos_depcheck: depwait" ) unless $simulate;
2041         update_source_info($pkg) unless $simulate;
2042         print "edos-builddebchange changed state of ${key}_$pkg->{'version'} ($args->{'arch'}) from dep-wait to $pkg->{'state'}\n" if $verbose || $simulate;
2043     }
2044 }
2045
2046 sub usage {
2047         my $prgname;
2048         ($prgname = $0) =~ s,^.*/,,;
2049         print <<"EOF";
2050 Usage: $prgname <options...> <package_version...>
2051 Options:
2052     -v, --verbose: Verbose execution.
2053     -A arch: Architecture this operation is for.
2054     --take: Take package for building [default operation]
2055     -f, --failed: Record in database that a build failed due to
2056         deficiencies in the package (that aren't fixable without a new
2057         source version).
2058     -u, --uploaded: Record in the database that the packages build
2059         correctly and were uploaded.
2060     -n, --no-build: Record in the database that the packages aren't
2061         desired for this architecture and shouldn't appear in listings even
2062         if they're out of date.
2063     --dep-wait: Record in the database that the packages are waiting
2064         for some source dependencies to become available
2065     --binNMU num: Schedule a re-build of the package with unchanged source, but
2066          a new version number (source-version + "+b<num>")
2067     --give-back: Mark a package as ready to build that is in state Building,
2068          Built or Build-Attempted. To give back a package in state Failed, use
2069          --override. This command will actually put the package in state
2070          BD-Uninstallable, until the installability of its Build-Dependencies
2071          were verified. This happens at each call of --merge-all, usually
2072          every 15 minutes.
2073     -i SRC_PKG, --info SRC_PKG: Show information for source package
2074     -l STATE, --list=STATE: List all packages in state STATE; can be
2075         combined with -U to restrict to a specific user; STATE can
2076         also be 'all'
2077     -m MESSAGE, --message=MESSAGE: Give reason why package failed or
2078         source dependency list
2079         (used with -f, --dep-wait, and --binNMU)
2080     -o, --override: Override another user's lock on a package, i.e.
2081         take it over; a notice mail will be sent to the other user
2082     -U USER, --user=USER: select user name for which listings should
2083         apply, if not given all users are listed.
2084         if -l is missing, set user name to be entered in db; usually
2085         automatically choosen
2086     --import FILE: Import database from a ASCII file FILE
2087     --export FILE: Export database to a ASCII file FILE
2088
2089 The remaining arguments (depending on operation) usually start with
2090 "name_version", the trailer is ignored. This allows to pass the names
2091 of .dsc files, for which file name completion can be used.
2092 --merge-packages and --merge-quinn take Package/quin--diff file names
2093 on the command line or read stdin. --list needs nothing more on the
2094 command line. --info takes source package names (without version).
2095 EOF
2096         exit 1;
2097 }
2098
2099 sub pkg_version_eq {
2100         my $pkg = shift;
2101         my $version = shift;
2102
2103         return 1
2104                if (defined $pkg->{'binary_nmu_version'}) and 
2105                version_compare(binNMU_version($pkg->{'version'},
2106                         $pkg->{'binary_nmu_version'}),'=', $version);
2107         return version_compare( $pkg->{'version'}, "=", $version );
2108 }
2109
2110 sub table_name {
2111         return '"' . $arch . $schema_suffix . '".packages';
2112 }
2113
2114 sub user_table_name {
2115         return '"' . $arch . $schema_suffix . '".users';
2116 }
2117
2118 sub transactions_table_name {
2119         return '"' . $arch . $schema_suffix . '".transactions';
2120 }
2121
2122 sub pkg_history_table_name {
2123         return '"' . $arch . $schema_suffix . '".pkg_history';
2124 }
2125
2126 sub get_readonly_source_info {
2127         my $name = shift;
2128         # SELECT FLOOR(EXTRACT('epoch' FROM age(localtimestamp, '2010-01-22  23:45')) / 86400) -- change to that?
2129         my $q = "SELECT rel, priority, state_change, permbuildpri, section, buildpri, failed, state, binary_nmu_changelog, bd_problem, version, package, distribution, installed_version, notes, builder, old_failed, previous_state, binary_nmu_version, depends, extract(days from date_trunc('days', now() - state_change)) as state_days, floor(extract(epoch from now()) - extract(epoch from state_change)) as state_time"
2130             . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution AND result = 'successful') AS successtime"
2131             . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution ) AS anytime"
2132             . ", extra_depends, extra_conflicts, build_arch_all"
2133             . " FROM " .  table_name()
2134             . ' WHERE package = ? AND distribution = ?';
2135         my $pkg = $dbh->selectrow_hashref( $q,
2136                 undef, $name, $distribution);
2137         return $pkg;
2138 }
2139
2140 sub get_source_info {
2141         my $name = shift;
2142         return get_readonly_source_info($name) if $simulate;
2143         my $pkg = $dbh->selectrow_hashref('SELECT *, extract(days from date_trunc(\'days\', now() - state_change)) as state_days, floor(extract(epoch from now()) - extract(epoch from state_change)) as state_time FROM ' . 
2144                 table_name() . ' WHERE package = ? AND distribution = ?' .
2145                 ' FOR UPDATE',
2146                 undef, $name, $distribution);
2147         return $pkg;
2148 }
2149
2150 sub get_all_source_info {
2151         my %options = @_;
2152
2153         my $q = "SELECT rel, priority, state_change, permbuildpri, section, buildpri, failed, state, binary_nmu_changelog, bd_problem, version, package, distribution, installed_version, notes, builder, old_failed, previous_state, binary_nmu_version, depends, extract(days from date_trunc('days', now() - state_change)) as state_days, floor(extract(epoch from now()) - extract(epoch from state_change)) as state_time"
2154 #            . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution AND result = 'successful') AS successtime"
2155 #            . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution ) AS anytime"
2156             . ", successtime.build_time as successtime, anytime.build_time as anytime, extra_depends, extra_conflicts"
2157             . " FROM " .  table_name()
2158                 . " left join ( "
2159                   . "select distinct on (package, distribution) build_time, package, distribution from ".pkg_history_table_name()." where result = 'successful' order by package, distribution, timestamp "
2160                   . " ) as successtime using (package, distribution) "
2161                 . " left join ( "
2162                   . "select distinct on (package, distribution) build_time, package, distribution from ".pkg_history_table_name()." order by package, distribution, timestamp desc"
2163                   . " ) as anytime using (package, distribution) "
2164             . " WHERE TRUE ";
2165         my @args = ();
2166         if ($distribution) {
2167             my @dists = split(/[, ]+/, $distribution);
2168             $q .= ' AND ( distribution = ? '.(' OR distribution = ? ' x $#dists).' )';
2169             foreach my $d ( @dists ) {
2170                 push @args, ($d);
2171             }
2172         }
2173         if ($options{state} && uc($options{state}) ne "ALL") {
2174                 $q .= ' AND upper(state) = ? ';
2175                 push @args, uc($options{state});
2176         }
2177
2178         if ($options{user} && uc($options{state}) ne "NEEDS-BUILD") { # if it's NEEDS-BUILD, we don't look at users
2179                 #this basically means "this user, or no user at all":
2180                 $q .= " AND (builder = ? OR upper(state) = 'NEEDS-BUILD')";
2181                 push @args, $options{user};
2182         }
2183
2184         if ($options{list_min_age} && $options{list_min_age} > 0) {
2185                 $q .= ' AND age(state_change) > ? ';
2186                 push @args, $options{list_min_age} . " days";
2187         }
2188
2189         if ($options{list_min_age} && $options{list_min_age} < 0) {
2190                 $q .= ' AND age(state_change) < ? ';
2191                 push @args, -$options{list_min_age} . " days";
2192         }
2193
2194         my $db = $dbh->selectall_hashref($q, 'package', undef, @args);
2195         return $db;
2196 }
2197
2198 sub show_distribution_architectures {
2199         my $q = 'SELECT distribution, spacecat_all(architecture) AS architectures '.
2200                 'FROM distribution_architectures '.
2201                 'GROUP BY distribution';
2202         my $rows = $dbh->selectall_hashref($q, 'distribution');
2203         foreach my $name (keys %$rows) {
2204                 print $name.': '.$rows->{$name}->{'architectures'}."\n";
2205         }
2206 }
2207
2208 sub show_distribution_aliases {
2209         foreach my $alias (keys %distribution_aliases) {
2210                 print $alias.': '.$distribution_aliases{$alias}."\n";
2211         }
2212 }
2213
2214 sub update_source_info {
2215         my $pkg = shift;
2216         $pkg->{'extra_depends'} = $extra_depends if defined $extra_depends;
2217         undef $pkg->{'extra_depends'} unless $pkg->{'extra_depends'};
2218         $pkg->{'extra_conflicts'} = $extra_conflicts if defined $extra_conflicts;
2219         undef $pkg->{'extra_conflicts'} unless $pkg->{'extra_conflicts'};
2220         print Dumper $pkg if $verbose and $simulate;
2221         return if $simulate;
2222
2223         my $pkg2 = get_source_info($pkg->{'package'});
2224         if (! defined $pkg2)
2225         {
2226                 add_source_info($pkg);
2227         }
2228
2229         $dbh->do('UPDATE ' . table_name() . ' SET ' .
2230                         'version = ?, ' .
2231                         'state = ?, ' .
2232                         'section = ?, ' .
2233                         'priority = ?, ' .
2234                         'installed_version = ?, ' .
2235                         'previous_state = ?, ' .
2236                         (($pkg->{'do_state_change'}) ? "state_change = now()," : "").
2237                         'notes = ?, ' .
2238                         'builder = ?, ' .
2239                         'failed = ?, ' .
2240                         'old_failed = ?, ' .
2241                         'binary_nmu_version = ?, ' .
2242                         'binary_nmu_changelog = ?, ' .
2243                         'permbuildpri = ?, ' .
2244                         'buildpri = ?, ' .
2245                         'depends = ?, ' .
2246                         'rel = ?, ' .
2247                         'extra_depends = ?, ' .
2248                         'extra_conflicts = ?, ' .
2249                         'bd_problem = ? ' .
2250                         'WHERE package = ? AND distribution = ?',
2251                 undef,
2252                 $pkg->{'version'},
2253                 $pkg->{'state'},
2254                 $pkg->{'section'},
2255                 $pkg->{'priority'},
2256                 $pkg->{'installed_version'},
2257                 $pkg->{'previous_state'},
2258                 $pkg->{'notes'},
2259                 $pkg->{'builder'},
2260                 $pkg->{'failed'},
2261                 $pkg->{'old_failed'},
2262                 $pkg->{'binary_nmu_version'},
2263                 $pkg->{'binary_nmu_changelog'},
2264                 $pkg->{'permbuildpri'},
2265                 $pkg->{'buildpri'},
2266                 $pkg->{'depends'},
2267                 $pkg->{'rel'},
2268                 $pkg->{'extra_depends'},
2269                 $pkg->{'extra_conflicts'},
2270                 $pkg->{'bd_problem'},
2271                 $pkg->{'package'},
2272                 $distribution) or die $dbh->errstr;
2273 }
2274
2275 sub add_source_info {
2276         return if $simulate;
2277         my $pkg = shift;
2278         $dbh->do('INSERT INTO ' . table_name() .
2279                         ' (package, distribution) values (?, ?)',
2280                 undef, $pkg->{'package'}, $distribution) or die $dbh->errstr;
2281 }
2282
2283 sub del_source_info {
2284         return if $simulate;
2285         my $name = shift;
2286         $dbh->do('DELETE FROM ' . table_name() .
2287                         ' WHERE package = ? AND distribution = ?',
2288                 undef, $name, $distribution) or die $dbh->errstr;
2289 }
2290
2291 sub get_user_info {
2292         my $name = shift;
2293         my $user = $dbh->selectrow_hashref('SELECT * FROM ' . 
2294                 user_table_name() . ' WHERE username = ? AND distribution = ?',
2295                 undef, $name, $distribution);
2296         return $user;
2297 }
2298
2299 sub update_user_info {
2300         return if $simulate;
2301         my $user = shift;
2302         $dbh->do('UPDATE ' . user_table_name() .
2303                         ' SET last_seen = now() WHERE username = ?' .
2304                         ' AND distribution = ?',
2305                 undef, $user, $distribution)
2306                 or die $dbh->errstr;
2307 }
2308
2309
2310 sub add_user_info {
2311         return if $simulate;
2312         my $user = shift;
2313         $dbh->do('INSERT INTO ' . user_table_name() .
2314                         ' (username, distribution, last_seen)' .
2315                         ' values (?, ?, now())',
2316                 undef, $user, $distribution)
2317                 or die $dbh->errstr;
2318 }
2319
2320 sub lock_table {
2321         return if $simulate;
2322         $dbh->do('LOCK TABLE ' . table_name() .
2323                 ' IN EXCLUSIVE MODE', undef) or die $dbh->errstr;
2324 }
2325
2326 sub parse_argv {
2327 # parts the array $_[0] and $_[1] and returns the sub-array (modifies the original one)
2328     my @ret = ();
2329     my $args = shift;
2330     my $separator = shift;
2331     while($args->[0] && $args->[0] ne $separator) { 
2332         push @ret, shift @$args;
2333     }
2334     shift @$args if @$args;
2335     return @ret;
2336 }
2337
2338 sub parse_all_v3 {
2339     my $srcs = shift;
2340     my $vars = shift;
2341     my $db = get_all_source_info();
2342     my $binary = $srcs->{'_binary'};
2343
2344     SRCS:
2345     foreach my $name (keys %$srcs) {
2346         next if $name eq '_binary';
2347
2348         # state = installed, out-of-date, uncompiled, packages-arch-specific, overwritten-by-arch-all, arch-not-in-arch-list, arch-all-only
2349         my $pkgs = $srcs->{$name};
2350         next if isin($pkgs->{'status'}, qw <arch-all-only>);
2351         my $pkg = $db->{$name};
2352
2353         unless ($pkg) {
2354             next SRCS if $pkgs->{'status'} eq 'packages-arch-specific';
2355             my $logstr = sprintf("merge-v3 %s %s_%s (%s, %s):", $vars->{'time'}, $name, $pkgs->{'version'}, $vars->{'arch'}, $vars->{'suite'});
2356
2357             # does at least one binary exist in the database and is more recent - if so, we're probably just outdated, ignore the source package
2358             for my $bin (@{$pkgs->{'binary'}}) {
2359                 if ($binary->{$bin} and vercmp($pkgs->{'version'}, $binary->{$bin}->{'version'}) < 0) {
2360                     print "$logstr skipped because binaries (assumed to be) overwritten\n" if $verbose || $simulate;
2361                     next SRCS;
2362                 }
2363             }
2364             $pkg->{'package'}  = $name;
2365         }
2366         $pkg->{'version'} ||= "";
2367         $pkg->{'state'} ||= "";
2368         my $logstr = sprintf("merge-v3 %s %s_%s", $vars->{'time'}, $name, $pkgs->{'version'}).
2369             ($pkgs->{'binnmu'} ? ";b".$pkgs->{'binnmu'} : "").
2370             sprintf(" (%s, %s, previous: %s", $vars->{'arch'}, $vars->{'suite'}, $pkg->{'version'}//"").
2371             ($pkg->{'binary_nmu_version'} ? ";b".$pkg->{'binary_nmu_version'} : "").
2372             ", $pkg->{'state'}".($pkg->{'notes'} ? "/".$pkg->{'notes'} : "")."):";
2373
2374         if (isin($pkgs->{'status'}, qw (installed related)) && $pkgs->{'version'} eq $pkg->{'version'} && ($pkgs->{'binnmu'}//0) < int($pkg->{'binary_nmu_version'}//0)) {
2375                 $pkgs->{'status'} = 'out-of-date';
2376         }
2377         if (isin($pkgs->{'status'}, qw <installed related arch-not-in-arch-list packages-arch-specific overwritten-by-arch-all arch-all-only>)) {
2378             my $change = 0;
2379             my $tstate = {'installed' => 'Installed', 'related' => 'Installed', 
2380                 'arch-not-in-arch-list' => 'Auto-Not-For-Us', 'packages-arch-specific' => 'Auto-Not-For-Us', 'overwritten-by-arch-all' => 'Auto-Not-For-Us', 'arch-all-only' => 'Auto-Not-For-Us',
2381                 }->{$pkgs->{'status'}};
2382             next if isin( $pkg->{'state'}, qw<Not-For-Us Failed Failed-Removed Dep-Wait Dep-Wait-Removed>) && isin( $tstate, qw<Auto-Not-For-Us>);
2383             # if the package is currently current, the status is Installed, not not-for-us
2384             if ($pkg->{'state'} ne $tstate) {
2385                 change_state( \$pkg, $tstate);
2386                 if (isin( $tstate, qw<Installed>)) {
2387                     delete $pkg->{'depends'};
2388                     delete $pkg->{'extra_depends'};
2389                     delete $pkg->{'extra_conflicts'};
2390                 }
2391                 $change++;
2392             }
2393             my $attrs = { 'version' => 'version', 'installed_version' => 'version', 'binary_nmu_version' => 'binnmu', 'section' => 'section', 'priority' => 'priority' };
2394             foreach my $k (keys %$attrs) {
2395                 next if isin( $tstate, qw<Auto-Not-For-Us>) && isin( $k, qw<installed_version binary_nmu_version>);
2396                 if (($pkg->{$k}//"") ne ($pkgs->{$attrs->{$k}}//"")) {
2397                     $pkg->{$k} = $pkgs->{$attrs->{$k}};
2398                     $change++;
2399                 }
2400             }
2401             if (isin($pkgs->{'status'}, qw <related packages-arch-specific overwritten-by-arch-all arch-not-in-arch-list arch-all-only>)) {
2402                 my $tnotes = $pkgs->{'status'};
2403                 if (($pkg->{'notes'}//"") ne $tnotes) {
2404                     $pkg->{'notes'} = $tnotes;
2405                     $change++;
2406                 }
2407             }
2408             if ($change) {
2409                 print "$logstr set to $tstate/".($pkg->{'notes'}//"")."\n" if $verbose || $simulate;
2410                 log_ta( $pkg, "--merge-v3: $tstate" ) unless $simulate;
2411                 update_source_info($pkg) unless $simulate;
2412             }
2413             next;
2414         }
2415
2416         # only uncompiled / out-of-date are left, so check if anything new
2417         if (!(isin($pkgs->{'status'}, qw (uncompiled out-of-date)))) {
2418             print "$logstr package in unknown state: $pkgs->{'status'}\n";
2419             next SRCS;
2420         }
2421         next if $pkgs->{'version'} eq $pkg->{'version'} and $pkgs->{'binnmu'}//0 >= int($pkg->{'binary_nmu_version'}//0);
2422         next if $pkgs->{'version'} eq $pkg->{'version'} and !isin( $pkg->{'state'}, qw(Installed));
2423         next if isin( $pkg->{'state'}, qw(Not-For-Us Failed-Removed));
2424
2425         if (defined( $pkg->{'state'} ) && isin( $pkg->{'state'}, qw(Building Built Build-Attempted))) {
2426             send_mail( $pkg->{'builder'},
2427                 "new version of $name (dist=$distribution)",
2428                 "As far as I'm informed, you're currently building the package $name\n".
2429                 "in version $pkg->{'version'}.\n\n".
2430                 "Now there's a new source version $pkgs->{'version'}. If you haven't finished\n".
2431                 "compiling $name yet, you can stop it to save some work.\n".
2432                 "Just to inform you...\n".
2433                 "(This is an automated message)\n" ) unless $simulate;
2434             print "$logstr new version while building $pkg->{'version'} -- sending mail to builder ($pkg->{'builder'})\n"
2435                                   if $verbose || $simulate;
2436             }
2437         change_state( \$pkg, 'Needs-Build');
2438         $pkg->{'notes'} = $pkgs->{'status'};
2439         $pkg->{'version'} = $pkgs->{'version'};
2440         $pkg->{'section'} = $pkgs->{'section'};
2441         $pkg->{'priority'} = $pkgs->{'priority'};
2442         $pkg->{'dep'} = $pkgs->{'depends'};
2443         $pkg->{'conf'} = $pkgs->{'conflicts'};
2444         delete $pkg->{'builder'};
2445         delete $pkg->{'binary_nmu_version'} unless $pkgs->{'binnmu'};
2446         delete $pkg->{'binary_nmu_changelog'} unless $pkgs->{'binnmu'};
2447         delete $pkg->{'buildpri'};
2448         log_ta( $pkg, "--merge-v3: needs-build" ) unless $simulate;
2449         update_source_info($pkg) unless $simulate;
2450         print "$logstr set to needs-builds\n" if $simulate || $verbose;
2451     }
2452
2453     foreach my $name (keys %$db) {
2454         next if $srcs->{$name};
2455         my $pkg = $db->{$name};
2456         my $logstr = "merge-v3 $vars->{'time'} ".$name."_$pkg->{'version'} ($vars->{'arch'}, $vars->{'suite'}, previous: $pkg->{'state'}):";
2457         # package disappeared - delete
2458         change_state( \$pkg, 'deleted' );
2459         log_ta( $pkg, "--merge-v3: deleted" ) unless $simulate;
2460         print "$logstr deleted from database\n" if $verbose || $simulate;
2461         del_source_info($name) unless $simulate;
2462         delete $db->{$name};
2463     }
2464 }