Updated footer comment
[idzebra-moved-to-github.git] / index / zebraapi.c
1 /* This file is part of the Zebra server.
2    Copyright (C) 1994-2009 Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #include <assert.h>
21 #include <stdio.h>
22 #include <limits.h>
23 #ifdef WIN32
24 #include <io.h>
25 #include <process.h>
26 #include <direct.h>
27 #endif
28 #if HAVE_UNISTD_H
29 #include <unistd.h>
30 #endif
31
32 #include <yaz/diagbib1.h>
33 #include <yaz/pquery.h>
34 #include <yaz/sortspec.h>
35 #include "index.h"
36 #include "rank.h"
37 #include "orddict.h"
38 #include <charmap.h>
39 #include <idzebra/api.h>
40 #include <yaz/oid_db.h>
41
42 #define DEFAULT_APPROX_LIMIT 2000000000
43
44 /* simple asserts to validate the most essential input args */
45 #define ASSERTZH assert(zh && zh->service)
46 #define ASSERTZHRES assert(zh && zh->service && zh->res)
47 #define ASSERTZS assert(zs)
48
49 static int log_level = 0;
50 static int log_level_initialized = 0;
51
52 static void zebra_open_res(ZebraHandle zh);
53 static void zebra_close_res(ZebraHandle zh);
54
55 static ZEBRA_RES zebra_check_handle(ZebraHandle zh)
56 {
57     if (zh)
58         return ZEBRA_OK;
59     return ZEBRA_FAIL;
60 }
61
62 #define ZEBRA_CHECK_HANDLE(zh) if (zebra_check_handle(zh) != ZEBRA_OK) return ZEBRA_FAIL
63
64 static void zebra_chdir(ZebraService zs)
65 {
66     const char *dir ;
67     ASSERTZS;
68     yaz_log(log_level, "zebra_chdir");
69     dir = res_get(zs->global_res, "chdir");
70     if (!dir)
71         return;
72     yaz_log(YLOG_DEBUG, "chdir %s", dir);
73 #ifdef WIN32
74     _chdir(dir);
75 #else
76     chdir(dir);
77 #endif
78 }
79
80 static ZEBRA_RES zebra_flush_reg(ZebraHandle zh)
81 {
82     ZEBRA_CHECK_HANDLE(zh);
83     yaz_log(log_level, "zebra_flush_reg");
84     zebraExplain_flush(zh->reg->zei, zh);
85
86     key_block_flush(zh->reg->key_block, 1);
87
88     zebra_index_merge(zh);
89     return ZEBRA_OK;
90 }
91
92 static struct zebra_register *zebra_register_open(ZebraService zs, 
93                                                   const char *name,
94                                                   int rw, int useshadow,
95                                                   Res res,
96                                                   const char *reg_path);
97 static void zebra_register_close(ZebraService zs, struct zebra_register *reg);
98
99 const char *zebra_get_encoding(ZebraHandle zh)
100 {
101     assert(zh && zh->session_res);
102     return res_get_def(zh->session_res, "encoding", "ISO-8859-1");
103 }
104
105 ZebraHandle zebra_open(ZebraService zs, Res res)
106 {
107     ZebraHandle zh;
108     const char *default_encoding;
109     if (!log_level_initialized)
110     {
111         log_level = yaz_log_module_level("zebraapi");
112         log_level_initialized = 1;
113     }
114
115     yaz_log(log_level, "zebra_open");
116
117     if (!zs)
118         return 0;
119
120     zh = (ZebraHandle) xmalloc(sizeof(*zh));
121     yaz_log(YLOG_DEBUG, "zebra_open zs=%p returns %p", zs, zh);
122
123     zh->service = zs;
124     zh->reg = 0;          /* no register attached yet */
125     zh->sets = 0;
126     zh->destroyed = 0;
127     zh->errCode = 0;
128     zh->errString = 0;
129     zh->res = 0; 
130     zh->session_res = res_open(zs->global_res, res);
131     zh->user_perm = 0;
132     zh->dbaccesslist = 0;
133
134     zh->reg_name = xstrdup("");
135     zh->path_reg = 0;
136     zh->num_basenames = 0;
137     zh->basenames = 0;
138
139     zh->approx_limit = DEFAULT_APPROX_LIMIT;
140     zh->trans_no = 0;
141     zh->trans_w_no = 0;
142
143     zh->lock_normal = 0;
144     zh->lock_shadow = 0;
145
146     zh->shadow_enable = 1;
147     zh->m_staticrank = 0;
148     zh->m_segment_indexing = 0;
149
150     zh->break_handler_func = 0;
151     zh->break_handler_data = 0;
152
153     default_encoding = zebra_get_encoding(zh);
154
155     zh->iconv_to_utf8 =
156         yaz_iconv_open("UTF-8", default_encoding);
157     if (zh->iconv_to_utf8 == 0)
158         yaz_log(YLOG_WARN, "iconv: %s to UTF-8 unsupported",
159                 default_encoding);
160     zh->iconv_from_utf8 =
161         yaz_iconv_open(default_encoding, "UTF-8");
162     if (zh->iconv_to_utf8 == 0)
163         yaz_log(YLOG_WARN, "iconv: UTF-8 to %s unsupported",
164                 default_encoding);
165
166     zh->record_encoding = 0;
167
168     zebra_mutex_cond_lock(&zs->session_lock);
169
170     zh->next = zs->sessions;
171     zs->sessions = zh;
172
173     zebra_mutex_cond_unlock(&zs->session_lock);
174
175     zh->store_data_buf = 0;
176
177     zh->m_limit = zebra_limit_create(1, 0);
178
179     zh->nmem_error = nmem_create();
180
181     return zh;
182 }
183
184 ZebraService zebra_start(const char *configName)
185 {
186     return zebra_start_res(configName, 0, 0);
187 }
188
189 ZebraService zebra_start_res(const char *configName, Res def_res, Res over_res)
190 {
191     Res res;
192     char version_str[16];
193     char system_str[80];
194
195     zebra_flock_init();
196
197     if (!log_level_initialized)
198     {
199         log_level = yaz_log_module_level("zebraapi");
200         log_level_initialized = 1;
201     }
202     
203     zebra_get_version(version_str, system_str);
204
205     yaz_log(YLOG_LOG, "zebra_start %s %s", version_str,
206             configName ? configName : "");
207
208     if ((res = res_open(def_res, over_res)))
209     {
210         const char *passwd_plain = 0;
211         const char *passwd_encrypt = 0;
212         const char *dbaccess = 0;
213         ZebraService zh = 0;
214
215         if (configName)
216         {
217             ZEBRA_RES ret = res_read_file(res, configName);
218             if (ret != ZEBRA_OK)
219             {
220                 res_close(res);
221                 return 0;
222             }
223             if (zebra_check_res(res))
224             {
225                 yaz_log(YLOG_FATAL, "Configuration error(s) for %s",
226                         configName);
227                 return 0;
228             }
229         }
230         else
231         {
232             zebra_check_res(res);
233         }
234
235         zh = xmalloc(sizeof(*zh));
236         zh->global_res = res;
237         zh->sessions = 0;
238         
239         zebra_chdir(zh);
240         
241         zebra_mutex_cond_init(&zh->session_lock);
242         passwd_plain = res_get(zh->global_res, "passwd");
243         passwd_encrypt = res_get(zh->global_res, "passwd.c");
244         dbaccess = res_get(zh->global_res, "dbaccess");
245
246         if (!passwd_plain && !passwd_encrypt)
247             zh->passwd_db = NULL;
248         else 
249         {
250             zh->passwd_db = passwd_db_open();
251             if (!zh->passwd_db)
252                 yaz_log(YLOG_WARN|YLOG_ERRNO, "passwd_db_open failed");
253             else
254             {
255                 if (passwd_plain)
256                     passwd_db_file_plain(zh->passwd_db, passwd_plain);
257                 if (passwd_encrypt)
258                     passwd_db_file_crypt(zh->passwd_db, passwd_encrypt);
259             }
260         }
261
262         if (!dbaccess)
263             zh->dbaccess = NULL;
264         else {
265             zh->dbaccess = res_open(NULL, NULL);
266             if (res_read_file(zh->dbaccess, dbaccess) != ZEBRA_OK) {
267                 yaz_log(YLOG_FATAL, "Failed to read %s", dbaccess);
268                 return NULL;
269             }
270         }
271
272         zh->timing = yaz_timing_create();
273         zh->path_root = res_get(zh->global_res, "root");
274         zh->nmem = nmem_create();
275         zh->record_classes = recTypeClass_create(zh->global_res, zh->nmem);
276
277         if (1)
278         {
279             const char *module_path = res_get(res, "modulePath");
280             if (module_path)
281                 recTypeClass_load_modules(&zh->record_classes, zh->nmem,
282                                           module_path);
283         }
284         return zh;
285     }
286     return 0;
287 }
288
289 void zebra_filter_info(ZebraService zs, void *cd,
290                        void(*cb)(void *cd, const char *name))
291 {
292     ASSERTZS;
293     assert(cb);
294     recTypeClass_info(zs->record_classes, cd, cb);
295 }
296
297 void zebra_pidfname(ZebraService zs, char *path)
298 {
299     ASSERTZS;
300     zebra_lock_prefix(zs->global_res, path);
301     strcat(path, "zebrasrv.pid");
302 }
303
304 Dict dict_open_res(BFiles bfs, const char *name, int cache, int rw,
305                    int compact_flag, Res res)
306 {
307     int page_size = 4096;
308     char resource_str[200];
309     sprintf(resource_str, "dict.%.100s.pagesize", name);
310     assert(bfs);
311     assert(name);
312
313     if (res_get_int(res, resource_str, &page_size) == ZEBRA_OK)
314         yaz_log(YLOG_LOG, "Using custom dictionary page size %d for %s",
315                 page_size, name);
316     return dict_open(bfs, name, cache, rw, compact_flag, page_size);
317 }
318
319 static
320 struct zebra_register *zebra_register_open(ZebraService zs, const char *name,
321                                            int rw, int useshadow, Res res,
322                                            const char *reg_path)
323 {
324     struct zebra_register *reg;
325     int record_compression = REC_COMPRESS_NONE;
326     const char *recordCompression = 0;
327     const char *profilePath;
328     char cwd[1024];
329     int sort_type = ZEBRA_SORT_TYPE_FLAT;
330     ZEBRA_RES ret = ZEBRA_OK;
331
332     ASSERTZS;
333     
334     reg = xmalloc(sizeof(*reg));
335
336     assert(name);
337     reg->name = xstrdup(name);
338
339     reg->seqno = 0;
340     reg->last_val = 0;
341
342     assert(res);
343
344     yaz_log(YLOG_DEBUG, "zebra_register_open rw=%d useshadow=%d p=%p n=%s rp=%s",
345             rw, useshadow, reg, name, reg_path ? reg_path : "(none)");
346     
347     reg->dh = data1_create();
348     if (!reg->dh)
349     {
350         xfree(reg->name);
351         xfree(reg);
352         return 0;
353     }
354     reg->bfs = bfs_create(res_get(res, "register"), reg_path);
355     if (!reg->bfs)
356     {
357         data1_destroy(reg->dh);
358         xfree(reg->name);
359         xfree(reg);
360         return 0;
361     }
362     if (useshadow)
363     {
364         if (bf_cache(reg->bfs, res_get(res, "shadow")) == ZEBRA_FAIL)
365         {
366             bfs_destroy(reg->bfs);
367             data1_destroy(reg->dh);
368             xfree(reg->name);
369             xfree(reg);
370             return 0;
371         }
372     }
373
374     getcwd(cwd, sizeof(cwd)-1);
375     profilePath = res_get_def(res, "profilePath", 0);
376
377     data1_set_tabpath(reg->dh, profilePath);
378     data1_set_tabroot(reg->dh, reg_path);
379     reg->recTypes = recTypes_init(zs->record_classes, reg->dh);
380
381     reg->zebra_maps =
382         zebra_maps_open(res, reg_path, profilePath);
383     if (!reg->zebra_maps)
384     {
385         recTypes_destroy(reg->recTypes);
386         bfs_destroy(reg->bfs);
387         data1_destroy(reg->dh);
388         xfree(reg->name);
389         xfree(reg);
390         return 0;
391     }
392     reg->rank_classes = NULL;
393
394     reg->key_block = 0;
395     reg->keys = zebra_rec_keys_open();
396
397     reg->sortKeys = zebra_rec_keys_open();
398
399     reg->records = 0;
400     reg->dict = 0;
401     reg->sort_index = 0;
402     reg->isams = 0;
403     reg->matchDict = 0;
404     reg->isamc = 0;
405     reg->isamb = 0;
406     reg->zei = 0;
407     
408     /* installing rank classes */
409     zebraRankInstall(reg, rank_1_class);
410     zebraRankInstall(reg, rank_similarity_class);
411     zebraRankInstall(reg, rank_static_class);
412
413     recordCompression = res_get_def(res, "recordCompression", "none");
414     if (!strcmp(recordCompression, "none"))
415         record_compression = REC_COMPRESS_NONE;
416     if (!strcmp(recordCompression, "bzip2"))
417         record_compression = REC_COMPRESS_BZIP2;
418
419     {
420         const char *index_fname = res_get_def(res, "index", "default.idx");
421         if (index_fname && *index_fname && strcmp(index_fname, "none"))
422         {
423             if (zebra_maps_read_file(reg->zebra_maps, index_fname) != ZEBRA_OK)
424                 ret = ZEBRA_FAIL;
425         }
426         else
427         {
428             zebra_maps_define_default_sort(reg->zebra_maps);
429         }
430     }
431
432     if (!(reg->records = rec_open(reg->bfs, rw, record_compression)))
433     {
434         yaz_log(YLOG_WARN, "rec_open failed");
435         ret = ZEBRA_FAIL;
436     }
437     if (rw)
438     {
439         reg->matchDict = dict_open_res(reg->bfs, GMATCH_DICT, 20, 1, 0, res);
440     }
441     if (!(reg->dict = dict_open_res(reg->bfs, FNAME_DICT, 40, rw, 0, res)))
442     {
443         yaz_log(YLOG_WARN, "dict_open failed");
444         ret = ZEBRA_FAIL;
445     }
446
447     
448     if (res_get_match(res, "sortindex", "f", "f"))
449         sort_type = ZEBRA_SORT_TYPE_FLAT;
450     else if (res_get_match(res, "sortindex", "i", "f"))
451         sort_type = ZEBRA_SORT_TYPE_ISAMB;
452     else if (res_get_match(res, "sortindex", "m", "f"))
453         sort_type = ZEBRA_SORT_TYPE_MULTI;
454     else
455     {
456         yaz_log(YLOG_WARN, "bad_value for 'sortindex'");
457         ret = ZEBRA_FAIL;
458     }
459
460
461     if (!(reg->sort_index = zebra_sort_open(reg->bfs, rw, sort_type)))
462     {
463         yaz_log(YLOG_WARN, "zebra_sort_open failed");
464         ret = ZEBRA_FAIL;
465     }
466     if (res_get_match(res, "isam", "s", ISAM_DEFAULT))
467     {
468         struct ISAMS_M_s isams_m;
469         if (!(reg->isams = isams_open(reg->bfs, FNAME_ISAMS, rw,
470                                       key_isams_m(res, &isams_m))))
471         {
472             yaz_log(YLOG_WARN, "isams_open failed");
473             ret = ZEBRA_FAIL;
474         }
475     }
476     if (res_get_match(res, "isam", "c", ISAM_DEFAULT))
477     {
478         struct ISAMC_M_s isamc_m;
479         if (!(reg->isamc = isamc_open(reg->bfs, FNAME_ISAMC,
480                                       rw, key_isamc_m(res, &isamc_m))))
481         {
482             yaz_log(YLOG_WARN, "isamc_open failed");
483             ret = ZEBRA_FAIL;
484         }
485     }
486     if (res_get_match(res, "isam", "b", ISAM_DEFAULT))
487     {
488         struct ISAMC_M_s isamc_m;
489         
490         if (!(reg->isamb = isamb_open(reg->bfs, "isamb",
491                                       rw, key_isamc_m(res, &isamc_m), 0)))
492         {
493             yaz_log(YLOG_WARN, "isamb_open failed");
494             ret = ZEBRA_FAIL;
495         }
496     }
497     if (res_get_match(res, "isam", "bc", ISAM_DEFAULT))
498     {
499         struct ISAMC_M_s isamc_m;
500         
501         if (!(reg->isamb = isamb_open(reg->bfs, "isamb",
502                                       rw, key_isamc_m(res, &isamc_m), 1)))
503         {
504             yaz_log(YLOG_WARN, "isamb_open failed");
505             ret = ZEBRA_FAIL;
506         }
507     }
508     if (res_get_match(res, "isam", "null", ISAM_DEFAULT))
509     {
510         struct ISAMC_M_s isamc_m;
511         
512         if (!(reg->isamb = isamb_open(reg->bfs, "isamb",
513                                       rw, key_isamc_m(res, &isamc_m), -1)))
514         {
515             yaz_log(YLOG_WARN, "isamb_open failed");
516             ret = ZEBRA_FAIL;
517         }
518     }
519     if (ret == ZEBRA_OK)
520     {
521         reg->zei = zebraExplain_open(reg->records, reg->dh,
522                                      res, rw, reg,
523                                      zebra_extract_explain);
524         if (!reg->zei)
525         {
526             yaz_log(YLOG_WARN, "Cannot obtain EXPLAIN information");
527             ret = ZEBRA_FAIL;
528         }
529     }
530     
531     if (ret != ZEBRA_OK)
532     {
533         zebra_register_close(zs, reg);
534         return 0;
535     }
536     yaz_log(YLOG_DEBUG, "zebra_register_open ok p=%p", reg);
537     return reg;
538 }
539
540 ZEBRA_RES zebra_admin_shutdown(ZebraHandle zh)
541 {
542     ZEBRA_CHECK_HANDLE(zh);
543     yaz_log(log_level, "zebra_admin_shutdown");
544
545     zebra_mutex_cond_lock(&zh->service->session_lock);
546     zh->service->stop_flag = 1;
547     zebra_mutex_cond_unlock(&zh->service->session_lock);
548     return ZEBRA_OK;
549 }
550
551 ZEBRA_RES zebra_admin_start(ZebraHandle zh)
552 {
553     ZebraService zs;
554     ZEBRA_CHECK_HANDLE(zh);
555     yaz_log(log_level, "zebra_admin_start");
556     zs = zh->service;
557     zebra_mutex_cond_lock(&zs->session_lock);
558     zebra_mutex_cond_unlock(&zs->session_lock);
559     return ZEBRA_OK;
560 }
561
562 static void zebra_register_close(ZebraService zs, struct zebra_register *reg)
563 {
564     ASSERTZS;
565     assert(reg);
566     yaz_log(YLOG_DEBUG, "zebra_register_close p=%p", reg);
567     reg->stop_flag = 0;
568     zebra_chdir(zs);
569     
570     zebraExplain_close(reg->zei);
571     dict_close(reg->dict);
572     if (reg->matchDict)
573         dict_close(reg->matchDict);
574     zebra_sort_close(reg->sort_index);
575     if (reg->isams)
576         isams_close(reg->isams);
577     if (reg->isamc)
578         isamc_close(reg->isamc);
579     if (reg->isamb)
580         isamb_close(reg->isamb);
581     rec_close(&reg->records);
582
583     recTypes_destroy(reg->recTypes);
584     zebra_maps_close(reg->zebra_maps);
585     zebraRankDestroy(reg);
586     bfs_destroy(reg->bfs);
587     data1_destroy(reg->dh);
588
589     zebra_rec_keys_close(reg->keys);
590     zebra_rec_keys_close(reg->sortKeys);
591
592     key_block_destroy(&reg->key_block);
593     xfree(reg->name);
594     xfree(reg);
595 }
596
597 ZEBRA_RES zebra_stop(ZebraService zs)
598 {
599     if (!zs)
600         return ZEBRA_OK;
601     while (zs->sessions)
602     {
603         zebra_close(zs->sessions);
604     }
605         
606     zebra_mutex_cond_destroy(&zs->session_lock);
607
608     if (zs->passwd_db)
609         passwd_db_close(zs->passwd_db);
610
611     recTypeClass_destroy(zs->record_classes);
612     nmem_destroy(zs->nmem);
613     res_close(zs->global_res);
614
615     yaz_timing_stop(zs->timing);
616     yaz_log(YLOG_LOG, "zebra_stop: %4.2f %4.2f %4.2f",
617             yaz_timing_get_real(zs->timing),
618             yaz_timing_get_user(zs->timing),
619             yaz_timing_get_sys(zs->timing));
620     
621
622     yaz_timing_destroy(&zs->timing);
623     xfree(zs);
624     return ZEBRA_OK;
625 }
626
627 ZEBRA_RES zebra_close(ZebraHandle zh)
628 {
629     ZebraService zs;
630     struct zebra_session **sp;
631     int i;
632
633     yaz_log(log_level, "zebra_close");
634     ZEBRA_CHECK_HANDLE(zh);
635
636     zh->errCode = 0;
637     
638     zs = zh->service;
639     yaz_log(YLOG_DEBUG, "zebra_close zh=%p", zh);
640     resultSetDestroy(zh, -1, 0, 0);
641
642     if (zh->reg)
643         zebra_register_close(zh->service, zh->reg);
644     zebra_close_res(zh);
645     res_close(zh->session_res);
646
647     xfree(zh->record_encoding);
648
649     xfree(zh->dbaccesslist);
650
651     for (i = 0; i < zh->num_basenames; i++)
652         xfree(zh->basenames[i]);
653     xfree(zh->basenames);
654
655     if (zh->iconv_to_utf8 != 0)
656         yaz_iconv_close(zh->iconv_to_utf8);
657     if (zh->iconv_from_utf8 != 0)
658         yaz_iconv_close(zh->iconv_from_utf8);
659
660     zebra_mutex_cond_lock(&zs->session_lock);
661     zebra_lock_destroy(zh->lock_normal);
662     zebra_lock_destroy(zh->lock_shadow);
663     sp = &zs->sessions;
664     while (1)
665     {
666         assert(*sp);
667         if (*sp == zh)
668         {
669             *sp = (*sp)->next;
670             break;
671         }
672         sp = &(*sp)->next;
673     }
674     zebra_mutex_cond_unlock(&zs->session_lock);
675     xfree(zh->reg_name);
676     xfree(zh->user_perm);
677     zh->service = 0; /* more likely to trigger an assert */
678
679     zebra_limit_destroy(zh->m_limit);
680
681     nmem_destroy(zh->nmem_error);
682
683     xfree(zh->path_reg);
684     xfree(zh);
685     return ZEBRA_OK;
686 }
687
688 struct map_baseinfo {
689     ZebraHandle zh;
690     NMEM mem;
691     int num_bases;
692     char **basenames;
693     int new_num_bases;
694     char **new_basenames;
695     int new_num_max;
696 };
697
698 static void zebra_open_res(ZebraHandle zh)
699 {
700     char fname[512];
701     ASSERTZH;
702     zh->errCode = 0;
703
704     if (zh->path_reg)
705     {
706         sprintf(fname, "%.200s/zebra.cfg", zh->path_reg);
707         zh->res = res_open(zh->session_res, 0);
708         res_read_file(zh->res, fname);
709     }
710     else if (*zh->reg_name == 0)
711     {
712         zh->res = res_open(zh->session_res, 0);
713     }
714     else
715     {
716         yaz_log(YLOG_WARN, "no register root specified");
717         zh->res = 0;  /* no path for register - fail! */
718     }
719 }
720
721 static void zebra_close_res(ZebraHandle zh)
722 {
723     ASSERTZH;
724     zh->errCode = 0;
725     res_close(zh->res);
726     zh->res = 0;
727 }
728
729 static void zebra_select_register(ZebraHandle zh, const char *new_reg)
730 {
731     ASSERTZH;
732     zh->errCode = 0;
733     if (zh->res && strcmp(zh->reg_name, new_reg) == 0)
734         return;
735     if (!zh->res)
736     {
737         assert(zh->reg == 0);
738         assert(*zh->reg_name == 0);
739     }
740     else
741     {
742         if (zh->reg)
743         {
744             resultSetInvalidate(zh);
745             zebra_register_close(zh->service, zh->reg);
746             zh->reg = 0;
747         }
748         zebra_close_res(zh);
749     }
750     xfree(zh->reg_name);
751     zh->reg_name = xstrdup(new_reg);
752
753     xfree(zh->path_reg);
754     zh->path_reg = 0;
755     if (zh->service->path_root)
756     {
757         zh->path_reg = xmalloc(strlen(zh->service->path_root) + 
758                                strlen(zh->reg_name) + 3);
759         strcpy(zh->path_reg, zh->service->path_root);
760         if (*zh->reg_name)
761         {
762             strcat(zh->path_reg, "/");
763             strcat(zh->path_reg, zh->reg_name);
764         }
765     }
766     zebra_open_res(zh);
767     
768     if (zh->lock_normal)
769         zebra_lock_destroy(zh->lock_normal);
770     zh->lock_normal = 0;
771
772     if (zh->lock_shadow)
773         zebra_lock_destroy(zh->lock_shadow);
774     zh->lock_shadow = 0;
775
776     if (zh->res)
777     {
778         char fname[512];
779         const char *lock_area = res_get(zh->res, "lockDir");
780         
781         if (!lock_area && zh->path_reg)
782             res_set(zh->res, "lockDir", zh->path_reg);
783         sprintf(fname, "norm.%s.LCK", zh->reg_name);
784         zh->lock_normal =
785             zebra_lock_create(res_get(zh->res, "lockDir"), fname);
786         
787         sprintf(fname, "shadow.%s.LCK", zh->reg_name);
788         zh->lock_shadow =
789             zebra_lock_create(res_get(zh->res, "lockDir"), fname);
790
791         if (!zh->lock_normal || !zh->lock_shadow)
792         {
793             if (zh->lock_normal)
794             {
795                 zebra_lock_destroy(zh->lock_normal);
796                 zh->lock_normal = 0;
797             }
798             if (zh->lock_shadow)
799             {
800                 zebra_lock_destroy(zh->lock_shadow);
801                 zh->lock_shadow = 0;
802             }
803             zebra_close_res(zh);
804         }
805     }
806     if (zh->res)
807     {
808         int approx = 0;
809         if (res_get_int(zh->res, "estimatehits", &approx) == ZEBRA_OK)
810             zebra_set_approx_limit(zh, approx);
811     }
812     if (zh->res)
813     {
814         if (res_get_int(zh->res, "staticrank", &zh->m_staticrank) == ZEBRA_OK)
815             yaz_log(YLOG_LOG, "static rank set and is %d", zh->m_staticrank);
816     }
817     if (zh->res)
818     {
819         if (res_get_int(zh->res, "segment", &zh->m_segment_indexing) == 
820             ZEBRA_OK)
821         {
822             yaz_log(YLOG_DEBUG, "segment indexing set and is %d",
823                     zh->m_segment_indexing);
824         }
825     }
826 }
827
828 void map_basenames_func(void *vp, const char *name, const char *value)
829 {
830     struct map_baseinfo *p = (struct map_baseinfo *) vp;
831     int i, no;
832     char fromdb[128], todb[8][128];
833
834     assert(value);
835     assert(name);
836     assert(vp);
837     
838     no =
839         sscanf(value, "%127s %127s %127s %127s %127s %127s %127s %127s %127s",
840                fromdb,  todb[0], todb[1], todb[2], todb[3], todb[4],
841                todb[5], todb[6], todb[7]);
842     if (no < 2)
843         return ;
844     no--;
845     for (i = 0; i<p->num_bases; i++)
846         if (p->basenames[i] && !STRCASECMP(p->basenames[i], fromdb))
847         {
848             p->basenames[i] = 0;
849             for (i = 0; i < no; i++)
850             {
851                 if (p->new_num_bases == p->new_num_max)
852                     return;
853                 p->new_basenames[(p->new_num_bases)++] = 
854                     nmem_strdup(p->mem, todb[i]);
855             }
856             return;
857         }
858 }
859
860 int zebra_select_default_database(ZebraHandle zh)
861 {
862     if (!zh->res)
863     {
864         /* no database has been selected - so we select based on
865            resource setting (including group)
866         */
867         const char *group = res_get(zh->session_res, "group");
868         const char *v = res_get_prefix(zh->session_res,
869                                        "database", group, "Default");
870         return zebra_select_database(zh, v);
871     }
872     return 0;
873 }
874
875 void map_basenames(ZebraHandle zh, ODR stream,
876                    int *num_bases, char ***basenames)
877 {
878     struct map_baseinfo info;
879     struct map_baseinfo *p = &info;
880     int i;
881     ASSERTZH;
882     yaz_log(log_level, "map_basenames ");
883     assert(stream);
884
885     info.zh = zh;
886
887     info.num_bases = *num_bases;
888     info.basenames = *basenames;
889     info.new_num_max = 128;
890     info.new_num_bases = 0;
891     info.new_basenames = (char **)
892         odr_malloc(stream, sizeof(*info.new_basenames) * info.new_num_max);
893     info.mem = stream->mem;
894
895     res_trav(zh->session_res, "mapdb", &info, map_basenames_func);
896     
897     for (i = 0; i<p->num_bases; i++)
898         if (p->basenames[i] && p->new_num_bases < p->new_num_max)
899         {
900             p->new_basenames[(p->new_num_bases)++] = 
901                 nmem_strdup(p->mem, p->basenames[i]);
902         }
903     *num_bases = info.new_num_bases;
904     *basenames = info.new_basenames;
905     for (i = 0; i<*num_bases; i++)
906         yaz_log(YLOG_DEBUG, "base %s", (*basenames)[i]);
907 }
908
909 ZEBRA_RES zebra_select_database(ZebraHandle zh, const char *basename)
910 {
911     ZEBRA_CHECK_HANDLE(zh);
912
913     yaz_log(log_level, "zebra_select_database %s",basename);
914     assert(basename);
915     return zebra_select_databases(zh, 1, &basename);
916 }
917
918 ZEBRA_RES zebra_select_databases(ZebraHandle zh, int num_bases,
919                                  const char **basenames)
920 {
921     int i;
922     const char *cp;
923     int len = 0;
924     char *new_reg = 0;
925
926     ZEBRA_CHECK_HANDLE(zh);
927     assert(basenames);
928
929     yaz_log(log_level, "zebra_select_databases n=%d [0]=%s",
930             num_bases,basenames[0]);
931     zh->errCode = 0;
932     
933     if (num_bases < 1)
934     {
935         zh->errCode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
936         return ZEBRA_FAIL;
937     }
938
939     /* Check if the user has access to all databases (Seb) */
940     /* You could argue that this should happen later, after we have
941      * determined that the database(s) exist. */
942     if (zh->dbaccesslist) {
943         for (i = 0; i < num_bases; i++) {
944             const char *db = basenames[i];
945             char *p, *pp;
946             for (p = zh->dbaccesslist; p && *p; p = pp) {
947                 int len;
948                 if ((pp = strchr(p, '+'))) {
949                     len = pp - p;
950                     pp++;
951                 }
952                 else
953                     len = strlen(p);
954                 if (len == strlen(db) && !strncmp(db, p, len))
955                     break;
956             }
957             if (!p) {
958                 zh->errCode = YAZ_BIB1_ACCESS_TO_SPECIFIED_DATABASE_DENIED;
959                 return ZEBRA_FAIL;
960             }
961         }
962     }
963
964     for (i = 0; i < zh->num_basenames; i++)
965         xfree(zh->basenames[i]);
966     xfree(zh->basenames);
967     
968     zh->num_basenames = num_bases;
969     zh->basenames = xmalloc(zh->num_basenames * sizeof(*zh->basenames));
970     for (i = 0; i < zh->num_basenames; i++)
971         zh->basenames[i] = xstrdup(basenames[i]);
972
973     cp = strrchr(basenames[0], '/');
974     if (cp)
975     {
976         len = cp - basenames[0];
977         new_reg = xmalloc(len + 1);
978         memcpy(new_reg, basenames[0], len);
979         new_reg[len] = '\0';
980     }
981     else
982         new_reg = xstrdup("");
983     for (i = 1; i<num_bases; i++)
984     {
985         const char *cp1;
986
987         cp1 = strrchr(basenames[i], '/');
988         if (cp)
989         {
990             if (!cp1)
991             {
992                 zh->errCode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
993                 return -1;
994             }
995             if (len != cp1 - basenames[i] ||
996                 memcmp(basenames[i], new_reg, len))
997             {
998                 zh->errCode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
999                 return -1;
1000             }
1001         }
1002         else
1003         {
1004             if (cp1)
1005             {
1006                 zh->errCode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
1007                 return ZEBRA_FAIL;
1008             }
1009         }
1010     }
1011     zebra_select_register(zh, new_reg);
1012     xfree(new_reg);
1013     if (!zh->res)
1014     {
1015         zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
1016         return ZEBRA_FAIL;
1017     }
1018     if (!zh->lock_normal || !zh->lock_shadow)
1019     {
1020         zh->errCode = YAZ_BIB1_TEMPORARY_SYSTEM_ERROR;
1021         return ZEBRA_FAIL;
1022     }
1023     return ZEBRA_OK;
1024 }
1025
1026 ZEBRA_RES zebra_set_approx_limit(ZebraHandle zh, zint approx_limit)
1027 {
1028     if (approx_limit == 0)
1029         approx_limit = DEFAULT_APPROX_LIMIT;
1030     zh->approx_limit = approx_limit;
1031     return ZEBRA_OK;
1032 }
1033
1034 void zebra_set_partial_result(ZebraHandle zh)
1035 {
1036     zh->partial_result = 1;
1037 }
1038
1039
1040 ZEBRA_RES zebra_set_break_handler(ZebraHandle zh,
1041                                   int (*f)(void *client_data),
1042                                   void *client_data)
1043 {
1044     zh->break_handler_func = f;
1045     zh->break_handler_data = client_data;
1046     return ZEBRA_OK;
1047 }
1048
1049 ZEBRA_RES zebra_search_RPN_x(ZebraHandle zh, ODR o, Z_RPNQuery *query,
1050                              const char *setname, zint *hits,
1051                              int *estimated_hit_count,
1052                              int *partial_resultset)
1053 {
1054     ZEBRA_RES r;
1055     
1056     ZEBRA_CHECK_HANDLE(zh);
1057
1058     assert(o);
1059     assert(query);
1060     assert(hits);
1061     assert(setname);
1062     yaz_log(log_level, "zebra_search_rpn");
1063
1064     zh->partial_result = 0;
1065
1066     if (zebra_begin_read(zh) == ZEBRA_FAIL)
1067         return ZEBRA_FAIL;
1068
1069     r = resultSetAddRPN(zh, odr_extract_mem(o), query, 
1070                         zh->num_basenames, zh->basenames, setname,
1071                         hits, estimated_hit_count);
1072
1073     *partial_resultset = zh->partial_result;
1074     zebra_end_read(zh);
1075     return r;
1076 }
1077
1078 ZEBRA_RES zebra_search_RPN(ZebraHandle zh, ODR o, Z_RPNQuery *query,
1079                            const char *setname, zint *hits)
1080 {
1081     int estimated_hit_count;
1082     int partial_resultset;
1083     return zebra_search_RPN_x(zh, o, query, setname, hits,
1084                               &estimated_hit_count,
1085                               &partial_resultset);
1086 }
1087
1088 ZEBRA_RES zebra_records_retrieve(ZebraHandle zh, ODR stream,
1089                                  const char *setname,
1090                                  Z_RecordComposition *comp,
1091                                  const Odr_oid *input_format, int num_recs,
1092                                  ZebraRetrievalRecord *recs)
1093 {
1094     ZebraMetaRecord *poset;
1095     int i;
1096     ZEBRA_RES ret = ZEBRA_OK;
1097     zint *pos_array;
1098
1099     ZEBRA_CHECK_HANDLE(zh);
1100     assert(stream);
1101     assert(setname);
1102     assert(recs);
1103     assert(num_recs>0);
1104
1105     yaz_log(log_level, "zebra_records_retrieve n=%d", num_recs);
1106
1107     if (!zh->res)
1108     {
1109         zebra_setError(zh, YAZ_BIB1_SPECIFIED_RESULT_SET_DOES_NOT_EXIST,
1110                        setname);
1111         return ZEBRA_FAIL;
1112     }
1113     
1114     if (zebra_begin_read(zh) == ZEBRA_FAIL)
1115         return ZEBRA_FAIL;
1116
1117     pos_array = (zint *) xmalloc(num_recs * sizeof(*pos_array));
1118     for (i = 0; i<num_recs; i++)
1119         pos_array[i] = recs[i].position;
1120     poset = zebra_meta_records_create(zh, setname, num_recs, pos_array);
1121     if (!poset)
1122     {
1123         yaz_log(YLOG_DEBUG, "zebraPosSetCreate error");
1124         zebra_setError(zh, YAZ_BIB1_SPECIFIED_RESULT_SET_DOES_NOT_EXIST,
1125                        setname);
1126         ret = ZEBRA_FAIL;
1127     }
1128     else
1129     {
1130         WRBUF addinfo_w = wrbuf_alloc();
1131         for (i = 0; i < num_recs; i++)
1132         {
1133             recs[i].errCode = 0;
1134             recs[i].errString = 0;
1135             recs[i].format = 0;
1136             recs[i].len = 0;
1137             recs[i].buf = 0;
1138             recs[i].base = 0;
1139             recs[i].sysno = poset[i].sysno;
1140             if (poset[i].term)
1141             {
1142                 recs[i].format = yaz_oid_recsyn_sutrs;
1143                 recs[i].len = strlen(poset[i].term);
1144                 recs[i].buf = poset[i].term;
1145                 recs[i].base = poset[i].db;
1146             }
1147             else if (poset[i].sysno)
1148             {
1149                 char *buf;
1150                 int len = 0;
1151                 zebra_snippets *hit_snippet = zebra_snippets_create();
1152
1153                 /* we disable hit snippets for now. It does not work well
1154                    and it slows retrieval down a lot */
1155 #if 0
1156                 zebra_snippets_hit_vector(zh, setname, poset[i].sysno, 
1157                                           hit_snippet);
1158 #endif
1159                 wrbuf_rewind(addinfo_w);
1160                 recs[i].errCode =
1161                     zebra_record_fetch(zh, setname,
1162                                        poset[i].sysno, poset[i].score,
1163                                        stream, input_format, comp,
1164                                        &recs[i].format, &buf, &len,
1165                                        &recs[i].base, addinfo_w);
1166                 
1167                 if (wrbuf_len(addinfo_w))
1168                     recs[i].errString =
1169                         odr_strdup(stream, wrbuf_cstr(addinfo_w));
1170                 recs[i].len = len;
1171                 if (len > 0)
1172                 {
1173                     recs[i].buf = (char*) odr_malloc(stream, len);
1174                     memcpy(recs[i].buf, buf, len);
1175                 }
1176                 else
1177                     recs[i].buf = buf;
1178                 recs[i].score = poset[i].score;
1179                 zebra_snippets_destroy(hit_snippet);
1180             }
1181             else
1182             {
1183                 /* only need to set it once */
1184                 if (pos_array[i] < zh->approx_limit && ret == ZEBRA_OK)
1185                 {
1186                     zebra_setError_zint(zh,
1187                                         YAZ_BIB1_PRESENT_REQUEST_OUT_OF_RANGE,
1188                                         pos_array[i]);
1189                     ret = ZEBRA_FAIL;
1190                     break;
1191                 }
1192             }
1193         }
1194         zebra_meta_records_destroy(zh, poset, num_recs);
1195         wrbuf_destroy(addinfo_w);
1196     }
1197     zebra_end_read(zh);
1198     xfree(pos_array);
1199     return ret;
1200 }
1201
1202 ZEBRA_RES zebra_scan_PQF(ZebraHandle zh, ODR stream, const char *query,
1203                          int *position,
1204                          int *num_entries, ZebraScanEntry **entries,
1205                          int *is_partial,
1206                          const char *setname)
1207 {
1208     YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
1209     Z_AttributesPlusTerm *zapt;
1210     Odr_oid *attributeSet;
1211     ZEBRA_RES res;
1212     
1213     if (!(zapt = yaz_pqf_scan(pqf_parser, stream, &attributeSet, query)))
1214     {
1215         res = ZEBRA_FAIL;
1216         zh->errCode = YAZ_BIB1_SCAN_MALFORMED_SCAN;
1217     }
1218     else
1219     {
1220         res = zebra_scan(zh, stream, zapt, yaz_oid_attset_bib_1,
1221                          position, num_entries, entries, is_partial,
1222                          setname);
1223     }
1224     yaz_pqf_destroy(pqf_parser);
1225     return res;
1226 }
1227
1228 ZEBRA_RES zebra_scan(ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
1229                      const Odr_oid *attributeset,
1230                      int *position,
1231                      int *num_entries, ZebraScanEntry **entries,
1232                      int *is_partial,
1233                      const char *setname)
1234 {
1235     ZEBRA_RES res;
1236
1237     ZEBRA_CHECK_HANDLE(zh);
1238
1239     assert(stream);
1240     assert(zapt);
1241     assert(position);
1242     assert(num_entries);
1243     assert(is_partial);
1244     assert(entries);
1245     yaz_log(log_level, "zebra_scan");
1246
1247     if (zebra_begin_read(zh) == ZEBRA_FAIL)
1248     {
1249         *entries = 0;
1250         *num_entries = 0;
1251         return ZEBRA_FAIL;
1252     }
1253
1254     res = rpn_scan(zh, stream, zapt, attributeset,
1255                    zh->num_basenames, zh->basenames, position,
1256                    num_entries, entries, is_partial, setname);
1257     zebra_end_read(zh);
1258     return res;
1259 }
1260
1261 ZEBRA_RES zebra_sort(ZebraHandle zh, ODR stream,
1262                      int num_input_setnames, const char **input_setnames,
1263                      const char *output_setname,
1264                      Z_SortKeySpecList *sort_sequence,
1265                      int *sort_status)
1266 {
1267     ZEBRA_RES res;
1268     ZEBRA_CHECK_HANDLE(zh);
1269     assert(stream);
1270     assert(num_input_setnames>0);
1271     assert(input_setnames);
1272     assert(sort_sequence);
1273     assert(sort_status);
1274     yaz_log(log_level, "zebra_sort");
1275
1276     if (zebra_begin_read(zh) == ZEBRA_FAIL)
1277         return ZEBRA_FAIL;
1278     res = resultSetSort(zh, stream->mem, num_input_setnames, input_setnames,
1279                         output_setname, sort_sequence, sort_status);
1280     zebra_end_read(zh);
1281     return res;
1282 }
1283
1284 int zebra_deleteResultSet(ZebraHandle zh, int function,
1285                           int num_setnames, char **setnames,
1286                           int *statuses)
1287 {
1288     int i, status;
1289     ASSERTZH;
1290     yaz_log(log_level, "zebra_deleteResultSet n=%d", num_setnames);
1291
1292     if (zebra_begin_read(zh))
1293         return Z_DeleteStatus_systemProblemAtTarget;
1294     switch (function)
1295     {
1296     case Z_DeleteResultSetRequest_list:
1297         assert(num_setnames>0);
1298         assert(setnames);
1299         resultSetDestroy(zh, num_setnames, setnames, statuses);
1300         break;
1301     case Z_DeleteResultSetRequest_all:
1302         resultSetDestroy(zh, -1, 0, statuses);
1303         break;
1304     }
1305     zebra_end_read(zh);
1306     status = Z_DeleteStatus_success;
1307     for (i = 0; i<num_setnames; i++)
1308         if (statuses[i] == Z_DeleteStatus_resultSetDidNotExist)
1309             status = statuses[i];
1310     return status;
1311 }
1312
1313 int zebra_errCode(ZebraHandle zh)
1314 {
1315     if (zh)
1316     {
1317         yaz_log(log_level, "zebra_errCode: %d",zh->errCode);
1318         return zh->errCode;
1319     }
1320     yaz_log(log_level, "zebra_errCode: o");
1321     return 0; 
1322 }
1323
1324 const char *zebra_errString(ZebraHandle zh)
1325 {
1326     const char *e = 0;
1327     if (zh)
1328         e= diagbib1_str(zh->errCode);
1329     yaz_log(log_level, "zebra_errString: %s",e);
1330     return e;
1331 }
1332
1333 char *zebra_errAdd(ZebraHandle zh)
1334 {
1335     char *a = 0;
1336     if (zh)
1337         a= zh->errString;
1338     yaz_log(log_level, "zebra_errAdd: %s",a);
1339     return a;
1340 }
1341
1342 ZEBRA_RES zebra_auth(ZebraHandle zh, const char *user, const char *pass)
1343 {
1344     const char *p;
1345     const char *astring;
1346     char u[40];
1347     ZebraService zs;
1348
1349     ZEBRA_CHECK_HANDLE(zh);
1350
1351     zs = zh->service;
1352     
1353     sprintf(u, "perm.%.30s", user ? user : "anonymous");
1354     p = res_get(zs->global_res, u);
1355     xfree(zh->user_perm);
1356     zh->user_perm = xstrdup(p ? p : "r");
1357
1358     /* Determine database access list */
1359     astring = res_get(zs->dbaccess, user ? user : "anonymous");
1360     if (astring)
1361         zh->dbaccesslist = xstrdup(astring);
1362     else
1363         zh->dbaccesslist = 0;
1364
1365     /* users that don't require a password .. */
1366     if (zh->user_perm && strchr(zh->user_perm, 'a'))
1367         return ZEBRA_OK;
1368     
1369     if (!zs->passwd_db || !passwd_db_auth(zs->passwd_db, user, pass))
1370         return ZEBRA_OK;
1371     return ZEBRA_FAIL;
1372 }
1373
1374 ZEBRA_RES zebra_admin_import_begin(ZebraHandle zh, const char *database,
1375                                    const char *record_type)
1376 {
1377     yaz_log(log_level, "zebra_admin_import_begin db=%s rt=%s", 
1378             database, record_type);
1379     if (zebra_select_database(zh, database) == ZEBRA_FAIL)
1380         return ZEBRA_FAIL;
1381     return zebra_begin_trans(zh, 1);
1382 }
1383
1384 ZEBRA_RES zebra_admin_import_end(ZebraHandle zh)
1385 {
1386     ZEBRA_CHECK_HANDLE(zh);
1387     yaz_log(log_level, "zebra_admin_import_end");
1388     return zebra_end_trans(zh);
1389 }
1390
1391 ZEBRA_RES zebra_admin_import_segment(ZebraHandle zh, Z_Segment *segment)
1392 {
1393     ZEBRA_RES res = ZEBRA_OK;
1394     zint sysno;
1395     int i;
1396     ZEBRA_CHECK_HANDLE(zh);
1397     yaz_log(log_level, "zebra_admin_import_segment");
1398
1399     for (i = 0; i<segment->num_segmentRecords; i++)
1400     {
1401         Z_NamePlusRecord *npr = segment->segmentRecords[i];
1402
1403         if (npr->which == Z_NamePlusRecord_intermediateFragment)
1404         {
1405             Z_FragmentSyntax *fragment = npr->u.intermediateFragment;
1406             if (fragment->which == Z_FragmentSyntax_notExternallyTagged)
1407             {
1408                 Odr_oct *oct = fragment->u.notExternallyTagged;
1409                 sysno = 0;
1410                 
1411                 if(zebra_update_record(
1412                        zh, 
1413                        action_update,
1414                        0, /* record Type */
1415                        &sysno,
1416                        0, /* match */
1417                        0, /* fname */
1418                        (const char *) oct->buf, oct->len) == ZEBRA_FAIL)
1419                     res = ZEBRA_FAIL;
1420             }
1421         }
1422     }
1423     return res;
1424 }
1425
1426 int delete_w_handle(const char *info, void *handle)
1427 {
1428     ZebraHandle zh = (ZebraHandle) handle;
1429     ISAM_P pos;
1430
1431     if (*info == sizeof(pos))
1432     {
1433         memcpy(&pos, info+1, sizeof(pos));
1434         isamb_unlink(zh->reg->isamb, pos);
1435     }
1436     return 0;
1437 }
1438
1439 int delete_w_all_handle(const char *info, void *handle)
1440 {
1441     ZebraHandle zh = (ZebraHandle) handle;
1442     ISAM_P pos;
1443
1444     if (*info == sizeof(pos))
1445     {
1446         ISAMB_PP pt;
1447         memcpy(&pos, info+1, sizeof(pos));
1448         pt = isamb_pp_open(zh->reg->isamb, pos, 2);
1449         if (pt)
1450         {
1451             struct it_key key;
1452             key.mem[0] = 0;
1453             while (isamb_pp_read(pt, &key))
1454             {
1455                 Record rec;
1456                 rec = rec_get(zh->reg->records, key.mem[0]);
1457                 rec_del(zh->reg->records, &rec);
1458             }
1459             isamb_pp_close(pt);
1460         }
1461     }
1462     return delete_w_handle(info, handle);
1463 }
1464
1465 static int delete_SU_handle(void *handle, int ord,
1466                             const char *index_type, const char *string_index,
1467                             zinfo_index_category_t cat)
1468 {
1469     ZebraHandle zh = (ZebraHandle) handle;
1470     char ord_buf[20];
1471     int ord_len;
1472 #if 0
1473     yaz_log(YLOG_LOG, "ord=%d index_type=%s index=%s cat=%d", ord,
1474             index_type, string_index, (int) cat);
1475 #endif
1476     ord_len = key_SU_encode(ord, ord_buf);
1477     ord_buf[ord_len] = '\0';
1478
1479     assert(zh->reg->isamb);
1480     assert(zh->reg->records);
1481     dict_delete_subtree(zh->reg->dict, ord_buf,
1482                         zh, 
1483                         !strcmp(string_index, "_ALLRECORDS") ?
1484                         delete_w_all_handle : delete_w_handle);
1485     return 0;
1486 }
1487
1488 ZEBRA_RES zebra_drop_database(ZebraHandle zh, const char *db)
1489 {
1490     ZEBRA_RES ret = ZEBRA_OK;
1491
1492     yaz_log(log_level, "zebra_drop_database %s", db);
1493     ZEBRA_CHECK_HANDLE(zh);
1494
1495     if (zebra_select_database(zh, db) == ZEBRA_FAIL)
1496         return ZEBRA_FAIL;
1497     if (zebra_begin_trans(zh, 1) == ZEBRA_FAIL)
1498         return ZEBRA_FAIL;
1499     if (zh->reg->isamb)
1500     {
1501         int db_ord;
1502         if (zebraExplain_curDatabase(zh->reg->zei, db))
1503         {
1504             zebra_setError(zh, YAZ_BIB1_DATABASE_DOES_NOT_EXIST, db);
1505             ret = ZEBRA_FAIL;
1506         }
1507         else
1508         {
1509             db_ord = zebraExplain_get_database_ord(zh->reg->zei);
1510             dict_delete_subtree_ord(zh->reg->matchDict, db_ord,
1511                                     0 /* handle */, 0 /* func */);
1512             zebraExplain_trav_ord(zh->reg->zei, zh, delete_SU_handle);
1513             zebraExplain_removeDatabase(zh->reg->zei, zh);
1514             zebra_remove_file_match(zh);
1515         }
1516     }
1517     else
1518     {
1519         yaz_log(YLOG_WARN, "drop database only supported for isam:b");
1520         zebra_setError(zh, YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED,
1521                        "drop database only supported for isam:b");
1522         ret = ZEBRA_FAIL;
1523     }
1524     if (zebra_end_trans(zh) != ZEBRA_OK)
1525     {
1526         yaz_log(YLOG_WARN, "zebra_end_trans failed");
1527         ret = ZEBRA_FAIL;
1528     }
1529     return ret;
1530 }
1531
1532 ZEBRA_RES zebra_create_database(ZebraHandle zh, const char *db)
1533 {
1534     yaz_log(log_level, "zebra_create_database %s", db);
1535     ZEBRA_CHECK_HANDLE(zh);
1536     assert(db);
1537
1538     if (zebra_select_database(zh, db) == ZEBRA_FAIL)
1539         return ZEBRA_FAIL;
1540     if (zebra_begin_trans(zh, 1))
1541         return ZEBRA_FAIL;
1542
1543     /* announce database */
1544     if (zebraExplain_newDatabase(zh->reg->zei, db, 0 
1545                                  /* explainDatabase */))
1546     {
1547         if (zebra_end_trans(zh) != ZEBRA_OK)
1548         {
1549             yaz_log(YLOG_WARN, "zebra_end_trans failed");
1550         }
1551         zebra_setError(zh, YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED, db);
1552         return ZEBRA_FAIL;
1553     }
1554     return zebra_end_trans(zh);
1555 }
1556
1557 int zebra_string_norm(ZebraHandle zh, const char *index_type,
1558                       const char *input_str, int input_len,
1559                       char *output_str, int output_len)
1560 {
1561     WRBUF wrbuf;
1562     zebra_map_t zm = zebra_map_get(zh->reg->zebra_maps, index_type);
1563     ASSERTZH;
1564     assert(input_str);
1565     assert(output_str);
1566     yaz_log(log_level, "zebra_string_norm ");
1567
1568     if (!zh->reg->zebra_maps)
1569         return -1;
1570     wrbuf = zebra_replace(zm, "", input_str, input_len);
1571     if (!wrbuf)
1572         return -2;
1573     if (wrbuf_len(wrbuf) >= output_len)
1574         return -3;
1575     if (wrbuf_len(wrbuf))
1576         memcpy(output_str, wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
1577     output_str[wrbuf_len(wrbuf)] = '\0';
1578     return wrbuf_len(wrbuf);
1579 }
1580
1581 /** \brief set register state (state*.LCK)
1582     \param zh Zebra handle
1583     \param val state
1584     \param seqno sequence number
1585     
1586     val is one of:
1587     d=writing to shadow(shadow enabled); writing to register (shadow disabled)
1588     o=reading only
1589     c=commit (writing to register, reading from shadow, shadow mode only)
1590 */
1591 static void zebra_set_state(ZebraHandle zh, int val, int seqno)
1592 {
1593     char state_fname[256];
1594     char *fname;
1595     long p = getpid();
1596     FILE *f;
1597     ASSERTZH;
1598     yaz_log(log_level, "zebra_set_state v=%c seq=%d", val, seqno);
1599
1600     sprintf(state_fname, "state.%s.LCK", zh->reg_name);
1601     fname = zebra_mk_fname(res_get(zh->res, "lockDir"), state_fname);
1602     f = fopen(fname, "w");
1603
1604     yaz_log(YLOG_DEBUG, "zebra_set_state: %c %d %ld", val, seqno, p);
1605     fprintf(f, "%c %d %ld\n", val, seqno, p);
1606     fclose(f);
1607     xfree(fname);
1608 }
1609
1610 static void zebra_get_state(ZebraHandle zh, char *val, int *seqno)
1611 {
1612     char state_fname[256];
1613     char *fname;
1614     FILE *f;
1615
1616     ASSERTZH;
1617     yaz_log(log_level, "zebra_get_state ");
1618
1619     sprintf(state_fname, "state.%s.LCK", zh->reg_name);
1620     fname = zebra_mk_fname(res_get(zh->res, "lockDir"), state_fname);
1621     f = fopen(fname, "r");
1622     *val = 'o';
1623     *seqno = 0;
1624
1625     if (f)
1626     {
1627         fscanf(f, "%c %d", val, seqno);
1628         fclose(f);
1629     }
1630     xfree(fname);
1631 }
1632
1633 ZEBRA_RES zebra_begin_read(ZebraHandle zh)
1634 {
1635     return zebra_begin_trans(zh, 0);
1636 }
1637
1638 ZEBRA_RES zebra_end_read(ZebraHandle zh)
1639 {
1640     return zebra_end_trans(zh);
1641 }
1642
1643 static void read_res_for_transaction(ZebraHandle zh)
1644 {
1645     const char *group = res_get(zh->res, "group");
1646     const char *v;
1647     /* FIXME - do we still use groups ?? */
1648     
1649     zh->m_group = group;
1650     v = res_get_prefix(zh->res, "followLinks", group, "1");
1651     zh->m_follow_links = atoi(v);
1652
1653     zh->m_record_id = res_get_prefix(zh->res, "recordId", group, 0);
1654     zh->m_record_type = res_get_prefix(zh->res, "recordType", group, 0);
1655
1656     v = res_get_prefix(zh->res, "storeKeys", group, "1");
1657     zh->m_store_keys = atoi(v);
1658
1659     v = res_get_prefix(zh->res, "storeData", group, "1");
1660     zh->m_store_data = atoi(v);
1661
1662     v = res_get_prefix(zh->res, "explainDatabase", group, "0");
1663     zh->m_explain_database = atoi(v);
1664
1665     v = res_get_prefix(zh->res, "openRW", group, "1");
1666     zh->m_flag_rw = atoi(v);
1667
1668     v = res_get_prefix(zh->res, "fileVerboseLimit", group, "1000");
1669     zh->m_file_verbose_limit = atoi(v);
1670 }
1671
1672 ZEBRA_RES zebra_begin_trans(ZebraHandle zh, int rw)
1673 {
1674     ZEBRA_CHECK_HANDLE(zh);
1675     zebra_select_default_database(zh);
1676     if (!zh->res)
1677     {
1678         zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
1679                        "zebra_begin_trans: no database selected");
1680         return ZEBRA_FAIL;
1681     }
1682     ASSERTZHRES;
1683     yaz_log(log_level, "zebra_begin_trans rw=%d",rw);
1684
1685     if (zh->user_perm)
1686     {
1687         if (rw && !strchr(zh->user_perm, 'w'))
1688         {
1689             zebra_setError(
1690                 zh,
1691                 YAZ_BIB1_ES_PERMISSION_DENIED_ON_ES_CANNOT_MODIFY_OR_DELETE,
1692                 0);
1693             return ZEBRA_FAIL;
1694         }
1695     }
1696
1697     assert(zh->res);
1698     if (rw)
1699     {
1700         int seqno = 0;
1701         char val = '?';
1702         const char *rval = 0;
1703         
1704         (zh->trans_no++);
1705         if (zh->trans_w_no)
1706         {
1707             read_res_for_transaction(zh);
1708             return 0;
1709         }
1710         if (zh->trans_no != 1)
1711         {
1712             zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
1713                            "zebra_begin_trans: no write trans within read");
1714             return ZEBRA_FAIL;
1715         }
1716         if (zh->reg)
1717         {
1718             resultSetInvalidate(zh);
1719             zebra_register_close(zh->service, zh->reg);
1720         }
1721         zh->trans_w_no = zh->trans_no;
1722
1723         zh->records_inserted = 0;
1724         zh->records_updated = 0;
1725         zh->records_deleted = 0;
1726         zh->records_processed = 0;
1727         zh->records_skipped = 0;
1728         
1729 #if HAVE_SYS_TIMES_H
1730         times(&zh->tms1);
1731 #endif
1732         /* lock */
1733         if (zh->shadow_enable)
1734             rval = res_get(zh->res, "shadow");
1735         
1736         if (rval)
1737         {
1738             zebra_lock_r(zh->lock_normal);
1739             zebra_lock_w(zh->lock_shadow);
1740         }
1741         else
1742         {
1743             zebra_lock_w(zh->lock_normal);
1744             zebra_lock_w(zh->lock_shadow);
1745         }
1746         zebra_get_state(zh, &val, &seqno);
1747         if (val != 'o')
1748         {
1749             /* either we didn't finish commit or shadow is dirty */
1750             if (!rval)
1751             {
1752                 yaz_log(YLOG_WARN, "previous transaction did not finish "
1753                         "(shadow disabled)");
1754             }
1755             zebra_unlock(zh->lock_shadow);
1756             zebra_unlock(zh->lock_normal);
1757             if (zebra_commit(zh))
1758             {
1759                 zh->trans_no--;
1760                 zh->trans_w_no = 0;
1761                 return ZEBRA_FAIL;
1762             }
1763             if (rval)
1764             {
1765                 zebra_lock_r(zh->lock_normal);
1766                 zebra_lock_w(zh->lock_shadow);
1767             }
1768             else
1769             {
1770                 zebra_lock_w(zh->lock_normal);
1771                 zebra_lock_w(zh->lock_shadow);
1772             }
1773         }
1774
1775         zebra_set_state(zh, 'd', seqno);
1776         
1777         zh->reg = zebra_register_open(zh->service, zh->reg_name,
1778                                       1, rval ? 1 : 0, zh->res,
1779                                       zh->path_reg);
1780         if (zh->reg)
1781             zh->reg->seqno = seqno;
1782         else
1783         {
1784             zebra_set_state(zh, 'o', seqno);
1785             
1786             zebra_unlock(zh->lock_shadow);
1787             zebra_unlock(zh->lock_normal);
1788
1789             zh->trans_no--;
1790             zh->trans_w_no = 0;
1791
1792             zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
1793                            "zebra_begin_trans: cannot open register");
1794             yaz_log(YLOG_FATAL, "%s", zh->errString);
1795             return ZEBRA_FAIL;
1796         }
1797         zebraExplain_curDatabase(zh->reg->zei, zh->basenames[0]);
1798     }
1799     else
1800     {
1801         int dirty = 0;
1802         char val;
1803         int seqno;
1804         
1805         (zh->trans_no)++;
1806         
1807         if (zh->trans_no != 1)
1808         {
1809             return zebra_flush_reg(zh);
1810         }
1811 #if HAVE_SYS_TIMES_H
1812         times(&zh->tms1);
1813 #endif
1814         if (!zh->res)
1815         {
1816             (zh->trans_no)--;
1817             zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
1818             return ZEBRA_FAIL;
1819         }
1820         if (!zh->lock_normal || !zh->lock_shadow)
1821         {
1822             (zh->trans_no)--;
1823             zh->errCode = YAZ_BIB1_TEMPORARY_SYSTEM_ERROR;
1824             return ZEBRA_FAIL;
1825         }
1826         zebra_get_state(zh, &val, &seqno);
1827         if (val == 'd')
1828             val = 'o';
1829         
1830         if (!zh->reg)
1831             dirty = 1;
1832         else if (seqno != zh->reg->seqno)
1833         {
1834             yaz_log(YLOG_DEBUG, "reopen seqno cur/old %d/%d",
1835                     seqno, zh->reg->seqno);
1836             dirty = 1;
1837         }
1838         else if (zh->reg->last_val != val)
1839         {
1840             yaz_log(YLOG_DEBUG, "reopen last cur/old %d/%d",
1841                     val, zh->reg->last_val);
1842             dirty = 1;
1843         }
1844         if (!dirty)
1845             return ZEBRA_OK;
1846         
1847         if (val == 'c')
1848             zebra_lock_r(zh->lock_shadow);
1849         else
1850             zebra_lock_r(zh->lock_normal);
1851         
1852         if (zh->reg)
1853         {
1854             resultSetInvalidate(zh);
1855             zebra_register_close(zh->service, zh->reg);
1856         }
1857         zh->reg = zebra_register_open(zh->service, zh->reg_name,
1858                                       0, val == 'c' ? 1 : 0,
1859                                       zh->res, zh->path_reg);
1860         if (!zh->reg)
1861         {
1862             zebra_unlock(zh->lock_normal);
1863             zebra_unlock(zh->lock_shadow);
1864             zh->trans_no--;
1865             zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
1866             return ZEBRA_FAIL;
1867         }
1868         zh->reg->last_val = val;
1869         zh->reg->seqno = seqno;
1870     }
1871     read_res_for_transaction(zh);
1872     return ZEBRA_OK;
1873 }
1874
1875 ZEBRA_RES zebra_end_trans(ZebraHandle zh)
1876 {
1877     ZebraTransactionStatus dummy;
1878
1879     yaz_log(log_level, "zebra_end_trans");
1880     ZEBRA_CHECK_HANDLE(zh);
1881     return zebra_end_transaction(zh, &dummy);
1882 }
1883
1884 ZEBRA_RES zebra_end_transaction(ZebraHandle zh, ZebraTransactionStatus *status)
1885 {
1886     char val;
1887     int seqno;
1888     const char *rval;
1889
1890     ZEBRA_CHECK_HANDLE(zh);
1891
1892     assert(status);
1893     yaz_log(log_level, "zebra_end_transaction");
1894
1895     status->processed = 0;
1896     status->inserted  = 0;
1897     status->updated   = 0;
1898     status->deleted   = 0;
1899     status->utime     = 0;
1900     status->stime     = 0;
1901
1902     if (!zh->res || !zh->reg)
1903     {
1904         zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
1905                        "zebra_end_trans: no open transaction");
1906         return ZEBRA_FAIL;
1907     }
1908     if (zh->trans_no != zh->trans_w_no)
1909     {
1910         zh->trans_no--;
1911         if (zh->trans_no != 0)
1912             return ZEBRA_OK;
1913
1914         /* release read lock */
1915
1916         zebra_unlock(zh->lock_normal);
1917         zebra_unlock(zh->lock_shadow);
1918     }
1919     else
1920     {   /* release write lock */
1921         zh->trans_no--;
1922         zh->trans_w_no = 0;
1923         
1924         yaz_log(YLOG_DEBUG, "zebra_end_trans");
1925         rval = res_get(zh->res, "shadow");
1926         
1927         zebraExplain_runNumberIncrement(zh->reg->zei, 1);
1928         
1929         zebra_flush_reg(zh);
1930         
1931         resultSetInvalidate(zh);
1932
1933         zebra_register_close(zh->service, zh->reg);
1934         zh->reg = 0;
1935         
1936         yaz_log(YLOG_LOG, "Records: "ZINT_FORMAT" i/u/d "
1937                 ZINT_FORMAT"/"ZINT_FORMAT"/"ZINT_FORMAT, 
1938                 zh->records_processed, zh->records_inserted,
1939                 zh->records_updated, zh->records_deleted);
1940         
1941         status->processed = zh->records_processed;
1942         status->inserted = zh->records_inserted;
1943         status->updated = zh->records_updated;
1944         status->deleted = zh->records_deleted;
1945         
1946         zebra_get_state(zh, &val, &seqno);
1947         if (val != 'd')
1948         {
1949             BFiles bfs = bfs_create(rval, zh->path_reg);
1950             bf_commitClean(bfs, rval);
1951             bfs_destroy(bfs);
1952         }
1953         if (!rval)
1954             seqno++;
1955         zebra_set_state(zh, 'o', seqno);
1956         zebra_unlock(zh->lock_shadow);
1957         zebra_unlock(zh->lock_normal);
1958         
1959     }
1960 #if HAVE_SYS_TIMES_H
1961     times(&zh->tms2);
1962     yaz_log(log_level, "user/system: %ld/%ld",
1963             (long) (zh->tms2.tms_utime - zh->tms1.tms_utime),
1964             (long) (zh->tms2.tms_stime - zh->tms1.tms_stime));
1965     
1966     status->utime = (long) (zh->tms2.tms_utime - zh->tms1.tms_utime);
1967     status->stime = (long) (zh->tms2.tms_stime - zh->tms1.tms_stime);
1968 #endif
1969     return ZEBRA_OK;
1970 }
1971
1972 ZEBRA_RES zebra_repository_update(ZebraHandle zh, const char *path)
1973 {
1974     return zebra_repository_index(zh, path, action_update);
1975 }
1976
1977 ZEBRA_RES zebra_repository_delete(ZebraHandle zh, const char *path)
1978 {
1979     return zebra_repository_index(zh, path, action_delete);
1980 }
1981
1982 ZEBRA_RES zebra_repository_index(ZebraHandle zh, const char *path,
1983                                  enum zebra_recctrl_action_t action)
1984 {
1985     ASSERTZH;
1986     assert(path);
1987
1988     if (action == action_update)
1989         yaz_log(log_level, "updating %s", path);
1990     else if (action == action_delete)
1991         yaz_log(log_level, "deleting %s", path);
1992     else if (action == action_a_delete)
1993         yaz_log(log_level, "attempt deleting %s", path);
1994     else
1995         yaz_log(log_level, "update action=%d", (int) action);
1996
1997     if (zh->m_record_id && !strcmp(zh->m_record_id, "file"))
1998         return zebra_update_file_match(zh, path);
1999     else
2000         return zebra_update_from_path(zh, path, action);
2001 }
2002
2003 ZEBRA_RES zebra_repository_show(ZebraHandle zh, const char *path)
2004 {
2005     ASSERTZH;
2006     assert(path);
2007     yaz_log(log_level, "zebra_repository_show");
2008     repositoryShow(zh, path);
2009     return ZEBRA_OK;
2010 }
2011
2012 static ZEBRA_RES zebra_commit_ex(ZebraHandle zh, int clean_only)
2013 {
2014     int seqno;
2015     char val;
2016     const char *rval;
2017     BFiles bfs;
2018     ZEBRA_RES res = ZEBRA_OK;
2019
2020     ASSERTZH;
2021
2022     yaz_log(log_level, "zebra_commit_ex clean_only=%d", clean_only);
2023     zebra_select_default_database(zh);
2024     if (!zh->res)
2025     {
2026         zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
2027         return ZEBRA_FAIL;
2028     }
2029     rval = res_get(zh->res, "shadow");    
2030     if (!rval)
2031     {
2032         yaz_log(YLOG_WARN, "Cannot perform commit - No shadow area defined");
2033         return ZEBRA_OK;
2034     }
2035
2036     zebra_lock_w(zh->lock_normal);
2037     zebra_lock_r(zh->lock_shadow);
2038
2039     bfs = bfs_create(res_get(zh->res, "register"), zh->path_reg);
2040     if (!bfs)
2041     {
2042         zebra_unlock(zh->lock_shadow);
2043         zebra_unlock(zh->lock_normal);
2044         return ZEBRA_FAIL;
2045     }
2046     zebra_get_state(zh, &val, &seqno);
2047
2048     if (val == 'd')
2049     {
2050         /* shadow area is dirty and so we must throw it away */
2051         yaz_log(YLOG_WARN, "previous transaction didn't reach commit");
2052         clean_only = 1;
2053     }
2054     else if (val == 'c')
2055     {
2056         /* commit has started. We can not remove it anymore */
2057         clean_only = 0;
2058     }
2059
2060     if (rval && *rval)
2061         bf_cache(bfs, rval);
2062     if (bf_commitExists(bfs))
2063     {
2064         if (clean_only)
2065             zebra_set_state(zh, 'd', seqno);
2066         else
2067         {
2068             zebra_set_state(zh, 'c', seqno);
2069             
2070             yaz_log(log_level, "commit start");
2071             if (bf_commitExec(bfs))
2072                 res = ZEBRA_FAIL;
2073         }
2074         if (res == ZEBRA_OK)
2075         {
2076             seqno++;
2077             zebra_set_state(zh, 'o', seqno);
2078             
2079             zebra_unlock(zh->lock_shadow);
2080             zebra_unlock(zh->lock_normal);
2081             
2082             zebra_lock_w(zh->lock_shadow);
2083             bf_commitClean(bfs, rval);
2084             zebra_unlock(zh->lock_shadow);
2085         }
2086         else
2087         {
2088             zebra_unlock(zh->lock_shadow);
2089             zebra_unlock(zh->lock_normal);
2090             yaz_log(YLOG_WARN, "zebra_commit: failed");
2091         }
2092     }
2093     else
2094     {
2095         zebra_unlock(zh->lock_shadow);
2096         zebra_unlock(zh->lock_normal);
2097         yaz_log(log_level, "nothing to commit");
2098     }
2099     bfs_destroy(bfs);
2100
2101     return res;
2102 }
2103
2104 ZEBRA_RES zebra_clean(ZebraHandle zh)
2105 {
2106     yaz_log(log_level, "zebra_clean");
2107     ZEBRA_CHECK_HANDLE(zh);
2108     return zebra_commit_ex(zh, 1);
2109 }
2110
2111 ZEBRA_RES zebra_commit(ZebraHandle zh)
2112 {
2113     yaz_log(log_level, "zebra_commit");
2114     ZEBRA_CHECK_HANDLE(zh);
2115     return zebra_commit_ex(zh, 0);
2116 }
2117
2118
2119 ZEBRA_RES zebra_init(ZebraHandle zh)
2120 {
2121     const char *rval;
2122     BFiles bfs = 0;
2123
2124     yaz_log(log_level, "zebra_init");
2125
2126     ZEBRA_CHECK_HANDLE(zh);
2127
2128     zebra_select_default_database(zh);
2129     if (!zh->res)
2130     {
2131         zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
2132                        "cannot select default database");
2133         return ZEBRA_FAIL;
2134     }
2135     rval = res_get(zh->res, "shadow");
2136
2137     bfs = bfs_create(res_get(zh->res, "register"), zh->path_reg);
2138     if (!bfs)
2139     {
2140         zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR, "bfs_create");
2141         return ZEBRA_FAIL;
2142     }
2143     if (rval && *rval)
2144         bf_cache(bfs, rval);
2145     
2146     bf_reset(bfs);
2147     bfs_destroy(bfs);
2148     zebra_set_state(zh, 'o', 0);
2149     return ZEBRA_OK;
2150 }
2151
2152 ZEBRA_RES zebra_compact(ZebraHandle zh)
2153 {
2154     BFiles bfs;
2155
2156     yaz_log(log_level, "zebra_compact");
2157     ZEBRA_CHECK_HANDLE(zh);
2158     if (!zh->res)
2159     {
2160         zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
2161         return ZEBRA_FAIL;
2162     }
2163     bfs = bfs_create(res_get(zh->res, "register"), zh->path_reg);
2164     inv_compact(bfs);
2165     bfs_destroy(bfs);
2166     return ZEBRA_OK;
2167 }
2168
2169 void zebra_result(ZebraHandle zh, int *code, char **addinfo)
2170 {
2171     yaz_log(log_level, "zebra_result");
2172     if (zh)
2173     {
2174         *code = zh->errCode;
2175         *addinfo = zh->errString;
2176     }
2177     else
2178     {
2179         *code = YAZ_BIB1_TEMPORARY_SYSTEM_ERROR;
2180         *addinfo ="ZebraHandle is NULL";
2181     }
2182 }
2183
2184 void zebra_shadow_enable(ZebraHandle zh, int value)
2185 {
2186     ASSERTZH;
2187     yaz_log(log_level, "zebra_shadow_enable");
2188     zh->shadow_enable = value;
2189 }
2190
2191 ZEBRA_RES zebra_octet_term_encoding(ZebraHandle zh, const char *encoding)
2192 {
2193     yaz_log(log_level, "zebra_octet_term_encoding %s", encoding);
2194     ZEBRA_CHECK_HANDLE(zh);
2195     assert(encoding);
2196
2197     if (zh->iconv_to_utf8 != 0)
2198         yaz_iconv_close(zh->iconv_to_utf8);
2199     if (zh->iconv_from_utf8 != 0)
2200         yaz_iconv_close(zh->iconv_from_utf8);
2201     
2202     zh->iconv_to_utf8 =
2203         yaz_iconv_open("UTF-8", encoding);
2204     if (zh->iconv_to_utf8 == 0)
2205         yaz_log(YLOG_WARN, "iconv: %s to UTF-8 unsupported", encoding);
2206     zh->iconv_from_utf8 =
2207         yaz_iconv_open(encoding, "UTF-8");
2208     if (zh->iconv_to_utf8 == 0)
2209         yaz_log(YLOG_WARN, "iconv: UTF-8 to %s unsupported", encoding);
2210
2211     return ZEBRA_OK;
2212 }
2213
2214 ZEBRA_RES zebra_record_encoding(ZebraHandle zh, const char *encoding)
2215 {
2216     yaz_log(log_level, "zebra_record_encoding");
2217     ZEBRA_CHECK_HANDLE(zh);
2218     xfree(zh->record_encoding);
2219     zh->record_encoding = 0;
2220     if (encoding)
2221         zh->record_encoding = xstrdup(encoding);
2222     return ZEBRA_OK;
2223 }
2224
2225 void zebra_set_resource(ZebraHandle zh, const char *name, const char *value)
2226 {
2227     assert(name);
2228     assert(value);
2229     yaz_log(log_level, "zebra_set_resource %s:%s", name, value);
2230     ASSERTZH;
2231     res_set(zh->res, name, value);
2232 }
2233
2234 const char *zebra_get_resource(ZebraHandle zh,
2235                                const char *name, const char *defaultvalue)
2236 {
2237     const char *v;
2238     ASSERTZH;
2239     assert(name);
2240     v = res_get_def(zh->res, name,(char *)defaultvalue);
2241     yaz_log(log_level, "zebra_get_resource %s:%s", name, v);
2242     return v;
2243 }
2244
2245 /* moved from zebra_api_ext.c by pop */
2246 /* FIXME: Should this really be public??? -Heikki */
2247
2248 int zebra_trans_no(ZebraHandle zh)
2249 {
2250     yaz_log(log_level, "zebra_trans_no");
2251     ASSERTZH;
2252     return zh->trans_no;
2253 }
2254
2255 int zebra_get_shadow_enable(ZebraHandle zh)
2256 {
2257     yaz_log(log_level, "zebra_get_shadow_enable");
2258     ASSERTZH;
2259     return zh->shadow_enable;
2260 }
2261
2262 void zebra_set_shadow_enable(ZebraHandle zh, int value)
2263 {
2264     yaz_log(log_level, "zebra_set_shadow_enable %d",value);
2265     ASSERTZH;
2266     zh->shadow_enable = value;
2267 }
2268
2269 ZEBRA_RES zebra_add_record(ZebraHandle zh,
2270                            const char *buf, int buf_size)
2271 {
2272     return zebra_update_record(zh, action_update, 
2273                                0 /* record type */,
2274                                0 /* sysno */ ,
2275                                0 /* match */, 
2276                                0 /* fname */,
2277                                buf, buf_size);
2278 }
2279
2280 ZEBRA_RES zebra_update_record(ZebraHandle zh, 
2281                               enum zebra_recctrl_action_t action,
2282                               const char *recordType,
2283                               zint *sysno, const char *match,
2284                               const char *fname,
2285                               const char *buf, int buf_size)
2286 {
2287     ZEBRA_RES res;
2288
2289     ZEBRA_CHECK_HANDLE(zh);
2290
2291     assert(buf);
2292
2293     yaz_log(log_level, "zebra_update_record");
2294     if (sysno)
2295         yaz_log(log_level, " sysno=" ZINT_FORMAT, *sysno);
2296
2297     if (buf_size < 1)
2298         buf_size = strlen(buf);
2299
2300     if (zebra_begin_trans(zh, 1) == ZEBRA_FAIL)
2301         return ZEBRA_FAIL;
2302     res = zebra_buffer_extract_record(zh, buf, buf_size, 
2303                                       action,
2304                                       recordType,
2305                                       sysno,   
2306                                       match, 
2307                                       fname);
2308     if (zebra_end_trans(zh) != ZEBRA_OK)
2309     {
2310         yaz_log(YLOG_WARN, "zebra_end_trans failed");
2311         res = ZEBRA_FAIL;
2312     }
2313     return res; 
2314 }
2315
2316 /* ---------------------------------------------------------------------------
2317    Searching 
2318 */
2319
2320 ZEBRA_RES zebra_search_PQF(ZebraHandle zh, const char *pqf_query,
2321                            const char *setname, zint *hits)
2322 {
2323     zint lhits = 0;
2324     ZEBRA_RES res = ZEBRA_OK;
2325     Z_RPNQuery *query;
2326     ODR odr;
2327
2328
2329     ZEBRA_CHECK_HANDLE(zh);
2330
2331     odr = odr_createmem(ODR_ENCODE);
2332
2333     assert(pqf_query);
2334     assert(setname);
2335
2336     yaz_log(log_level, "zebra_search_PQF s=%s q=%s", setname, pqf_query);
2337     
2338     query = p_query_rpn(odr, pqf_query);
2339     
2340     if (!query)
2341     {
2342         yaz_log(YLOG_WARN, "bad query %s\n", pqf_query);
2343         zh->errCode = YAZ_BIB1_MALFORMED_QUERY;
2344         res = ZEBRA_FAIL;
2345     }
2346     else
2347         res = zebra_search_RPN(zh, odr, query, setname, &lhits);
2348     
2349     odr_destroy(odr);
2350
2351     yaz_log(log_level, "Hits: " ZINT_FORMAT, lhits);
2352
2353     if (hits)
2354         *hits = lhits;
2355
2356     return res;
2357 }
2358
2359 /* ---------------------------------------------------------------------------
2360    Sort - a simplified interface, with optional read locks.
2361 */
2362 int zebra_sort_by_specstr(ZebraHandle zh, ODR stream,
2363                           const char *sort_spec,
2364                           const char *output_setname,
2365                           const char **input_setnames) 
2366 {
2367     int num_input_setnames = 0;
2368     int sort_status = 0;
2369     Z_SortKeySpecList *sort_sequence;
2370
2371     ZEBRA_CHECK_HANDLE(zh);
2372     assert(stream);
2373     assert(sort_spec);
2374     assert(output_setname);
2375     assert(input_setnames);
2376     sort_sequence = yaz_sort_spec(stream, sort_spec);
2377     yaz_log(log_level, "sort (FIXME) ");
2378     if (!sort_sequence)
2379     {
2380         yaz_log(YLOG_WARN, "invalid sort specs '%s'", sort_spec);
2381         zh->errCode = YAZ_BIB1_CANNOT_SORT_ACCORDING_TO_SEQUENCE;
2382         return -1;
2383     }
2384     
2385     /* we can do this, since the perl typemap code for char** will 
2386        put a NULL at the end of list */
2387     while (input_setnames[num_input_setnames]) num_input_setnames++;
2388
2389     if (zebra_begin_read(zh))
2390         return -1;
2391     
2392     resultSetSort(zh, stream->mem, num_input_setnames, input_setnames,
2393                   output_setname, sort_sequence, &sort_status);
2394     
2395     zebra_end_read(zh);
2396     return sort_status;
2397 }
2398
2399 /* ---------------------------------------------------------------------------
2400    Get BFS for Zebra system (to make alternative storage methods)
2401 */
2402 struct BFiles_struct *zebra_get_bfs(ZebraHandle zh)
2403 {
2404     if (zh && zh->reg)
2405         return zh->reg->bfs;
2406     return 0;
2407 }
2408
2409
2410 /* ---------------------------------------------------------------------------
2411    Set limit for search/scan
2412 */
2413 ZEBRA_RES zebra_set_limit(ZebraHandle zh, int complement_flag, zint *ids)
2414 {
2415     ZEBRA_CHECK_HANDLE(zh);
2416     zebra_limit_destroy(zh->m_limit);
2417     zh->m_limit = zebra_limit_create(complement_flag, ids);
2418     return ZEBRA_OK;
2419 }
2420
2421 /*
2422   Set Error code + addinfo
2423 */
2424 void zebra_setError(ZebraHandle zh, int code, const char *addinfo)
2425 {
2426     if (!zh)
2427         return;
2428     zh->errCode = code;
2429     nmem_reset(zh->nmem_error);
2430     zh->errString = addinfo ? nmem_strdup(zh->nmem_error, addinfo) : 0;
2431 }
2432
2433 void zebra_setError_zint(ZebraHandle zh, int code, zint i)
2434 {
2435     char vstr[60];
2436     sprintf(vstr, ZINT_FORMAT, i);
2437
2438     zh->errCode = code;
2439     nmem_reset(zh->nmem_error);
2440     zh->errString = nmem_strdup(zh->nmem_error, vstr);
2441 }
2442
2443 void zebra_lock_prefix(Res res, char *path)
2444 {
2445     const char *lock_dir = res_get_def(res, "lockDir", "");
2446     
2447     strcpy(path, lock_dir);
2448     if (*path && path[strlen(path)-1] != '/')
2449         strcat(path, "/");
2450 }
2451
2452 /*
2453  * Local variables:
2454  * c-basic-offset: 4
2455  * c-file-style: "Stroustrup"
2456  * indent-tabs-mode: nil
2457  * End:
2458  * vim: shiftwidth=4 tabstop=8 expandtab
2459  */
2460