]> git.deb.at Git - deb/packages.git/blob - bin/parse-sources
82716b3c35216d54728cf03fa423377ef546786b
[deb/packages.git] / bin / parse-sources
1 #!/usr/bin/perl -w
2 # Convert Sources.gz files into Sleepycat db files for efficient usage of
3 # data
4 #
5 # $Id$
6 #
7 # Copyright (C) 2006  Jeroen van Wolffelaar <jeroen@wolffelaar.nl>
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21
22 use strict;
23
24 my $what = $ARGV[0] ? "non-free" : "*";
25 # max. distinct results for a given package postfix
26 my $MAX_SOURCE_POSTFIXES = 100;
27
28 use DB_File;
29 my %sources_small = ();
30 my %source_names = ();
31 my %source_postfixes = ();
32
33 my @archives = ( 'us', 'non-US', 'security', 'volatile', 'backports' );
34 my @suites = ('oldstable', 'stable', 'testing', 'unstable', 'experimental');
35
36 $/ = "";
37
38 for my $archive (@archives) {
39     for my $suite (@suites) {
40
41         print "Reading $archive/$suite...\n";
42         my %sources_all_db;
43         tie %sources_all_db, "DB_File", "sources_all_$suite.db.new",
44                 O_RDWR|O_CREAT, 0666, $DB_BTREE
45                 or die "Error creating DB: $!";
46         open PKG, "zcat /org/packages.debian.org/archive/$archive/$suite/$what/source/Sources.gz|";
47         while (<PKG>) {
48                 next if /^\s*$/;
49                 my $data = "";
50                 my %data = ();
51                 chomp;
52                 s/\n /\377/g;
53                 while (/^(\S+):\s*(.*)\s*$/mg) {
54                         my ($key, $value) = ($1, $2);
55                         $value =~ s/\377/\n /g;
56                         $data .= "$key: $value\n";
57                         $key =~ tr [A-Z] [a-z];
58                         $data{$key} = $value;
59                 }
60                 $data .= "Archive: $archive\n";
61                 $sources_all_db{"$data{'package'} $data{'version'}"}
62                         = $data;
63
64                 $source_names{$data{'package'}} = 1;
65
66                 my $section = 'main';
67                 my $subsection = $data{section} || '-';
68                 if ($data{section} && ($data{section} =~ m=/=o)) {
69                     ($section, $subsection) = split m=/=o, $data{section}, 2;
70                 }
71                 $data{'priority'} = "-" if not exists($data{'priority'});
72                 $sources_small{$data{'package'}} .=
73                         "$archive $suite $section $subsection $data{'priority'} $data{'version'}\000";
74         }
75
76         untie %sources_all_db;
77     }
78 }
79
80 print "Writing databases...\n";
81 my %sources_small_db;
82 tie %sources_small_db, "DB_File", "sources_small.db.new",
83         O_RDWR|O_CREAT, 0666, $DB_BTREE
84         or die "Error creating DB: $!";
85 while (my ($k, $v) = each(%sources_small)) {
86         $v =~ s/.$//s;
87         $sources_small_db{$k} = $v;
88 }
89 untie %sources_small_db;
90
91 # package names stuff:
92 for my $pkg (keys %source_names) {
93         for (my $i=0;$i<length($pkg)-1;$i++) {
94                 my $before = substr($pkg, 0, $i);
95                 my $after = substr($pkg, $i);
96                 $before = "^" if $before eq ""; # otherwise split doesn't work properly
97                 $source_postfixes{$after} .= "$before\0";
98         }
99 }
100 my %source_postfixes_db;
101 tie %source_postfixes_db, "DB_File", "source_postfixes.db.new",
102         O_RDWR|O_CREAT, 0666, $DB_BTREE
103         or die "Error creating DB: $!";
104 while (my ($k, $v) = each(%source_postfixes)) {
105         $v =~ s/.$//s;
106         my $nr = $v;
107         $nr =~ s/[^\000]//g;
108         $nr = length($nr) + 1; # < number of hits
109         if ($nr > $MAX_SOURCE_POSTFIXES) {
110                 $v = "\001" . $nr;
111         }
112         $source_postfixes_db{$k} = $v;
113 }
114 untie %source_postfixes_db;
115
116 for my $suite (@suites) {
117         rename("sources_all_$suite.db.new", "sources_all_$suite.db");
118 }
119 rename("sources_small.db.new", "sources_small.db");
120 rename("source_postfixes.db.new", "source_postfixes.db");