Dusplay proxy
[irspy-moved-to-github.git] / bin / reindex.pl
index 969eaf3..9328c72 100755 (executable)
@@ -1,20 +1,33 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
 
-# $Id: reindex.pl,v 1.3 2007-03-07 11:35:38 mike Exp $
+# Run as:
+#      ./reindex.pl user=admin,password=SWORDFISH,localhost:8018/IR-Explain---1
+#      ./reindex.pl -d -q zeerex.reliability=0 localhost:8018/IR-Explain---1
 
 use strict;
 use warnings;
 use ZOOM;
+use Getopt::Long;
 
-if (@ARGV != 1) {
-    print STDERR "Usage: $0 target\n";
+my $setUdb = 0;
+my $delete = 0;
+my $noAction = 0;
+my $query = 'cql.allRecords=1';
+if (!GetOptions(
+        'setUdb' => \$setUdb,
+        'delete' => \$delete,
+        'noAction' => \$noAction,
+        'query=s' => \$query,
+    ) || @ARGV != 1) {
+    print STDERR "Usage: $0 [-s|--setUdb] [-d|--delete] [-n|--noaction] [-q <query>] <target>\n";
     exit 1;
 }
 
 my $conn = new ZOOM::Connection($ARGV[0]);
 $conn->option(preferredRecordSyntax => "xml");
 $conn->option(elementSetName => "zebra::data");
-my $rs = $conn->search_pqf('@attr 1=_ALLRECORDS @attr 2=103 ""');
+my $rs = $conn->search(new ZOOM::Query::CQL($query));
+
 my $n = $rs->size();
 $| = 1;
 print "$0: reindexing $n records\n";
@@ -23,6 +36,19 @@ foreach my $i (1..$n) {
     print " $i/$n (", int($i*100/$n), "%)\n" if $i % 50 == 0;
     my $rec = $rs->record($i-1);
     my $xml = $rec->render();
+
+    if ($setUdb) {
+       my $udb;
+       if ($xml !~ /<(e:)?databaseInfo.*?>/) {
+           $udb = qq[<i:udb xmlns:i="http://indexdata.com/irspy/1.0">irspy-a$i</i:udb>];
+           $xml =~ s/\/serverInfo>/$&<databaseInfo>$udb<\/databaseInfo>/;
+           print "x";
+       } else {
+           $udb = qq[<i:udb xmlns:i="http://indexdata.com/irspy/1.0">irspy-$i</i:udb>];
+           $xml =~ s/<(e:)?databaseInfo.*?>/$&$udb/;
+       }
+    }
+
     update($conn, $xml);
 }
 print " $n/$n (100%)\n" if $n % 50 != 0;
@@ -34,8 +60,9 @@ print "committed\n";
 sub update {
     my($conn, $xml) = @_;
 
+    return if $noAction;
     my $p = $conn->package();
-    $p->option(action => "specialUpdate");
+    $p->option(action => $delete ? "recordDelete" : "specialUpdate");
     $p->option(record => $xml);
     $p->send("update");
     $p->destroy();