zebraidx prints user/sys times
[idzebra-moved-to-github.git] / index / zebraapi.c
1 /*
2  * Copyright (C) 1995-2002, Index Data
3  * All rights reserved.
4  *
5  * $Id: zebraapi.c,v 1.58 2002-04-23 18:07:17 adam Exp $
6  */
7
8 #include <assert.h>
9 #include <stdio.h>
10 #ifdef WIN32
11 #include <io.h>
12 #include <process.h>
13 #include <direct.h>
14 #else
15 #include <unistd.h>
16 #endif
17
18 #include <yaz/diagbib1.h>
19 #include "index.h"
20 #include <charmap.h>
21
22 static Res zebra_open_res (ZebraHandle zh);
23 static void zebra_close_res (ZebraHandle zh);
24
25 static void zebra_chdir (ZebraService zh)
26 {
27     const char *dir = res_get (zh->global_res, "chdir");
28     if (!dir)
29         return;
30     logf (LOG_DEBUG, "chdir %s", dir);
31 #ifdef WIN32
32     _chdir(dir);
33 #else
34     chdir (dir);
35 #endif
36 }
37
38 static void zebra_flush_reg (ZebraHandle zh)
39 {
40     zebraExplain_flush (zh->reg->zei, 1, zh);
41     
42     extract_flushWriteKeys (zh);
43     zebra_index_merge (zh);
44 }
45
46 static struct zebra_register *zebra_register_open (ZebraService zs, 
47                                                    const char *name,
48                                                    int rw, int useshadow,
49                                                    Res res,
50                                                    const char *reg_path);
51 static void zebra_register_close (ZebraService zs, struct zebra_register *reg);
52
53 static int zebra_begin_read (ZebraHandle zh);
54 static void zebra_end_read (ZebraHandle zh);
55
56 ZebraHandle zebra_open (ZebraService zs)
57 {
58     ZebraHandle zh;
59
60     if (!zs)
61         return 0;
62
63     zh = (ZebraHandle) xmalloc (sizeof(*zh));
64     yaz_log (LOG_LOG, "zebra_open zs=%p returns %p", zs, zh);
65
66     zh->service = zs;
67     zh->reg = 0;          /* no register attached yet */
68     zh->sets = 0;
69     zh->destroyed = 0;
70     zh->errCode = 0;
71     zh->errString = 0;
72     zh->res = 0;
73
74     zh->reg_name = xstrdup ("");
75     zh->path_reg = 0;
76     zh->num_basenames = 0;
77     zh->basenames = 0;
78
79     zh->trans_no = 0;
80
81     zh->lock_normal = 0;
82     zh->lock_shadow = 0;
83
84     zh->admin_databaseName = 0;
85
86     zh->shadow_enable = 1;
87
88     zebra_mutex_cond_lock (&zs->session_lock);
89
90     zh->next = zs->sessions;
91     zs->sessions = zh;
92
93     zebra_mutex_cond_unlock (&zs->session_lock);
94
95     return zh;
96 }
97
98 ZebraService zebra_start (const char *configName)
99 {
100     Res res;
101
102     yaz_log (LOG_LOG, "zebra_start %s", configName);
103
104     if (!(res = res_open (configName, 0)))
105         yaz_log (LOG_WARN, "Cannot read resources `%s'", configName);
106     else
107     {
108         ZebraService zh = xmalloc (sizeof(*zh));
109
110         yaz_log (LOG_LOG, "Read resources `%s'", configName);
111         
112         zh->global_res = res;
113         zh->configName = xstrdup(configName);
114         zh->sessions = 0;
115         
116         zebra_chdir (zh);
117         
118         zebra_mutex_cond_init (&zh->session_lock);
119         if (!res_get (zh->global_res, "passwd"))
120             zh->passwd_db = NULL;
121         else
122         {
123             zh->passwd_db = passwd_db_open ();
124             if (!zh->passwd_db)
125                 logf (LOG_WARN|LOG_ERRNO, "passwd_db_open failed");
126             else
127                 passwd_db_file (zh->passwd_db,
128                                 res_get (zh->global_res, "passwd"));
129         }
130         zh->path_root = res_get (zh->global_res, "root");
131         return zh;
132     }
133     return 0;
134 }
135
136 static
137 struct zebra_register *zebra_register_open (ZebraService zs, const char *name,
138                                             int rw, int useshadow, Res res,
139                                             const char *reg_path)
140 {
141     struct zebra_register *reg;
142     int record_compression = REC_COMPRESS_NONE;
143     char *recordCompression = 0;
144
145     reg = xmalloc (sizeof(*reg));
146
147     assert (name);
148     reg->name = xstrdup (name);
149
150     reg->seqno = 0;
151     reg->last_val = 0;
152
153     assert (res);
154
155     yaz_log (LOG_LOG, "zebra_register_open rw = %d useshadow=%d p=%p",
156              rw, useshadow, reg);
157
158     reg->dh = data1_create ();
159     if (!reg->dh)
160         return 0;
161     reg->bfs = bfs_create (res_get (res, "register"), reg_path);
162     if (!reg->bfs)
163     {
164         data1_destroy(reg->dh);
165         return 0;
166     }
167     if (useshadow)
168         bf_cache (reg->bfs, res_get (res, "shadow"));
169     data1_set_tabpath (reg->dh, res_get(res, "profilePath"));
170     data1_set_tabroot (reg->dh, reg_path);
171     reg->recTypes = recTypes_init (reg->dh);
172     recTypes_default_handlers (reg->recTypes);
173
174     reg->zebra_maps = zebra_maps_open (res, reg_path);
175     reg->rank_classes = NULL;
176
177     reg->key_buf = 0;
178
179     reg->keys.buf_max = 0;
180     reg->keys.buf = 0;
181
182     reg->records = 0;
183     reg->dict = 0;
184     reg->sortIdx = 0;
185     reg->isams = 0;
186     reg->matchDict = 0;
187     reg->isam = 0;
188     reg->isamc = 0;
189     reg->isamd = 0;
190     reg->isamb = 0;
191     reg->zei = 0;
192     reg->matchDict = 0;
193     
194     zebraRankInstall (reg, rank1_class);
195
196     recordCompression = res_get_def (res, "recordCompression", "none");
197     if (!strcmp (recordCompression, "none"))
198         record_compression = REC_COMPRESS_NONE;
199     if (!strcmp (recordCompression, "bzip2"))
200         record_compression = REC_COMPRESS_BZIP2;
201
202     if (!(reg->records = rec_open (reg->bfs, rw, record_compression)))
203     {
204         logf (LOG_WARN, "rec_open");
205         return 0;
206     }
207     if (rw)
208     {
209         reg->matchDict = dict_open (reg->bfs, GMATCH_DICT, 20, 1, 0);
210     }
211     if (!(reg->dict = dict_open (reg->bfs, FNAME_DICT, 40, rw, 0)))
212     {
213         logf (LOG_WARN, "dict_open");
214         return 0;
215     }
216     if (!(reg->sortIdx = sortIdx_open (reg->bfs, rw)))
217     {
218         logf (LOG_WARN, "sortIdx_open");
219         return 0;
220     }
221     if (res_get_match (res, "isam", "s", ISAM_DEFAULT))
222     {
223         struct ISAMS_M_s isams_m;
224         if (!(reg->isams = isams_open (reg->bfs, FNAME_ISAMS, rw,
225                                       key_isams_m(res, &isams_m))))
226         {
227             logf (LOG_WARN, "isams_open");
228             return 0;
229         }
230     }
231     if (res_get_match (res, "isam", "i", ISAM_DEFAULT))
232     {
233         if (!(reg->isam = is_open (reg->bfs, FNAME_ISAM, key_compare, rw,
234                                   sizeof (struct it_key), res)))
235         {
236             logf (LOG_WARN, "is_open");
237             return 0;
238         }
239     }
240     if (res_get_match (res, "isam", "c", ISAM_DEFAULT))
241     {
242         struct ISAMC_M_s isamc_m;
243         if (!(reg->isamc = isc_open (reg->bfs, FNAME_ISAMC,
244                                     rw, key_isamc_m(res, &isamc_m))))
245         {
246             logf (LOG_WARN, "isc_open");
247             return 0;
248         }
249     }
250     if (res_get_match (res, "isam", "d", ISAM_DEFAULT))
251     {
252         struct ISAMD_M_s isamd_m;
253         
254         if (!(reg->isamd = isamd_open (reg->bfs, FNAME_ISAMD,
255                                       rw, key_isamd_m(res, &isamd_m))))
256         {
257             logf (LOG_WARN, "isamd_open");
258             return 0;
259         }
260     }
261     if (res_get_match (res, "isam", "b", ISAM_DEFAULT))
262     {
263         struct ISAMC_M_s isamc_m;
264         
265         if (!(reg->isamb = isamb_open (reg->bfs, "isamb",
266                                        rw, key_isamc_m(res, &isamc_m))))
267         {
268             logf (LOG_WARN, "isamb_open");
269             return 0;
270         }
271     }
272     reg->zei = zebraExplain_open (reg->records, reg->dh,
273                                   res, rw, reg,
274                                   explain_extract);
275     if (!reg->zei)
276     {
277         logf (LOG_WARN, "Cannot obtain EXPLAIN information");
278         return 0;
279     }
280     reg->active = 2;
281     yaz_log (LOG_LOG, "zebra_register_open ok p=%p", reg);
282     return reg;
283 }
284
285 void zebra_admin_shutdown (ZebraHandle zh)
286 {
287     zebra_mutex_cond_lock (&zh->service->session_lock);
288     zh->service->stop_flag = 1;
289     zebra_mutex_cond_unlock (&zh->service->session_lock);
290 }
291
292 void zebra_admin_start (ZebraHandle zh)
293 {
294     ZebraService zs = zh->service;
295     zh->errCode = 0;
296     zebra_mutex_cond_lock (&zs->session_lock);
297     zebra_mutex_cond_unlock (&zs->session_lock);
298 }
299
300 static void zebra_register_close (ZebraService zs, struct zebra_register *reg)
301 {
302     yaz_log(LOG_LOG, "zebra_register_close p=%p", reg);
303     reg->stop_flag = 0;
304     zebra_chdir (zs);
305     if (reg->records)
306     {
307         zebraExplain_close (reg->zei, 0);
308         dict_close (reg->dict);
309         if (reg->matchDict)
310             dict_close (reg->matchDict);
311         sortIdx_close (reg->sortIdx);
312         if (reg->isams)
313             isams_close (reg->isams);
314         if (reg->isam)
315             is_close (reg->isam);
316         if (reg->isamc)
317             isc_close (reg->isamc);
318         if (reg->isamd)
319             isamd_close (reg->isamd);
320         if (reg->isamb)
321             isamb_close (reg->isamb);
322         rec_close (&reg->records);
323     }
324
325     recTypes_destroy (reg->recTypes);
326     zebra_maps_close (reg->zebra_maps);
327     zebraRankDestroy (reg);
328     bfs_destroy (reg->bfs);
329     data1_destroy (reg->dh);
330
331     xfree (reg->key_buf);
332     xfree (reg->name);
333     xfree (reg);
334     yaz_log (LOG_LOG, "zebra_register_close 2");
335 }
336
337 void zebra_stop(ZebraService zs)
338 {
339     if (!zs)
340         return ;
341     yaz_log (LOG_LOG, "zebra_stop");
342
343     zebra_mutex_cond_lock (&zs->session_lock);
344     while (zs->sessions)
345     {
346         zebra_close (zs->sessions);
347     }
348         
349     zebra_mutex_cond_unlock (&zs->session_lock);
350
351     zebra_mutex_cond_destroy (&zs->session_lock);
352
353     if (zs->passwd_db)
354         passwd_db_close (zs->passwd_db);
355
356     res_close (zs->global_res);
357     xfree (zs->configName);
358     xfree (zs->path_root);
359     xfree (zs);
360 }
361
362 void zebra_close (ZebraHandle zh)
363 {
364     ZebraService zs;
365     struct zebra_session **sp;
366
367     if (!zh)
368         return;
369
370     zs = zh->service;
371     yaz_log (LOG_LOG, "zebra_close zh=%p", zh);
372     if (!zh)
373         return ;
374     resultSetDestroy (zh, -1, 0, 0);
375
376
377     if (zh->reg)
378         zebra_register_close (zh->service, zh->reg);
379     zebra_close_res (zh);
380
381     xfree (zh->admin_databaseName);
382     zebra_mutex_cond_lock (&zs->session_lock);
383     zebra_lock_destroy (zh->lock_normal);
384     zebra_lock_destroy (zh->lock_shadow);
385     sp = &zs->sessions;
386     while (1)
387     {
388         assert (*sp);
389         if (*sp == zh)
390         {
391             *sp = (*sp)->next;
392             break;
393         }
394         sp = &(*sp)->next;
395     }
396 //    if (!zs->sessions && zs->stop_flag)
397 //      zebra_register_deactivate(zs);
398     zebra_mutex_cond_unlock (&zs->session_lock);
399     xfree (zh->reg_name);
400     xfree (zh);
401 }
402
403 struct map_baseinfo {
404     ZebraHandle zh;
405     NMEM mem;
406     int num_bases;
407     char **basenames;
408     int new_num_bases;
409     char **new_basenames;
410     int new_num_max;
411 };
412
413 static Res zebra_open_res (ZebraHandle zh)
414 {
415     Res res = 0;
416     char fname[512];
417     if (zh->path_reg)
418     {
419         sprintf (fname, "%.200s/zebra.cfg", zh->path_reg);
420         res = res_open (fname, zh->service->global_res);
421         if (!res)
422             res = zh->service->global_res;
423     }
424     else if (*zh->reg_name == 0)
425     {
426         res = zh->service->global_res;
427     }
428     else
429     {
430         yaz_log (LOG_WARN, "no register root specified");
431         return 0;  /* no path for register - fail! */
432     }
433     return res;
434 }
435
436 static void zebra_close_res (ZebraHandle zh)
437 {
438     if (zh->res != zh->service->global_res)
439         res_close (zh->res);
440     zh->res = 0;
441 }
442
443 static int zebra_select_register (ZebraHandle zh, const char *new_reg)
444 {
445     if (zh->res && strcmp (zh->reg_name, new_reg) == 0)
446         return 0;
447     if (!zh->res)
448     {
449         assert (zh->reg == 0);
450         assert (*zh->reg_name == 0);
451     }
452     else
453     {
454         if (zh->reg)
455         {
456             resultSetInvalidate (zh);
457             zebra_register_close (zh->service, zh->reg);
458             zh->reg = 0;
459         }
460         zebra_close_res(zh);
461     }
462     xfree (zh->reg_name);
463     zh->reg_name = xstrdup (new_reg);
464
465     xfree (zh->path_reg);
466     zh->path_reg = 0;
467     if (zh->service->path_root)
468     {
469         zh->path_reg = xmalloc (strlen(zh->service->path_root) + 
470                                 strlen(zh->reg_name) + 3);
471         strcpy (zh->path_reg, zh->service->path_root);
472         if (*zh->reg_name)
473         {
474             strcat (zh->path_reg, "/");
475             strcat (zh->path_reg, zh->reg_name);
476         }
477     }
478     zh->res = zebra_open_res (zh);
479     
480     if (zh->lock_normal)
481         zebra_lock_destroy (zh->lock_normal);
482     zh->lock_normal = 0;
483
484     if (zh->lock_shadow)
485         zebra_lock_destroy (zh->lock_shadow);
486     zh->lock_shadow = 0;
487
488     if (zh->res)
489     {
490         char fname[512];
491         const char *lock_area  =res_get (zh->res, "lockDir");
492         
493         if (!lock_area && zh->path_reg)
494             res_put (zh->res, "lockDir", zh->path_reg);
495         sprintf (fname, "norm.%s.LCK", zh->reg_name);
496         zh->lock_normal =
497             zebra_lock_create (res_get(zh->res, "lockDir"), fname, 0);
498         
499         sprintf (fname, "shadow.%s.LCK", zh->reg_name);
500         zh->lock_shadow =
501             zebra_lock_create (res_get(zh->res, "lockDir"), fname, 0);
502
503     }
504     return 1;
505 }
506
507 void map_basenames_func (void *vp, const char *name, const char *value)
508 {
509     struct map_baseinfo *p = (struct map_baseinfo *) vp;
510     int i, no;
511     char fromdb[128], todb[8][128];
512     
513     no =
514         sscanf (value, "%127s %127s %127s %127s %127s %127s %127s %127s %127s",
515                 fromdb, todb[0], todb[1], todb[2], todb[3], todb[4],
516                 todb[5], todb[6], todb[7]);
517     if (no < 2)
518         return ;
519     no--;
520     for (i = 0; i<p->num_bases; i++)
521         if (p->basenames[i] && !strcmp (p->basenames[i], fromdb))
522         {
523             p->basenames[i] = 0;
524             for (i = 0; i < no; i++)
525             {
526                 if (p->new_num_bases == p->new_num_max)
527                     return;
528                 p->new_basenames[(p->new_num_bases)++] = 
529                     nmem_strdup (p->mem, todb[i]);
530             }
531             return;
532         }
533 }
534
535 void map_basenames (ZebraHandle zh, ODR stream,
536                     int *num_bases, char ***basenames)
537 {
538     struct map_baseinfo info;
539     struct map_baseinfo *p = &info;
540     int i;
541
542     info.zh = zh;
543     info.num_bases = *num_bases;
544     info.basenames = *basenames;
545     info.new_num_max = 128;
546     info.new_num_bases = 0;
547     info.new_basenames = (char **)
548         odr_malloc (stream, sizeof(*info.new_basenames) * info.new_num_max);
549     info.mem = stream->mem;
550
551     res_trav (zh->service->global_res, "mapdb", &info, map_basenames_func);
552     
553     for (i = 0; i<p->num_bases; i++)
554         if (p->basenames[i] && p->new_num_bases < p->new_num_max)
555         {
556             p->new_basenames[(p->new_num_bases)++] = 
557                 nmem_strdup (p->mem, p->basenames[i]);
558         }
559     *num_bases = info.new_num_bases;
560     *basenames = info.new_basenames;
561     for (i = 0; i<*num_bases; i++)
562         logf (LOG_LOG, "base %s", (*basenames)[i]);
563 }
564
565 int zebra_select_database (ZebraHandle zh, const char *basename)
566 {
567     return zebra_select_databases (zh, 1, &basename);
568 }
569
570 int zebra_select_databases (ZebraHandle zh, int num_bases,
571                             const char **basenames)
572 {
573     int i;
574     const char *cp;
575     int len = 0;
576     char *new_reg = 0;
577     
578     if (num_bases < 1)
579     {
580         zh->errCode = 23;
581         return -1;
582     }
583     for (i = 0; i < zh->num_basenames; i++)
584         xfree (zh->basenames[i]);
585     xfree (zh->basenames);
586     
587     zh->num_basenames = num_bases;
588     zh->basenames = xmalloc (zh->num_basenames * sizeof(*zh->basenames));
589     for (i = 0; i < zh->num_basenames; i++)
590         zh->basenames[i] = xstrdup (basenames[i]);
591
592     cp = strrchr(basenames[0], '/');
593     if (cp)
594     {
595         len = cp - basenames[0];
596         new_reg = xmalloc (len + 1);
597         memcpy (new_reg, basenames[0], len);
598         new_reg[len] = '\0';
599     }
600     else
601         new_reg = xstrdup ("");
602     for (i = 1; i<num_bases; i++)
603     {
604         const char *cp1;
605
606         cp1 = strrchr (basenames[i], '/');
607         if (cp)
608         {
609             if (!cp1)
610             {
611                 zh->errCode = 23;
612                 return -1;
613             }
614             if (len != cp1 - basenames[i] ||
615                 memcmp (basenames[i], new_reg, len))
616             {
617                 zh->errCode = 23;
618                 return -1;
619             }
620         }
621         else
622         {
623             if (cp1)
624             {
625                 zh->errCode = 23;
626                 return -1;
627             }
628         }
629     }
630     zebra_select_register (zh, new_reg);
631     xfree (new_reg);
632     if (!zh->res)
633     {
634         zh->errCode = 109;
635         return -1;
636     }
637     return 0;
638 }
639
640 void zebra_search_rpn (ZebraHandle zh, ODR decode, ODR stream,
641                        Z_RPNQuery *query, const char *setname, int *hits)
642 {
643     zh->hits = 0;
644     *hits = 0;
645
646     if (zebra_begin_read (zh))
647         return;
648     resultSetAddRPN (zh, decode, stream, query, 
649                      zh->num_basenames, zh->basenames, setname);
650
651     zebra_end_read (zh);
652
653     *hits = zh->hits;
654 }
655
656 void zebra_records_retrieve (ZebraHandle zh, ODR stream,
657                              const char *setname, Z_RecordComposition *comp,
658                              oid_value input_format, int num_recs,
659                              ZebraRetrievalRecord *recs)
660 {
661     ZebraPosSet poset;
662     int i, *pos_array;
663
664     if (!zh->res)
665     {
666         zh->errCode = 30;
667         zh->errString = odr_strdup (stream, setname);
668         return;
669     }
670
671     if (zebra_begin_read (zh))
672         return;
673
674     pos_array = (int *) xmalloc (num_recs * sizeof(*pos_array));
675     for (i = 0; i<num_recs; i++)
676         pos_array[i] = recs[i].position;
677     poset = zebraPosSetCreate (zh, setname, num_recs, pos_array);
678     if (!poset)
679     {
680         logf (LOG_DEBUG, "zebraPosSetCreate error");
681         zh->errCode = 30;
682         zh->errString = nmem_strdup (stream->mem, setname);
683     }
684     else
685     {
686         for (i = 0; i<num_recs; i++)
687         {
688             if (poset[i].term)
689             {
690                 recs[i].errCode = 0;
691                 recs[i].format = VAL_SUTRS;
692                 recs[i].len = strlen(poset[i].term);
693                 recs[i].buf = poset[i].term;
694                 recs[i].base = poset[i].db;
695             }
696             else if (poset[i].sysno)
697             {
698                 recs[i].errCode =
699                     zebra_record_fetch (zh, poset[i].sysno, poset[i].score,
700                                         stream, input_format, comp,
701                                         &recs[i].format, &recs[i].buf,
702                                         &recs[i].len,
703                                         &recs[i].base);
704                 recs[i].errString = NULL;
705             }
706             else
707             {
708                 char num_str[20];
709
710                 sprintf (num_str, "%d", pos_array[i]);  
711                 zh->errCode = 13;
712                 zh->errString = odr_strdup (stream, num_str);
713                 break;
714             }
715         }
716         zebraPosSetDestroy (zh, poset, num_recs);
717     }
718     zebra_end_read (zh);
719     xfree (pos_array);
720 }
721
722 void zebra_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
723                  oid_value attributeset,
724                  int *position, int *num_entries, ZebraScanEntry **entries,
725                  int *is_partial)
726 {
727     if (zebra_begin_read (zh))
728     {
729         *entries = 0;
730         *num_entries = 0;
731         return;
732     }
733     rpn_scan (zh, stream, zapt, attributeset,
734               zh->num_basenames, zh->basenames, position,
735               num_entries, entries, is_partial);
736     zebra_end_read (zh);
737 }
738
739 void zebra_sort (ZebraHandle zh, ODR stream,
740                  int num_input_setnames, const char **input_setnames,
741                  const char *output_setname, Z_SortKeySpecList *sort_sequence,
742                  int *sort_status)
743 {
744     if (zebra_begin_read (zh))
745         return;
746     resultSetSort (zh, stream->mem, num_input_setnames, input_setnames,
747                    output_setname, sort_sequence, sort_status);
748     zebra_end_read(zh);
749 }
750
751 int zebra_deleleResultSet(ZebraHandle zh, int function,
752                           int num_setnames, char **setnames,
753                           int *statuses)
754 {
755     int i, status;
756     if (zebra_begin_read(zh))
757         return Z_DeleteStatus_systemProblemAtTarget;
758     switch (function)
759     {
760     case Z_DeleteRequest_list:
761         resultSetDestroy (zh, num_setnames, setnames, statuses);
762         break;
763     case Z_DeleteRequest_all:
764         resultSetDestroy (zh, -1, 0, statuses);
765         break;
766     }
767     zebra_end_read (zh);
768     status = Z_DeleteStatus_success;
769     for (i = 0; i<num_setnames; i++)
770         if (statuses[i] == Z_DeleteStatus_resultSetDidNotExist)
771             status = statuses[i];
772     return status;
773 }
774
775 int zebra_errCode (ZebraHandle zh)
776 {
777     return zh->errCode;
778 }
779
780 const char *zebra_errString (ZebraHandle zh)
781 {
782     return diagbib1_str (zh->errCode);
783 }
784
785 char *zebra_errAdd (ZebraHandle zh)
786 {
787     return zh->errString;
788 }
789
790 int zebra_auth (ZebraHandle zh, const char *user, const char *pass)
791 {
792     ZebraService zs = zh->service;
793     if (!zs->passwd_db || !passwd_db_auth (zs->passwd_db, user, pass))
794     {
795         logf(LOG_APP,"AUTHOK:%s", user?user:"ANONYMOUS");
796         return 0;
797     }
798
799     logf(LOG_APP,"AUTHFAIL:%s", user?user:"ANONYMOUS");
800     return 1;
801 }
802
803 void zebra_admin_import_begin (ZebraHandle zh, const char *database)
804 {
805     zebra_begin_trans (zh);
806     xfree (zh->admin_databaseName);
807     zh->admin_databaseName = xstrdup(database);
808 }
809
810 void zebra_admin_import_end (ZebraHandle zh)
811 {
812     zebra_end_trans (zh);
813 }
814
815 void zebra_admin_import_segment (ZebraHandle zh, Z_Segment *segment)
816 {
817     int sysno;
818     int i;
819     for (i = 0; i<segment->num_segmentRecords; i++)
820     {
821         Z_NamePlusRecord *npr = segment->segmentRecords[i];
822         const char *databaseName = npr->databaseName;
823
824         if (!databaseName)
825             databaseName = zh->admin_databaseName;
826         printf ("--------------%d--------------------\n", i);
827         if (npr->which == Z_NamePlusRecord_intermediateFragment)
828         {
829             Z_FragmentSyntax *fragment = npr->u.intermediateFragment;
830             if (fragment->which == Z_FragmentSyntax_notExternallyTagged)
831             {
832                 Odr_oct *oct = fragment->u.notExternallyTagged;
833                 printf ("%.*s", (oct->len > 100 ? 100 : oct->len) ,
834                         oct->buf);
835                 
836                 sysno = 0;
837                 extract_rec_in_mem (zh, "grs.sgml",
838                                     oct->buf, oct->len,
839                                     databaseName,
840                                     0 /* delete_flag */,
841                                     0 /* test_mode */,
842                                     &sysno /* sysno */,
843                                     1 /* store_keys */,
844                                     1 /* store_data */,
845                                     0 /* match criteria */);
846             }
847         }
848     }
849 }
850
851 void zebra_admin_create (ZebraHandle zh, const char *database)
852 {
853     ZebraService zs;
854
855     zebra_begin_trans (zh);
856
857     zs = zh->service;
858     /* announce database */
859     if (zebraExplain_newDatabase (zh->reg->zei, database, 0 
860                                   /* explainDatabase */))
861     {
862         zh->errCode = 224;
863         zh->errString = "Database already exist";
864     }
865     zebra_end_trans (zh);
866 }
867
868 int zebra_string_norm (ZebraHandle zh, unsigned reg_id,
869                        const char *input_str, int input_len,
870                        char *output_str, int output_len)
871 {
872     WRBUF wrbuf;
873     if (!zh->reg->zebra_maps)
874         return -1;
875     wrbuf = zebra_replace(zh->reg->zebra_maps, reg_id, "",
876                           input_str, input_len);
877     if (!wrbuf)
878         return -2;
879     if (wrbuf_len(wrbuf) >= output_len)
880         return -3;
881     if (wrbuf_len(wrbuf))
882         memcpy (output_str, wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
883     output_str[wrbuf_len(wrbuf)] = '\0';
884     return wrbuf_len(wrbuf);
885 }
886
887
888 void zebra_set_state (ZebraHandle zh, int val, int seqno)
889 {
890     char state_fname[256];
891     char *fname;
892     long p = getpid();
893     FILE *f;
894
895     sprintf (state_fname, "state.%s.LCK", zh->reg_name);
896     fname = zebra_mk_fname (res_get(zh->res, "lockDir"), state_fname);
897     f = fopen (fname, "w");
898
899     yaz_log (LOG_LOG, "%c %d %ld", val, seqno, p);
900     fprintf (f, "%c %d %ld\n", val, seqno, p);
901     fclose (f);
902     xfree (fname);
903 }
904
905 void zebra_get_state (ZebraHandle zh, char *val, int *seqno)
906 {
907     char state_fname[256];
908     char *fname;
909     FILE *f;
910
911     sprintf (state_fname, "state.%s.LCK", zh->reg_name);
912     fname = zebra_mk_fname (res_get(zh->res, "lockDir"), state_fname);
913     f = fopen (fname, "r");
914     *val = 'o';
915     *seqno = 0;
916
917     if (f)
918     {
919         fscanf (f, "%c %d", val, seqno);
920         fclose (f);
921     }
922     xfree (fname);
923 }
924
925 static int zebra_begin_read (ZebraHandle zh)
926 {
927     int dirty = 0;
928     char val;
929     int seqno;
930
931     assert (zh->res);
932
933     (zh->trans_no)++;
934
935     if (zh->trans_no != 1)
936     {
937         zebra_flush_reg (zh);
938         return 0;
939     }
940 #if HAVE_SYS_TIMES_H
941     times (&zh->tms1);
942 #endif
943     if (!zh->res)
944     {
945         (zh->trans_no)--;
946         zh->errCode = 109;
947         return -1;
948     }
949     zebra_get_state (zh, &val, &seqno);
950     if (val == 'd')
951         val = 'o';
952
953     if (!zh->reg)
954         dirty = 1;
955     else if (seqno != zh->reg->seqno)
956     {
957         yaz_log (LOG_LOG, "reopen seqno cur/old %d/%d",
958                  seqno, zh->reg->seqno);
959         dirty = 1;
960     }
961     else if (zh->reg->last_val != val)
962     {
963         yaz_log (LOG_LOG, "reopen last cur/old %d/%d",
964                  val, zh->reg->last_val);
965         dirty = 1;
966     }
967     if (!dirty)
968         return 0;
969
970     if (val == 'c')
971         zebra_lock_r (zh->lock_shadow);
972     else
973         zebra_lock_r (zh->lock_normal);
974     
975     if (zh->reg)
976         zebra_register_close (zh->service, zh->reg);
977     zh->reg = zebra_register_open (zh->service, zh->reg_name,
978                                    0, val == 'c' ? 1 : 0,
979                                    zh->res, zh->path_reg);
980     if (!zh->reg)
981     {
982         zh->errCode = 109;
983         return -1;
984     }
985     zh->reg->last_val = val;
986     zh->reg->seqno = seqno;
987
988     return 0;
989 }
990
991 static void zebra_end_read (ZebraHandle zh)
992 {
993     (zh->trans_no)--;
994
995     if (zh->trans_no != 0)
996         return;
997
998 #if HAVE_SYS_TIMES_H
999     times (&zh->tms2);
1000     logf (LOG_LOG, "user/system: %ld/%ld",
1001                     (long) (zh->tms2.tms_utime - zh->tms1.tms_utime),
1002                     (long) (zh->tms2.tms_stime - zh->tms1.tms_stime));
1003
1004 #endif
1005
1006     zebra_unlock (zh->lock_normal);
1007     zebra_unlock (zh->lock_shadow);
1008 }
1009
1010 void zebra_begin_trans (ZebraHandle zh)
1011 {
1012     int pass;
1013     int seqno = 0;
1014     char val = '?';
1015     const char *rval = 0;
1016
1017     assert (zh->res);
1018
1019     (zh->trans_no++);
1020     if (zh->trans_no != 1)
1021     {
1022         return;
1023     }
1024     
1025     yaz_log (LOG_LOG, "zebra_begin_trans");
1026
1027     zh->records_inserted = 0;
1028     zh->records_updated = 0;
1029     zh->records_deleted = 0;
1030     zh->records_processed = 0;
1031
1032 #if HAVE_SYS_TIMES_H
1033     times (&zh->tms1);
1034 #endif
1035     
1036     /* lock */
1037     if (zh->shadow_enable)
1038         rval = res_get (zh->res, "shadow");
1039
1040     for (pass = 0; pass < 2; pass++)
1041     {
1042         if (rval)
1043         {
1044             zebra_lock_r (zh->lock_normal);
1045             zebra_lock_w (zh->lock_shadow);
1046         }
1047         else
1048         {
1049             zebra_lock_w (zh->lock_normal);
1050             zebra_lock_w (zh->lock_shadow);
1051         }
1052         
1053         zebra_get_state (zh, &val, &seqno);
1054         if (val == 'c')
1055         {
1056             yaz_log (LOG_LOG, "previous transaction didn't finish commit");
1057             zebra_unlock (zh->lock_shadow);
1058             zebra_unlock (zh->lock_normal);
1059             zebra_commit (zh);
1060             continue;
1061         }
1062         else if (val == 'd')
1063         {
1064             if (rval)
1065             {
1066                 BFiles bfs = bfs_create (res_get (zh->res, "shadow"),
1067                                          zh->path_reg);
1068                 yaz_log (LOG_LOG, "previous transaction didn't reach commit");
1069                 bf_commitClean (bfs, rval);
1070                 bfs_destroy (bfs);
1071             }
1072             else
1073             {
1074                 yaz_log (LOG_WARN, "your previous transaction didn't finish");
1075             }
1076         }
1077         break;
1078     }
1079     if (pass == 2)
1080     {
1081         yaz_log (LOG_FATAL, "zebra_begin_trans couldn't finish commit");
1082         abort();
1083         return;
1084     }
1085     zebra_set_state (zh, 'd', seqno);
1086
1087     zh->reg = zebra_register_open (zh->service, zh->reg_name,
1088                                    1, rval ? 1 : 0, zh->res,
1089                                    zh->path_reg);
1090
1091     zh->reg->seqno = seqno;
1092 }
1093
1094 void zebra_end_trans (ZebraHandle zh)
1095 {
1096     char val;
1097     int seqno;
1098     const char *rval;
1099
1100     zh->trans_no--;
1101     if (zh->trans_no != 0)
1102         return;
1103
1104     yaz_log (LOG_LOG, "zebra_end_trans");
1105     rval = res_get (zh->res, "shadow");
1106
1107     zebra_flush_reg (zh);
1108
1109     zebra_register_close (zh->service, zh->reg);
1110     zh->reg = 0;
1111
1112     
1113     yaz_log (LOG_LOG, "Records: %7d i/u/d %d/%d/%d", 
1114              zh->records_processed, zh->records_inserted,
1115              zh->records_updated, zh->records_deleted);
1116
1117     zebra_get_state (zh, &val, &seqno);
1118     if (val != 'd')
1119     {
1120         BFiles bfs = bfs_create (rval, zh->path_reg);
1121         yaz_log (LOG_LOG, "deleting shadow stuff val=%c", val);
1122         bf_commitClean (bfs, rval);
1123         bfs_destroy (bfs);
1124     }
1125     if (!rval)
1126         seqno++;
1127     zebra_set_state (zh, 'o', seqno);
1128
1129     zebra_unlock (zh->lock_shadow);
1130     zebra_unlock (zh->lock_normal);
1131
1132 #if HAVE_SYS_TIMES_H
1133     times (&zh->tms2);
1134     logf (LOG_LOG, "user/system: %ld/%ld",
1135                     (long) (zh->tms2.tms_utime - zh->tms1.tms_utime),
1136                     (long) (zh->tms2.tms_stime - zh->tms1.tms_stime));
1137
1138 #endif
1139 }
1140
1141 void zebra_repository_update (ZebraHandle zh)
1142 {
1143     zebra_begin_trans (zh);
1144     logf (LOG_LOG, "updating %s", zh->rGroup.path);
1145     repositoryUpdate (zh);    
1146     zebra_end_trans (zh);
1147 }
1148
1149 void zebra_repository_delete (ZebraHandle zh)
1150 {
1151     logf (LOG_LOG, "deleting %s", zh->rGroup.path);
1152     repositoryDelete (zh);
1153 }
1154
1155 void zebra_repository_show (ZebraHandle zh)
1156 {
1157     repositoryShow (zh);
1158 }
1159
1160 int zebra_commit (ZebraHandle zh)
1161 {
1162     int seqno;
1163     char val;
1164     const char *rval;
1165     BFiles bfs;
1166
1167     if (!zh->res)
1168     {
1169         zh->errCode = 109;
1170         return -1;
1171     }
1172     rval = res_get (zh->res, "shadow");    
1173     if (!rval)
1174     {
1175         logf (LOG_WARN, "Cannot perform commit");
1176         logf (LOG_WARN, "No shadow area defined");
1177         return 0;
1178     }
1179
1180     zebra_lock_w (zh->lock_normal);
1181     zebra_lock_r (zh->lock_shadow);
1182
1183     bfs = bfs_create (res_get (zh->res, "register"), zh->path_reg);
1184
1185     zebra_get_state (zh, &val, &seqno);
1186
1187     if (rval && *rval)
1188         bf_cache (bfs, rval);
1189     if (bf_commitExists (bfs))
1190     {
1191         zebra_set_state (zh, 'c', seqno);
1192
1193         logf (LOG_LOG, "commit start");
1194 #ifndef WIN32
1195         sleep (2);
1196 #endif
1197         bf_commitExec (bfs);
1198 #ifndef WIN32
1199         sync ();
1200 #endif
1201         logf (LOG_LOG, "commit clean");
1202         bf_commitClean (bfs, rval);
1203         seqno++;
1204         zebra_set_state (zh, 'o', seqno);
1205     }
1206     else
1207     {
1208         logf (LOG_LOG, "nothing to commit");
1209     }
1210     bfs_destroy (bfs);
1211
1212     zebra_unlock (zh->lock_shadow);
1213     zebra_unlock (zh->lock_normal);
1214     return 0;
1215 }
1216
1217 int zebra_init (ZebraHandle zh)
1218 {
1219     const char *rval;
1220     BFiles bfs = 0;
1221
1222     if (!zh->res)
1223     {
1224         zh->errCode = 109;
1225         return -1;
1226     }
1227     rval = res_get (zh->res, "shadow");
1228
1229     bfs = bfs_create (res_get (zh->service->global_res, "register"),
1230                       zh->path_reg);
1231     if (rval && *rval)
1232         bf_cache (bfs, rval);
1233     
1234     bf_reset (bfs);
1235     bfs_destroy (bfs);
1236     zebra_set_state (zh, 'o', 0);
1237     return 0;
1238 }
1239
1240 int zebra_compact (ZebraHandle zh)
1241 {
1242     BFiles bfs;
1243     if (!zh->res)
1244     {
1245         zh->errCode = 109;
1246         return -1;
1247     }
1248     bfs = bfs_create (res_get (zh->res, "register"), zh->path_reg);
1249     inv_compact (bfs);
1250     bfs_destroy (bfs);
1251     return 0;
1252 }
1253
1254 int zebra_record_insert (ZebraHandle zh, const char *buf, int len)
1255 {
1256     int sysno = 0;
1257     zebra_begin_trans (zh);
1258     extract_rec_in_mem (zh, "grs.sgml",
1259                         buf, len,
1260                         "Default",  /* database */
1261                         0 /* delete_flag */,
1262                         0 /* test_mode */,
1263                         &sysno /* sysno */,
1264                         1 /* store_keys */,
1265                         1 /* store_data */,
1266                         0 /* match criteria */);
1267     zebra_end_trans (zh);
1268     return sysno;
1269 }
1270
1271 void zebra_set_group (ZebraHandle zh, struct recordGroup *rg)
1272 {
1273     memcpy (&zh->rGroup, rg, sizeof(*rg));
1274 }
1275
1276 void zebra_result (ZebraHandle zh, int *code, char **addinfo)
1277 {
1278     *code = zh->errCode;
1279     *addinfo = zh->errString;
1280 }
1281
1282 void zebra_shadow_enable (ZebraHandle zh, int value)
1283 {
1284     zh->shadow_enable = value;
1285 }
1286