Namazu-devel-ja(旧)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: filter/rpm.pl
Wed, 27 Dec 2000 20:52:13 +0900 頃の
Mail-Count: 01198
Subject: [namazu-devel-ja] filter/rpm.pl
についてのお話にて baba さん曰く…
(b == baba@xxxxxxxxxxxxxxxxxxxxxx さん)
In article 01198, <20001227205213F.baba@xxxxxxxxxxxxxxxxxxxxxx>
b> RedHat の rpm ファイルをインデックス対象にするようにフィルタを作っ
b> てみました。rpm -qpi での出力を利用してるので、以下のような出力が
b> 得られます。
b> 使い方にもよるでしょうが、便利な場面もあるのではないかとおもいます。
b> たぶん同じような感じで、deb ファイルでもできるんじゃないでしょうか。
実は(最近の namazu は)よくわかってないし
試してもないんですが deb 用に書き直してみました.
# まあきっと knok さんが直してくれるだろう :-)
apt-cache search は遅いので deb の方がもしかするとうれしいかも?
とか思っているところです.
--
やまだ あきら <URL:http://arika.org/>
(akira@xxxxxxxxx, akira@xxxxxxxxxxxxx or akira@xxxxxxxxxx)
#
# -*- Perl -*-
# $Id: rpm.pl,v 1.16 2000/03/23 10:41:04 knok Exp $
# Copyright (C) 2000 Namazu Project All rights reserved ,
# This is free software with ABSOLUTELY NO WARRANTY.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either versions 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA
#
# This file must be encoded in EUC-JP encoding
#
package deb;
use strict;
require 'util.pl';
require 'gfilter.pl';
my $dpkgpath = undef;
sub mediatype() {
return ('application/x-deb');
}
sub status() {
$dpkgpath = util::checkcmd('dpkg');
return 'no' unless (defined $dpkgpath);
return 'yes';
}
sub recursive() {
return 1;
}
sub pre_codeconv() {
return 0;
}
sub post_codeconv () {
return 0;
}
sub add_magic ($) {
my ($magic) = @_;
$magic->addFileExts('\\.deb$', 'application/x-deb');
return;
}
sub filter ($$$$$) {
my ($orig_cfile, $cont, $weighted_str, $headings, $fields)
= @_;
my $cfile = defined $orig_cfile ? $$orig_cfile : '';
my $tmpfile = util::tmpnam('NMZ.deb');
util::vprint("Processing deb file ... (using '$dpkgpath')\n");
if (util::islang("ja")) {
system("env LANGUAGE=ja $dpkgpath --info $cfile > $tmpfile");
} else {
system("$dpkgpath --info $cfile > $tmpfile");
}
my $fh = util::efopen("$tmpfile");
my $size = util::filesize($fh);
if ($size > $conf::FILE_SIZE_MAX) {
return 'too_large_dpkg_file';
}
$$cont = util::readfile($fh);
undef $fh;
unlink($tmpfile);
dpkg_filter($cont, $weighted_str, $fields, $headings);
gfilter::line_adjust_filter($cont);
gfilter::line_adjust_filter($weighted_str);
gfilter::white_space_adjust_filter($cont);
# $fields->{'title'} = gfilter::filename_to_title($cfile, $weighted_str)
# unless $fields->{'title'};
gfilter::show_filter_debug_info($cont, $weighted_str,
$fields, $headings);
return undef;
}
sub dpkg_filter ($$$$) {
my ($contref, $weighted_str, $fields, $headings) = @_;
deb::get_title($contref, $weighted_str, $fields);
deb::get_author($contref, $fields);
deb::get_date($contref, $fields);
deb::get_size($contref, $fields);
deb::get_summary($contref, $fields);
return;
}
# Below is the sample result of 'dpkg --info deb'.
#
# new debian package, version 2.0.
# size 30606 bytes: control archive= 1247 bytes.
# 351 bytes, 12 lines control
# 1174 bytes, 18 lines md5sums
# 389 bytes, 11 lines * postinst #!/bin/sh
# 143 bytes, 4 lines * postrm #!/bin/sh
# 184 bytes, 6 lines * prerm #!/bin/sh
# Package: irb
# Version: 1.6.2-1
# Section: interpreters
# Priority: optional
# Architecture: all
# Depends: ruby (>= 1.6.2-1), libreadline-ruby (>= 1.6.2-1)
# Installed-Size: 139
# Maintainer: akira yamada <akira@xxxxxxxxxx>
# Source: ruby
# Description: The Intaractive Ruby.
# The irb is acronym for Interactive RuBy. It evaluates ruby expression
# from the terminal.
sub get_title ($$$) {
my ($contref, $weighted_str, $fields) = @_;
if ($$contref =~ /^ Description: (.*)/) {
my $tmp = $1;
$fields->{'title'} = $tmp;
my $weight = $conf::Weight{'html'}->{'title'};
$$weighted_str .= "\x7f$weight\x7f$tmp\x7f/$weight\x7f\n";
}
}
sub get_author ($$) {
my ($contref, $fields) = @_;
if ($$contref =~ /^ Maintainer: (.*)/) {
my $tmp = $1;
$fields->{'author'} = $tmp;
}
}
sub get_date ($$) {
my ($contref, $fields) = @_;
if ($$contref =~ /^ Version: (.*)/) { # X-)
my $tmp = $1;
$fields->{'date'} = $tmp;
}
}
sub get_size ($$) {
my ($contref, $fields) = @_;
if ($$contref =~ /^ size (\d+) bytes:/) {
my $tmp = $1;
$fields->{'size'} = $tmp;
}
}
sub get_summary ($$) {
my ($contref, $fields) = @_;
if ($$contref =~ /^.*Description:[^\n]*\n(.*)/is) {
my $tmp = $1;
$fields->{'summary'} = $tmp;
}
}
1;