1 /* This file is part of the Zebra server.
2 Copyright (C) 1994-2009 Index Data
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
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
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
32 #include <yaz/diagbib1.h>
33 #include <yaz/pquery.h>
34 #include <yaz/sortspec.h>
39 #include <idzebra/api.h>
40 #include <yaz/oid_db.h>
42 #define DEFAULT_APPROX_LIMIT 2000000000
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)
49 static int log_level = 0;
50 static int log_level_initialized = 0;
52 static void zebra_open_res(ZebraHandle zh);
53 static void zebra_close_res(ZebraHandle zh);
55 static ZEBRA_RES zebra_check_handle(ZebraHandle zh)
62 #define ZEBRA_CHECK_HANDLE(zh) if (zebra_check_handle(zh) != ZEBRA_OK) return ZEBRA_FAIL
64 static void zebra_chdir(ZebraService zs)
68 yaz_log(log_level, "zebra_chdir");
69 dir = res_get(zs->global_res, "chdir");
72 yaz_log(YLOG_DEBUG, "chdir %s", dir);
80 static ZEBRA_RES zebra_flush_reg(ZebraHandle zh)
82 ZEBRA_CHECK_HANDLE(zh);
83 yaz_log(log_level, "zebra_flush_reg");
84 zebraExplain_flush(zh->reg->zei, zh);
86 key_block_flush(zh->reg->key_block, 1);
88 zebra_index_merge(zh);
92 static struct zebra_register *zebra_register_open(ZebraService zs,
94 int rw, int useshadow,
96 const char *reg_path);
97 static void zebra_register_close(ZebraService zs, struct zebra_register *reg);
99 const char *zebra_get_encoding(ZebraHandle zh)
101 assert(zh && zh->session_res);
102 return res_get_def(zh->session_res, "encoding", "ISO-8859-1");
105 ZebraHandle zebra_open(ZebraService zs, Res res)
108 const char *default_encoding;
109 if (!log_level_initialized)
111 log_level = yaz_log_module_level("zebraapi");
112 log_level_initialized = 1;
115 yaz_log(log_level, "zebra_open");
120 zh = (ZebraHandle) xmalloc(sizeof(*zh));
121 yaz_log(YLOG_DEBUG, "zebra_open zs=%p returns %p", zs, zh);
124 zh->reg = 0; /* no register attached yet */
130 zh->session_res = res_open(zs->global_res, res);
132 zh->dbaccesslist = 0;
134 zh->reg_name = xstrdup("");
136 zh->num_basenames = 0;
139 zh->approx_limit = DEFAULT_APPROX_LIMIT;
146 zh->shadow_enable = 1;
147 zh->m_staticrank = 0;
148 zh->m_segment_indexing = 0;
150 zh->break_handler_func = 0;
151 zh->break_handler_data = 0;
153 default_encoding = zebra_get_encoding(zh);
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",
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",
166 zh->record_encoding = 0;
168 zebra_mutex_cond_lock(&zs->session_lock);
170 zh->next = zs->sessions;
173 zebra_mutex_cond_unlock(&zs->session_lock);
175 zh->store_data_buf = 0;
177 zh->m_limit = zebra_limit_create(1, 0);
179 zh->nmem_error = nmem_create();
184 ZebraService zebra_start(const char *configName)
186 return zebra_start_res(configName, 0, 0);
189 ZebraService zebra_start_res(const char *configName, Res def_res, Res over_res)
192 char version_str[16];
197 if (!log_level_initialized)
199 log_level = yaz_log_module_level("zebraapi");
200 log_level_initialized = 1;
203 zebra_get_version(version_str, system_str);
205 yaz_log(YLOG_LOG, "zebra_start %s %s", version_str,
206 configName ? configName : "");
208 if ((res = res_open(def_res, over_res)))
210 const char *passwd_plain = 0;
211 const char *passwd_encrypt = 0;
212 const char *dbaccess = 0;
217 ZEBRA_RES ret = res_read_file(res, configName);
223 if (zebra_check_res(res))
225 yaz_log(YLOG_FATAL, "Configuration error(s) for %s",
232 zebra_check_res(res);
235 zh = xmalloc(sizeof(*zh));
236 zh->global_res = res;
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");
246 if (!passwd_plain && !passwd_encrypt)
247 zh->passwd_db = NULL;
250 zh->passwd_db = passwd_db_open();
252 yaz_log(YLOG_WARN|YLOG_ERRNO, "passwd_db_open failed");
256 passwd_db_file_plain(zh->passwd_db, passwd_plain);
258 passwd_db_file_crypt(zh->passwd_db, passwd_encrypt);
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);
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);
279 const char *module_path = res_get(res, "modulePath");
281 recTypeClass_load_modules(&zh->record_classes, zh->nmem,
289 void zebra_filter_info(ZebraService zs, void *cd,
290 void(*cb)(void *cd, const char *name))
294 recTypeClass_info(zs->record_classes, cd, cb);
297 void zebra_pidfname(ZebraService zs, char *path)
300 zebra_lock_prefix(zs->global_res, path);
301 strcat(path, "zebrasrv.pid");
304 Dict dict_open_res(BFiles bfs, const char *name, int cache, int rw,
305 int compact_flag, Res res)
307 int page_size = 4096;
308 char resource_str[200];
309 sprintf(resource_str, "dict.%.100s.pagesize", name);
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",
316 return dict_open(bfs, name, cache, rw, compact_flag, page_size);
320 struct zebra_register *zebra_register_open(ZebraService zs, const char *name,
321 int rw, int useshadow, Res res,
322 const char *reg_path)
324 struct zebra_register *reg;
325 int record_compression = REC_COMPRESS_NONE;
326 const char *recordCompression = 0;
327 const char *profilePath;
329 int sort_type = ZEBRA_SORT_TYPE_FLAT;
330 ZEBRA_RES ret = ZEBRA_OK;
334 reg = xmalloc(sizeof(*reg));
337 reg->name = xstrdup(name);
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)");
347 reg->dh = data1_create();
354 reg->bfs = bfs_create(res_get(res, "register"), reg_path);
357 data1_destroy(reg->dh);
364 if (bf_cache(reg->bfs, res_get(res, "shadow")) == ZEBRA_FAIL)
366 bfs_destroy(reg->bfs);
367 data1_destroy(reg->dh);
374 getcwd(cwd, sizeof(cwd)-1);
375 profilePath = res_get_def(res, "profilePath", 0);
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);
382 zebra_maps_open(res, reg_path, profilePath);
383 if (!reg->zebra_maps)
385 recTypes_destroy(reg->recTypes);
386 bfs_destroy(reg->bfs);
387 data1_destroy(reg->dh);
392 reg->rank_classes = NULL;
395 reg->keys = zebra_rec_keys_open();
397 reg->sortKeys = zebra_rec_keys_open();
408 /* installing rank classes */
409 zebraRankInstall(reg, rank_1_class);
410 zebraRankInstall(reg, rank_similarity_class);
411 zebraRankInstall(reg, rank_static_class);
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;
420 const char *index_fname = res_get_def(res, "index", "default.idx");
421 if (index_fname && *index_fname && strcmp(index_fname, "none"))
423 if (zebra_maps_read_file(reg->zebra_maps, index_fname) != ZEBRA_OK)
428 zebra_maps_define_default_sort(reg->zebra_maps);
432 if (!(reg->records = rec_open(reg->bfs, rw, record_compression)))
434 yaz_log(YLOG_WARN, "rec_open failed");
439 reg->matchDict = dict_open_res(reg->bfs, GMATCH_DICT, 20, 1, 0, res);
441 if (!(reg->dict = dict_open_res(reg->bfs, FNAME_DICT, 40, rw, 0, res)))
443 yaz_log(YLOG_WARN, "dict_open failed");
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;
456 yaz_log(YLOG_WARN, "bad_value for 'sortindex'");
461 if (!(reg->sort_index = zebra_sort_open(reg->bfs, rw, sort_type)))
463 yaz_log(YLOG_WARN, "zebra_sort_open failed");
466 if (res_get_match(res, "isam", "s", ISAM_DEFAULT))
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))))
472 yaz_log(YLOG_WARN, "isams_open failed");
476 if (res_get_match(res, "isam", "c", ISAM_DEFAULT))
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))))
482 yaz_log(YLOG_WARN, "isamc_open failed");
486 if (res_get_match(res, "isam", "b", ISAM_DEFAULT))
488 struct ISAMC_M_s isamc_m;
490 if (!(reg->isamb = isamb_open(reg->bfs, "isamb",
491 rw, key_isamc_m(res, &isamc_m), 0)))
493 yaz_log(YLOG_WARN, "isamb_open failed");
497 if (res_get_match(res, "isam", "bc", ISAM_DEFAULT))
499 struct ISAMC_M_s isamc_m;
501 if (!(reg->isamb = isamb_open(reg->bfs, "isamb",
502 rw, key_isamc_m(res, &isamc_m), 1)))
504 yaz_log(YLOG_WARN, "isamb_open failed");
508 if (res_get_match(res, "isam", "null", ISAM_DEFAULT))
510 struct ISAMC_M_s isamc_m;
512 if (!(reg->isamb = isamb_open(reg->bfs, "isamb",
513 rw, key_isamc_m(res, &isamc_m), -1)))
515 yaz_log(YLOG_WARN, "isamb_open failed");
521 reg->zei = zebraExplain_open(reg->records, reg->dh,
523 zebra_extract_explain);
526 yaz_log(YLOG_WARN, "Cannot obtain EXPLAIN information");
533 zebra_register_close(zs, reg);
536 yaz_log(YLOG_DEBUG, "zebra_register_open ok p=%p", reg);
540 ZEBRA_RES zebra_admin_shutdown(ZebraHandle zh)
542 ZEBRA_CHECK_HANDLE(zh);
543 yaz_log(log_level, "zebra_admin_shutdown");
545 zebra_mutex_cond_lock(&zh->service->session_lock);
546 zh->service->stop_flag = 1;
547 zebra_mutex_cond_unlock(&zh->service->session_lock);
551 ZEBRA_RES zebra_admin_start(ZebraHandle zh)
554 ZEBRA_CHECK_HANDLE(zh);
555 yaz_log(log_level, "zebra_admin_start");
557 zebra_mutex_cond_lock(&zs->session_lock);
558 zebra_mutex_cond_unlock(&zs->session_lock);
562 static void zebra_register_close(ZebraService zs, struct zebra_register *reg)
566 yaz_log(YLOG_DEBUG, "zebra_register_close p=%p", reg);
570 zebraExplain_close(reg->zei);
571 dict_close(reg->dict);
573 dict_close(reg->matchDict);
574 zebra_sort_close(reg->sort_index);
576 isams_close(reg->isams);
578 isamc_close(reg->isamc);
580 isamb_close(reg->isamb);
581 rec_close(®->records);
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);
589 zebra_rec_keys_close(reg->keys);
590 zebra_rec_keys_close(reg->sortKeys);
592 key_block_destroy(®->key_block);
597 ZEBRA_RES zebra_stop(ZebraService zs)
603 zebra_close(zs->sessions);
606 zebra_mutex_cond_destroy(&zs->session_lock);
609 passwd_db_close(zs->passwd_db);
611 recTypeClass_destroy(zs->record_classes);
612 nmem_destroy(zs->nmem);
613 res_close(zs->global_res);
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));
622 yaz_timing_destroy(&zs->timing);
627 ZEBRA_RES zebra_close(ZebraHandle zh)
630 struct zebra_session **sp;
633 yaz_log(log_level, "zebra_close");
634 ZEBRA_CHECK_HANDLE(zh);
639 yaz_log(YLOG_DEBUG, "zebra_close zh=%p", zh);
640 resultSetDestroy(zh, -1, 0, 0);
643 zebra_register_close(zh->service, zh->reg);
645 res_close(zh->session_res);
647 xfree(zh->record_encoding);
649 xfree(zh->dbaccesslist);
651 for (i = 0; i < zh->num_basenames; i++)
652 xfree(zh->basenames[i]);
653 xfree(zh->basenames);
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);
660 zebra_mutex_cond_lock(&zs->session_lock);
661 zebra_lock_destroy(zh->lock_normal);
662 zebra_lock_destroy(zh->lock_shadow);
674 zebra_mutex_cond_unlock(&zs->session_lock);
676 xfree(zh->user_perm);
677 zh->service = 0; /* more likely to trigger an assert */
679 zebra_limit_destroy(zh->m_limit);
681 nmem_destroy(zh->nmem_error);
688 struct map_baseinfo {
694 char **new_basenames;
698 static void zebra_open_res(ZebraHandle zh)
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);
710 else if (*zh->reg_name == 0)
712 zh->res = res_open(zh->session_res, 0);
716 yaz_log(YLOG_WARN, "no register root specified");
717 zh->res = 0; /* no path for register - fail! */
721 static void zebra_close_res(ZebraHandle zh)
729 static void zebra_select_register(ZebraHandle zh, const char *new_reg)
733 if (zh->res && strcmp(zh->reg_name, new_reg) == 0)
737 assert(zh->reg == 0);
738 assert(*zh->reg_name == 0);
744 resultSetInvalidate(zh);
745 zebra_register_close(zh->service, zh->reg);
751 zh->reg_name = xstrdup(new_reg);
755 if (zh->service->path_root)
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);
762 strcat(zh->path_reg, "/");
763 strcat(zh->path_reg, zh->reg_name);
769 zebra_lock_destroy(zh->lock_normal);
773 zebra_lock_destroy(zh->lock_shadow);
779 const char *lock_area = res_get(zh->res, "lockDir");
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);
785 zebra_lock_create(res_get(zh->res, "lockDir"), fname);
787 sprintf(fname, "shadow.%s.LCK", zh->reg_name);
789 zebra_lock_create(res_get(zh->res, "lockDir"), fname);
791 if (!zh->lock_normal || !zh->lock_shadow)
795 zebra_lock_destroy(zh->lock_normal);
800 zebra_lock_destroy(zh->lock_shadow);
809 if (res_get_int(zh->res, "estimatehits", &approx) == ZEBRA_OK)
810 zebra_set_approx_limit(zh, approx);
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);
819 if (res_get_int(zh->res, "segment", &zh->m_segment_indexing) ==
822 yaz_log(YLOG_DEBUG, "segment indexing set and is %d",
823 zh->m_segment_indexing);
828 void map_basenames_func(void *vp, const char *name, const char *value)
830 struct map_baseinfo *p = (struct map_baseinfo *) vp;
832 char fromdb[128], todb[8][128];
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]);
845 for (i = 0; i<p->num_bases; i++)
846 if (p->basenames[i] && !STRCASECMP(p->basenames[i], fromdb))
849 for (i = 0; i < no; i++)
851 if (p->new_num_bases == p->new_num_max)
853 p->new_basenames[(p->new_num_bases)++] =
854 nmem_strdup(p->mem, todb[i]);
860 int zebra_select_default_database(ZebraHandle zh)
864 /* no database has been selected - so we select based on
865 resource setting (including group)
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);
875 void map_basenames(ZebraHandle zh, ODR stream,
876 int *num_bases, char ***basenames)
878 struct map_baseinfo info;
879 struct map_baseinfo *p = &info;
882 yaz_log(log_level, "map_basenames ");
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;
895 res_trav(zh->session_res, "mapdb", &info, map_basenames_func);
897 for (i = 0; i<p->num_bases; i++)
898 if (p->basenames[i] && p->new_num_bases < p->new_num_max)
900 p->new_basenames[(p->new_num_bases)++] =
901 nmem_strdup(p->mem, p->basenames[i]);
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]);
909 ZEBRA_RES zebra_select_database(ZebraHandle zh, const char *basename)
911 ZEBRA_CHECK_HANDLE(zh);
913 yaz_log(log_level, "zebra_select_database %s",basename);
915 return zebra_select_databases(zh, 1, &basename);
918 ZEBRA_RES zebra_select_databases(ZebraHandle zh, int num_bases,
919 const char **basenames)
926 ZEBRA_CHECK_HANDLE(zh);
929 yaz_log(log_level, "zebra_select_databases n=%d [0]=%s",
930 num_bases,basenames[0]);
935 zh->errCode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
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];
946 for (p = zh->dbaccesslist; p && *p; p = pp) {
948 if ((pp = strchr(p, '+'))) {
954 if (len == strlen(db) && !strncmp(db, p, len))
958 zh->errCode = YAZ_BIB1_ACCESS_TO_SPECIFIED_DATABASE_DENIED;
964 for (i = 0; i < zh->num_basenames; i++)
965 xfree(zh->basenames[i]);
966 xfree(zh->basenames);
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]);
973 cp = strrchr(basenames[0], '/');
976 len = cp - basenames[0];
977 new_reg = xmalloc(len + 1);
978 memcpy(new_reg, basenames[0], len);
982 new_reg = xstrdup("");
983 for (i = 1; i<num_bases; i++)
987 cp1 = strrchr(basenames[i], '/');
992 zh->errCode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
995 if (len != cp1 - basenames[i] ||
996 memcmp(basenames[i], new_reg, len))
998 zh->errCode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
1006 zh->errCode = YAZ_BIB1_COMBI_OF_SPECIFIED_DATABASES_UNSUPP;
1011 zebra_select_register(zh, new_reg);
1015 zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
1018 if (!zh->lock_normal || !zh->lock_shadow)
1020 zh->errCode = YAZ_BIB1_TEMPORARY_SYSTEM_ERROR;
1026 ZEBRA_RES zebra_set_approx_limit(ZebraHandle zh, zint approx_limit)
1028 if (approx_limit == 0)
1029 approx_limit = DEFAULT_APPROX_LIMIT;
1030 zh->approx_limit = approx_limit;
1034 void zebra_set_partial_result(ZebraHandle zh)
1036 zh->partial_result = 1;
1040 ZEBRA_RES zebra_set_break_handler(ZebraHandle zh,
1041 int (*f)(void *client_data),
1044 zh->break_handler_func = f;
1045 zh->break_handler_data = client_data;
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)
1056 ZEBRA_CHECK_HANDLE(zh);
1062 yaz_log(log_level, "zebra_search_rpn");
1064 zh->partial_result = 0;
1066 if (zebra_begin_read(zh) == ZEBRA_FAIL)
1069 r = resultSetAddRPN(zh, odr_extract_mem(o), query,
1070 zh->num_basenames, zh->basenames, setname,
1071 hits, estimated_hit_count);
1073 *partial_resultset = zh->partial_result;
1078 ZEBRA_RES zebra_search_RPN(ZebraHandle zh, ODR o, Z_RPNQuery *query,
1079 const char *setname, zint *hits)
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);
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)
1094 ZebraMetaRecord *poset;
1096 ZEBRA_RES ret = ZEBRA_OK;
1099 ZEBRA_CHECK_HANDLE(zh);
1105 yaz_log(log_level, "zebra_records_retrieve n=%d", num_recs);
1109 zebra_setError(zh, YAZ_BIB1_SPECIFIED_RESULT_SET_DOES_NOT_EXIST,
1114 if (zebra_begin_read(zh) == ZEBRA_FAIL)
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);
1123 yaz_log(YLOG_DEBUG, "zebraPosSetCreate error");
1124 zebra_setError(zh, YAZ_BIB1_SPECIFIED_RESULT_SET_DOES_NOT_EXIST,
1130 WRBUF addinfo_w = wrbuf_alloc();
1131 for (i = 0; i < num_recs; i++)
1133 recs[i].errCode = 0;
1134 recs[i].errString = 0;
1139 recs[i].sysno = poset[i].sysno;
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;
1147 else if (poset[i].sysno)
1151 zebra_snippets *hit_snippet = zebra_snippets_create();
1153 /* we disable hit snippets for now. It does not work well
1154 and it slows retrieval down a lot */
1156 zebra_snippets_hit_vector(zh, setname, poset[i].sysno,
1159 wrbuf_rewind(addinfo_w);
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);
1167 if (wrbuf_len(addinfo_w))
1169 odr_strdup(stream, wrbuf_cstr(addinfo_w));
1173 recs[i].buf = (char*) odr_malloc(stream, len);
1174 memcpy(recs[i].buf, buf, len);
1178 recs[i].score = poset[i].score;
1179 zebra_snippets_destroy(hit_snippet);
1183 /* only need to set it once */
1184 if (pos_array[i] < zh->approx_limit && ret == ZEBRA_OK)
1186 zebra_setError_zint(zh,
1187 YAZ_BIB1_PRESENT_REQUEST_OUT_OF_RANGE,
1194 zebra_meta_records_destroy(zh, poset, num_recs);
1195 wrbuf_destroy(addinfo_w);
1202 ZEBRA_RES zebra_scan_PQF(ZebraHandle zh, ODR stream, const char *query,
1204 int *num_entries, ZebraScanEntry **entries,
1206 const char *setname)
1208 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
1209 Z_AttributesPlusTerm *zapt;
1210 Odr_oid *attributeSet;
1213 if (!(zapt = yaz_pqf_scan(pqf_parser, stream, &attributeSet, query)))
1216 zh->errCode = YAZ_BIB1_SCAN_MALFORMED_SCAN;
1220 res = zebra_scan(zh, stream, zapt, yaz_oid_attset_bib_1,
1221 position, num_entries, entries, is_partial,
1224 yaz_pqf_destroy(pqf_parser);
1228 ZEBRA_RES zebra_scan(ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
1229 const Odr_oid *attributeset,
1231 int *num_entries, ZebraScanEntry **entries,
1233 const char *setname)
1237 ZEBRA_CHECK_HANDLE(zh);
1242 assert(num_entries);
1245 yaz_log(log_level, "zebra_scan");
1247 if (zebra_begin_read(zh) == ZEBRA_FAIL)
1254 res = rpn_scan(zh, stream, zapt, attributeset,
1255 zh->num_basenames, zh->basenames, position,
1256 num_entries, entries, is_partial, setname);
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,
1268 ZEBRA_CHECK_HANDLE(zh);
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");
1276 if (zebra_begin_read(zh) == ZEBRA_FAIL)
1278 res = resultSetSort(zh, stream->mem, num_input_setnames, input_setnames,
1279 output_setname, sort_sequence, sort_status);
1284 int zebra_deleteResultSet(ZebraHandle zh, int function,
1285 int num_setnames, char **setnames,
1290 yaz_log(log_level, "zebra_deleteResultSet n=%d", num_setnames);
1292 if (zebra_begin_read(zh))
1293 return Z_DeleteStatus_systemProblemAtTarget;
1296 case Z_DeleteResultSetRequest_list:
1297 assert(num_setnames>0);
1299 resultSetDestroy(zh, num_setnames, setnames, statuses);
1301 case Z_DeleteResultSetRequest_all:
1302 resultSetDestroy(zh, -1, 0, statuses);
1306 status = Z_DeleteStatus_success;
1307 for (i = 0; i<num_setnames; i++)
1308 if (statuses[i] == Z_DeleteStatus_resultSetDidNotExist)
1309 status = statuses[i];
1313 int zebra_errCode(ZebraHandle zh)
1317 yaz_log(log_level, "zebra_errCode: %d",zh->errCode);
1320 yaz_log(log_level, "zebra_errCode: o");
1324 const char *zebra_errString(ZebraHandle zh)
1328 e= diagbib1_str(zh->errCode);
1329 yaz_log(log_level, "zebra_errString: %s",e);
1333 char *zebra_errAdd(ZebraHandle zh)
1338 yaz_log(log_level, "zebra_errAdd: %s",a);
1342 ZEBRA_RES zebra_auth(ZebraHandle zh, const char *user, const char *pass)
1345 const char *astring;
1349 ZEBRA_CHECK_HANDLE(zh);
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");
1358 /* Determine database access list */
1359 astring = res_get(zs->dbaccess, user ? user : "anonymous");
1361 zh->dbaccesslist = xstrdup(astring);
1363 zh->dbaccesslist = 0;
1365 /* users that don't require a password .. */
1366 if (zh->user_perm && strchr(zh->user_perm, 'a'))
1369 if (!zs->passwd_db || !passwd_db_auth(zs->passwd_db, user, pass))
1374 ZEBRA_RES zebra_admin_import_begin(ZebraHandle zh, const char *database,
1375 const char *record_type)
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)
1381 return zebra_begin_trans(zh, 1);
1384 ZEBRA_RES zebra_admin_import_end(ZebraHandle zh)
1386 ZEBRA_CHECK_HANDLE(zh);
1387 yaz_log(log_level, "zebra_admin_import_end");
1388 return zebra_end_trans(zh);
1391 ZEBRA_RES zebra_admin_import_segment(ZebraHandle zh, Z_Segment *segment)
1393 ZEBRA_RES res = ZEBRA_OK;
1396 ZEBRA_CHECK_HANDLE(zh);
1397 yaz_log(log_level, "zebra_admin_import_segment");
1399 for (i = 0; i<segment->num_segmentRecords; i++)
1401 Z_NamePlusRecord *npr = segment->segmentRecords[i];
1403 if (npr->which == Z_NamePlusRecord_intermediateFragment)
1405 Z_FragmentSyntax *fragment = npr->u.intermediateFragment;
1406 if (fragment->which == Z_FragmentSyntax_notExternallyTagged)
1408 Odr_oct *oct = fragment->u.notExternallyTagged;
1411 if(zebra_update_record(
1414 0, /* record Type */
1418 (const char *) oct->buf, oct->len) == ZEBRA_FAIL)
1426 int delete_w_handle(const char *info, void *handle)
1428 ZebraHandle zh = (ZebraHandle) handle;
1431 if (*info == sizeof(pos))
1433 memcpy(&pos, info+1, sizeof(pos));
1434 isamb_unlink(zh->reg->isamb, pos);
1439 int delete_w_all_handle(const char *info, void *handle)
1441 ZebraHandle zh = (ZebraHandle) handle;
1444 if (*info == sizeof(pos))
1447 memcpy(&pos, info+1, sizeof(pos));
1448 pt = isamb_pp_open(zh->reg->isamb, pos, 2);
1453 while (isamb_pp_read(pt, &key))
1456 rec = rec_get(zh->reg->records, key.mem[0]);
1457 rec_del(zh->reg->records, &rec);
1462 return delete_w_handle(info, handle);
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)
1469 ZebraHandle zh = (ZebraHandle) handle;
1473 yaz_log(YLOG_LOG, "ord=%d index_type=%s index=%s cat=%d", ord,
1474 index_type, string_index, (int) cat);
1476 ord_len = key_SU_encode(ord, ord_buf);
1477 ord_buf[ord_len] = '\0';
1479 assert(zh->reg->isamb);
1480 assert(zh->reg->records);
1481 dict_delete_subtree(zh->reg->dict, ord_buf,
1483 !strcmp(string_index, "_ALLRECORDS") ?
1484 delete_w_all_handle : delete_w_handle);
1488 ZEBRA_RES zebra_drop_database(ZebraHandle zh, const char *db)
1490 ZEBRA_RES ret = ZEBRA_OK;
1492 yaz_log(log_level, "zebra_drop_database %s", db);
1493 ZEBRA_CHECK_HANDLE(zh);
1495 if (zebra_select_database(zh, db) == ZEBRA_FAIL)
1497 if (zebra_begin_trans(zh, 1) == ZEBRA_FAIL)
1502 if (zebraExplain_curDatabase(zh->reg->zei, db))
1504 zebra_setError(zh, YAZ_BIB1_DATABASE_DOES_NOT_EXIST, db);
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);
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");
1524 if (zebra_end_trans(zh) != ZEBRA_OK)
1526 yaz_log(YLOG_WARN, "zebra_end_trans failed");
1532 ZEBRA_RES zebra_create_database(ZebraHandle zh, const char *db)
1534 yaz_log(log_level, "zebra_create_database %s", db);
1535 ZEBRA_CHECK_HANDLE(zh);
1538 if (zebra_select_database(zh, db) == ZEBRA_FAIL)
1540 if (zebra_begin_trans(zh, 1))
1543 /* announce database */
1544 if (zebraExplain_newDatabase(zh->reg->zei, db, 0
1545 /* explainDatabase */))
1547 if (zebra_end_trans(zh) != ZEBRA_OK)
1549 yaz_log(YLOG_WARN, "zebra_end_trans failed");
1551 zebra_setError(zh, YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED, db);
1554 return zebra_end_trans(zh);
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)
1562 zebra_map_t zm = zebra_map_get(zh->reg->zebra_maps, index_type);
1566 yaz_log(log_level, "zebra_string_norm ");
1568 if (!zh->reg->zebra_maps)
1570 wrbuf = zebra_replace(zm, "", input_str, input_len);
1573 if (wrbuf_len(wrbuf) >= output_len)
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);
1581 /** \brief set register state (state*.LCK)
1582 \param zh Zebra handle
1584 \param seqno sequence number
1587 d=writing to shadow(shadow enabled); writing to register (shadow disabled)
1589 c=commit (writing to register, reading from shadow, shadow mode only)
1591 static void zebra_set_state(ZebraHandle zh, int val, int seqno)
1593 char state_fname[256];
1598 yaz_log(log_level, "zebra_set_state v=%c seq=%d", val, seqno);
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");
1604 yaz_log(YLOG_DEBUG, "zebra_set_state: %c %d %ld", val, seqno, p);
1605 fprintf(f, "%c %d %ld\n", val, seqno, p);
1610 static void zebra_get_state(ZebraHandle zh, char *val, int *seqno)
1612 char state_fname[256];
1617 yaz_log(log_level, "zebra_get_state ");
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");
1627 fscanf(f, "%c %d", val, seqno);
1633 ZEBRA_RES zebra_begin_read(ZebraHandle zh)
1635 return zebra_begin_trans(zh, 0);
1638 ZEBRA_RES zebra_end_read(ZebraHandle zh)
1640 return zebra_end_trans(zh);
1643 static void read_res_for_transaction(ZebraHandle zh)
1645 const char *group = res_get(zh->res, "group");
1647 /* FIXME - do we still use groups ?? */
1649 zh->m_group = group;
1650 v = res_get_prefix(zh->res, "followLinks", group, "1");
1651 zh->m_follow_links = atoi(v);
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);
1656 v = res_get_prefix(zh->res, "storeKeys", group, "1");
1657 zh->m_store_keys = atoi(v);
1659 v = res_get_prefix(zh->res, "storeData", group, "1");
1660 zh->m_store_data = atoi(v);
1662 v = res_get_prefix(zh->res, "explainDatabase", group, "0");
1663 zh->m_explain_database = atoi(v);
1665 v = res_get_prefix(zh->res, "openRW", group, "1");
1666 zh->m_flag_rw = atoi(v);
1668 v = res_get_prefix(zh->res, "fileVerboseLimit", group, "1000");
1669 zh->m_file_verbose_limit = atoi(v);
1672 ZEBRA_RES zebra_begin_trans(ZebraHandle zh, int rw)
1674 ZEBRA_CHECK_HANDLE(zh);
1675 zebra_select_default_database(zh);
1678 zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
1679 "zebra_begin_trans: no database selected");
1683 yaz_log(log_level, "zebra_begin_trans rw=%d",rw);
1687 if (rw && !strchr(zh->user_perm, 'w'))
1691 YAZ_BIB1_ES_PERMISSION_DENIED_ON_ES_CANNOT_MODIFY_OR_DELETE,
1702 const char *rval = 0;
1707 read_res_for_transaction(zh);
1710 if (zh->trans_no != 1)
1712 zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
1713 "zebra_begin_trans: no write trans within read");
1718 resultSetInvalidate(zh);
1719 zebra_register_close(zh->service, zh->reg);
1721 zh->trans_w_no = zh->trans_no;
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;
1729 #if HAVE_SYS_TIMES_H
1733 if (zh->shadow_enable)
1734 rval = res_get(zh->res, "shadow");
1738 zebra_lock_r(zh->lock_normal);
1739 zebra_lock_w(zh->lock_shadow);
1743 zebra_lock_w(zh->lock_normal);
1744 zebra_lock_w(zh->lock_shadow);
1746 zebra_get_state(zh, &val, &seqno);
1749 /* either we didn't finish commit or shadow is dirty */
1752 yaz_log(YLOG_WARN, "previous transaction did not finish "
1753 "(shadow disabled)");
1755 zebra_unlock(zh->lock_shadow);
1756 zebra_unlock(zh->lock_normal);
1757 if (zebra_commit(zh))
1765 zebra_lock_r(zh->lock_normal);
1766 zebra_lock_w(zh->lock_shadow);
1770 zebra_lock_w(zh->lock_normal);
1771 zebra_lock_w(zh->lock_shadow);
1775 zebra_set_state(zh, 'd', seqno);
1777 zh->reg = zebra_register_open(zh->service, zh->reg_name,
1778 1, rval ? 1 : 0, zh->res,
1781 zh->reg->seqno = seqno;
1784 zebra_set_state(zh, 'o', seqno);
1786 zebra_unlock(zh->lock_shadow);
1787 zebra_unlock(zh->lock_normal);
1792 zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
1793 "zebra_begin_trans: cannot open register");
1794 yaz_log(YLOG_FATAL, "%s", zh->errString);
1797 zebraExplain_curDatabase(zh->reg->zei, zh->basenames[0]);
1807 if (zh->trans_no != 1)
1809 return zebra_flush_reg(zh);
1811 #if HAVE_SYS_TIMES_H
1817 zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
1820 if (!zh->lock_normal || !zh->lock_shadow)
1823 zh->errCode = YAZ_BIB1_TEMPORARY_SYSTEM_ERROR;
1826 zebra_get_state(zh, &val, &seqno);
1832 else if (seqno != zh->reg->seqno)
1834 yaz_log(YLOG_DEBUG, "reopen seqno cur/old %d/%d",
1835 seqno, zh->reg->seqno);
1838 else if (zh->reg->last_val != val)
1840 yaz_log(YLOG_DEBUG, "reopen last cur/old %d/%d",
1841 val, zh->reg->last_val);
1848 zebra_lock_r(zh->lock_shadow);
1850 zebra_lock_r(zh->lock_normal);
1854 resultSetInvalidate(zh);
1855 zebra_register_close(zh->service, zh->reg);
1857 zh->reg = zebra_register_open(zh->service, zh->reg_name,
1858 0, val == 'c' ? 1 : 0,
1859 zh->res, zh->path_reg);
1862 zebra_unlock(zh->lock_normal);
1863 zebra_unlock(zh->lock_shadow);
1865 zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
1868 zh->reg->last_val = val;
1869 zh->reg->seqno = seqno;
1871 read_res_for_transaction(zh);
1875 ZEBRA_RES zebra_end_trans(ZebraHandle zh)
1877 ZebraTransactionStatus dummy;
1879 yaz_log(log_level, "zebra_end_trans");
1880 ZEBRA_CHECK_HANDLE(zh);
1881 return zebra_end_transaction(zh, &dummy);
1884 ZEBRA_RES zebra_end_transaction(ZebraHandle zh, ZebraTransactionStatus *status)
1890 ZEBRA_CHECK_HANDLE(zh);
1893 yaz_log(log_level, "zebra_end_transaction");
1895 status->processed = 0;
1896 status->inserted = 0;
1897 status->updated = 0;
1898 status->deleted = 0;
1902 if (!zh->res || !zh->reg)
1904 zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
1905 "zebra_end_trans: no open transaction");
1908 if (zh->trans_no != zh->trans_w_no)
1911 if (zh->trans_no != 0)
1914 /* release read lock */
1916 zebra_unlock(zh->lock_normal);
1917 zebra_unlock(zh->lock_shadow);
1920 { /* release write lock */
1924 yaz_log(YLOG_DEBUG, "zebra_end_trans");
1925 rval = res_get(zh->res, "shadow");
1927 zebraExplain_runNumberIncrement(zh->reg->zei, 1);
1929 zebra_flush_reg(zh);
1931 resultSetInvalidate(zh);
1933 zebra_register_close(zh->service, zh->reg);
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);
1941 status->processed = zh->records_processed;
1942 status->inserted = zh->records_inserted;
1943 status->updated = zh->records_updated;
1944 status->deleted = zh->records_deleted;
1946 zebra_get_state(zh, &val, &seqno);
1949 BFiles bfs = bfs_create(rval, zh->path_reg);
1950 bf_commitClean(bfs, rval);
1955 zebra_set_state(zh, 'o', seqno);
1956 zebra_unlock(zh->lock_shadow);
1957 zebra_unlock(zh->lock_normal);
1960 #if HAVE_SYS_TIMES_H
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));
1966 status->utime = (long) (zh->tms2.tms_utime - zh->tms1.tms_utime);
1967 status->stime = (long) (zh->tms2.tms_stime - zh->tms1.tms_stime);
1972 ZEBRA_RES zebra_repository_update(ZebraHandle zh, const char *path)
1974 return zebra_repository_index(zh, path, action_update);
1977 ZEBRA_RES zebra_repository_delete(ZebraHandle zh, const char *path)
1979 return zebra_repository_index(zh, path, action_delete);
1982 ZEBRA_RES zebra_repository_index(ZebraHandle zh, const char *path,
1983 enum zebra_recctrl_action_t action)
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);
1995 yaz_log(log_level, "update action=%d", (int) action);
1997 if (zh->m_record_id && !strcmp(zh->m_record_id, "file"))
1998 return zebra_update_file_match(zh, path);
2000 return zebra_update_from_path(zh, path, action);
2003 ZEBRA_RES zebra_repository_show(ZebraHandle zh, const char *path)
2007 yaz_log(log_level, "zebra_repository_show");
2008 repositoryShow(zh, path);
2012 static ZEBRA_RES zebra_commit_ex(ZebraHandle zh, int clean_only)
2018 ZEBRA_RES res = ZEBRA_OK;
2022 yaz_log(log_level, "zebra_commit_ex clean_only=%d", clean_only);
2023 zebra_select_default_database(zh);
2026 zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
2029 rval = res_get(zh->res, "shadow");
2032 yaz_log(YLOG_WARN, "Cannot perform commit - No shadow area defined");
2036 zebra_lock_w(zh->lock_normal);
2037 zebra_lock_r(zh->lock_shadow);
2039 bfs = bfs_create(res_get(zh->res, "register"), zh->path_reg);
2042 zebra_unlock(zh->lock_shadow);
2043 zebra_unlock(zh->lock_normal);
2046 zebra_get_state(zh, &val, &seqno);
2050 /* shadow area is dirty and so we must throw it away */
2051 yaz_log(YLOG_WARN, "previous transaction didn't reach commit");
2054 else if (val == 'c')
2056 /* commit has started. We can not remove it anymore */
2061 bf_cache(bfs, rval);
2062 if (bf_commitExists(bfs))
2065 zebra_set_state(zh, 'd', seqno);
2068 zebra_set_state(zh, 'c', seqno);
2070 yaz_log(log_level, "commit start");
2071 if (bf_commitExec(bfs))
2074 if (res == ZEBRA_OK)
2077 zebra_set_state(zh, 'o', seqno);
2079 zebra_unlock(zh->lock_shadow);
2080 zebra_unlock(zh->lock_normal);
2082 zebra_lock_w(zh->lock_shadow);
2083 bf_commitClean(bfs, rval);
2084 zebra_unlock(zh->lock_shadow);
2088 zebra_unlock(zh->lock_shadow);
2089 zebra_unlock(zh->lock_normal);
2090 yaz_log(YLOG_WARN, "zebra_commit: failed");
2095 zebra_unlock(zh->lock_shadow);
2096 zebra_unlock(zh->lock_normal);
2097 yaz_log(log_level, "nothing to commit");
2104 ZEBRA_RES zebra_clean(ZebraHandle zh)
2106 yaz_log(log_level, "zebra_clean");
2107 ZEBRA_CHECK_HANDLE(zh);
2108 return zebra_commit_ex(zh, 1);
2111 ZEBRA_RES zebra_commit(ZebraHandle zh)
2113 yaz_log(log_level, "zebra_commit");
2114 ZEBRA_CHECK_HANDLE(zh);
2115 return zebra_commit_ex(zh, 0);
2119 ZEBRA_RES zebra_init(ZebraHandle zh)
2124 yaz_log(log_level, "zebra_init");
2126 ZEBRA_CHECK_HANDLE(zh);
2128 zebra_select_default_database(zh);
2131 zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
2132 "cannot select default database");
2135 rval = res_get(zh->res, "shadow");
2137 bfs = bfs_create(res_get(zh->res, "register"), zh->path_reg);
2140 zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR, "bfs_create");
2144 bf_cache(bfs, rval);
2148 zebra_set_state(zh, 'o', 0);
2152 ZEBRA_RES zebra_compact(ZebraHandle zh)
2156 yaz_log(log_level, "zebra_compact");
2157 ZEBRA_CHECK_HANDLE(zh);
2160 zh->errCode = YAZ_BIB1_DATABASE_UNAVAILABLE;
2163 bfs = bfs_create(res_get(zh->res, "register"), zh->path_reg);
2169 void zebra_result(ZebraHandle zh, int *code, char **addinfo)
2171 yaz_log(log_level, "zebra_result");
2174 *code = zh->errCode;
2175 *addinfo = zh->errString;
2179 *code = YAZ_BIB1_TEMPORARY_SYSTEM_ERROR;
2180 *addinfo ="ZebraHandle is NULL";
2184 void zebra_shadow_enable(ZebraHandle zh, int value)
2187 yaz_log(log_level, "zebra_shadow_enable");
2188 zh->shadow_enable = value;
2191 ZEBRA_RES zebra_octet_term_encoding(ZebraHandle zh, const char *encoding)
2193 yaz_log(log_level, "zebra_octet_term_encoding %s", encoding);
2194 ZEBRA_CHECK_HANDLE(zh);
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);
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);
2214 ZEBRA_RES zebra_record_encoding(ZebraHandle zh, const char *encoding)
2216 yaz_log(log_level, "zebra_record_encoding");
2217 ZEBRA_CHECK_HANDLE(zh);
2218 xfree(zh->record_encoding);
2219 zh->record_encoding = 0;
2221 zh->record_encoding = xstrdup(encoding);
2225 void zebra_set_resource(ZebraHandle zh, const char *name, const char *value)
2229 yaz_log(log_level, "zebra_set_resource %s:%s", name, value);
2231 res_set(zh->res, name, value);
2234 const char *zebra_get_resource(ZebraHandle zh,
2235 const char *name, const char *defaultvalue)
2240 v = res_get_def(zh->res, name,(char *)defaultvalue);
2241 yaz_log(log_level, "zebra_get_resource %s:%s", name, v);
2245 /* moved from zebra_api_ext.c by pop */
2246 /* FIXME: Should this really be public??? -Heikki */
2248 int zebra_trans_no(ZebraHandle zh)
2250 yaz_log(log_level, "zebra_trans_no");
2252 return zh->trans_no;
2255 int zebra_get_shadow_enable(ZebraHandle zh)
2257 yaz_log(log_level, "zebra_get_shadow_enable");
2259 return zh->shadow_enable;
2262 void zebra_set_shadow_enable(ZebraHandle zh, int value)
2264 yaz_log(log_level, "zebra_set_shadow_enable %d",value);
2266 zh->shadow_enable = value;
2269 ZEBRA_RES zebra_add_record(ZebraHandle zh,
2270 const char *buf, int buf_size)
2272 return zebra_update_record(zh, action_update,
2273 0 /* record type */,
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,
2285 const char *buf, int buf_size)
2289 ZEBRA_CHECK_HANDLE(zh);
2293 yaz_log(log_level, "zebra_update_record");
2295 yaz_log(log_level, " sysno=" ZINT_FORMAT, *sysno);
2298 buf_size = strlen(buf);
2300 if (zebra_begin_trans(zh, 1) == ZEBRA_FAIL)
2302 res = zebra_buffer_extract_record(zh, buf, buf_size,
2308 if (zebra_end_trans(zh) != ZEBRA_OK)
2310 yaz_log(YLOG_WARN, "zebra_end_trans failed");
2316 /* ---------------------------------------------------------------------------
2320 ZEBRA_RES zebra_search_PQF(ZebraHandle zh, const char *pqf_query,
2321 const char *setname, zint *hits)
2324 ZEBRA_RES res = ZEBRA_OK;
2329 ZEBRA_CHECK_HANDLE(zh);
2331 odr = odr_createmem(ODR_ENCODE);
2336 yaz_log(log_level, "zebra_search_PQF s=%s q=%s", setname, pqf_query);
2338 query = p_query_rpn(odr, pqf_query);
2342 yaz_log(YLOG_WARN, "bad query %s\n", pqf_query);
2343 zh->errCode = YAZ_BIB1_MALFORMED_QUERY;
2347 res = zebra_search_RPN(zh, odr, query, setname, &lhits);
2351 yaz_log(log_level, "Hits: " ZINT_FORMAT, lhits);
2359 /* ---------------------------------------------------------------------------
2360 Sort - a simplified interface, with optional read locks.
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)
2367 int num_input_setnames = 0;
2368 int sort_status = 0;
2369 Z_SortKeySpecList *sort_sequence;
2371 ZEBRA_CHECK_HANDLE(zh);
2374 assert(output_setname);
2375 assert(input_setnames);
2376 sort_sequence = yaz_sort_spec(stream, sort_spec);
2377 yaz_log(log_level, "sort (FIXME) ");
2380 yaz_log(YLOG_WARN, "invalid sort specs '%s'", sort_spec);
2381 zh->errCode = YAZ_BIB1_CANNOT_SORT_ACCORDING_TO_SEQUENCE;
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++;
2389 if (zebra_begin_read(zh))
2392 resultSetSort(zh, stream->mem, num_input_setnames, input_setnames,
2393 output_setname, sort_sequence, &sort_status);
2399 /* ---------------------------------------------------------------------------
2400 Get BFS for Zebra system (to make alternative storage methods)
2402 struct BFiles_struct *zebra_get_bfs(ZebraHandle zh)
2405 return zh->reg->bfs;
2410 /* ---------------------------------------------------------------------------
2411 Set limit for search/scan
2413 ZEBRA_RES zebra_set_limit(ZebraHandle zh, int complement_flag, zint *ids)
2415 ZEBRA_CHECK_HANDLE(zh);
2416 zebra_limit_destroy(zh->m_limit);
2417 zh->m_limit = zebra_limit_create(complement_flag, ids);
2422 Set Error code + addinfo
2424 void zebra_setError(ZebraHandle zh, int code, const char *addinfo)
2429 nmem_reset(zh->nmem_error);
2430 zh->errString = addinfo ? nmem_strdup(zh->nmem_error, addinfo) : 0;
2433 void zebra_setError_zint(ZebraHandle zh, int code, zint i)
2436 sprintf(vstr, ZINT_FORMAT, i);
2439 nmem_reset(zh->nmem_error);
2440 zh->errString = nmem_strdup(zh->nmem_error, vstr);
2443 void zebra_lock_prefix(Res res, char *path)
2445 const char *lock_dir = res_get_def(res, "lockDir", "");
2447 strcpy(path, lock_dir);
2448 if (*path && path[strlen(path)-1] != '/')
2455 * indent-tabs-mode: nil
2457 * vim: shiftwidth=4 tabstop=8 expandtab