42799a67b174a12be02c0b901a822d589d1acb47
[idzebra-moved-to-github.git] / perl / lib / IDZebra / Session.pm
1 # $Id: Session.pm,v 1.22 2004-09-09 15:23:07 heikki Exp $
2
3 # Zebra perl API header
4 # =============================================================================
5 package IDZebra::Session;
6
7 use strict;
8 use warnings;
9 use Carp;
10
11 BEGIN {
12     use IDZebra;
13     use Scalar::Util;
14     use IDZebra::Logger qw(:flags :calls);
15     use IDZebra::Resultset;
16     use IDZebra::ScanList;
17     use IDZebra::RetrievalRecord;
18     require Exporter;
19     our $VERSION = do { my @r = (q$Revision: 1.22 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; 
20     our @ISA = qw(IDZebra::Logger Exporter);
21     our @EXPORT = qw (TRANS_RW TRANS_RO);
22 }
23
24 use constant TRANS_RW => 1;
25 use constant TRANS_RO => 0;
26
27 1;
28 # -----------------------------------------------------------------------------
29 # Class constructors, destructor
30 # -----------------------------------------------------------------------------
31 sub new {
32     my ($proto, %args) = @_;
33     my $class = ref($proto) || $proto;
34     my $self = {};
35     $self->{args} = \%args;
36     
37     bless ($self, $class);
38     $self->{cql_ct} = undef;
39     $self->{cql_mapfile} = "";
40     return ($self);
41
42     $self->{databases} = {};
43 }
44
45 sub start_service {
46     my ($self, %args) = @_;
47
48     my $zs;
49     unless (defined($self->{zs})) {
50         if (defined($args{'configFile'})) {
51             $self->{zs} = IDZebra::start($args{'configFile'});
52         } else {
53             $self->{zs} = IDZebra::start("zebra.cfg");
54         }
55     }
56 }
57
58 sub stop_service {
59     my ($self) = @_;
60     if (defined($self->{zs})) {
61         IDZebra::stop($self->{zs}) if ($self->{zs});    
62         $self->{zs} = undef;
63     }
64 }
65
66
67 sub open {
68     my ($proto,%args) = @_;
69     my $self = {};
70
71     if (ref($proto)) { $self = $proto; } else { 
72         $self = $proto->new(%args);
73     }
74
75     unless (%args) {
76         %args = %{$self->{args}};
77     }
78
79     $self->start_service(%args);
80
81     unless (defined($self->{zs})) {
82         croak ("Falied to open zebra service");
83     }    
84
85     unless (defined($self->{zh})) {
86         $self->{zh}=IDZebra::open($self->{zs}); 
87     }   
88
89     # Reset result set counter
90     $self->{rscount} = 0;
91
92     # This is needed in order to somehow initialize the service
93     $self->databases("Default");
94     
95     # ADAM: group call deleted
96     # Load the default configuration
97     # $self->group(%args);
98
99     # ADAM: Set group resource instead
100     if (defined($args{groupName})) {
101         IDZebra::set_resource($self->{zh}, "group", $args{groupName});
102     }
103
104     # Set shadow usage
105     my $shadow = defined($args{shadow}) ? $args{shadow} : 0;
106     $self->shadow($shadow);
107     
108     $self->{odr_input} = IDZebra::odr_createmem($IDZebra::ODR_DECODE);
109     $self->{odr_output} = IDZebra::odr_createmem($IDZebra::ODR_ENCODE);
110
111     return ($self);
112 }
113
114 sub checkzh {
115     my ($self) = @_;
116     unless (defined($self->{zh})) {
117         croak ("Zebra session is not opened");
118     }
119 }
120
121 sub close {
122     my ($self) = @_;
123
124     if ($self->{zh}) {
125
126         my $stats = 0; 
127         # Delete all resulsets
128         my $r = IDZebra::deleteResultSet($self->{zh},
129                                          1, #Z_DeleteRequest_all,
130                                          0,[],
131                                          $stats);
132
133         while (IDZebra::trans_no($self->{zh}) > 0) {
134             logf (LOG_WARN,"Explicitly closing transaction with session");
135             $self->end_trans;
136         }
137
138         IDZebra::close($self->{zh});
139         $self->{zh} = undef;
140     }
141     
142     if ($self->{odr_input}) {
143         IDZebra::odr_reset($self->{odr_input});
144         IDZebra::odr_destroy($self->{odr_input});
145         $self->{odr_input} = undef;  
146     }
147
148     if ($self->{odr_output}) {
149         IDZebra::odr_reset($self->{odr_output});
150         IDZebra::odr_destroy($self->{odr_output});
151         $self->{odr_output} = undef;  
152     }
153
154     $self->stop_service;
155 }
156
157 sub DESTROY {
158     my ($self) = @_;
159     logf (LOG_LOG,"DESTROY $self");
160     $self->close; 
161
162     if (defined ($self->{cql_ct})) {
163       IDZebra::cql_transform_close($self->{cql_ct});
164     }
165
166 }
167 # -----------------------------------------------------------------------------
168 # Record group selection  This is a bit nasty... but used at many places 
169 # -----------------------------------------------------------------------------
170
171 # ADAM: All these group functions have been disabled.
172 sub group_deleted {
173     my ($self,%args) = @_;
174     $self->checkzh;
175     if ($#_ > 0) {
176         $self->{rg} = $self->_makeRecordGroup(%args);
177         $self->_selectRecordGroup($self->{rg});
178     }
179     return($self->{rg});
180 }
181
182 sub selectRecordGroup_deleted {
183     my ($self, $groupName) = @_;
184     $self->checkzh;
185     $self->{rg} = $self->_getRecordGroup($groupName);
186     $self->_selectRecordGroup($self->{rg});
187 }
188
189 sub _displayRecordGroup_deleted {
190     my ($self, $rg) = @_;
191     print STDERR "-----\n";
192     foreach my $key qw (groupName 
193                         databaseName 
194                         path recordId 
195                         recordType 
196                         flagStoreData 
197                         flagStoreKeys 
198                         flagRw 
199                         fileVerboseLimit 
200                         databaseNamePath 
201                         explainDatabase 
202                         followLinks) {
203         print STDERR "$key:",$rg->{$key},"\n";
204     }
205 }
206
207 sub _cloneRecordGroup_deleted {
208     my ($self, $orig) = @_;
209     my $rg = IDZebra::recordGroup->new();
210     my $r = IDZebra::init_recordGroup($rg);
211     foreach my $key qw (groupName 
212                         databaseName 
213                         path 
214                         recordId 
215                         recordType 
216                         flagStoreData 
217                         flagStoreKeys 
218                         flagRw 
219                         fileVerboseLimit 
220                         databaseNamePath 
221                         explainDatabase 
222                         followLinks) {
223         $rg->{$key} = $orig->{$key} if ($orig->{$key});
224     }
225     return ($rg);
226 }
227
228 sub _getRecordGroup_deleted {
229     my ($self, $groupName, $ext) = @_;
230     my $rg = IDZebra::recordGroup->new();
231     my $r = IDZebra::init_recordGroup($rg);
232     $rg->{groupName} = $groupName if ($groupName ne "");  
233     $ext = "" unless ($ext);
234     $r = IDZebra::res_get_recordGroup($self->{zh}, $rg, $ext);
235     return ($rg);
236 }
237
238 sub _makeRecordGroup_deleted {
239     my ($self, %args) = @_;
240     my $rg;
241
242     my @keys = keys(%args);
243     unless ($#keys >= 0) {
244         return ($self->{rg});
245     }
246
247     if ($args{groupName}) {
248         $rg = $self->_getRecordGroup($args{groupName});
249     } else {
250         $rg = $self->_cloneRecordGroup($self->{rg});
251     }
252     $self->_setRecordGroupOptions($rg, %args);
253     return ($rg);
254 }
255
256 sub _setRecordGroupOptions_deleted {
257     my ($self, $rg, %args) = @_;
258
259     foreach my $key qw (databaseName 
260                         path 
261                         recordId 
262                         recordType 
263                         flagStoreData 
264                         flagStoreKeys 
265                         flagRw 
266                         fileVerboseLimit 
267                         databaseNamePath 
268                         explainDatabase 
269                         followLinks) {
270         if (defined ($args{$key})) {
271             $rg->{$key} = $args{$key};
272         }
273     }
274 }
275 sub _selectRecordGroup_deleted {
276     my ($self, $rg) = @_;
277
278     my $r = IDZebra::set_group($self->{zh}, $rg);
279     my $dbName;
280     unless ($dbName = $rg->{databaseName}) {
281         $dbName = 'Default';
282     }
283     unless ($self->databases($dbName)) {
284         croak("Fatal error selecting database $dbName");
285     }
286 }
287 # -----------------------------------------------------------------------------
288 # Selecting databases for search (and also for updating - internally)
289 # -----------------------------------------------------------------------------
290 sub databases {
291     my ($self, @databases) = @_;
292
293     $self->checkzh;
294
295     unless ($#_ >0) {
296         return (keys(%{$self->{databases}}));
297     }
298
299     my %tmp;
300     my $changed = 0;
301     foreach my $db (@databases) {
302         $tmp{$db}++;
303         next if ($self->{databases}{$db});
304         $changed++;
305     }
306
307     foreach my $db (keys (%{$self->{databases}})) {
308         $changed++ unless ($tmp{$db});
309     }
310
311     if ($changed) {
312
313         delete ($self->{databases});
314         foreach my $db (@databases) {
315             $self->{databases}{$db}++;
316         }
317
318         if (IDZebra::select_databases($self->{zh}, 
319                                                 ($#databases + 1), 
320                                                 \@databases)) {
321             logf(LOG_FATAL, 
322                  "Could not select database(s) %s errCode=%d",
323                  join(",",@databases),
324                  $self->errCode());
325             return (0);
326         } else {
327             logf(LOG_LOG,"Database(s) selected: %s",join(",",@databases));
328         }
329     }
330     return (keys(%{$self->{databases}}));
331 }
332
333 # -----------------------------------------------------------------------------
334 # Error handling
335 # -----------------------------------------------------------------------------
336 sub errCode {
337     my ($self) = @_;
338     return(IDZebra::errCode($self->{zh}));
339 }
340
341 sub errString {
342     my ($self) = @_;
343     return(IDZebra::errString($self->{zh}));
344 }
345
346 sub errAdd {
347     my ($self) = @_;
348     return(IDZebra::errAdd($self->{zh}));
349 }
350
351 # -----------------------------------------------------------------------------
352 # Transaction stuff
353 # -----------------------------------------------------------------------------
354 sub begin_trans {
355     my ($self, $m) = @_;
356     $m = TRANS_RW unless (defined ($m));
357     if (my $err = IDZebra::begin_trans($self->{zh},$m)) {
358         if ($self->errCode == 2) {
359             croak ("TRANS_RW not allowed within TRANS_RO");
360         } else {
361             croak("Error starting transaction; code:".
362                   $self->errCode . " message: " . $self->errString);
363         }
364     }
365 }
366
367 sub end_trans {
368     my ($self) = @_;
369     $self->checkzh;
370     my $stat = IDZebra::ZebraTransactionStatus->new();
371     IDZebra::end_trans($self->{zh}, $stat);
372     return ($stat);
373 }
374
375 sub shadow {
376     my ($self, $value) = @_;
377     $self->checkzh;
378     if ($#_ > 0) { 
379         $value = 0 unless (defined($value));
380         my $r =IDZebra::set_shadow_enable($self->{zh},$value); 
381     }
382     return (IDZebra::get_shadow_enable($self->{zh}));
383 }
384
385 sub commit {
386     my ($self) = @_;
387     $self->checkzh;
388     if ($self->shadow) {
389         return(IDZebra::commit($self->{zh}));
390     }
391 }
392
393 # -----------------------------------------------------------------------------
394 # We don't really need that...
395 # -----------------------------------------------------------------------------
396 sub odr_reset {
397     my ($self, $name) = @_;
398     if ($name !~/^(input|output)$/) {
399         croak("Undefined ODR '$name'");
400     }
401   IDZebra::odr_reset($self->{"odr_$name"});
402 }
403
404 # -----------------------------------------------------------------------------
405 # Init/compact
406 # -----------------------------------------------------------------------------
407 sub init {
408     my ($self) = @_;
409     $self->checkzh;
410     return(IDZebra::init($self->{zh}));
411 }
412
413 sub compact {
414     my ($self) = @_;
415     $self->checkzh;
416     return(IDZebra::compact($self->{zh}));
417 }
418
419 sub update {
420     my ($self, %args) = @_;
421     $self->checkzh;
422     # ADAM: Set group resource
423     if (defined($args{groupName})) {
424         IDZebra::set_resource($self->{zh}, "group", $args{groupName});
425     }
426     # ADAM: disabled
427 #    my $rg = $self->_update_args(%args); deleted
428 #    $self->_selectRecordGroup($rg); deleted
429     $self->begin_trans;
430     IDZebra::repository_update($self->{zh}, $args{path});
431 #     $self->_selectRecordGroup($self->{rg}); deleted
432     $self->end_trans;
433 }
434
435 sub delete {
436     my ($self, %args) = @_;
437     $self->checkzh;
438     # ADAM: Set group resource
439     if (defined($args{groupName})) {
440         IDZebra::set_resource($self->{zh}, "group", $args{groupName});
441     }
442     # ADAM: disabled
443 #    my $rg = $self->_update_args(%args); deleted
444 #    $self->_selectRecordGroup($rg); deleted
445     $self->begin_trans;
446     IDZebra::repository_delete($self->{zh}, $args{path});
447     # ADAM: disabled
448 #     $self->_selectRecordGroup($self->{rg});
449     $self->end_trans;
450 }
451
452 sub show {
453     my ($self, %args) = @_;
454     $self->checkzh;
455     # ADAM: Set group resource
456     if (defined($args{groupName})) {
457         IDZebra::set_resource($self->{zh}, "group", $args{groupName});
458     }
459     # ADAM: disabled
460 #    my $rg = $self->_update_args(%args);
461 #    $self->_selectRecordGroup($rg);
462
463     $self->begin_trans;
464     IDZebra::repository_show($self->{zh});
465     $self->_selectRecordGroup($self->{rg});
466     $self->end_trans;
467 }
468
469 sub _update_args_deleted {
470     my ($self, %args) = @_;
471     my $rg = $self->_makeRecordGroup(%args);
472     $self->_selectRecordGroup($rg);
473     return ($rg);
474 }
475
476 # -----------------------------------------------------------------------------
477 # Per record update
478 # -----------------------------------------------------------------------------
479 sub insert_record {
480     my ($self, %args) = @_;
481     $self->checkzh;
482     $args{sysno}=0; # make sure we don't overwrite any records
483     my @args = $self->_record_update_args(%args);
484     my @ret = IDZebra::insert_record($self->{zh}, @args);
485     return @ret; # returns ($status, $sysno)
486 }
487
488 sub update_record {
489     my ($self, %args) = @_;
490     $self->checkzh;
491     my @args = $self->_record_update_args(%args);
492     my @ret = IDZebra::update_record($self->{zh}, @args);
493     return @ret; # ($status, $sysno)
494 }
495
496 sub delete_record {
497     my ($self, %args) = @_;
498     $self->checkzh;
499     my @args = $self->_record_update_args(%args);
500     my $stat = IDZebra::delete_record($self->{zh}, @args);
501     return $stat;
502 }
503
504 sub _record_update_args {
505     my ($self, %args) = @_;
506     my $sysno   = $args{sysno}      ? $args{sysno}      : 0;
507     my $match   = $args{match}      ? $args{match}      : "";
508     my $rectype = $args{recordType} ? $args{recordType} : "";
509     my $fname   = $args{file}       ? $args{file}       : "<no file>";
510     my $force   = $args{force}      ? $args{force}      : 0;
511
512     my $buff;
513
514     if ($args{data}) {
515         $buff = $args{data};
516     } 
517     elsif ($args{file}) {
518         CORE::open (F, $args{file}) || warn ("Cannot open $args{file}");
519         $buff = join('',(<F>));
520         CORE::close (F);
521     }
522     my $len = length($buff);
523
524     delete ($args{sysno});
525     delete ($args{match});
526     delete ($args{recordType});
527     delete ($args{file});
528     delete ($args{data});
529     delete ($args{force});
530
531 # ADAM: recordGroup removed ...
532 #    my $rg = $self->_makeRecordGroup(%args);
533
534     # If no record type is given, then try to find it out from the
535     # file extension; deleted
536     #unless ($rectype) { 
537 #       if (my ($ext) = $fname =~ /\.(\w+)$/) {
538 #           my $rg2 = $self->_getRecordGroup($rg->{groupName},$ext);
539 #           $rectype = $rg2->{recordType};
540 #       } 
541 #    }
542
543 #    $rg->{databaseName} = "Default" unless ($rg->{databaseName});
544
545     unless ($rectype) {
546         $rectype="";
547     }
548     # ADAM: set group resource
549     if (defined($args{groupName})) {
550         IDZebra::set_resource($self->{zh}, "group", $args{groupName});
551     }
552
553     # ADAM: rg no longer part of vector..
554     return ($rectype, $sysno, $match, $fname, $buff, $len, $force);
555 }
556
557 # -----------------------------------------------------------------------------
558 # CQL stuff
559 sub cqlmap {
560     my ($self,$mapfile) = @_;
561     if ($#_ > 0) {
562         if ($self->{cql_mapfile} ne $mapfile) {
563             unless (-f $mapfile) {
564                 croak("Cannot find $mapfile");
565             }
566             if (defined ($self->{cql_ct})) {
567               IDZebra::cql_transform_close($self->{cql_ct});
568             }
569             $self->{cql_ct} = IDZebra::cql_transform_open_fname($mapfile);
570             $self->{cql_mapfile} = $mapfile;
571         }
572     }
573     return ($self->{cql_mapfile});
574 }
575
576 sub cql2pqf {
577     my ($self, $cqlquery) = @_;
578     unless (defined($self->{cql_ct})) {
579         croak("CQL map file is not specified yet.");
580     }
581     my $res = "\0" x 2048;
582     my $r = IDZebra::cql2pqf($self->{cql_ct}, $cqlquery, $res, 2048);
583     if ($r) {
584 #       carp ("Error transforming CQL query: '$cqlquery', status:$r");
585     }
586     $res=~s/\0.+$//g;
587     return ($res,$r); 
588 }
589
590
591 # -----------------------------------------------------------------------------
592 # Search 
593 # -----------------------------------------------------------------------------
594 sub search {
595     my ($self, %args) = @_;
596
597     $self->checkzh;
598
599     if ($args{cqlmap}) { $self->cqlmap($args{cqlmap}); }
600
601     my $query;
602     if ($args{pqf}) {
603         $query = $args{pqf};
604     }
605     elsif ($args{cql}) {
606         my $cqlstat;
607         ($query, $cqlstat) =  $self->cql2pqf($args{cql});
608         unless ($query) {
609             croak ("Failed to transform query: '$args{cql}', ".
610                    "status: ($cqlstat)");
611         }
612     }
613     unless ($query) {
614         croak ("No query given to search");
615     }
616
617     my @origdbs;
618
619     if ($args{databases}) {
620         @origdbs = $self->databases;
621         $self->databases(@{$args{databases}});
622     }
623
624
625     my $rsname = $args{rsname} ? $args{rsname} : $self->_new_setname;
626
627     my $rs = $self->_search_pqf($query, $rsname);
628
629     if ($args{databases}) {
630         $self->databases(@origdbs);
631     }
632
633     if ($args{sort}) {
634         if ($rs->errCode) {
635             carp("Sort skipped due to search error: ".
636                  $rs->errCode);
637         } else {
638             $rs->sort($args{sort});
639         }
640     }
641
642     return ($rs);
643 }
644
645 sub _new_setname {
646     my ($self) = @_;
647     return ("set_".$self->{rscount}++);
648 }
649
650 sub _search_pqf {
651     my ($self, $query, $setname) = @_;
652
653
654     my $hits = 0;
655
656     my $res = IDZebra::search_PQF($self->{zh},
657                                    $query,
658                                    $setname,
659                                    \$hits);
660
661     my $rs  = IDZebra::Resultset->new($self,
662                                       name        => $setname,
663                                       query       => $query,
664                                       recordCount => $hits,
665                                       errCode     => $self->errCode,
666                                       errString   => $self->errString);
667     return($rs);
668 }
669
670 # -----------------------------------------------------------------------------
671 # Sort
672 #
673 # Sorting of multiple result sets is not supported by zebra...
674 # -----------------------------------------------------------------------------
675
676 sub sortResultsets {
677     my ($self, $sortspec, $setname, @sets) = @_;
678
679     $self->checkzh;
680
681     if ($#sets > 0) {
682         croak ("Sorting/merging of multiple resultsets is not supported now");
683     }
684
685     my @setnames;
686     my $count = 0;
687     foreach my $rs (@sets) {
688         push (@setnames, $rs->{name});
689         $count += $rs->{recordCount};  # is this really sure ??? It doesn't 
690                                        # matter now...
691     }
692
693     my $status = IDZebra::sort($self->{zh},
694                                $self->{odr_output},
695                                $sortspec,
696                                $setname,
697                                \@setnames);
698
699     my $errCode = $self->errCode;
700     my $errString = $self->errString;
701
702     logf (LOG_LOG, "Sort status $setname: %d, errCode: %d, errString: %s", 
703           $status, $errCode, $errString);
704
705     if ($status || $errCode) {$count = 0;}
706
707     my $rs  = IDZebra::Resultset->new($self,
708                                       name        => $setname,
709                                       recordCount => $count,
710                                       errCode     => $errCode,
711                                       errString   => $errString);
712     
713     return ($rs);
714 }
715 # -----------------------------------------------------------------------------
716 # Scan
717 # -----------------------------------------------------------------------------
718 sub scan {
719     my ($self, %args) = @_;
720
721     $self->checkzh;
722
723     unless ($args{expression}) {
724         croak ("No scan expression given");
725     }
726
727     my $sl = IDZebra::ScanList->new($self,%args);
728
729     return ($sl);
730 }
731
732 # ============================================================================
733
734 __END__
735
736 =head1 NAME
737
738 IDZebra::Session - A Zebra database server session for update and retrieval
739
740 =head1 SYNOPSIS
741
742   $sess = IDZebra::Session->new(configFile => 'demo/zebra.cfg');
743   $sess->open();
744
745   $sess = IDZebra::Session->open(configFile => 'demo/zebra.cfg',
746                                  groupName  => 'demo1');
747
748   $sess->group(groupName => 'demo2');
749
750   $sess->init();
751
752   $sess->begin_trans;
753
754   $sess->update(path      =>  'lib');
755
756   my $s1=$sess->update_record(data       => $rec1,
757                               recordType => 'grs.perl.pod',
758                               groupName  => "demo1",
759                               );
760
761   my $stat = $sess->end_trans;
762
763   $sess->databases('demo1','demo2');
764
765   my $rs1 = $sess->search(cqlmap    => 'demo/cql.map',
766                           cql       => 'dc.title=IDZebra',
767                           databases => [qw(demo1 demo2)]);
768   $sess->close;
769
770 =head1 DESCRIPTION
771
772 Zebra is a high-performance, general-purpose structured text indexing and retrieval engine. It reads structured records in a variety of input formats (eg. email, XML, MARC) and allows access to them through exact boolean search expressions and relevance-ranked free-text queries. 
773
774 Zebra supports large databases (more than ten gigabytes of data, tens of millions of records). It supports incremental, safe database updates on live systems. You can access data stored in Zebra using a variety of Index Data tools (eg. YAZ and PHP/YAZ) as well as commercial and freeware Z39.50 clients and toolkits. 
775
776 =head1 OPENING AND CLOSING A ZEBRA SESSIONS
777
778 For the time beeing only local database services are supported, the same way as calling zebraidx or zebrasrv from the command shell. In order to open a local Zebra database, with a specific configuration file, use
779
780   $sess = IDZebra::Session->new(configFile => 'demo/zebra.cfg');
781   $sess->open();
782
783 or
784
785   $sess = IDZebra::Session->open(configFile => 'demo/zebra.cfg');
786
787 where $sess is going to be the object representing a Zebra Session. Whenever this variable gets out of scope, the session is closed, together with all active transactions, etc... Anyway, if you'd like to close the session, just say:
788
789   $sess->close();
790
791 This will
792   - close all transactions
793   - destroy all result sets and scan lists 
794   - close the session
795
796 Note, that if I<shadow registers> are enabled, the changes will not be committed automatically.
797
798 In the future different database access methods are going to be available, 
799 like:
800
801   $sess = IDZebra::Session->open(server => 'ostrich.technomat.hu:9999');
802
803 You can also use the B<record group> arguments described below directly when calling the constructor, or the open method:
804
805   $sess = IDZebra::Session->open(configFile => 'demo/zebra.cfg',
806                                  groupName  => 'demo');
807
808
809 =head1 RECORD GROUPS 
810
811 If you manage different sets of records that share common characteristics, you can organize the configuration settings for each type into "groups". See the Zebra manual on the configuration file (zebra.cfg). 
812
813 For each open session a default record group is assigned. You can configure it in the constructor, or by the B<group> method:
814
815   $sess->group(groupName => ..., ...)
816
817 The following options are available:
818
819 =over 4
820
821 =item B<groupName>
822
823 This will select the named record group, and load the corresponding settings from the configuration file. All subsequent values will overwrite those...
824
825 =item B<databaseName>
826
827 The name of the (logical) database the updated records will belong to. 
828
829 =item B<path>
830
831 This path is used for directory updates (B<update>, B<delete> methods);
832  
833 =item B<recordId>
834
835 This option determines how to identify your records. See I<Zebra manual: Locating Records>
836
837 =item B<recordType>
838
839 The record type used for indexing. 
840
841 =item B<flagStoreData> 
842
843 Specifies whether the records should be stored internally in the Zebra system files. If you want to maintain the raw records yourself, this option should be false (0). If you want Zebra to take care of the records for you, it should be true(1). 
844
845 =item B<flagStoreKeys>
846
847 Specifies whether key information should be saved for a given group of records. If you plan to update/delete this type of records later this should be specified as 1; otherwise it should be 0 (default), to save register space. 
848
849 =item B<flagRw>
850
851 ?
852
853 =item B<fileVerboseLimit>
854
855 Skip log messages, when doing a directory update, and the specified number of files are processed...
856
857 =item B<databaseNamePath>
858
859 ?
860
861 =item B<explainDatabase>
862
863 The name of the explain database to be used
864
865 =item B<followLinks>              
866
867 Follow links when doing directory update.
868
869 =back
870
871 You can use the same parameters calling all update methods.
872
873 =head1 TRANSACTIONS (READ / WRITE LOCKS)
874
875 A transaction is a block of record update (insert / modify / delete) or retrieval procedures. So, all call to such function will implicitly start a transaction, unless one is already started by
876
877   $sess->begin_trans;
878
879 or 
880
881   $sess->begin_trans(TRANS_RW)
882
883 (these two are equivalents). The effect of this call is a kind of lock: if you call is a write lock is put on the registers, so other processes trying to update the database will be blocked. If there is already an RW (Read-Write) transaction opened by another process, the I<begin_trans> call will be blocked.
884
885 You can also use
886
887   $sess->begin_trans(TRANS_RO),
888
889 if you would like to put on a "read lock". This one is B<deprecated>, as while you have explicitly opened a transaction for read, you can't open another one for update. For example:
890
891   $sess->begin_trans(TRANS_RO);
892   $sess->begin_tran(TRANS_RW); # invalid, die here
893   $sess->end_trans;
894   $sess->end_trans;
895
896 is invalid, but
897
898   $sess->begin_tran(TRANS_RW); 
899   $sess->begin_trans(TRANS_RO);
900   $sess->end_trans;
901   $sess->end_trans;
902
903 is valid, but probably useless. Note again, that for each retrieval call, an RO transaction is opened. I<TRANS_RW> and I<TRANS_RO> are exported by default by IDZebra::Session.pm.
904
905 For multiple per-record I<updates> it's efficient to start transactions explicitly: otherwise registers (system files, vocabularies, etc..) are updated one by one. After finishing all requested updates, use
906
907   $stat = $sess->end_trans;
908
909 The return value is a ZebraTransactionStatus object, containing the following members as a hash reference:
910
911   $stat->{processed} # Number of records processed
912   $stat->{updated}   # Number of records processed
913   $stat->{deleted}   # Number of records processed
914   $stat->{inserted}  # Number of records processed
915   $stat->{stime}     # System time used
916   $stat->{utime}     # User time used
917
918 Normally, if the perl code dies due to some runtime error, or the session is closed, then the API attempts to close all pending transactions.
919
920 =head1 THE SHADOW REGISTERS
921
922 The Zebra server supports updating of the index structures. That is, you can add, modify, or remove records from databases managed by Zebra without rebuilding the entire index. Since this process involves modifying structured files with various references between blocks of data in the files, the update process is inherently sensitive to system crashes, or to process interruptions: Anything but a successfully completed update process will leave the register files in an unknown state, and you will essentially have no recourse but to re-index everything, or to restore the register files from a backup medium. Further, while the update process is active, users cannot be allowed to access the system, as the contents of the register files may change unpredictably. 
923
924 You can solve these problems by enabling the shadow register system in Zebra. During the updating procedure, zebraidx will temporarily write changes to the involved files in a set of "shadow files", without modifying the files that are accessed by the active server processes. If the update procedure is interrupted by a system crash or a signal, you simply repeat the procedure - the register files have not been changed or damaged, and the partially written shadow files are automatically deleted before the new updating procedure commences. 
925
926 At the end of the updating procedure (or in a separate operation, if you so desire), the system enters a "commit mode". First, any active server processes are forced to access those blocks that have been changed from the shadow files rather than from the main register files; the unmodified blocks are still accessed at their normal location (the shadow files are not a complete copy of the register files - they only contain those parts that have actually been modified). If the commit process is interrupted at any point during the commit process, the server processes will continue to access the shadow files until you can repeat the commit procedure and complete the writing of data to the main register files. You can perform multiple update operations to the registers before you commit the changes to the system files, or you can execute the commit operation at the end of each update operation. When the commit phase has completed successfully, any running server processes are instructed to switch their operations to the new, operational register, and the temporary shadow files are deleted. 
927
928 By default, (in the API !) the use of shadow registers is disabled. If zebra is configured that way (there is a "shadow" entry in zebra.cfg), then the shadow system can be enabled by calling:
929
930  $sess->shadow(1);
931
932 or disabled by
933
934  $sess->shadow(0);
935
936 If shadow system is enabled, then you have to commit changes you did, by calling:
937  
938  $sess->commit;
939
940 Note, that you can also determine shadow usage in the session constructor:
941
942  $sess = IDZebra::Session->open(configFile => 'demo/zebra.cfg',
943                                 shadow    => 1);
944  
945 Changes to I<shadow> will not have effect, within a I<transaction> (ie.: a transaction is started either with shadow enabled or disabled). For more details, read Zebra documentation: I<Safe Updating - Using Shadow Registers>.
946
947 =head1 UPDATING DATA
948
949 There are two ways to update data in a Zebra database using the perl API. You can update an entire directory structure just the way it's done by zebraidx:
950
951   $sess->update(path      =>  'lib');
952
953 This will update the database with the files in directory "lib", according to the current record group settings.
954
955   $sess->update();
956
957 This will update the database with the files, specified by the default record group setting. I<path> has to be specified there...
958
959   $sess->update(groupName => 'demo1',
960                 path      =>  'lib');
961
962 Update the database with files in "lib" according to the settings of group "demo1"
963
964   $sess->delete(groupName => 'demo1',
965                 path      =>  'lib');
966
967 Delete the records derived from the files in directory "lib", according to the "demo1" group settings. Sounds complex? Read zebra documentation about identifying records.
968
969 You can also update records one by one, even directly from the memory:
970
971   $sysno = $sess->update_record(data       => $rec1,
972                                 recordType => 'grs.perl.pod',
973                                 groupName  => "demo1");
974
975 This will update the database with the given record buffer. Note, that in this case recordType is explicitly specified, as there is no filename given, and for the demo1 group, no default record type is specified. The return value is the system assigned id of the record.
976
977 You can also index a single file:
978
979   $sysno = $sess->update_record(file => "lib/IDZebra/Data1.pm");
980
981 Or, provide a buffer, and a filename (where filename will only be used to identify the record, if configured that way, and possibly to find out it's record type):
982
983   $sysno = $sess->update_record(data => $rec1,
984                                 file => "lib/IDZebra/Data1.pm");
985
986 And some crazy stuff:
987
988   $sysno = $sess->delete_record(sysno => $sysno);
989
990 where sysno in itself is sufficient to identify the record
991
992   $sysno = $sess->delete_record(data => $rec1,
993                                 recordType => 'grs.perl.pod',
994                                 groupName  => "demo1");
995
996 This case the record is extracted, and if already exists, located in the database, then deleted... 
997
998   $sysno = $sess->update_record(data       => $rec1,
999                                 match      => $myid,
1000                                 recordType => 'grs.perl.pod',
1001                                 groupName  => "demo1");
1002
1003 Don't try this at home! This case, the record identifier string (which is normally generated according to the rules set in I<recordId> member of the record group, or in the I<recordId> parameter) is provided directly.... Looks much better this way:
1004
1005   $sysno = $sess->update_record(data          => $rec1,
1006                                 databaseName  => 'books',
1007                                 recordId      => '(bib1,ISBN)',
1008                                 recordType    => 'grs.perl.pod',
1009                                 flagStoreData => 1,
1010                                 flagStoreKeys => 1);
1011
1012 You can notice, that it's not necessary to define a record group in zebra.cfg: you can do it "on the fly" in your code.
1013
1014 B<Important:> Note, that one record can be updated only once within a transaction - all subsequent updates are skipped. If you'd like to override this feature, use the I<force=E<gt>1> flag:
1015
1016   $sysno = $sess->update_record(data       => $rec1,
1017                                 recordType => 'grs.perl.pod',
1018                                 groupName  => "demo1",
1019                                 force      => 1);
1020
1021 If you don't like to update the record, if it alerady exists, use the I<insert_record> method:
1022
1023   $sysno = $sess->insert_record(data       => $rec1,
1024                                 recordType => 'grs.perl.pod',
1025                                 groupName  => "demo1");
1026
1027 In this case, sysno will be -1, if the record could not be added, because there was already one in the database, with the same record identifier (generated according to the I<recordId> setting).
1028
1029 =head1 DATABASE SELECTION
1030
1031 Within a zebra repository you can define logical databases. You can either do this by record groups, or by providing the databaseName argument for update methods. For each record the database name it belongs to is stored. 
1032
1033 For searching, you can select databases by calling:
1034
1035   $sess->databases('db1','db2');
1036
1037 This will not do anything if the given and only the given databases are already selected. You can get the list of the actually selected databases, by calling:
1038   
1039   @dblist = $sess->databases();
1040
1041 =head1 SEARCHING
1042
1043 It's nice to be able to store data in your repository... But it's useful to reach it as well. So this is how to do searching:
1044
1045   $rs = $sess->search(databases => [qw(demo1,demo2)], # optional
1046                       pqf       => '@attr 1=4 computer');
1047
1048 This is going to execute a search in databases demo1 and demo2, for title 'com,puter'. This is a PQF (Prefix Query Format) search, see YAZ documentation for details. The database selection is optional: if it's provided, the given list of databases is selected for this particular search, then the original selection is restored.
1049
1050 =head2 CCL searching
1051
1052 Not all users enjoy typing in prefix query structures and numerical attribute values, even in a minimalistic test client. In the library world, the more intuitive Common Command Language (or ISO 8777) has enjoyed some popularity - especially before the widespread availability of graphical interfaces. It is still useful in applications where you for some reason or other need to provide a symbolic language for expressing boolean query structures. 
1053
1054 The CCL searching is not currently supported by this API.
1055
1056 =head2 CQL searching
1057
1058 CQL - Common Query Language - was defined for the SRW protocol. In many ways CQL has a similar syntax to CCL. The objective of CQL is different. Where CCL aims to be an end-user language, CQL is the protocol query language for SRW. 
1059
1060 In order to map CQL queries to Zebra internal search structures, you have to define a mapping, the way it is described in YAZ documentation: I<Specification of CQL to RPN mapping>. The mapping is interpreted by the method:
1061
1062   $sess->cqlmap($mapfile);
1063
1064 Or, you can directly provide the I<mapfile> parameter for the search:
1065
1066   $rs = $sess->search(cqlmap    => 'demo/cql.map',
1067                       cql       => 'dc.title=IDZebra');
1068
1069 As you see, CQL searching is so simple: just give the query in the I<cql> parameter.
1070
1071 =head2 Sorting
1072
1073 If you'd like the search results to be sorted, use the I<sort> parameter:
1074
1075   $rs = $sess->search(cql       => 'IDZebra',
1076                       sort      => '1=4 ia');
1077   
1078 Note, that B<currently> this is (almost) equivalent to
1079
1080   $rs = $sess->search(cql       => 'IDZebra');
1081   $rs->sort('1=4 ia');
1082   
1083 but in the further versions of Zebra and this API a single phase search and sort will take place, optimizing performance. For more details on sorting, see I<IDZebra::ResultSet> manpage.
1084
1085 =head1 RESULTSETS
1086
1087 As you have seen, the result of the search request is a I<Resultset> object.
1088 It contains number of hits, and search status, and can be used to sort and retrieve the resulting records.
1089
1090   $count = $rs->count;
1091
1092   printf ("RS Status is %d (%s)\n", $rs->errCode, $rs->errString);
1093
1094 I<$rs-E<gt>errCode> is 0, if there were no errors during search. Read the I<IDZebra::Resultset> manpage for more details.
1095
1096 =head1 SCANNING
1097
1098 Zebra supports scanning index values. The result of the 
1099
1100   $sl = $sess->scan(expression => "a");
1101
1102 call is an I<IDZebra::ScanList> object, what you can use to list the values. The scan expression has to be provided in a PQF like format. Examples:
1103
1104 B< a> (scan trough words of "default", "Any" indexes)
1105
1106
1107 B< @attr 1=1016 a> (same effect)
1108
1109
1110 B< @attr 1=4 @attr 6=2 a>  (scan trough titles as phrases)
1111
1112 An illegal scan expression will cause your code to die. If you'd like to select databases just for the scan call, you can optionally use the I<databases> parameter:
1113
1114   $sl = $sess->scan(expression => "a",
1115                     databases  => [qw(demo1 demo2)]);
1116   
1117 You can use the I<IDZebra::ScanList> object returned by the i<scan> method, to reach the result. Check I<IDZebra::ScanList> manpage for more details.
1118
1119 =head1 SESSION STATUS AND ERRORS
1120
1121 Most of the API calls causes die, if an error occures. You avoid this, by using eval {} blocks. The following methods are available to get the status of Zebra service:
1122
1123 =over 4
1124
1125 =item B<errCode>
1126
1127 The Zebra provided error code... (for the result of the last call);
1128
1129 =item B<errString>
1130
1131 Error string corresponding to the message
1132
1133 =item B<errAdd>
1134
1135 Additional information for the status
1136
1137 =back
1138
1139 This functionality may change, see TODO.
1140
1141 =head1 LOGGING AND MISC. FUNCTIONS
1142
1143 Zebra provides logging facility for the internal events, and also for application developers trough the API. See manpage I<IDZebra::Logger> for details.
1144
1145 =over 4
1146
1147 =item B<IDZebra::LogFile($filename)>
1148
1149 Will set the output file for logging. By default it's STDERR;
1150
1151 =item B<IDZebra::LogLevel(15)>
1152
1153 Set log level. 0 for no logs. See IDZebra::Logger for usable flags.
1154
1155 =back
1156
1157 Some other functions
1158
1159 =over 4
1160
1161 =item B<$sess-E<gt>init>
1162
1163 Initialize, and clean registers. This will remove all data!
1164
1165 =item B<$sess-E<gt>compact>
1166
1167 Compact the registers (? does this work)
1168
1169 =item B<$sess-E<gt>show>
1170
1171 Doesn't have too much meaning. Don't try :)
1172
1173 =back
1174
1175 =head1 TODO
1176
1177 =over 4
1178
1179 =item B<Clean up error handling>
1180
1181 By default all zebra errors should cause die. (such situations could be avoided by using eval {}), and then check for errCode, errString... An optional flag or package variable should be introduced to override this, and skip zebra errors, to let the user decide what to do.
1182
1183 =item B<Make the package self-distributable>
1184
1185 Build and link with installed header and library files
1186
1187 =item B<Testing>
1188
1189 Test shadow system, unicode...
1190
1191 =item B<C API>
1192
1193 Cleanup, arrange, remove redundancy
1194
1195 =back
1196
1197 =head1 COPYRIGHT
1198
1199 Fill in
1200
1201 =head1 AUTHOR
1202
1203 Peter Popovics, pop@technomat.hu
1204
1205 =head1 SEE ALSO
1206
1207 Zebra documentation, Zebra::ResultSet, Zebra::ScanList, Zebra::Logger manpages
1208
1209 =cut