X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ztest.pl;h=10ca66766b03305a40f9a09346bd962afc564e6a;hb=refs%2Ftags%2Fv1.16;hp=27fd7f4da44d98d65623c10ee5ff0e9583ea50ba;hpb=cdc764afd8ddc92658f972fdccfa3349be97d403;p=simpleserver-moved-to-github.git diff --git a/ztest.pl b/ztest.pl index 27fd7f4..10ca667 100755 --- a/ztest.pl +++ b/ztest.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl -w ## This file is part of simpleserver -## Copyright (C) 2000-2011 Index Data. +## Copyright (C) 2000-2013 Index Data. ## All rights reserved. ## Redistribution and use in source and binary forms, with or without ## modification, are permitted provided that the following conditions are met: @@ -54,7 +54,7 @@ sub my_init_handler { if (defined($args->{PASS}) && defined($args->{USER})) { printf("Received USER/PASS=%s/%s\n", $args->{USER},$args->{PASS}); } - + } @@ -101,7 +101,7 @@ sub my_scan_handler { my $_fail_frequency = 0; my $_counter = 0; -sub my_search_handler { +sub my_search_handler { my $args = shift; my $data = [{ @@ -120,16 +120,22 @@ sub my_search_handler { my $session = $args->{HANDLE}; my $set_id = $args->{SETNAME}; + my $rpn = $args->{RPN}; my @database_list = @{ $args->{DATABASES} }; my $query = $args->{QUERY}; + my $facets = $args->{INPUTFACETS}; my $hits = 3; print "------------------------------------------------------------\n"; print "Processing query : $query\n"; printf("Database set : %s\n", join(" ", @database_list)); print "Setname : $set_id\n"; + print " inputfacets:\n"; + print Dumper($facets); print "------------------------------------------------------------\n"; + $args->{OUTPUTFACETS} = $facets; + $args->{HITS} = $hits; $session->{$set_id} = $data; $session->{__HITS} = $hits; @@ -163,9 +169,15 @@ sub my_fetch_handler { } } +sub my_start_handler { + my $args = shift; + my $config = $args->{CONFIG}; +} + Net::Z3950::SimpleServer::yazlog("hello"); -my $handler = new Net::Z3950::SimpleServer( +my $handler = new Net::Z3950::SimpleServer( + START => "main::my_start_handler", INIT => "main::my_init_handler", SEARCH => "main::my_search_handler", SCAN => "main::my_scan_handler",