Namazu-users-ja(旧)


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: フィルターの追加について



野首様

  岡安です。
  ありがとうございます。下記方法でmknmzの結果はOKでした。
  実際に、ヒットするかどうかは、まだ検証していませんが・・・。


At 01:16 午後 00/10/27 JST, you wrote:
> <200010270300.MAA29662@xxxxxxxxxxxxxxxxxxxxxxxxxxx>の記事において
> okayasu@xxxxxxxxxxxxxxxxxxxxさんは書きました。
> 
> 
>   そのファイルの種類はどんなものでしょうか。おそらく File::MMagic が認
> 識できない種類のファイルなのだろうと推測しますが、そういう場合は
> filter の add_magic() に
> 
> sub add_magic ($) {
>     my ($magic) = @_;
> 
>     $magic->addFileExts('\\.拡張子$', 'メディアタイプ');
>     return;
> }
> 
>   のような処理を追加する必要があります。source に含まれる、
> filter/win32/oleexcel.pl などが参考になるでしょう。
> 
> # きちんと magic entry が書けるのであれば、addMagicEntry() の方がより
> # 好ましいです。
> 
> >>   フィルターの追加の際に、まだ修正しなければならない個所が
> >>   あるのでしょうか?
> 
>   その filter の中身を見せてもらえれば、より具体的な助言ができると思い
> ます。
> 
> # それを contribute してもらえると更に嬉しいです ^^;
> -- 
> 野首 貴嗣
> E-mail: knok@xxxxxxxxxxxxx (private)
>         nokubi@xxxxxxxxx (official)

  oasys.pl について

   勤務が富士通関係ですので、OASYSの検索もできたらいいなと
   思っていました。WORD、EXCELの検索に、doccatを
   使用したついでに、OASYS用の検索も同時にできると思い、作
   成を試みた次第です。doccatの仕様で、oa2形式の文書しか
   抽出できませんが、よろしければどうぞ。

#
# -*- Perl -*-
# $Id: oasys.pl,v 1.19 2000/03/15 06:53:50 satoru Exp $
# Copyright (C) 1997-2000 Satoru Takabayashi ,
#               1999 NOKUBI Takatsugu 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 oasys;
use strict;
use File::Copy;
require 'util.pl';
require 'gfilter.pl';

my $oasysconvpath = undef;

sub mediatype() {
    return ('application/oasys');
}

sub status() {
    $oasysconvpath = util::checkcmd('doccat');
    return 'yes' if (defined $oasysconvpath);
    return 'no';
}

sub recursive() {
    return 0;
}

sub pre_codeconv() {
    return 0;
}

sub post_codeconv () {
    return 1;
}

sub add_magic ($) {
    my ($magic) = @_;

    $magic->addFileExts('\\.oa2$', 'application/oasys');
    return;
}

sub filter ($$$$$) {
    my ($orig_cfile, $cont, $weighted_str, $headings, $fields)
      = @_;
    my $cfile = defined $orig_cfile ? $$orig_cfile : '';

    my $tmpfile = util::tmpnam('NMZ.oas');
    my $tmpfile2 = util::tmpnam('NMZ.oas2');
    copy("$cfile", "$tmpfile2");

    system("$oasysconvpath -o e $tmpfile2 > $tmpfile");

    {
        my $fh = util::efopen("> $tmpfile");
        $$cont = util::readfile($fh);
    }

    unlink $tmpfile;
    unlink $tmpfile2;

    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;
}

1;



---
FNS)事業支援部  岡安秋聖
Phone:026-237-6980  Fax:026-235-1545  Ext:7571-2715
Email:okayasu@xxxxxxxxxxxxxxxxxxxx