]> git.donarmstrong.com Git - wannabuild.git/blob - bin/wanna-build
9ef78632054ead7ea732c9e12e7faa3e4bdcf61e
[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, $opt_create_db,
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     'create-db'       => \$opt_create_db,
110     'correct-compare' => \$WannaBuild::opt_correct_version_cmp,
111
112     # TODO: remove after buildds no longer pass to wanna-build
113     'no-propagation|N'      => \&_option_deprecated,
114     'no-down-propagation|D' => \&_option_deprecated,
115
116     # normal actions
117     'building|take'         => \&_set_mode_set,
118     'failed|f'              => \&_set_mode_set,
119     'uploaded|u'            => \&_set_mode_set,
120     'not-for-us|no-build|n' => \&_set_mode_set,
121     'built'                 => \&_set_mode_set,
122     'attempted'             => \&_set_mode_set,
123     'needs-build|give-back' => \&_set_mode_set,
124     'dep-wait'              => \&_set_mode_set,
125     'update'                => \&_set_mode_set,
126     'forget'                => \&_set_mode,
127     'forget-user'           => \&_set_mode,
128     'merge-v3'              => \&_set_mode,
129     'info|i'                => \&_set_mode,
130     'binary-nmu|binNMU=i'   => sub {
131         _set_mode_set(@_);
132         $binNMUver = $_[1];
133     },
134     'permanent-build-priority|perm-build-priority=i' => sub {
135         _set_mode_set(@_);
136         $build_priority = $_[1];
137     },
138     'build-priority=i' => sub {
139         _set_mode_set(@_);
140         $build_priority = $_[1];
141     },
142     'list|l=s' => sub {
143         _set_mode(@_);
144         $list_state = $_[1];
145         die "Unknown state to list: $list_state\n"
146           if not $list_state ~~ [
147               qw( needs-build building uploaded built
148                   build-attempted failed installed
149                   dep-wait not-for-us auto-not-for-us
150                   all failed-removed install-wait
151                   reupload-wait bd-uninstallable ) ];
152     },
153     'dist|d=s' => sub {
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' => sub { _set_mode(@_); $export_to   = $_[1]; },
187     'import' => 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         if (defined $pkg->{'permbuildpri'}) {
843                 $pkg->{'buildpri'} = $pkg->{'permbuildpri'};
844         } else {
845                 delete $pkg->{'buildpri'};
846         }
847         log_ta( $pkg, "--failed" );
848         update_source_info($pkg);
849         print "$name: registered as failed\n" if $verbose;
850 }
851
852 sub add_one_notforus {
853         my $name = shift;
854         my $version = shift;
855         my $pkg = get_source_info($name);
856
857         if ($pkg->{'state'} eq 'Not-For-Us') {
858                 # reset Not-For-Us state in case it's called twice; this is
859                 # the only way to get a package out of this state...
860                 # There is no really good state in which such packages should
861                 # be put :-( So use Failed for now.
862                 change_state( \$pkg, 'Failed' );
863                 $pkg->{'package'} = $name;
864                 $pkg->{'failed'} = "Was Not-For-Us previously";
865                 delete $pkg->{'builder'};
866                 delete $pkg->{'depends'};
867                 log_ta( $pkg, "--no-build(rev)" );
868                 print "$name: now not unsuitable anymore\n";
869
870                 send_mail( $conf::notforus_maint,
871                                    "$name moved out of Not-For-Us state",
872                                    "The package '$name' has been moved out of the Not-For-Us ".
873                                    "state by $user.\n".
874                                    "It should probably also be removed from ".
875                                    "Packages-arch-specific or\n".
876                                    "the action was wrong.\n" )
877                         if $conf::notforus_maint;
878         }
879         else {
880                 change_state( \$pkg, 'Not-For-Us' );
881                 $pkg->{'package'} = $name;
882                 delete $pkg->{'builder'};
883                 delete $pkg->{'depends'};
884                 delete $pkg->{'buildpri'};
885                 delete $pkg->{'binary_nmu_version'};
886                 delete $pkg->{'binary_nmu_changelog'};
887                 log_ta( $pkg, "--no-build" );
888                 print "$name: registered as unsuitable\n" if $verbose;
889
890                 send_mail( $conf::notforus_maint,
891                                    "$name set to Not-For-Us",
892                                    "The package '$name' has been set to state Not-For-Us ".
893                                    "by $user.\n".
894                                    "It should probably also be added to ".
895                                    "Packages-arch-specific or\n".
896                                    "the Not-For-Us state is wrong.\n" )
897                         if $conf::notforus_maint;
898         }
899         update_source_info($pkg);
900 }
901
902 sub add_one_needsbuild {
903         my $name = shift;
904         my $version = shift;
905         my $state;
906         my $pkg = get_source_info($name);
907
908         if (!defined($pkg)) {
909                 print "$name: not registered; can't give back.\n";
910                 return;
911         }
912         $state = $pkg->{'state'};
913
914         if ($state eq "BD-Uninstallable") {
915                 if ($opt_override) {
916                         print "$name: Forcing uninstallability mark to be removed. This is not permanent and might be reset with the next trigger run\n";
917
918                         change_state( \$pkg, 'Needs-Build' );
919                         delete $pkg->{'builder'};
920                         delete $pkg->{'depends'};
921                         log_ta( $pkg, "--give-back" );
922                         update_source_info($pkg);
923                         print "$name: given back\n" if $verbose;
924                         return;
925                 }
926                 else {
927                         print "$name: has uninstallable build-dependencies. Skipping\n",
928                                   "  (use --override to clear dependency list and ",
929                                   "give back anyway)\n";
930                         return;
931                 }
932         }
933         elsif ($state eq "Dep-Wait") {
934                 if ($opt_override) {
935                         print "$name: Forcing source dependency list to be cleared\n";
936                 }
937                 else {
938                         print "$name: waiting for source dependencies. Skipping\n",
939                                   "  (use --override to clear dependency list and ",
940                                   "give back anyway)\n";
941                         return;
942                 }
943         }
944         elsif (!isin( $state, qw(Building Built Build-Attempted))) {
945                 print "$name: not taken for building (state is $state).";
946                 if ($opt_override) {
947                         print "\n$name: Forcing give-back\n";
948                 }
949                 else {
950                         print " Skipping.\n";
951                         return;
952                 }
953         }
954         if (defined ($pkg->{'builder'}) && $user ne $pkg->{'builder'} &&
955                 !($pkg->{'builder'} =~ /^(\w+)-\w+/ && $1 eq $user) &&
956                 !$opt_override) {
957                 print "$name: not taken by you, but by ".
958                           "$pkg->{'builder'}. Skipping.\n";
959                 return;
960         }
961         if (!pkg_version_eq($pkg, $version)) {
962                 print "$name: version mismatch ($pkg->{'version'} registered). ",
963                           "Skipping.\n";
964                 return;
965         }
966         if (!defined $distributions{$distribution}{noadw}) {
967                 change_state( \$pkg, 'BD-Uninstallable' );
968                 $pkg->{'bd_problem'} = "Installability of build dependencies not tested yet";
969         } else {
970                 change_state( \$pkg, 'Needs-Build' );
971         }
972         $pkg->{'builder'} = undef;
973         $pkg->{'depends'} = undef;
974         log_ta( $pkg, "--give-back" );
975         update_source_info($pkg);
976         print "$name: given back\n" if $verbose;
977 }
978
979 sub set_one_binnmu {
980         my $name = shift;
981         my $version = shift;
982         my $pkg = get_source_info($name);
983         my $state;
984
985         if (!defined($pkg)) {
986                 print "$name: not registered; can't register for binNMU.\n";
987                 return;
988         }
989         my $db_ver = $pkg->{'version'};
990
991         if (!version_eq($db_ver, $version)) {
992                 print "$name: version mismatch ($db_ver registered). ",
993                           "Skipping.\n";
994                 return;
995         }
996         $state = $pkg->{'state'};
997
998         if (defined $pkg->{'binary_nmu_version'}) {
999                 if ($binNMUver == 0) {
1000                         change_state( \$pkg, 'Installed' );
1001                         delete $pkg->{'builder'};
1002                         delete $pkg->{'depends'};
1003                         delete $pkg->{'binary_nmu_version'};
1004                         delete $pkg->{'binary_nmu_changelog'};
1005                 } elsif ($binNMUver <= $pkg->{'binary_nmu_version'}) {
1006                         print "$name: already building binNMU $pkg->{'binary_nmu_version'}\n";
1007                         return;
1008                 } else {
1009                         $pkg->{'binary_nmu_version'} = $binNMUver;
1010                         $pkg->{'binary_nmu_changelog'} = $fail_reason;
1011                         $pkg->{'notes'} = 'out-of-date';
1012                         $pkg->{'buildpri'} = $pkg->{'permbuildpri'}
1013                                 if (defined $pkg->{'permbuildpri'});
1014                         if (defined $distributions{$distribution}{noadw}) {
1015                                 change_state( \$pkg, 'Installed' );
1016                         } else {
1017                                 change_state( \$pkg, 'BD-Uninstallable' );
1018                         }
1019                 }
1020                 log_ta( $pkg, "--binNMU" );
1021                 update_source_info($pkg);
1022                 return;
1023         } elsif ($binNMUver == 0) {
1024                 print "${name}_$version: no scheduled binNMU to cancel.\n";
1025                 return;
1026         }
1027
1028         if ($state ne 'Installed') {
1029                 print "${name}_$version: not installed; can't register for binNMU.\n";
1030                 return;
1031         }
1032
1033         my $fullver = binNMU_version($version,$binNMUver);
1034         if ( version_lesseq( $fullver, $pkg->{'installed_version'} ) )
1035         {
1036                 print "$name: binNMU $fullver is not newer than current version $pkg->{'installed_version'}\n";
1037                 return;
1038         }
1039
1040         if (!defined $distributions{$distribution}{noadw}) {
1041                 change_state( \$pkg, 'BD-Uninstallable' );
1042                 $pkg->{'bd_problem'} = "Installability of build dependencies not tested yet";
1043         }
1044         else
1045         {
1046                 change_state( \$pkg, 'Needs-Build' );
1047         }
1048         delete $pkg->{'builder'};
1049         delete $pkg->{'depends'};
1050         $pkg->{'binary_nmu_version'} = $binNMUver;
1051         $pkg->{'binary_nmu_changelog'} = $fail_reason;
1052         $pkg->{'notes'} = 'out-of-date';
1053         log_ta( $pkg, "--binNMU" );
1054         update_source_info($pkg);
1055         print "${name}: registered for binNMU $fullver\n" if $verbose;
1056 }
1057
1058 sub set_one_buildpri {
1059         my $name = shift;
1060         my $version = shift;
1061         my $key = shift;
1062         my $pkg = get_source_info($name);
1063         my $state;
1064
1065         if (!defined($pkg)) {
1066                 print "$name: not registered; can't set priority.\n";
1067                 return;
1068         }
1069         $state = $pkg->{'state'};
1070
1071         if ($state eq "Not-For-Us") {
1072                 print "$name: not suitable for this architecture. Skipping.\n";
1073                 return;
1074         } elsif ($state eq "Failed-Removed") {
1075                 print "$name: failed previously and doesn't need building. Skipping.\n";
1076                 return;
1077         }
1078         if (!pkg_version_eq($pkg, $version)) {
1079                 print "$name: version mismatch ($pkg->{'version'} registered). ",
1080                           "Skipping.\n";
1081                 return;
1082         }
1083         if ( $build_priority == 0 ) {
1084                 delete $pkg->{'buildpri'}
1085                         if $key eq 'permbuildpri' and defined $pkg->{'buildpri'}
1086                         and $pkg->{'buildpri'} == $pkg->{$key};
1087                 delete $pkg->{$key};
1088         } else {
1089                 $pkg->{'buildpri'} = $build_priority
1090                         if $key eq 'permbuildpri';
1091                 $pkg->{$key} = $build_priority;
1092         }
1093         update_source_info($pkg);
1094         print "$name: set to build priority $build_priority\n" if $verbose;
1095 }
1096
1097 sub add_one_depwait {
1098         my $name = shift;
1099         my $version = shift;
1100         my $state;
1101         my $pkg = get_source_info($name);
1102
1103         if (!defined($pkg)) {
1104                 print "$name: not registered yet.\n";
1105                 return;
1106         }
1107         $state = $pkg->{'state'};
1108
1109         if ($state eq "Dep-Wait") {
1110                 print "$name: merging with previously registered dependencies\n";
1111         }
1112         
1113         if (isin( $state, qw(Needs-Build Failed BD-Uninstallable))) {
1114                 print "$name: Warning: not registered for building previously, ".
1115                           "but processing anyway.\n";
1116         }
1117         elsif ($state eq "Not-For-Us") {
1118                 print "$name: not suitable for this architecture anyway. Skipping.\n";
1119                 return;
1120         }
1121         elsif ($state eq "Failed-Removed") {
1122                 print "$name: failed previously and doesn't need building. Skipping.\n";
1123                 return;
1124         }
1125         elsif ($state eq "Installed") {
1126                 print "$name: Is already installed in archive. Skipping.\n";
1127                 return;
1128         }
1129         elsif ($state eq "Uploaded") {
1130                 print "$name: Is already uploaded. Skipping.\n";
1131                 return;
1132         }
1133         elsif ($pkg->{'builder'} &&
1134                    $user ne $pkg->{'builder'}) {
1135                 print "$name: not taken by you, but by ".
1136                           "$pkg->{'builder'}. Skipping.\n";
1137                 return;
1138         }
1139         elsif ( !pkg_version_eq($pkg,$version)) {
1140                 print "$name: version mismatch ".
1141                           "($pkg->{'version'} ".
1142                           "by $pkg->{'builder'})\n";
1143                 return;
1144         }
1145         elsif ($fail_reason =~ /^\s*$/ ||
1146                    !parse_deplist( $fail_reason, 1 )) {
1147                 print "$name: Bad dependency list\n";
1148                 return;
1149         }
1150         change_state( \$pkg, 'Dep-Wait' );
1151         $pkg->{'builder'} = $user;
1152         if (defined $pkg->{'permbuildpri'}) {
1153                 $pkg->{'buildpri'} = $pkg->{'permbuildpri'};
1154         } else {
1155                 delete $pkg->{'buildpri'};
1156         }
1157         my $deplist = parse_deplist( $pkg->{'depends'} );
1158         my $new_deplist = parse_deplist( $fail_reason );
1159         # add new dependencies, maybe overwriting old entries
1160         foreach (keys %$new_deplist) {
1161                 $deplist->{$_} = $new_deplist->{$_};
1162         }
1163         $pkg->{'depends'} = build_deplist($deplist);
1164         log_ta( $pkg, "--dep-wait" );
1165         update_source_info($pkg);
1166         print "$name: registered as waiting for dependencies\n" if $verbose;
1167 }
1168
1169 sub set_one_update {
1170         my $name = shift;
1171         my $version = shift;
1172         my $pkg = get_source_info($name);
1173
1174         if (!defined($pkg)) {
1175                 print "$name: not registered yet.\n";
1176                 return;
1177         }
1178         $pkg->{'version'} =~ s/\+b[0-9]+$//;
1179
1180         log_ta( $pkg, "--update" );
1181         update_source_info($pkg);
1182 }
1183
1184
1185 # for sorting priorities and sections
1186 BEGIN {
1187         %prioval = ( required             => -5,
1188                                  important            => -4,
1189                                  standard             => -3,
1190                                  optional             => -2,
1191                                  extra                => -1,
1192                                  unknown              => -1 );
1193         %sectval = ( 
1194                                  libs                   => -200,
1195                                  'debian-installer'     => -199,
1196                                  base                   => -198,
1197                                  devel                  => -197,
1198                                  kernel                 => -196,
1199                                  shells                 => -195,
1200                                  perl                   => -194,
1201                                  python                 => -193,
1202                                  graphics               => -192,
1203                                  admin                  => -191,
1204                                  utils                  => -190,
1205                                  x11                    => -189,
1206                                  editors                => -188,
1207                                  net                    => -187,
1208                                  httpd                  => -186,
1209                                  mail                   => -185,
1210                                  news                   => -184,
1211                                  tex                    => -183,
1212                                  text                   => -182,
1213                                  web                    => -181,
1214                                  vcs                    => -180,
1215                                  doc                    => -179,
1216                                  localizations          => -178,
1217                                  interpreters           => -177,
1218                                  ruby                   => -176,
1219                                  java                   => -175,
1220                                  ocaml                  => -174,
1221                                  lisp                   => -173,
1222                                  haskell                => -172,
1223                                  'cli-mono'             => -171,
1224                                  gnome                  => -170,
1225                                  kde                    => -169,
1226                                  xfce                   => -168,
1227                                  gnustep                => -167,
1228                                  database               => -166,
1229                                  video                  => -165,
1230                                  debug                  => -164,
1231                                  games                  => -163,
1232                                  misc                   => -162,
1233                                  fonts                  => -161,
1234                                  otherosfs              => -160,
1235                                  oldlibs                => -159,
1236                                  libdevel               => -158,
1237                                  sound                  => -157,
1238                                  math                   => -156,
1239                                  'gnu-r'                => -155,
1240                                  science                => -154,
1241                                  comm                   => -153,
1242                                  electronics            => -152,
1243                                  hamradio               => -151,
1244                                  embedded               => -150,
1245                                  php                    => -149,
1246                                  zope                   => -148,
1247         );
1248         foreach my $i (keys %sectval) {
1249                 $sectval{"contrib/$i"} = $sectval{$i}+40;
1250                 $sectval{"non-free/$i"} = $sectval{$i}+80;
1251         }
1252         $sectval{'unknown'}     = -165;
1253
1254 }
1255
1256 sub sort_list_func {
1257     my $map_funcs = {
1258         'C' => ['<->', sub { return $_[0]->{'calprio'}; }],
1259         'W' => ['<->', sub { return $_[0]->{'state_days'}; }],
1260         'P' => ['<->', sub { return $_[0]->{'buildpri'}; }],
1261         'p' => ['<=>', sub { return $prioval{$_[0]->{'priority'}//""}//0; }],
1262         's' => ['<=>', sub { return $sectval{$_[0]->{'section'}//""}//0; }],
1263         'n' => ['cmp', sub { return $_[0]->{'package'}; }],
1264         'b' => ['cmp', sub { return $_[0]->{'builder'}; }],
1265         'c' => ['<=>', sub { return ($_[0]->{'notes'}//"" =~ /^(out-of-date|partial)/) ? 0: ($_[0]->{'notes'}//"" =~ /^uncompiled/) ? 2 : 1; }],
1266         'S' => ['<->', sub { return isin($_[0]->{'priority'}, qw(required important standard)); }],
1267         'T' => ['<->', sub { return $_[0]->{'state_time'} % 86400;} ], # Fractions of a day
1268     };
1269
1270         foreach my $letter (split( //, $list_order )) {
1271             my $r;
1272             $r = (&{$map_funcs->{$letter}[1]}($b)//0 ) <=> (&{$map_funcs->{$letter}[1]}($a)//0 ) if $map_funcs->{$letter}[0] eq '<->';
1273             $r = (&{$map_funcs->{$letter}[1]}($a)//0 ) <=> (&{$map_funcs->{$letter}[1]}($b)//0 ) if $map_funcs->{$letter}[0] eq '<=>';
1274             $r = (&{$map_funcs->{$letter}[1]}($a)//"") cmp (&{$map_funcs->{$letter}[1]}($b)//"") if $map_funcs->{$letter}[0] eq 'cmp';
1275             return $r if $r != 0;
1276         }
1277         return 0;
1278 }
1279
1280 sub calculate_prio {
1281         my $priomap = $yamlmap->{priority};
1282         my $pkg = shift;
1283         my @s=split("/", $pkg->{'section'});
1284         $pkg->{'component'} = $s[0] if $s[1];
1285         $pkg->{'component'} ||= 'main';
1286         $pkg->{'calprio'} = 0;
1287         foreach my $k (keys %{$priomap->{keys}}) {
1288                 $pkg->{'calprio'} += $priomap->{keys}->{$k}{$pkg->{$k}} if $pkg->{$k} and $priomap->{keys}->{$k}{$pkg->{$k}};
1289         }
1290
1291         my $days = $pkg->{'state_days'};
1292         $days = $priomap->{'waitingdays'}->{'min'} if $priomap->{'waitingdays'}->{'min'} and $days < $priomap->{'waitingdays'}->{'min'};
1293         $days = $priomap->{'waitingdays'}->{'max'} if $priomap->{'waitingdays'}->{'max'} and $days > $priomap->{'waitingdays'}->{'max'};
1294         my $scale = $priomap->{'waitingdays'}->{'scale'} || 1;
1295         $pkg->{'calprio'} += $days * $scale;
1296
1297         my $btime = max($pkg->{'anytime'}//0, $pkg->{'successtime'}//0);
1298         my $bhours = $btime ? int($btime/3600) : ($priomap->{'buildhours'}->{'default'} || 2);
1299         $bhours = $priomap->{'buildhours'}->{'min'} if $priomap->{'buildhours'}->{'min'} and $bhours < $priomap->{'buildhours'}->{'min'};
1300         $bhours = $priomap->{'buildhours'}->{'max'} if $priomap->{'buildhours'}->{'max'} and $bhours > $priomap->{'buildhours'}->{'max'};
1301         $scale = $priomap->{'buildhours'}->{'scale'} || 1;
1302         $pkg->{'calprio'} -= $bhours * $scale;
1303
1304         $pkg->{'calprio'} += $pkg->{'permbuildpri'} if  $pkg->{'permbuildpri'};
1305         $pkg->{'calprio'} += $pkg->{'buildpri'} if  $pkg->{'buildpri'};
1306
1307         return $pkg;
1308 }
1309
1310
1311 sub seconds2time {
1312     my $t = shift;
1313     return "" unless $t;
1314     my $sec = $t % 60;
1315     my $min = int($t/60) % 60;
1316     my $hours = int($t / 3600);
1317     return sprintf("%d:%02d:%02d", $hours, $min, $sec) if $hours;
1318     return sprintf("%d:%02d", $min, $sec);
1319 }
1320
1321
1322 sub use_fmt {
1323     my $r;
1324
1325     if (ref($_[0]) eq 'CODE') {
1326         $r = &{$_[0]};
1327     } else {
1328         $r = $_[0];
1329     }
1330
1331     shift;
1332     my $t = shift;
1333
1334     $r ||= "";
1335     return $r unless $t;
1336
1337     my $pkg = shift;
1338     my $var = shift;
1339     if (substr($t,0,1) eq '!') {
1340         $t = substr($t,1);
1341         return "" if $r;
1342     } else {
1343         return "" unless $r;
1344     }
1345     if ($t =~ /%/) {
1346         return print_format($t, $pkg, $var);
1347     }
1348     return $t;
1349 }
1350 sub make_fmt { my $c = shift; my $pkg = shift; my $var = shift; return sub { use_fmt($c, $_[0], $pkg, $var); } };
1351
1352 sub print_format {
1353     my $printfmt = shift;
1354     my $pkg = shift;
1355     my $var = shift;
1356
1357 =pod
1358
1359 Within an format string, the following values are allowed (need to be preceded by %).
1360 This can be combined to e.g.
1361 wanna-build --format='wanna-build -A %a --give-back %p_%v' -A mipsel --list=failed
1362
1363 a Architecture
1364 c section (e.g. libs or utils)
1365 D in case of BD-Uninstallable the reason for the uninstallability
1366 d distribution
1367 E in case of Dep-Wait the packages being waited on, in case of Needs-Build the number in the queue
1368 F in case of Failed the fail reason
1369 n newline
1370 o time of last successful build (seconds)
1371 O time of last successful build (formated)
1372 P previous state
1373 p Package name
1374 q time of last build (seconds)
1375 Q time of last build (formated)
1376 r max time of last (successful) build (seconds)
1377 R max time of last (successful) build (formated)
1378 S Package state
1379 s Time in this state in full seconds since epoch
1380 t time of state change
1381 T time since state change
1382 u Builder (e.g. buildd_mipsel-rem)
1383 v Package version
1384 V full Package version (i.e. with +b.., = %v%{+b}B%B
1385 X the string normally between [], e.g. optional:out-of-date:calprio{61}:days{25}
1386
1387 %{Text}?  print Text in case ? is not empty; ? is never printed
1388 %{!Text}? print Text in case ? is empty; ? is never printed
1389 Text could contain further %. To start with !, use %!
1390
1391 =cut
1392
1393     return stringf($printfmt, (
1394         'p' => make_fmt( $pkg->{'package'}, $pkg, $var),
1395         'a' => make_fmt( $arch, $pkg, $var),
1396         's' => make_fmt( sub { return floor(str2time($pkg->{'state_change'})); }, $pkg, $var),
1397         'v' => make_fmt( $pkg->{'version'}, $pkg, $var),
1398         'V' => make_fmt( sub { $pkg->{'binary_nmu_version'} ? $pkg->{'version'}."+b".$pkg->{'binary_nmu_version'} : $pkg->{'version'} }, $pkg, $var),
1399         'S' => make_fmt( $pkg->{'state'}, $pkg, $var),
1400         'u' => make_fmt( $pkg->{'builder'}, $pkg, $var),
1401         'X' => make_fmt( sub {
1402             no warnings;
1403             my $c = "$pkg->{'priority'}:$pkg->{'notes'}";
1404             $c .= ":PREV-FAILED" if $pkg->{'previous_state'} && $pkg->{'previous_state'} =~ /^Failed/;
1405             $c .= ":bp{" . $pkg->{'buildpri'} . "}" if defined $pkg->{'buildpri'};
1406             $c .= ":binNMU{" . $pkg->{'binary_nmu_version'} . "}" if defined $pkg->{'binary_nmu_version'};
1407             $c .= ":calprio{". $pkg->{'calprio'}."}";
1408             $c .= ":days{". $pkg->{'state_days'}."}";
1409             return $c;
1410             }, $pkg, $var),
1411         'c' => make_fmt( $pkg->{'section'}, $pkg, $var),
1412         'P' => make_fmt( $pkg->{'previous_state'} || "unknwon", $pkg, $var),
1413         'E' => make_fmt( sub { return $pkg->{'depends'} if $pkg->{'state'} eq "Dep-Wait";
1414             return $var->{scnt}{'Needs-Build'} + 1 if $pkg->{'state'} eq 'Needs-Build';
1415             return ""; }, $pkg, $var),
1416         'F' => make_fmt( sub { return "" unless $pkg->{'failed'};
1417             my $failed = $pkg->{'failed'};
1418             $failed =~ s/\\/\\\\/g;
1419             return $pkg->{'package'}."#".$arch."-failure\n ".
1420             join("\\0a",split("\n",$failed))."\\0a\n"; }, $pkg, $var),
1421         'D' => make_fmt( sub { return "" unless $pkg->{'bd_problem'};
1422             return $pkg->{'package'}."#".$arch."-bd-problem\n".
1423             join("\\0a",split("\n",$pkg->{'bd_problem'}))."\\0a\n"; }, $pkg, $var),
1424         'B' => make_fmt( sub { return $pkg->{'binary_nmu_version'} if defined $pkg->{'binary_nmu_version'}; }, $pkg, $var),
1425         'd' => make_fmt( $pkg->{'distribution'}, $pkg, $var),
1426         't' => make_fmt( $pkg->{'state_change'}, $pkg, $var),
1427         'T' => make_fmt( sub { return seconds2time(time() - floor(str2time($pkg->{'state_change'}))); }, $pkg, $var),
1428         'o' => make_fmt( $pkg->{'successtime'}, $pkg, $var),
1429         'O' => make_fmt( sub { return seconds2time ( $pkg->{'successtime'}); }, $pkg, $var),
1430         'q' => make_fmt( $pkg->{'anytime'}, $pkg, $var),
1431         'Q' => make_fmt( sub { return seconds2time ( $pkg->{'anytime'}); }, $pkg, $var),
1432         'r' => make_fmt( sub { my $c = max($pkg->{'successtime'}//0, $pkg->{'anytime'}//0); return $c if $c; return; }, $pkg, $var),
1433         'R' => make_fmt( sub { return seconds2time ( max($pkg->{'successtime'}//0, $pkg->{'anytime'}//0)); }, $pkg, $var),
1434     ));
1435 }
1436
1437 sub list_packages {
1438         my $state = shift;
1439         my( $name, $pkg, @list );
1440         my $cnt = 0;
1441         my %scnt;
1442         my $ctime = time;
1443
1444         my $db = get_all_source_info(state => $state, user => $user, list_min_age => $list_min_age);
1445         foreach $name (keys %$db) {
1446                 next if $name =~ /^_/;
1447                 push @list, calculate_prio($db->{$name});
1448         }
1449
1450         # filter components
1451         @list = grep { my $i = $_->{'component'}; grep { $i eq $_ } split /[, ]+/, $yamlmap->{"restrict"}{'component'} } @list;
1452         # extra depends / conflicts only from api 1 on
1453         @list = grep { !$_->{'extra_depends'} and !$_->{'extra_conflicts'} } @list if $api < 1 ;
1454
1455         # first adjust ownprintformat, then set printformat accordingly
1456         $printformat ||= $yamlmap->{"format"}{$ownprintformat} if $ownprintformat;
1457         $printformat ||= $yamlmap->{"format"}{"default"}{$state};
1458         $printformat ||= $yamlmap->{"format"}{"default"}{"default"};
1459         undef $printformat if ($ownprintformat && $ownprintformat eq 'none');
1460
1461         foreach $pkg (sort sort_list_func @list) {
1462                 if ($printformat) {
1463                     print print_format($printformat, $pkg, {'cnt' => $cnt, 'scnt' => \%scnt})."\n";
1464                     ++$cnt;
1465                     $scnt{$pkg->{'state'}}++;
1466                     next;
1467                 }
1468                 print print_format("%c/%p_%v", $pkg, {});
1469                 print print_format(": %S", $pkg, {})
1470                         if $state eq "all";
1471                 print print_format("%{ by }u%u", $pkg, {})
1472                         if $pkg->{'state'} ne "Needs-Build";
1473                 print print_format(" [%X]\n", $pkg, {});
1474                 print "  Reasons for failing:\n",
1475                           join("\n    ",split("\n",$pkg->{'failed'})), "\n"
1476                         if $pkg->{'state'} =~ /^Failed/;
1477                 print "  Dependencies: $pkg->{'depends'}\n"
1478                         if $pkg->{'state'} eq "Dep-Wait";
1479                 print "  Reasons for BD-Uninstallable:\n    ",
1480                           join("\n    ",split("\n",$pkg->{'bd_problem'})), "\n"
1481                         if $pkg->{'state'} eq "BD-Uninstallable";
1482                 print "  Previous state was $pkg->{'previous_state'}\n"
1483                         if $verbose && $pkg->{'previous_state'};
1484                 print "  No previous state recorded\n"
1485                         if $verbose && !$pkg->{'previous_state'};
1486                 print "  State changed at $pkg->{'state_change'}\n"
1487                         if $verbose && $pkg->{'state_change'};
1488                 print "  Previous state $pkg->{'previous_state'} left $pkg->{'state_time'} ago\n"
1489                         if $verbose && $pkg->{'previous_state'};
1490                 print "  Previous failing reasons:\n    ",
1491                       join("\n    ",split("\n",$pkg->{'old_failed'})), "\n"
1492                         if $verbose && $pkg->{'old_failed'};
1493                 ++$cnt;
1494                 $scnt{$pkg->{'state'}}++ if $state eq "all";
1495         }
1496         if ($state eq "all" && !$printformat) {
1497                 foreach (sort keys %scnt) {
1498                         print "Total $scnt{$_} package(s) in state $_.\n";
1499                 }
1500         }
1501         print "Total $cnt package(s)\n" unless $printformat;
1502         
1503 }
1504
1505 sub info_packages {
1506         my( $name, $pkg, $key, $dist );
1507         my @firstkeys = qw(package version builder state section priority
1508                                            installed_version previous_state state_change);
1509         my @dists = $info_all_dists ? keys %distributions : ($distribution);
1510         my %beautykeys = ( 'package' => 'Package', 'version' => 'Version', 'builder' => 'Builder',
1511                 'state' => 'State', 'section' => 'Section', 'priority' => 'Priority',
1512                 'installed_version' => 'Installed-Version', 'previous_state' => 'Previous-State',
1513                 'state_change' => 'State-Change',
1514                 'bd_problem' => 'BD-Problem', 
1515                 'binary_nmu_changelog' => 'Binary-NMU-Changelog', 'binary_nmu_version' => 'Binary-NMU-Version',
1516                 'buildpri' => 'BuildPri', 'depends' => 'Depends', 'failed' => 'Failed',
1517                 'notes' => 'Notes',
1518                 'distribution' => 'Distribution', 'old_failed' => 'Old-Failed',
1519                 'permbuildpri' => 'PermBuildPri', 'rel' => 'Rel',
1520                 'calprio' => 'CalculatedPri', 'state_days' => 'State-Days', 'state_time' => 'State-Time',
1521                 'successtime' => 'Success-build-time',
1522                 'anytime' => 'Build-time',
1523                 'extra_depends' => 'Extra-Dependencies',
1524                 'extra_conflicts' => 'Extra-Conflicts',
1525                 'build_arch_all' => 'Build-Arch-All',
1526                          );
1527         
1528         foreach $name (@_) {
1529                 $name =~ s/_.*$//; # strip version
1530                 foreach $dist (@dists) {
1531                         my $pname = "$name" . ($info_all_dists ? "($dist)" : "");
1532                         
1533                         $pkg = get_readonly_source_info($name);
1534                         if (!defined( $pkg )) {
1535                                 print "$pname: not registered\n";
1536                                 next;
1537                         }
1538                         $pkg = calculate_prio($pkg);
1539
1540                         print "$pname:\n";
1541                         foreach $key (@firstkeys) {
1542                                 next if !defined $pkg->{$key};
1543                                 my $val = $pkg->{$key};
1544                                 chomp( $val );
1545                                 $val = "\n$val" if isin( $key, qw(Failed Old-Failed));
1546                                 $val =~ s/\n/\n    /g;
1547                                 my $print_key = $key;
1548                                 $print_key = $beautykeys{$print_key} if $beautykeys{$print_key};
1549                                 printf "  %-20s: %s\n", $print_key, $val;
1550                         }
1551                         foreach $key (sort keys %$pkg) {
1552                                 next if isin( $key, @firstkeys );
1553                                 my $val = $pkg->{$key};
1554                                 next if !defined($val);
1555                                 chomp( $val );
1556                                 $val = "\n$val" if isin( $key, qw(Failed Old-Failed));
1557                                 $val =~ s/\n/\n    /g;
1558                                 my $print_key = $key;
1559                                 $print_key = $beautykeys{$print_key} if $beautykeys{$print_key};
1560                                 printf "  %-20s: %s\n", $print_key, $val;
1561                         }
1562                 }
1563         }
1564 }
1565
1566 sub forget_packages {
1567         my( $name, $pkg, $key, $data );
1568         
1569         foreach $name (@_) {
1570                 $name =~ s/_.*$//; # strip version
1571                 $pkg = get_source_info($name);
1572                 if (!defined( $pkg )) {
1573                         print "$name: not registered\n";
1574                         next;
1575                 }
1576
1577                 $data = "";
1578                 foreach $key (sort keys %$pkg) {
1579                         my $val = $pkg->{$key};
1580                         chomp( $val );
1581                         $val =~ s/\n/\n /g;
1582                         $data .= sprintf "  %-20s: %s\n", $key, $val;
1583                 }
1584                 send_mail( $conf::db_maint,
1585                                    "$name deleted from DB " . table_name() . " " . $distribution,
1586                                    "The package '$name' has been deleted from the database ".
1587                                    "by $user.\n\n".
1588                                    "Data registered about the deleted package:\n".
1589                                    "$data\n" ) if $conf::db_maint;
1590                 change_state( \$pkg, 'deleted' );
1591                 log_ta( $pkg, "--forget" );
1592                 del_source_info($name);
1593                 print "$name: deleted from database\n" if $verbose;
1594         }
1595 }
1596
1597 sub forget_users {
1598         $dbh->do("DELETE from " . user_table_name() . 
1599                 " WHERE distribution = ?", undef, $distribution) or die $dbh->errstr;
1600 }
1601
1602 sub read_db {
1603         my $file = shift;
1604
1605         print "Reading ASCII database from $file..." if $verbose >= 1;
1606         open( my $fh, '<', $file ) or
1607                 die "Can't open database $file: $!\n";
1608
1609         local($/) = ""; # read in paragraph mode
1610         while( <$fh> ) {
1611                 my( %thispkg, $name );
1612                 s/[\s\n]+$//;
1613                 s/\n[ \t]+/\376\377/g;  # fix continuation lines
1614                 s/\376\377\s*\376\377/\376\377/og;
1615   
1616                 while( /^(\S+):[ \t]*(.*)[ \t]*$/mg ) {
1617                         my ($key, $val) = ($1, $2);
1618                         $key =~ s/-/_/g;
1619                         $key =~ tr/A-Z/a-z/;
1620                         $val =~ s/\376\377/\n/g;
1621                         $thispkg{$key} = $val;
1622                 }
1623                 check_entry( \%thispkg );
1624                 # add to db
1625                 if (exists($thispkg{'package'})) {
1626                         update_source_info(\%thispkg);
1627                 }
1628                 elsif(exists($thispkg{'user'})) {
1629                         # user in import, username in database.
1630                         $dbh->do('INSERT INTO ' . user_table_name() .
1631                                         ' (username, distribution, last_seen)' .
1632                                         ' values (?, ?, ?)',
1633                                 undef, $thispkg{'user'}, $distribution,
1634                                 $thispkg{'last_seen'})
1635                                 or die $dbh->errstr;
1636                  }
1637         }
1638         close( $fh );
1639         print "done\n" if $verbose >= 1;
1640 }
1641
1642 sub check_entry {
1643         my $pkg = shift;
1644         my $field;
1645
1646         return if $op_mode eq "manual-edit"; # no checks then
1647         
1648         # check for required fields
1649         if (exists $pkg->{'user'}) {
1650                 return;
1651         }
1652         if (!exists $pkg->{'package'}) {
1653                 print STDERR "Bad entry: ",
1654                           join( "\n", map { "$_: $pkg->{$_}" } keys %$pkg ), "\n";
1655                 die "Database entry lacks package or username field\n";
1656         }
1657         # if no State: field, generate one (for old db compat)
1658         if (!exists($pkg->{'state'})) {
1659                 $pkg->{'state'} =
1660                         exists $pkg->{'failed'} ? 'Failed' : 'Building';
1661         }
1662         if (!exists $pkg->{'version'} and $pkg->{'state'} ne 'Not-For-Us') {
1663                 die "Database entry for $pkg->{'package'} lacks Version: field\n";
1664         }
1665         # check state field
1666         die "Bad state $pkg->{'state'} of package $pkg->{Package}\n"
1667                 if !isin( $pkg->{'state'},
1668                                   qw(Needs-Build Building Built Build-Attempted Uploaded Installed Dep-Wait Dep-Wait-Removed
1669                                          Failed Failed-Removed Not-For-Us BD-Uninstallable Auto-Not-For-Us
1670                                          ) );
1671 }
1672
1673 sub export_db {
1674         my $file = shift;
1675         my($name,$pkg,$key);
1676
1677         print "Writing ASCII database to $file..." if $verbose >= 1;
1678         open( my $fh, '>', $file ) or
1679                 die "Can't open export $file: $!\n";
1680
1681         my $db = get_all_source_info();
1682         foreach $name (keys %$db) {
1683                 next if $name =~ /^_/;
1684                 my $pkg = $db->{$name};
1685                 foreach $key (keys %{$pkg}) {
1686                         my $val = $pkg->{$key};
1687                         next if !defined($val);
1688                         $val =~ s/\n*$//;
1689                         $val =~ s/^/ /mg;
1690                         $val =~ s/^ +$/ ./mg;
1691                         print $fh "$key: $val\n";
1692                 }
1693                 print $fh "\n";
1694        }
1695        close( $fh );
1696        print "done\n" if $verbose >= 1;
1697 }
1698
1699 sub change_state {
1700         my $pkgr = shift;
1701         my $pkg = $$pkgr;
1702         my $newstate = shift;
1703         my $state = \$pkg->{'state'};
1704         
1705         return if defined($$state) and $$state eq $newstate;
1706         $pkg->{'previous_state'} = $$state if defined($$state);
1707         $pkg->{'state_change'} = $curr_date;
1708         $pkg->{'do_state_change'} = 1;
1709
1710         if (defined($$state) and $$state eq 'Failed') {
1711                 $pkg->{'old_failed'} =
1712                         "-"x20 . " $pkg->{'version'} " . "-"x20 . "\n" .
1713                         ($pkg->{'failed'} // ""). "\n" .
1714                         ($pkg->{'old_failed'} // "");
1715                 delete $pkg->{'failed'};
1716         }
1717         if (defined($$state) and $$state eq 'BD-Uninstallable') {
1718                 delete $pkg->{'bd_problem'};
1719         }
1720         $$state = $newstate;
1721 }
1722
1723 sub log_ta {
1724         my $pkg = shift;
1725         my $action = shift;
1726         my $dist = $distribution;
1727         my $str;
1728         my $prevstate;
1729
1730         $prevstate = $pkg->{'previous_state'};
1731         $str = "$action($dist): $pkg->{'package'}_$pkg->{'version'} ".
1732                    "changed from $prevstate to $pkg->{'state'} ".
1733                    "by $real_user as $user";
1734         
1735         if ($simulate) {
1736             printf "update transactions: %s %s %s %s %s %s %s %s\n",
1737                 $pkg->{'package'}, $distribution,
1738                 $pkg->{'version'}, $action, $prevstate, $pkg->{'state'},
1739                 $real_user, $user;
1740             return;
1741         }
1742         $dbh->do('INSERT INTO ' . transactions_table_name() .
1743                         ' (package, distribution, version, action, ' .
1744                         ' prevstate, state, real_user, set_user, time) ' .
1745                         ' values (?, ?, ?, ?, ?, ?, ?, ?, ?)',
1746                 undef, $pkg->{'package'}, $distribution,
1747                 $pkg->{'version'}, $action, $prevstate, $pkg->{'state'},
1748                 $real_user, $user, 'now()') or die $dbh->errstr;
1749
1750         if (!($prevstate eq 'Failed' && $pkg->{'state'} eq 'Failed')) {
1751                 $str .= " (with --override)"
1752                         if $opt_override;
1753                 $mail_logs .= "$str\n";
1754         }
1755 }
1756
1757
1758 sub send_mail {
1759         my $to = shift;
1760         my $subject = shift;
1761         my $text = shift;
1762
1763         my $from = $conf::db_maint;
1764         my $domain = $conf::buildd_domain;
1765
1766         $from .= "\@$domain" if $from !~ /\@/;
1767
1768         $to .= '@' . $domain if $to !~ /\@/;
1769         $text =~ s/^\.$/../mg;
1770         local $SIG{'PIPE'} = 'IGNORE';
1771         open( my $pipe,  '|-', "$conf::mailprog -oem $to" )
1772                 or die "Can't open pipe to $conf::mailprog: $!\n";
1773         chomp $text;
1774         print $pipe "From: $from\n";
1775         print $pipe "Subject: $subject\n\n";
1776         print $pipe "$text\n";
1777         close( $pipe );
1778 }
1779
1780 # for parsing input to dep-wait
1781 sub parse_deplist {
1782     my $deps = shift;
1783     my $verify = shift;
1784     my %result;
1785     
1786     foreach (split( /\s*,\s*/, $deps )) {
1787         if ($verify) {
1788             # verification requires > starting prompts, no | crap
1789             if (!/^(\S+)\s*(\(\s*(>(?:[>=])?)\s*(\S+)\s*\))?\s*$/) {
1790                 return 0;
1791             }
1792             next;
1793         }
1794         my @alts = split( /\s*\|\s*/, $_ );
1795         # Anything with an | is ignored, as it can be configured on a
1796         # per-buildd basis what will be installed
1797         next if $#alts != 0;
1798         $_ = shift @alts;
1799
1800         if (!/^(\S+)\s*(\(\s*(>=|=|==|>|>>|<<|<=)\s*(\S+)\s*\))?\s*$/) {
1801             warn( "parse_deplist: bad dependency $_\n" );
1802             next;
1803         }
1804         my($dep, $rel, $relv) = ($1, $3, $4);
1805         $rel = ">>" if defined($rel) and $rel eq ">";
1806         $result{$dep}->{'package'} = $dep;
1807         if ($rel && $relv) {
1808             $result{$dep}->{'rel'} = $rel;
1809             $result{$dep}->{'version'} = $relv;
1810         }
1811     }
1812     return 1 if $verify;
1813     return \%result;
1814 }
1815
1816 sub build_deplist {
1817         my $list = shift;
1818         my($key, $result);
1819         
1820         foreach $key (keys %$list) {
1821                 $result .= ", " if $result;
1822                 $result .= $key;
1823                 $result .= " ($list->{$key}->{'rel'} $list->{$key}->{'version'})"
1824                         if $list->{$key}->{'rel'} && $list->{$key}->{'version'};
1825         }
1826         return $result;
1827 }
1828
1829
1830 sub filterarch {
1831     return "" unless $_[0];
1832     return Dpkg::Deps::parse($_[0], ("reduce_arch" => 1, "host_arch" => $_[1]))->dump();
1833 }
1834
1835 sub wb_edos_builddebcheck {
1836 # Copyright (C) 2008 Ralf Treinen <treinen@debian.org>
1837 # This program is free software: you can redistribute it and/or modify it under
1838 # the terms of the GNU General Public License as published by the Free Software
1839 # Foundation, version 2 of the License.
1840 # integrated into wanna-builds code by Andreas Barth 2010
1841
1842     my $args = shift;
1843     my $sourceprefix="source---";
1844     my $architecture=$args->{'arch'};
1845     my $edosoptions = "-failures -explain -quiet";
1846     my $packagefiles = $args->{'pkgs'};
1847     my $sourcesfile = $args->{'src'};
1848
1849     my $packagearch="";
1850     foreach my $packagefile (@$packagefiles) {
1851         open(my $fh,'<', $packagefile);
1852         while (<$fh>) {
1853             next unless /^Architecture/;
1854             next if /^Architecture:\s*all/;
1855             /Architecture:\s*([^\s]*)/;
1856             if ($packagearch eq "") {
1857                 $packagearch = $1;
1858             } elsif ( $packagearch ne $1) {
1859                 return "Package file contains different architectures: $packagearch, $1";
1860             }
1861         }
1862         close $fh;
1863     }
1864
1865     if ( $architecture eq "" ) {
1866         if ( $packagearch eq "" ) {
1867         return "No architecture option given, " .
1868             "and no non-all architecture found in the Packages file";
1869         } else {
1870             $architecture = $packagearch;
1871         }
1872     } else {
1873         if ( $packagearch ne "" & $architecture ne $packagearch) {
1874             return "Architecture option is $architecture ".
1875             "but the package file contains architecture $packagearch";
1876         }   
1877     }
1878
1879     print "calling: edos-debcheck $edosoptions < $sourcesfile ".join('', map {" '-base FILE' ".$_ } @$packagefiles)."\n";
1880     open(my $result_cmd, '-|',
1881         "edos-debcheck $edosoptions < $sourcesfile ".join('', map {" '-base FILE' ".$_ } @$packagefiles));
1882
1883     my $explanation="";
1884     my $result={};
1885     my $binpkg="";
1886
1887     while (<$result_cmd>) {
1888 # source---pulseaudio (= 0.9.15-4.1~bpo50+1): FAILED
1889 #   source---pulseaudio (= 0.9.15-4.1~bpo50+1) depends on missing:
1890 #   - libltdl-dev (>= 2.2.6a-2)
1891 # source---libcanberra (= 0.22-1~bpo50+1): FAILED
1892 #   source---libcanberra (= 0.22-1~bpo50+1) depends on missing:
1893 #   - libltdl-dev
1894 #   - libltdl7-dev (>= 2.2.6)
1895
1896         if (/^\s+/) {
1897             s/^(\s*)$sourceprefix(.*)depends on/$1$2build-depends on/o;
1898             s/^(\s*)$sourceprefix(.*) and (.*) conflict/$1$2 build-conflicts with $3/o;
1899             $explanation .= $_;
1900         } else {
1901             if (/^$sourceprefix(.*) \(.*\): FAILED/o) {
1902                 $result->{$binpkg} = $explanation if $binpkg;
1903                 $explanation = "";
1904                 $binpkg = $1;
1905             } elsif (/^(depwait---.*) \(.*\): FAILED/o) {
1906                 $result->{$binpkg} = $explanation if $binpkg;
1907                 $explanation = "";
1908                 $binpkg = $1;
1909             } else { # else something broken is happening
1910                 #print "ignoring $_\n";
1911                 1;
1912             }
1913         }
1914     }
1915
1916     close $result_cmd;
1917     $result->{$binpkg} = $explanation if $binpkg;
1918     return $result;
1919
1920 }
1921
1922
1923 sub call_edos_depcheck {
1924     return if $simulate_edos;
1925     my $args = shift;
1926     my $srcs = $args->{'srcs'};
1927     my $key;
1928     
1929     return if defined ($distributions{$distribution}{noadw}) && not defined $args->{'depwait'};
1930
1931     # We need to check all of needs-build, as any new upload could make
1932     # something in needs-build have uninstallable deps
1933     # We also check everything in bd-uninstallable, as any new upload could
1934     # make that work again
1935     my (%interesting_packages, %interesting_packages_depwait);
1936     my $db = get_all_source_info();
1937     foreach $key (keys %$db) {
1938         my $pkg = $db->{$key};
1939         if (defined $pkg and isin($pkg->{'state'}, qw/Needs-Build BD-Uninstallable/) and not defined ($distributions{$distribution}{noadw})) {
1940                 $interesting_packages{$key} = undef;
1941         }
1942         if (defined $pkg and isin($pkg->{'state'}, qw/Dep-Wait/) and defined $args->{'depwait'}) {
1943                 $interesting_packages_depwait{$key} = undef;
1944                 # we always check for BD-Uninstallability in depwait - could be that depwait is satisfied but package is uninstallable
1945                 $interesting_packages{$key} = undef unless defined ($distributions{$distribution}{noadw});
1946         }
1947     }
1948     
1949     #print "I would look at these sources with edos-depcheck:\n";
1950     #print join " ", keys %interesting_packages,"\n";
1951     return unless %interesting_packages || %interesting_packages_depwait;
1952
1953     my $tmpfile_pattern = "/tmp/wanna-build-interesting-sources-$distribution.$$-XXXXX";
1954     use File::Temp qw/ tempfile /;
1955     my ($SOURCES, $tmpfile) = tempfile( $tmpfile_pattern, UNLINK => 1 );
1956     for my $key (keys %interesting_packages) {
1957         my $pkg = $db->{$key};
1958         # we print the source files as binary ones (with "source---"-prefixed),
1959         # so we can try if these "binary" packages are installable.
1960         # If such a "binary" package is installable, the corresponding source package is buildable.
1961         print $SOURCES "Package: source---$key\n";
1962         print $SOURCES "Version: $pkg->{'version'}\n";
1963         my $t = &filterarch($srcs->{$key}{'dep'} || $srcs->{$key}{'depends'}, $arch);
1964         my $tt = &filterarch($pkg->{'extra_depends'}, $arch);
1965         $t = $t ? ($tt ? "$t, $tt" : $t) : $tt;
1966         print $SOURCES "Depends: $t\n" if $t;
1967         my $u = &filterarch($srcs->{$key}{'conf'} || $srcs->{$key}{'conflicts'}, $arch);
1968         my $uu = &filterarch($pkg->{'extra_conflicts'}, $arch);
1969         $u = $u ? ($uu ? "$u, $uu" : $u) : $uu;
1970         print $SOURCES "Conflicts: $u\n" if $u;
1971         print $SOURCES "Architecture: all\n";
1972         print $SOURCES "\n";
1973     }
1974     for my $key (keys %interesting_packages_depwait) {
1975         my $pkg = $db->{$key};
1976         # we print the source files as binary ones (with "depwait---"-prefixed),
1977         # so we can try if these "binary" packages are installable.
1978         # If such a "binary" package is installable, the corresponding source package goes out of depwait
1979         print $SOURCES "Package: depwait---$key\n";
1980         print $SOURCES "Version: $pkg->{'version'}\n";
1981         print $SOURCES "Depends: $pkg->{'depends'}\n";
1982         print $SOURCES "Architecture: all\n";
1983         print $SOURCES "\n";
1984     }
1985     close $SOURCES;
1986
1987     my $edosresults = wb_edos_builddebcheck({'arch' => $args->{'arch'}, 'pkgs' => $args->{'pkgs'}, 'src' => $tmpfile});
1988     if (ref($edosresults) eq 'HASH') {
1989         foreach my $key (grep { $_ !~ /^depwait---/ } keys %$edosresults) {
1990                 if (exists $interesting_packages{$key}) {
1991                     $interesting_packages{$key} = $edosresults->{$key};
1992                 } else {
1993                     #print "TODO: edos reported a package we do not care about now\n" if $verbose;
1994                 }
1995         }
1996         foreach my $key (grep { $_ =~ /^depwait---/ } keys %$edosresults) {
1997                 $key =~ /^depwait---(.*)/ and $key = $1;
1998                 if (exists $interesting_packages_depwait{$key}) {
1999                     $interesting_packages_depwait{$key} = $edosresults->{"depwait---".$key};
2000                 } else {
2001                     #print "TODO: edos reported a package we do not care about now\n" if $verbose;
2002                 }
2003         }
2004     } else {
2005         # if $edosresults isn't an hash, then something went wrong and the string is the error message
2006         print "ERROR: Could not run wb-edos-builddebcheck. I am continuing, assuming\n" .
2007              "all packages have installable build-dependencies."
2008     }
2009     
2010     unlink( $tmpfile );
2011
2012     for my $key (keys %interesting_packages) {
2013         next if defined $interesting_packages_depwait{$key};
2014         my $pkg = $db->{$key};
2015         my $change = 
2016             (defined $interesting_packages{$key} and $pkg->{'state'} eq 'Needs-Build') ||
2017             (not defined $interesting_packages{$key} and $pkg->{'state'} eq 'BD-Uninstallable');
2018         my $problemchange = ($interesting_packages{$key}//"") ne ($pkg->{'bd_problem'}//"");
2019         if ($change) {
2020             if (defined $interesting_packages{$key}) {
2021                     change_state( \$pkg, 'BD-Uninstallable' );
2022                     $pkg->{'bd_problem'} = $interesting_packages{$key};
2023             } else {
2024                     change_state( \$pkg, 'Needs-Build' );
2025             }
2026         }
2027         if ($problemchange) {
2028             if (defined $interesting_packages{$key}) {
2029                     $pkg->{'bd_problem'} = $interesting_packages{$key};
2030             }   
2031         }
2032         if ($change) {
2033             log_ta( $pkg, "--merge-all (edos)" ) unless $simulate;
2034             print "edos-builddebchange changed state of ${key}_$pkg->{'version'} ($args->{'arch'}) to $pkg->{'state'}\n" if $verbose || $simulate;
2035         }
2036         if ($change || $problemchange) {
2037             update_source_info($pkg) unless $simulate;
2038         }
2039     }
2040
2041     for my $key (keys %interesting_packages_depwait) {
2042         if ($interesting_packages_depwait{$key}) {
2043             print "dep-wait for $key ($args->{'arch'}) not fullfiled yet\n" if $verbose || $simulate;
2044             next;
2045         }
2046         my $pkg = $db->{$key};
2047             if (defined $interesting_packages{$key}) {
2048                     change_state( \$pkg, 'BD-Uninstallable' );
2049                     $pkg->{'bd_problem'} = $interesting_packages{$key};
2050             } else {
2051                     change_state( \$pkg, 'Needs-Build' );
2052             }
2053         log_ta( $pkg, "edos_depcheck: depwait" ) unless $simulate;
2054         update_source_info($pkg) unless $simulate;
2055         print "edos-builddebchange changed state of ${key}_$pkg->{'version'} ($args->{'arch'}) from dep-wait to $pkg->{'state'}\n" if $verbose || $simulate;
2056     }
2057 }
2058
2059 sub usage {
2060         my $prgname;
2061         ($prgname = $0) =~ s,^.*/,,;
2062         print <<"EOF";
2063 Usage: $prgname <options...> <package_version...>
2064 Options:
2065     -v, --verbose: Verbose execution.
2066     -A arch: Architecture this operation is for.
2067     --take: Take package for building [default operation]
2068     -f, --failed: Record in database that a build failed due to
2069         deficiencies in the package (that aren't fixable without a new
2070         source version).
2071     -u, --uploaded: Record in the database that the packages build
2072         correctly and were uploaded.
2073     -n, --no-build: Record in the database that the packages aren't
2074         desired for this architecture and shouldn't appear in listings even
2075         if they're out of date.
2076     --dep-wait: Record in the database that the packages are waiting
2077         for some source dependencies to become available
2078     --binNMU num: Schedule a re-build of the package with unchanged source, but
2079          a new version number (source-version + "+b<num>")
2080     --give-back: Mark a package as ready to build that is in state Building,
2081          Built or Build-Attempted. To give back a package in state Failed, use
2082          --override. This command will actually put the package in state
2083          BD-Uninstallable, until the installability of its Build-Dependencies
2084          were verified. This happens at each call of --merge-all, usually
2085          every 15 minutes.
2086     -i SRC_PKG, --info SRC_PKG: Show information for source package
2087     -l STATE, --list=STATE: List all packages in state STATE; can be
2088         combined with -U to restrict to a specific user; STATE can
2089         also be 'all'
2090     -m MESSAGE, --message=MESSAGE: Give reason why package failed or
2091         source dependency list
2092         (used with -f, --dep-wait, and --binNMU)
2093     -o, --override: Override another user's lock on a package, i.e.
2094         take it over; a notice mail will be sent to the other user
2095     -U USER, --user=USER: select user name for which listings should
2096         apply, if not given all users are listed.
2097         if -l is missing, set user name to be entered in db; usually
2098         automatically choosen
2099     --import FILE: Import database from a ASCII file FILE
2100     --export FILE: Export database to a ASCII file FILE
2101
2102 The remaining arguments (depending on operation) usually start with
2103 "name_version", the trailer is ignored. This allows to pass the names
2104 of .dsc files, for which file name completion can be used.
2105 --merge-packages and --merge-quinn take Package/quin--diff file names
2106 on the command line or read stdin. --list needs nothing more on the
2107 command line. --info takes source package names (without version).
2108 EOF
2109         exit 1;
2110 }
2111
2112 sub pkg_version_eq {
2113         my $pkg = shift;
2114         my $version = shift;
2115
2116         return 1
2117                if (defined $pkg->{'binary_nmu_version'}) and 
2118                version_compare(binNMU_version($pkg->{'version'},
2119                         $pkg->{'binary_nmu_version'}),'=', $version);
2120         return version_compare( $pkg->{'version'}, "=", $version );
2121 }
2122
2123 sub table_name {
2124         return '"' . $arch . $schema_suffix . '".packages';
2125 }
2126
2127 sub user_table_name {
2128         return '"' . $arch . $schema_suffix . '".users';
2129 }
2130
2131 sub transactions_table_name {
2132         return '"' . $arch . $schema_suffix . '".transactions';
2133 }
2134
2135 sub pkg_history_table_name {
2136         return '"' . $arch . $schema_suffix . '".pkg_history';
2137 }
2138
2139 sub get_readonly_source_info {
2140         my $name = shift;
2141         # SELECT FLOOR(EXTRACT('epoch' FROM age(localtimestamp, '2010-01-22  23:45')) / 86400) -- change to that?
2142         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"
2143             . ", (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"
2144             . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution ) AS anytime"
2145             . ", extra_depends, extra_conflicts, build_arch_all"
2146             . " FROM " .  table_name()
2147             . ' WHERE package = ? AND distribution = ?';
2148         my $pkg = $dbh->selectrow_hashref( $q,
2149                 undef, $name, $distribution);
2150         return $pkg;
2151 }
2152
2153 sub get_source_info {
2154         my $name = shift;
2155         return get_readonly_source_info($name) if $simulate;
2156         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 ' . 
2157                 table_name() . ' WHERE package = ? AND distribution = ?' .
2158                 ' FOR UPDATE',
2159                 undef, $name, $distribution);
2160         return $pkg;
2161 }
2162
2163 sub get_all_source_info {
2164         my %options = @_;
2165
2166         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"
2167 #            . ", (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"
2168 #            . ", (SELECT max(build_time) FROM ".pkg_history_table_name()." WHERE pkg_history.package = packages.package AND pkg_history.distribution = packages.distribution ) AS anytime"
2169             . ", successtime.build_time as successtime, anytime.build_time as anytime, extra_depends, extra_conflicts"
2170             . " FROM " .  table_name()
2171                 . " left join ( "
2172                   . "select distinct on (package, distribution) build_time, package, distribution from ".pkg_history_table_name()." where result = 'successful' order by package, distribution, timestamp "
2173                   . " ) as successtime using (package, distribution) "
2174                 . " left join ( "
2175                   . "select distinct on (package, distribution) build_time, package, distribution from ".pkg_history_table_name()." order by package, distribution, timestamp desc"
2176                   . " ) as anytime using (package, distribution) "
2177             . " WHERE TRUE ";
2178         my @args = ();
2179         if ($distribution) {
2180             my @dists = split(/[, ]+/, $distribution);
2181             $q .= ' AND ( distribution = ? '.(' OR distribution = ? ' x $#dists).' )';
2182             foreach my $d ( @dists ) {
2183                 push @args, ($d);
2184             }
2185         }
2186         if ($options{state} && uc($options{state}) ne "ALL") {
2187                 $q .= ' AND upper(state) = ? ';
2188                 push @args, uc($options{state});
2189         }
2190
2191         if ($options{user} && uc($options{state}) ne "NEEDS-BUILD") { # if it's NEEDS-BUILD, we don't look at users
2192                 #this basically means "this user, or no user at all":
2193                 $q .= " AND (builder = ? OR upper(state) = 'NEEDS-BUILD')";
2194                 push @args, $options{user};
2195         }
2196
2197         if ($options{list_min_age} && $options{list_min_age} > 0) {
2198                 $q .= ' AND age(state_change) > ? ';
2199                 push @args, $options{list_min_age} . " days";
2200         }
2201
2202         if ($options{list_min_age} && $options{list_min_age} < 0) {
2203                 $q .= ' AND age(state_change) < ? ';
2204                 push @args, -$options{list_min_age} . " days";
2205         }
2206
2207         my $db = $dbh->selectall_hashref($q, 'package', undef, @args);
2208         return $db;
2209 }
2210
2211 sub show_distribution_architectures {
2212         my $q = 'SELECT distribution, spacecat_all(architecture) AS architectures '.
2213                 'FROM distribution_architectures '.
2214                 'GROUP BY distribution';
2215         my $rows = $dbh->selectall_hashref($q, 'distribution');
2216         foreach my $name (keys %$rows) {
2217                 print $name.': '.$rows->{$name}->{'architectures'}."\n";
2218         }
2219 }
2220
2221 sub show_distribution_aliases {
2222         foreach my $alias (keys %distribution_aliases) {
2223                 print $alias.': '.$distribution_aliases{$alias}."\n";
2224         }
2225 }
2226
2227 sub update_source_info {
2228         my $pkg = shift;
2229         $pkg->{'extra_depends'} = $extra_depends if defined $extra_depends;
2230         undef $pkg->{'extra_depends'} unless $pkg->{'extra_depends'};
2231         $pkg->{'extra_conflicts'} = $extra_conflicts if defined $extra_conflicts;
2232         undef $pkg->{'extra_conflicts'} unless $pkg->{'extra_conflicts'};
2233         print Dumper $pkg if $verbose and $simulate;
2234         return if $simulate;
2235
2236         my $pkg2 = get_source_info($pkg->{'package'});
2237         if (! defined $pkg2)
2238         {
2239                 add_source_info($pkg);
2240         }
2241
2242         $dbh->do('UPDATE ' . table_name() . ' SET ' .
2243                         'version = ?, ' .
2244                         'state = ?, ' .
2245                         'section = ?, ' .
2246                         'priority = ?, ' .
2247                         'installed_version = ?, ' .
2248                         'previous_state = ?, ' .
2249                         (($pkg->{'do_state_change'}) ? "state_change = now()," : "").
2250                         'notes = ?, ' .
2251                         'builder = ?, ' .
2252                         'failed = ?, ' .
2253                         'old_failed = ?, ' .
2254                         'binary_nmu_version = ?, ' .
2255                         'binary_nmu_changelog = ?, ' .
2256                         'permbuildpri = ?, ' .
2257                         'buildpri = ?, ' .
2258                         'depends = ?, ' .
2259                         'rel = ?, ' .
2260                         'extra_depends = ?, ' .
2261                         'extra_conflicts = ?, ' .
2262                         'bd_problem = ? ' .
2263                         'WHERE package = ? AND distribution = ?',
2264                 undef,
2265                 $pkg->{'version'},
2266                 $pkg->{'state'},
2267                 $pkg->{'section'},
2268                 $pkg->{'priority'},
2269                 $pkg->{'installed_version'},
2270                 $pkg->{'previous_state'},
2271                 $pkg->{'notes'},
2272                 $pkg->{'builder'},
2273                 $pkg->{'failed'},
2274                 $pkg->{'old_failed'},
2275                 $pkg->{'binary_nmu_version'},
2276                 $pkg->{'binary_nmu_changelog'},
2277                 $pkg->{'permbuildpri'},
2278                 $pkg->{'buildpri'},
2279                 $pkg->{'depends'},
2280                 $pkg->{'rel'},
2281                 $pkg->{'extra_depends'},
2282                 $pkg->{'extra_conflicts'},
2283                 $pkg->{'bd_problem'},
2284                 $pkg->{'package'},
2285                 $distribution) or die $dbh->errstr;
2286 }
2287
2288 sub add_source_info {
2289         return if $simulate;
2290         my $pkg = shift;
2291         $dbh->do('INSERT INTO ' . table_name() .
2292                         ' (package, distribution) values (?, ?)',
2293                 undef, $pkg->{'package'}, $distribution) or die $dbh->errstr;
2294 }
2295
2296 sub del_source_info {
2297         return if $simulate;
2298         my $name = shift;
2299         $dbh->do('DELETE FROM ' . table_name() .
2300                         ' WHERE package = ? AND distribution = ?',
2301                 undef, $name, $distribution) or die $dbh->errstr;
2302 }
2303
2304 sub get_user_info {
2305         my $name = shift;
2306         my $user = $dbh->selectrow_hashref('SELECT * FROM ' . 
2307                 user_table_name() . ' WHERE username = ? AND distribution = ?',
2308                 undef, $name, $distribution);
2309         return $user;
2310 }
2311
2312 sub update_user_info {
2313         return if $simulate;
2314         my $user = shift;
2315         $dbh->do('UPDATE ' . user_table_name() .
2316                         ' SET last_seen = now() WHERE username = ?' .
2317                         ' AND distribution = ?',
2318                 undef, $user, $distribution)
2319                 or die $dbh->errstr;
2320 }
2321
2322
2323 sub add_user_info {
2324         return if $simulate;
2325         my $user = shift;
2326         $dbh->do('INSERT INTO ' . user_table_name() .
2327                         ' (username, distribution, last_seen)' .
2328                         ' values (?, ?, now())',
2329                 undef, $user, $distribution)
2330                 or die $dbh->errstr;
2331 }
2332
2333 sub lock_table {
2334         return if $simulate;
2335         $dbh->do('LOCK TABLE ' . table_name() .
2336                 ' IN EXCLUSIVE MODE', undef) or die $dbh->errstr;
2337 }
2338
2339 sub parse_argv {
2340 # parts the array $_[0] and $_[1] and returns the sub-array (modifies the original one)
2341     my @ret = ();
2342     my $args = shift;
2343     my $separator = shift;
2344     while($args->[0] && $args->[0] ne $separator) { 
2345         push @ret, shift @$args;
2346     }
2347     shift @$args if @$args;
2348     return @ret;
2349 }
2350
2351 sub parse_all_v3 {
2352     my $srcs = shift;
2353     my $vars = shift;
2354     my $db = get_all_source_info();
2355     my $binary = $srcs->{'_binary'};
2356
2357     SRCS:
2358     foreach my $name (keys %$srcs) {
2359         next if $name eq '_binary';
2360
2361         # state = installed, out-of-date, uncompiled, not-for-us, auto-not-for-us
2362         my $pkgs = $srcs->{$name};
2363         my $pkg = $db->{$name};
2364
2365         unless ($pkg) {
2366             next SRCS if $pkgs->{'status'} eq 'not-for-us';
2367             my $logstr = sprintf("merge-v3 %s %s_%s (%s, %s):", $vars->{'time'}, $name, $pkgs->{'version'}, $vars->{'arch'}, $vars->{'suite'});
2368
2369             # does at least one binary exist in the database and is more recent - if so, we're probably just outdated, ignore the source package
2370             for my $bin (@{$pkgs->{'binary'}}) {
2371                 if ($binary->{$bin} and vercmp($pkgs->{'version'}, $binary->{$bin}->{'version'}) < 0) {
2372                     print "$logstr skipped because binaries (assumed to be) overwritten\n" if $verbose || $simulate;
2373                     next SRCS;
2374                 }
2375             }
2376             $pkg->{'package'}  = $name;
2377         }
2378         my $logstr = sprintf("merge-v3 %s %s_%s", $vars->{'time'}, $name, $pkgs->{'version'}).
2379             ($pkgs->{'binnmu'} ? ";b".$pkgs->{'binnmu'} : "").
2380             sprintf(" (%s, %s, previous: %s", $vars->{'arch'}, $vars->{'suite'}, $pkg->{'version'}//"").
2381             ($pkg->{'binary_nmu_version'} ? ";b".$pkg->{'binary_nmu_version'} : "").
2382             ", $pkg->{'state'}):";
2383
2384         if (isin($pkgs->{'status'}, qw (installed related)) && $pkgs->{'version'} eq $pkg->{'version'} && ($pkgs->{'binnmu'}//0) < int($pkg->{'binary_nmu_version'}//0)) {
2385                 $pkgs->{'status'} = 'out-of-date';
2386         }
2387         if (isin($pkgs->{'status'}, qw (installed related auto-not-for-us))) {
2388             my $change = 0;
2389             my $tstate = {'installed' => 'Installed', 'related' => 'Installed', 'auto-not-for-us' => 'Auto-Not-For-Us'}->{$pkgs->{'status'}};
2390             next if isin( $pkg->{'state'}, qw<Not-For-Us Failed Failed-Removed Dep-Wait Dep-Wait-Removed>) && isin( $tstate, qw<Auto-Not-For-Us>);
2391             # if the package is currently current, the status is Installed, not not-for-us
2392             if ($pkg->{'state'} ne $tstate) {
2393                 change_state( \$pkg, $tstate);
2394                 if (isin( $tstate, qw<Installed>)) {
2395                     delete $pkg->{'depends'};
2396                     delete $pkg->{'extra_depends'};
2397                     delete $pkg->{'extra_conflicts'};
2398                 }
2399                 $change++;
2400             }
2401             my $attrs = { 'version' => 'version', 'installed_version' => 'version', 'binary_nmu_version' => 'binnmu', 'section' => 'section', 'priority' => 'priority' };
2402             foreach my $k (keys %$attrs) {
2403                 next if isin( $tstate, qw<Auto-Not-For-Us>) && isin( $k, qw<installed_version binary_nmu_version>);
2404                 if (($pkg->{$k}//"") ne ($pkgs->{$attrs->{$k}}//"")) {
2405                     $pkg->{$k} = $pkgs->{$attrs->{$k}};
2406                     $change++;
2407                 }
2408             }
2409             if (isin($pkgs->{'status'}, qw (related)) and $pkg->{'notes'} ne "related") {
2410                 $pkg->{'notes'} = "related";
2411                 $change++;
2412             }
2413             if ($change) {
2414                 print "$logstr set to $tstate/".($pkg->{'notes'}//"")."\n" if $verbose || $simulate;
2415                 log_ta( $pkg, "--merge-v3: $tstate" ) unless $simulate;
2416                 update_source_info($pkg) unless $simulate;
2417             }
2418             next;
2419         }
2420
2421         if ($pkgs->{'status'} eq 'not-for-us') {
2422             next if isin( $pkg->{'state'}, qw(Not-For-Us Installed Failed-Removed));
2423
2424             if (isin( $pkg->{'state'}, qw(Failed Build-Attempted Built))) {
2425                 change_state( \$pkg, "Failed-Removed" );
2426                 log_ta( $pkg, "--merge-v3: Failed-Removed" ) unless $simulate;
2427                 update_source_info($pkg) unless $simulate;
2428                 print "$logstr (virtually) deleted from database\n" if $verbose || $simulate;
2429                 next;
2430             }
2431
2432             print "$logstr should delete (not-for-us according to P-a-s)\n" if $verbose || $simulate || 1; # not implemented yet on purpose
2433             next;
2434         }
2435
2436         # only uncompiled / out-of-date are left, so check if anything new
2437         if (!(isin($pkgs->{'status'}, qw (uncompiled out-of-date)))) {
2438             print "$logstr package in unknown state: $pkgs->{'status'}\n";
2439             next SRCS;
2440         }
2441         next if $pkgs->{'version'} eq $pkg->{'version'} and $pkgs->{'binnmu'}//0 >= int($pkg->{'binary_nmu_version'}//0);
2442         next if $pkgs->{'version'} eq $pkg->{'version'} and !isin( $pkg->{'state'}, qw(Installed));
2443         next if isin( $pkg->{'state'}, qw(Not-For-Us Failed-Removed));
2444
2445         if (defined( $pkg->{'state'} ) && isin( $pkg->{'state'}, qw(Building Built Build-Attempted))) {
2446             send_mail( $pkg->{'builder'},
2447                 "new version of $name (dist=$distribution)",
2448                 "As far as I'm informed, you're currently building the package $name\n".
2449                 "in version $pkg->{'version'}.\n\n".
2450                 "Now there's a new source version $pkgs->{'version'}. If you haven't finished\n".
2451                 "compiling $name yet, you can stop it to save some work.\n".
2452                 "Just to inform you...\n".
2453                 "(This is an automated message)\n" ) unless $simulate;
2454             print "$logstr new version while building $pkg->{'version'} -- sending mail to builder ($pkg->{'builder'})\n"
2455                                   if $verbose || $simulate;
2456             }
2457         change_state( \$pkg, 'Needs-Build');
2458         $pkg->{'notes'} = $pkgs->{'status'};
2459         $pkg->{'version'} = $pkgs->{'version'};
2460         $pkg->{'section'} = $pkgs->{'section'};
2461         $pkg->{'priority'} = $pkgs->{'priority'};
2462         $pkg->{'dep'} = $pkgs->{'depends'};
2463         $pkg->{'conf'} = $pkgs->{'conflicts'};
2464         delete $pkg->{'builder'};
2465         delete $pkg->{'binary_nmu_version'} unless $pkgs->{'binnmu'};
2466         delete $pkg->{'binary_nmu_changelog'} unless $pkgs->{'binnmu'};
2467         log_ta( $pkg, "--merge-v3: needs-build" ) unless $simulate;
2468         update_source_info($pkg) unless $simulate;
2469         print "$logstr set to needs-builds\n" if $simulate || $verbose;
2470     }
2471
2472     foreach my $name (keys %$db) {
2473         next if $srcs->{$name};
2474         my $pkg = $db->{$name};
2475         my $logstr = "merge-v3 $vars->{'time'} ".$name."_$pkg->{'version'} ($vars->{'arch'}, $vars->{'suite'}, previous: $pkg->{'state'}):";
2476         # package disappeared - delete
2477         change_state( \$pkg, 'deleted' );
2478         log_ta( $pkg, "--merge-v3: deleted" ) unless $simulate;
2479         print "$logstr deleted from database\n" if $verbose || $simulate;
2480         del_source_info($name) unless $simulate;
2481         delete $db->{$name};
2482     }
2483 }