Updated documentation, ERADME, scanning, sorting and filter virtual file handles...
[idzebra-moved-to-github.git] / perl / lib / IDZebra / Session.pm
1 # $Id: Session.pm,v 1.13 2003-03-05 13:55:22 pop Exp $
2
3 # Zebra perl API header
4 # =============================================================================
5 package IDZebra::Session;
6
7 use strict;
8 use warnings;
9
10 BEGIN {
11     use IDZebra;
12     use Scalar::Util;
13     use IDZebra::Logger qw(:flags :calls);
14     use IDZebra::Resultset;
15     use IDZebra::ScanList;
16     use IDZebra::RetrievalRecord;
17     require Exporter;
18     our $VERSION = do { my @r = (q$Revision: 1.13 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; 
19     our @ISA = qw(IDZebra::Logger Exporter);
20     our @EXPORT = qw (TRANS_RW TRANS_RO);
21 }
22
23 use constant TRANS_RW => 1;
24 use constant TRANS_RO => 0;
25
26 1;
27 # -----------------------------------------------------------------------------
28 # Class constructors, destructor
29 # -----------------------------------------------------------------------------
30 sub new {
31     my ($proto, %args) = @_;
32     my $class = ref($proto) || $proto;
33     my $self = {};
34     $self->{args} = \%args;
35     
36     bless ($self, $class);
37     $self->{cql_ct} = undef;
38     $self->{cql_mapfile} = "";
39     return ($self);
40
41     $self->{databases} = {};
42 }
43
44 sub start_service {
45     my ($self, %args) = @_;
46
47     my $zs;
48     unless (defined($self->{zs})) {
49         if (defined($args{'configFile'})) {
50             $self->{zs} = IDZebra::start($args{'configFile'});
51         } else {
52             $self->{zs} = IDZebra::start("zebra.cfg");
53         }
54     }
55 }
56
57 sub stop_service {
58     my ($self) = @_;
59     if (defined($self->{zs})) {
60         IDZebra::stop($self->{zs}) if ($self->{zs});    
61         $self->{zs} = undef;
62     }
63 }
64
65
66 sub open {
67     my ($proto,%args) = @_;
68     my $self = {};
69
70     if (ref($proto)) { $self = $proto; } else { 
71         $self = $proto->new(%args);
72     }
73
74     unless (%args) {
75         %args = %{$self->{args}};
76     }
77
78     $self->start_service(%args);
79
80     unless (defined($self->{zs})) {
81         croak ("Falied to open zebra service");
82     }    
83
84     unless (defined($self->{zh})) {
85         $self->{zh}=IDZebra::open($self->{zs}); 
86     }   
87
88     # Reset result set counter
89     $self->{rscount} = 0;
90
91     # This is needed in order to somehow initialize the service
92     $self->databases("Default");
93
94     # Load the default configuration
95     $self->group(%args);
96
97
98     # Set shadow usage
99     my $shadow = defined($args{shadow}) ? $args{shadow} : 0;
100     $self->shadow($shadow);
101     
102     $self->{odr_input} = IDZebra::odr_createmem($IDZebra::ODR_DECODE);
103     $self->{odr_output} = IDZebra::odr_createmem($IDZebra::ODR_ENCODE);
104
105     return ($self);
106 }
107
108 sub checkzh {
109     my ($self) = @_;
110     unless (defined($self->{zh})) {
111         croak ("Zebra session is not opened");
112     }
113 }
114
115 sub close {
116     my ($self) = @_;
117
118     if ($self->{zh}) {
119
120         my $stats = 0; 
121         # Delete all resulsets
122         my $r = IDZebra::deleteResultSet($self->{zh},
123                                          1, #Z_DeleteRequest_all,
124                                          0,[],
125                                          $stats);
126
127         while (IDZebra::trans_no($self->{zh}) > 0) {
128             logf (LOG_WARN,"Explicitly closing transaction with session");
129             $self->end_trans;
130         }
131
132         IDZebra::close($self->{zh});
133         $self->{zh} = undef;
134     }
135     
136     if ($self->{odr_input}) {
137         IDZebra::odr_reset($self->{odr_input});
138         IDZebra::odr_destroy($self->{odr_input});
139         $self->{odr_input} = undef;  
140     }
141
142     if ($self->{odr_output}) {
143         IDZebra::odr_reset($self->{odr_output});
144         IDZebra::odr_destroy($self->{odr_output});
145         $self->{odr_output} = undef;  
146     }
147
148     $self->stop_service;
149 }
150
151 sub DESTROY {
152     my ($self) = @_;
153     logf (LOG_LOG,"DESTROY $self");
154     $self->close; 
155
156     if (defined ($self->{cql_ct})) {
157       IDZebra::cql_transform_close($self->{cql_ct});
158     }
159
160 }
161 # -----------------------------------------------------------------------------
162 # Record group selection  This is a bit nasty... but used at many places 
163 # -----------------------------------------------------------------------------
164 sub group {
165     my ($self,%args) = @_;
166     $self->checkzh;
167     if ($#_ > 0) {
168         $self->{rg} = $self->_makeRecordGroup(%args);
169         $self->_selectRecordGroup($self->{rg});
170     }
171     return($self->{rg});
172 }
173
174 sub selectRecordGroup {
175     my ($self, $groupName) = @_;
176     $self->checkzh;
177     $self->{rg} = $self->_getRecordGroup($groupName);
178     $self->_selectRecordGroup($self->{rg});
179 }
180
181 sub _displayRecordGroup {
182     my ($self, $rg) = @_;
183     print STDERR "-----\n";
184     foreach my $key qw (groupName 
185                         databaseName 
186                         path recordId 
187                         recordType 
188                         flagStoreData 
189                         flagStoreKeys 
190                         flagRw 
191                         fileVerboseLimit 
192                         databaseNamePath 
193                         explainDatabase 
194                         followLinks) {
195         print STDERR "$key:",$rg->{$key},"\n";
196     }
197 }
198
199 sub _cloneRecordGroup {
200     my ($self, $orig) = @_;
201     my $rg = IDZebra::recordGroup->new();
202     my $r = IDZebra::init_recordGroup($rg);
203     foreach my $key qw (groupName 
204                         databaseName 
205                         path 
206                         recordId 
207                         recordType 
208                         flagStoreData 
209                         flagStoreKeys 
210                         flagRw 
211                         fileVerboseLimit 
212                         databaseNamePath 
213                         explainDatabase 
214                         followLinks) {
215         $rg->{$key} = $orig->{$key} if ($orig->{$key});
216     }
217     return ($rg);
218 }
219
220 sub _getRecordGroup {
221     my ($self, $groupName, $ext) = @_;
222     my $rg = IDZebra::recordGroup->new();
223     my $r = IDZebra::init_recordGroup($rg);
224     $rg->{groupName} = $groupName if ($groupName ne "");  
225     $ext = "" unless ($ext);
226     $r = IDZebra::res_get_recordGroup($self->{zh}, $rg, $ext);
227     return ($rg);
228 }
229
230 sub _makeRecordGroup {
231     my ($self, %args) = @_;
232     my $rg;
233
234     my @keys = keys(%args);
235     unless ($#keys >= 0) {
236         return ($self->{rg});
237     }
238
239     if ($args{groupName}) {
240         $rg = $self->_getRecordGroup($args{groupName});
241     } else {
242         $rg = $self->_cloneRecordGroup($self->{rg});
243     }
244     $self->_setRecordGroupOptions($rg, %args);
245     return ($rg);
246 }
247
248 sub _setRecordGroupOptions {
249     my ($self, $rg, %args) = @_;
250
251     foreach my $key qw (databaseName 
252                         path 
253                         recordId 
254                         recordType 
255                         flagStoreData 
256                         flagStoreKeys 
257                         flagRw 
258                         fileVerboseLimit 
259                         databaseNamePath 
260                         explainDatabase 
261                         followLinks) {
262         if (defined ($args{$key})) {
263             $rg->{$key} = $args{$key};
264         }
265     }
266 }
267 sub _selectRecordGroup {
268     my ($self, $rg) = @_;
269     my $r = IDZebra::set_group($self->{zh}, $rg);
270     my $dbName;
271     unless ($dbName = $rg->{databaseName}) {
272         $dbName = 'Default';
273     }
274     unless ($self->databases($dbName)) {
275         croak("Fatal error selecting database $dbName");
276     }
277 }
278 # -----------------------------------------------------------------------------
279 # Selecting databases for search (and also for updating - internally)
280 # -----------------------------------------------------------------------------
281 sub databases {
282     my ($self, @databases) = @_;
283
284     $self->checkzh;
285
286     unless ($#_ >0) {
287         return (keys(%{$self->{databases}}));
288     }
289
290     my %tmp;
291
292     my $changed = 0;
293     foreach my $db (@databases) {
294         next if ($self->{databases}{$db});
295         $tmp{$db}++;
296         $changed++;
297     }
298
299     foreach my $db (keys (%{$self->{databases}})) {
300         $changed++ unless ($tmp{$db});
301     }
302
303     if ($changed) {
304
305         delete ($self->{databases});
306         foreach my $db (@databases) {
307             $self->{databases}{$db}++;
308         }
309
310         if (IDZebra::select_databases($self->{zh}, 
311                                                 ($#databases + 1), 
312                                                 \@databases)) {
313             logf(LOG_FATAL, 
314                  "Could not select database(s) %s errCode=%d",
315                  join(",",@databases),
316                  $self->errCode());
317             return (0);
318         } else {
319             logf(LOG_LOG,"Database(s) selected: %s",join(",",@databases));
320         }
321     }
322     return (keys(%{$self->{databases}}));
323 }
324
325 # -----------------------------------------------------------------------------
326 # Error handling
327 # -----------------------------------------------------------------------------
328 sub errCode {
329     my ($self) = @_;
330     return(IDZebra::errCode($self->{zh}));
331 }
332
333 sub errString {
334     my ($self) = @_;
335     return(IDZebra::errString($self->{zh}));
336 }
337
338 sub errAdd {
339     my ($self) = @_;
340     return(IDZebra::errAdd($self->{zh}));
341 }
342
343 # -----------------------------------------------------------------------------
344 # Transaction stuff
345 # -----------------------------------------------------------------------------
346 sub begin_trans {
347     my ($self, $m) = @_;
348     $m = TRANS_RW unless (defined ($m));
349     if (my $err = IDZebra::begin_trans($self->{zh},$m)) {
350         if ($self->errCode == 2) {
351             croak ("TRANS_RW not allowed within TRANS_RO");
352         } else {
353             croak("Error starting transaction; code:".
354                   $self->errCode . " message: " . $self->errString);
355         }
356     }
357 }
358
359 sub end_trans {
360     my ($self) = @_;
361     $self->checkzh;
362     my $stat = IDZebra::ZebraTransactionStatus->new();
363     IDZebra::end_trans($self->{zh}, $stat);
364     return ($stat);
365 }
366
367 sub shadow {
368     my ($self, $value) = @_;
369     $self->checkzh;
370     if ($#_ > 0) { 
371         $value = 0 unless (defined($value));
372         my $r =IDZebra::set_shadow_enable($self->{zh},$value); 
373     }
374     return (IDZebra::get_shadow_enable($self->{zh}));
375 }
376
377 sub commit {
378     my ($self) = @_;
379     $self->checkzh;
380     if ($self->shadow) {
381         return(IDZebra::commit($self->{zh}));
382     }
383 }
384
385 # -----------------------------------------------------------------------------
386 # We don't really need that...
387 # -----------------------------------------------------------------------------
388 sub odr_reset {
389     my ($self, $name) = @_;
390     if ($name !~/^(input|output)$/) {
391         croak("Undefined ODR '$name'");
392     }
393   IDZebra::odr_reset($self->{"odr_$name"});
394 }
395
396 # -----------------------------------------------------------------------------
397 # Init/compact
398 # -----------------------------------------------------------------------------
399 sub init {
400     my ($self) = @_;
401     $self->checkzh;
402     return(IDZebra::init($self->{zh}));
403 }
404
405 sub compact {
406     my ($self) = @_;
407     $self->checkzh;
408     return(IDZebra::compact($self->{zh}));
409 }
410
411 sub update {
412     my ($self, %args) = @_;
413     $self->checkzh;
414     my $rg = $self->_update_args(%args);
415     $self->_selectRecordGroup($rg);
416     $self->begin_trans;
417     IDZebra::repository_update($self->{zh});
418     $self->_selectRecordGroup($self->{rg});
419     $self->end_trans;
420 }
421
422 sub delete {
423     my ($self, %args) = @_;
424     $self->checkzh;
425     my $rg = $self->_update_args(%args);
426     $self->_selectRecordGroup($rg);
427     $self->begin_trans;
428     IDZebra::repository_delete($self->{zh});
429     $self->_selectRecordGroup($self->{rg});
430     $self->end_trans;
431 }
432
433 sub show {
434     my ($self, %args) = @_;
435     $self->checkzh;
436     my $rg = $self->_update_args(%args);
437     $self->_selectRecordGroup($rg);
438     $self->begin_trans;
439     IDZebra::repository_show($self->{zh});
440     $self->_selectRecordGroup($self->{rg});
441     $self->end_trans;
442 }
443
444 sub _update_args {
445     my ($self, %args) = @_;
446     my $rg = $self->_makeRecordGroup(%args);
447     $self->_selectRecordGroup($rg);
448     return ($rg);
449 }
450
451 # -----------------------------------------------------------------------------
452 # Per record update
453 # -----------------------------------------------------------------------------
454
455 sub update_record {
456     my ($self, %args) = @_;
457     $self->checkzh;
458     return(IDZebra::update_record($self->{zh},
459                                   $self->_record_update_args(%args)));
460 }
461
462 sub delete_record {
463     my ($self, %args) = @_;
464     $self->checkzh;
465     return(IDZebra::delete_record($self->{zh},
466                                   $self->_record_update_args(%args)));
467 }
468 sub _record_update_args {
469     my ($self, %args) = @_;
470
471     my $sysno   = $args{sysno}      ? $args{sysno}      : 0;
472     my $match   = $args{match}      ? $args{match}      : "";
473     my $rectype = $args{recordType} ? $args{recordType} : "";
474     my $fname   = $args{file}       ? $args{file}       : "<no file>";
475
476     my $buff;
477
478     if ($args{data}) {
479         $buff = $args{data};
480     } 
481     elsif ($args{file}) {
482         CORE::open (F, $args{file}) || warn ("Cannot open $args{file}");
483         $buff = join('',(<F>));
484         CORE::close (F);
485     }
486     my $len = length($buff);
487
488     delete ($args{sysno});
489     delete ($args{match});
490     delete ($args{recordType});
491     delete ($args{file});
492     delete ($args{data});
493
494     my $rg = $self->_makeRecordGroup(%args);
495
496     # If no record type is given, then try to find it out from the
497     # file extension;
498     unless ($rectype) {
499         if (my ($ext) = $fname =~ /\.(\w+)$/) {
500             my $rg2 = $self->_getRecordGroup($rg->{groupName},$ext);
501             $rectype = $rg2->{recordType};
502         } 
503     }
504
505     $rg->{databaseName} = "Default" unless ($rg->{databaseName});
506
507     unless ($rectype) {
508         $rectype="";
509     }
510     return ($rg, $rectype, $sysno, $match, $fname, $buff, $len);
511 }
512
513 # -----------------------------------------------------------------------------
514 # CQL stuff
515 sub cqlmap {
516     my ($self,$mapfile) = @_;
517     if ($#_ > 0) {
518         if ($self->{cql_mapfile} ne $mapfile) {
519             unless (-f $mapfile) {
520                 croak("Cannot find $mapfile");
521             }
522             if (defined ($self->{cql_ct})) {
523               IDZebra::cql_transform_close($self->{cql_ct});
524             }
525             $self->{cql_ct} = IDZebra::cql_transform_open_fname($mapfile);
526             $self->{cql_mapfile} = $mapfile;
527         }
528     }
529     return ($self->{cql_mapfile});
530 }
531
532 sub cql2pqf {
533     my ($self, $cqlquery) = @_;
534     unless (defined($self->{cql_ct})) {
535         croak("CQL map file is not specified yet.");
536     }
537     my $res = "\0" x 2048;
538     my $r = IDZebra::cql2pqf($self->{cql_ct}, $cqlquery, $res, 2048);
539     if ($r) {
540         carp ("Error transforming CQL query: '$cqlquery', status:$r");
541     }
542     $res=~s/\0.+$//g;
543     return ($res,$r); 
544 }
545
546
547 # -----------------------------------------------------------------------------
548 # Search 
549 # -----------------------------------------------------------------------------
550 sub search {
551     my ($self, %args) = @_;
552
553     $self->checkzh;
554
555     if ($args{cqlmap}) { $self->cqlmap($args{cqlmap}); }
556
557     my $query;
558     if ($args{pqf}) {
559         $query = $args{pqf};
560     }
561     elsif ($args{cql}) {
562         my $cqlstat;
563         ($query, $cqlstat) =  $self->cql2pqf($args{cql});
564         unless ($query) {
565             croak ("Failed to transform query: '$args{cql}', ".
566                    "status: ($cqlstat)");
567         }
568     }
569     unless ($query) {
570         croak ("No query given to search");
571     }
572
573     my @origdbs;
574
575     if ($args{databases}) {
576         @origdbs = $self->databases;
577         $self->databases(@{$args{databases}});
578     }
579
580     my $rsname = $args{rsname} ? $args{rsname} : $self->_new_setname;
581
582     my $rs = $self->_search_pqf($query, $rsname);
583
584     if ($args{databases}) {
585         $self->databases(@origdbs);
586     }
587
588     if ($args{sort}) {
589         if ($rs->errCode) {
590             carp("Sort skipped due to search error: ".
591                  $rs->errCode);
592         } else {
593             $rs->sort($args{sort});
594         }
595     }
596
597     return ($rs);
598 }
599
600 sub _new_setname {
601     my ($self) = @_;
602     return ("set_".$self->{rscount}++);
603 }
604
605 sub _search_pqf {
606     my ($self, $query, $setname) = @_;
607
608     my $hits = IDZebra::search_PQF($self->{zh},
609                                    $self->{odr_input},
610                                    $self->{odr_output},
611                                    $query,
612                                    $setname);
613
614     my $rs  = IDZebra::Resultset->new($self,
615                                       name        => $setname,
616                                       recordCount => $hits,
617                                       errCode     => $self->errCode,
618                                       errString   => $self->errString);
619     return($rs);
620 }
621
622 # -----------------------------------------------------------------------------
623 # Sort
624 #
625 # Sorting of multiple result sets is not supported by zebra...
626 # -----------------------------------------------------------------------------
627
628 sub sortResultsets {
629     my ($self, $sortspec, $setname, @sets) = @_;
630
631     $self->checkzh;
632
633     if ($#sets > 0) {
634         croak ("Sorting/merging of multiple resultsets is not supported now");
635     }
636
637     my @setnames;
638     my $count = 0;
639     foreach my $rs (@sets) {
640         push (@setnames, $rs->{name});
641         $count += $rs->{recordCount};  # is this really sure ??? It doesn't 
642                                        # matter now...
643     }
644
645     my $status = IDZebra::sort($self->{zh},
646                                $self->{odr_output},
647                                $sortspec,
648                                $setname,
649                                \@setnames);
650
651     my $errCode = $self->errCode;
652     my $errString = $self->errString;
653
654     logf (LOG_LOG, "Sort status $setname: %d, errCode: %d, errString: %s", 
655           $status, $errCode, $errString);
656
657     if ($status || $errCode) {$count = 0;}
658
659     my $rs  = IDZebra::Resultset->new($self,
660                                       name        => $setname,
661                                       recordCount => $count,
662                                       errCode     => $errCode,
663                                       errString   => $errString);
664     
665     return ($rs);
666 }
667 # -----------------------------------------------------------------------------
668 # Scan
669 # -----------------------------------------------------------------------------
670 sub scan {
671     my ($self, %args) = @_;
672
673     $self->checkzh;
674
675     unless ($args{expression}) {
676         croak ("No scan expression given");
677     }
678
679     my $sl = IDZebra::ScanList->new($self,%args);
680
681     return ($sl);
682 }
683
684 # ============================================================================
685
686
687 __END__
688
689 =head1 NAME
690
691 IDZebra::Session - A Zebra database server session for update and retrieval
692
693 =head1 SYNOPSIS
694
695   $sess = IDZebra::Session->new(configFile => 'demo/zebra.cfg');
696   $sess->open();
697
698   $sess = IDZebra::Session->open(configFile => 'demo/zebra.cfg',
699                                  groupName  => 'demo1');
700
701   $sess->group(groupName => 'demo2');
702
703   $sess->init();
704
705   $sess->begin_trans;
706
707   $sess->update(path      =>  'lib');
708
709   my $s1=$sess->update_record(data       => $rec1,
710                               recordType => 'grs.perl.pod',
711                               groupName  => "demo1",
712                               );
713
714   my $stat = $sess->end_trans;
715
716   $sess->databases('demo1','demo2');
717
718   my $rs1 = $sess->search(cqlmap    => 'demo/cql.map',
719                           cql       => 'dc.title=IDZebra',
720                           databases => [qw(demo1 demo2)]);
721   $sess->close;
722
723 =head1 DESCRIPTION
724
725 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. 
726
727 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. 
728
729 =head1 OPENING AND CLOSING A ZEBRA SESSIONS
730
731 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
732
733   $sess = IDZebra::Session->new(configFile => 'demo/zebra.cfg');
734   $sess->open();
735
736 or
737
738   $sess = IDZebra::Session->open(configFile => 'demo/zebra.cfg');
739
740 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:
741
742   $sess->close();
743
744 This will
745   - close all transactions
746   - destroy all result sets and scan lists 
747   - close the session
748
749 Note, that if I<shadow registers> are enabled, the changes will not be committed automatically.
750
751 In the future different database access methods are going to be available, 
752 like:
753
754   $sess = IDZebra::Session->open(server => 'ostrich.technomat.hu:9999');
755
756 You can also use the B<record group> arguments described below directly when calling the constructor, or the open method:
757
758   $sess = IDZebra::Session->open(configFile => 'demo/zebra.cfg',
759                                  groupName  => 'demo');
760
761
762 =head1 RECORD GROUPS 
763
764 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). 
765
766 For each open session a default record group is assigned. You can configure it in the constructor, or by the B<group> method:
767
768   $sess->group(groupName => ..., ...)
769
770 The following options are available:
771
772 =over 4
773
774 =item B<groupName>
775
776 This will select the named record group, and load the corresponding settings from the configuration file. All subsequent values will overwrite those...
777
778 =item B<databaseName>
779
780 The name of the (logical) database the updated records will belong to. 
781
782 =item B<path>
783
784 This path is used for directory updates (B<update>, B<delete> methods);
785  
786 =item B<recordId>
787
788 This option determines how to identify your records. See I<Zebra manual: Locating Records>
789
790 =item B<recordType>
791
792 The record type used for indexing. 
793
794 =item B<flagStoreData> 
795
796 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). 
797
798 =item B<flagStoreKeys>
799
800 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. 
801
802 =item B<flagRw>
803
804 ?
805
806 =item B<fileVerboseLimit>
807
808 Skip log messages, when doing a directory update, and the specified number of files are processed...
809
810 =item B<databaseNamePath>
811
812 ?
813
814 =item B<explainDatabase>
815
816 The name of the explain database to be used
817
818 =item B<followLinks>              
819
820 Follow links when doing directory update.
821
822 =back
823
824 You can use the same parameters calling all update methods.
825
826 =head1 TRANSACTIONS (READ / WRITE LOCKS)
827
828 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
829
830   $sess->begin_trans;
831
832 or 
833
834   $sess->begin_trans(TRANS_RW)
835
836 (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.
837
838 You can also use
839
840   $sess->begin_trans(TRANS_RO),
841
842 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:
843
844   $sess->begin_trans(TRANS_RO);
845   $sess->begin_tran(TRANS_RW); # invalid, die here
846   $sess->end_trans;
847   $sess->end_trans;
848
849 is invalid, but
850
851   $sess->begin_tran(TRANS_RW); 
852   $sess->begin_trans(TRANS_RO);
853   $sess->end_trans;
854   $sess->end_trans;
855
856 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.
857
858 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
859
860   $stat = $sess->end_trans;
861
862 The return value is a ZebraTransactionStatus object, containing the following members as a hash reference:
863
864   $stat->{processed} # Number of records processed
865   $stat->{updated}   # Number of records processed
866   $stat->{deleted}   # Number of records processed
867   $stat->{inserted}  # Number of records processed
868   $stat->{stime}     # System time used
869   $stat->{utime}     # User time used
870
871 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.
872
873 =head1 THE SHADOW REGISTERS
874
875 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. 
876
877 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. 
878
879 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. 
880
881 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:
882
883  $sess->shadow(1);
884
885 or disabled by
886
887  $sess->shadow(0);
888
889 If shadow system is enabled, then you have to commit changes you did, by calling:
890  
891  $sess->commit;
892
893 Note, that you can also determine shadow usage in the session constructor:
894
895  $sess = IDZebra::Session->open(configFile => 'demo/zebra.cfg',
896                                 shadow    => 1);
897  
898 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>.
899
900 =head1 UPDATING DATA
901
902 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:
903
904   $sess->update(path      =>  'lib');
905
906 This will update the database with the files in directory "lib", according to the current record group settings.
907
908   $sess->update();
909
910 This will update the database with the files, specified by the default record group setting. I<path> has to be specified there...
911
912   $sess->update(groupName => 'demo1',
913                 path      =>  'lib');
914
915 Update the database with files in "lib" according to the settings of group "demo1"
916
917   $sess->delete(groupName => 'demo1',
918                 path      =>  'lib');
919
920 Delete the records derived from the files in directory "lib", according to the "demo1" group settings. Sounds complex? Read zebra documentation about identifying records.
921
922 You can also update records one by one, even directly from the memory:
923
924   $sysno = $sess->update_record(data       => $rec1,
925                                 recordType => 'grs.perl.pod',
926                                 groupName  => "demo1");
927
928 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.
929
930 You can also index a single file:
931
932   $sysno = $sess->update_record(file => "lib/IDZebra/Data1.pm");
933
934 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):
935
936   $sysno = $sess->update_record(data => $rec1,
937                                 file => "lib/IDZebra/Data1.pm");
938
939 And some crazy stuff:
940
941   $sysno = $sess->delete_record(sysno => $sysno);
942
943 where sysno in itself is sufficient to identify the record
944
945   $sysno = $sess->delete_record(data => $rec1,
946                                 recordType => 'grs.perl.pod',
947                                 groupName  => "demo1");
948
949 This case the record is extracted, and if already exists, located in the database, then deleted... 
950
951   $sysno = $sess->delete_record(data       => $rec1,
952                                 match      => $myid,
953                                 recordType => 'grs.perl.pod',
954                                 groupName  => "demo1");
955
956 Don't try this at home! This case, the record identifier string (which is normally generated according to the rules set in recordId directive of zebra.cfg) is provided directly....
957
958
959 B<Important:> Note, that one record can be updated only once within a transaction - all subsequent updates are skipped. 
960
961 =head1 DATABASE SELECTION
962
963 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. 
964
965 For searching, you can select databases by calling:
966
967   $sess->databases('db1','db2');
968
969 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:
970   
971   @dblist = $sess->databases();
972
973 =head1 SEARCHING
974
975 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:
976
977   $rs = $sess->search(databases => [qw(demo1,demo2)], # optional
978                       pqf       => '@attr 1=4 computer');
979
980 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.
981
982 =head2 CCL searching
983
984 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. 
985
986 The CCL searching is not currently supported by this API.
987
988 =head2 CQL searching
989
990 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. 
991
992 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:
993
994   $sess->cqlmap($mapfile);
995
996 Or, you can directly provide the I<mapfile> parameter for the search:
997
998   $rs = $sess->search(cqlmap    => 'demo/cql.map',
999                       cql       => 'dc.title=IDZebra');
1000
1001 As you see, CQL searching is so simple: just give the query in the I<cql> parameter.
1002
1003 =head2 Sorting
1004
1005 If you'd like the search results to be sorted, use the I<sort> parameter:
1006
1007   $rs = $sess->search(cql       => 'IDZebra',
1008                       sort      => '1=4 ia');
1009   
1010 Note, that B<currently> this is (almost) equivalent to
1011
1012   $rs = $sess->search(cql       => 'IDZebra');
1013   $rs->sort('1=4 ia');
1014   
1015 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.
1016
1017 =head1 RESULTSETS
1018
1019 As you have seen, the result of the search request is a I<Resultset> object.
1020 It contains number of hits, and search status, and can be used to sort and retrieve the resulting records.
1021
1022   $count = $rs->count;
1023
1024   printf ("RS Status is %d (%s)\n", $rs->errCode, $rs->errString);
1025
1026 I<$rs-E<gt>errCode> is 0, if there were no errors during search. Read the I<IDZebra::Resultset> manpage for more details.
1027
1028 =head1 SCANNING
1029
1030 Zebra supports scanning index values. The result of the 
1031
1032   $sl = $sess->scan(expression => "a");
1033
1034 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:
1035
1036 B< a> (scan trough words of "default", "Any" indexes)
1037
1038
1039 B< @attr 1=1016 a> (same effect)
1040
1041
1042 B< @attr 1=4 @attr 6=2 a>  (scan trough titles as phrases)
1043
1044 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:
1045
1046   $sl = $sess->scan(expression => "a",
1047                     databases  => [qw(demo1 demo2)]);
1048   
1049 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.
1050
1051 =head1 SESSION STATUS AND ERRORS
1052
1053 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:
1054
1055 =over 4
1056
1057 =item B<errCode>
1058
1059 The Zebra provided error code... (for the result of the last call);
1060
1061 =item B<errString>
1062
1063 Error string corresponding to the message
1064
1065 =item B<errAdd>
1066
1067 Additional information for the status
1068
1069 =back
1070
1071 This functionality may change, see TODO.
1072
1073 =head1 LOGGING AND MISC. FUNCTIONS
1074
1075 Zebra provides logging facility for the internal events, and also for application developers trough the API. See manpage I<IDZebra::Logger> for details.
1076
1077 =over 4
1078
1079 =item B<IDZebra::LogFile($filename)>
1080
1081 Will set the output file for logging. By default it's STDERR;
1082
1083 =item B<IDZebra::LogLevel(15)>
1084
1085 Set log level. 0 for no logs. See IDZebra::Logger for usable flags.
1086
1087 =back
1088
1089 Some other functions
1090
1091 =over 4
1092
1093 =item B<$sess-E<gt>init>
1094
1095 Initialize, and clean registers. This will remove all data!
1096
1097 =item B<$sess-E<gt>compact>
1098
1099 Compact the registers (? does this work)
1100
1101 =item B<$sess-E<gt>show>
1102
1103 Doesn't have too much meaning. Don't try :)
1104
1105 =back
1106
1107 =head1 TODO
1108
1109 =over 4
1110
1111 =item B<Clean up error handling>
1112
1113 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.
1114
1115 =item B<Make the package self-distributable>
1116
1117 Build and link with installed header and library files
1118
1119 =item B<Testing>
1120
1121 Test shadow system, unicode...
1122
1123 =item B<C API>
1124
1125 Cleanup, arrange, remove redundancy
1126
1127 =back
1128
1129 =head1 COPYRIGHT
1130
1131 Fill in
1132
1133 =head1 AUTHOR
1134
1135 Peter Popovics, pop@technomat.hu
1136
1137 =head1 SEE ALSO
1138
1139 Zebra documentation, Zebra::ResultSet, Zebra::ScanList, Zebra::Logger manpages
1140
1141 =cut