File: mknmz-2.pl.in

package info (click to toggle)
namazu2 2.0.21-22
  • links: PTS
  • area: main
  • in suites: buster
  • size: 7,032 kB
  • sloc: ansic: 14,161; perl: 10,789; sh: 9,355; lisp: 1,147; makefile: 914
file content (84 lines) | stat: -rw-r--r-- 2,056 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!%PERL% -w
#
# $Id: mknmz-2.pl.in,v 1.1.4.2 2006-01-10 19:37:18 opengl2772 Exp $
# Copyright (C) 2004-2006 Tadamasa Teranishi
#               2004-2006 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
#
#

#
# Test for incremental indexing.
#

use strict;
require Cwd;
require 'pltests.pl';

my $cwd = Cwd::cwd();
my $LOG = "$cwd/test-log";
my $TARGET;
my $INDEX = "$cwd/idx2";
my $INDEX1 = "$cwd/idx1";
my $MKNMZ = pltests::binpath('mknmz');

my @cmd;

pltests::putline($LOG, "  *** starting $0");

if (-d "$INDEX") {
    unlink(<$INDEX/NMZ.*>);
} else {
    mkdir("$INDEX", 0755);
}

$TARGET = pltests::cat("$INDEX1/NMZ.field.uri");
unless (defined $TARGET) {
    exit 1;
}
$TARGET =~ s!^/([A-Z])\|!$1:!mig;
$TARGET =~ s/\r/\n/sg;
$TARGET =~ s/\n+/\n/sg;

my $TARGETS = "tmp.target";
if (-f $TARGETS) {
    unlink $TARGETS;
}
pltests::putline($TARGETS, $TARGET);

# Simple indexing.
foreach my $target (split(/\n/, $TARGET)) {
    @cmd = ("$MKNMZ", "--no-delete", "-O", "$INDEX", "$target");
    pltests::putline($LOG, "  ", \@cmd);
    my $status = pltests::logsyscmd($LOG, \@cmd);
    if ($status != 0) {
        if (-f $TARGETS) {
            unlink $TARGETS;
        }
        
        exit 1;
    }
}

if (-f $TARGETS) {
    unlink $TARGETS;
}

exit 0;