aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-02-07 16:14:54 +0000
committerThierry Vignaud <tv@mandriva.org>2008-02-07 16:14:54 +0000
commitc09e3ad9c6da6eeb9a0d95b5ce1a62670338730c (patch)
treed3109da3762ec3b575d517e452a5515604d01c74
parent9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d (diff)
downloadrpmdrake-c09e3ad9c6da6eeb9a0d95b5ce1a62670338730c.tar
rpmdrake-c09e3ad9c6da6eeb9a0d95b5ce1a62670338730c.tar.gz
rpmdrake-c09e3ad9c6da6eeb9a0d95b5ce1a62670338730c.tar.bz2
rpmdrake-c09e3ad9c6da6eeb9a0d95b5ce1a62670338730c.tar.xz
rpmdrake-c09e3ad9c6da6eeb9a0d95b5ce1a62670338730c.zip
(do_search) adapt to new urpmi API for searching in XML meta-data,
thus stopping from downloading hdlists, side effect of urpmi-5.x (#37411) (we should probably factor urpmf code in urpm::search instead...)
-rwxr-xr-xrpmdrake97
1 files changed, 59 insertions, 38 deletions
diff --git a/rpmdrake b/rpmdrake
index 6f4fbd11..a9912e5c 100755
--- a/rpmdrake
+++ b/rpmdrake
@@ -95,45 +95,66 @@ sub do_search($$$$$$$) {
),
);
$searchw->sync;
- my @hdlists = map {
- my $h = urpm::media::any_hdlist($urpm, $_);
- if_(!$_->{ignore} && ($MODE ne 'update' || $_->{update}) && -r $h, $h);
- } @{$urpm->{media}};
- my $total_size = sum(
- map {
- my $pack;
- eval { require MDV::Packdrakeng; $pack = MDV::Packdrakeng->open(archive => $_, quiet => 1) } ? $pack->{toc_f_count} : 0;
- } @hdlists
- );
- open my $sf, join(' ', 'parsehdlist', '--name',
- if_($current_search_type eq 'files', '--files'),
- if_($current_search_type eq 'descriptions', '--description', '--summary'),
- if_($current_search_type eq 'summaries', '--summary'),
- map { "'$_'" } @hdlists) . ' |';
+ # should probably not account backports packages or find a way to search them:
+ my $total_size = keys %$pkgs;
my ($progresscount, $found);
- local $_;
- while (<$sf>) {
- $searchstop and last;
- if (my ($pkg) = chomp_(/:name:(.+-[^-]+-[^-]+.[^.-]+)$/)) {
- $progresscount++; $progresscount <= $total_size and $searchprogress->set_fraction($progresscount/$total_size);
- $searchw->flush; # refresh and handle clicks
- exists $pkgs->{$pkg} and $found and push @search_results, $pkg;
- undef $found;
- next;
- }
- my (undef, $key, $value) = split ':', $_;
- if ($current_search_type eq 'descriptions') {
- $key =~ /^summary|description$/ or next;
- } elsif ($current_search_type eq 'summaries') {
- $key eq 'summary' or next;
- } else {
- $key eq 'files' or next;
- }
- if ($value =~ $entry_rx) {
- $found = 1;
- }
- }
- close $sf;
+
+ my $update_search_pb = sub {
+ $progresscount++;
+ $progresscount <= $total_size and $searchprogress->set_fraction($progresscount/$total_size);
+ $searchw->flush; # refresh and handle clicks
+ };
+ foreach my $medium (grep { !$_->{ignore} } @{$urpm->{media}}) {
+ $searchstop and last;
+ my $gurpm; # per medium download progress bar (if needed)
+ my $_gurpm_clean_guard = before_leaving { undef $gurpm };
+ my $xml_info_file = urpm::media::any_xml_info($urpm, $medium,
+ ($current_search_type eq 'files' ? 'files' : 'info'),
+ undef, sub {
+ $gurpm ||= Rpmdrake::gurpm->new(N("Please wait"), transient => $::main_window);
+ download_callback($gurpm, @_) or do {
+ $searchstop = 1;
+ };
+ }) or do {
+ $urpm->{error}(N("no xml-info available for medium \"%s\"", $medium->{name}));
+ next;
+ };
+ $searchstop and last;
+
+ require urpm::xml_info;
+ require urpm::xml_info_pkg;
+
+ $urpm->{log}("getting information from $xml_info_file");
+ if ($current_search_type eq 'files') {
+ # special version for speed (3x faster), hopefully fully compatible
+ my $F = urpm::xml_info::open_lzma($xml_info_file);
+ my $fn;
+ local $_;
+ while (<$F>) {
+ $searchstop and last;
+ if (m!^<!) {
+ ($fn) = /fn="(.*)"/;
+ $update_search_pb->();
+ } elsif (/$entry_rx/) {
+ $fn or $urpm->{fatal}("fast algorithm is broken, please report a bug");
+ push @search_results, $fn;
+ }
+ }
+ } else {
+ urpm::xml_info::do_something_with_nodes(
+ 'info',
+ $xml_info_file,
+ sub {
+ my ($node) = @_;
+ $update_search_pb->();
+ push @search_results, $node->{fn} if $node->{description} =~ $entry_rx;
+ #$searchstop and last;
+ return 0 || $searchstop;
+ },
+ );
+ }
+ }
+
@search_results = uniq(@search_results); #- there can be multiple packages with same version/release for different arch's
$searchw->destroy;
}