From f09fa66e62e1f980dc0b5fb97bb02d6dfac497d9 Mon Sep 17 00:00:00 2001 From: Simon Jacob Date: Wed, 7 Nov 2012 11:32:54 +1100 Subject: [PATCH] Added support for returning the display term as part of a scan response. --- SimpleServer.xs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/SimpleServer.xs b/SimpleServer.xs index eb492e3..eafdb02 100644 --- a/SimpleServer.xs +++ b/SimpleServer.xs @@ -40,6 +40,7 @@ #include #include #include +#include #ifdef WIN32 #else #include @@ -1421,6 +1422,7 @@ int bend_scan(void *handle, bend_scan_rr *rr) struct scan_entry *scan_list; struct scan_entry *buffer; int *step_size = rr->step_size; + int scan_list_size = rr->num_entries; int i; char **basenames; SV **temp; @@ -1514,7 +1516,12 @@ int bend_scan(void *handle, bend_scan_rr *rr) rr->errcode = SvIV(err_code); rr->num_entries = SvIV(number); rr->status = SvIV(status); + if (yaz_version(NULL, NULL) >= 0x4022c && rr->num_entries <= scan_list_size) { + /* entries has been initialized by yaz and is big enough to hold all entries */ + scan_list = rr->entries; + } else { scan_list = (struct scan_entry *) odr_malloc (rr->stream, rr->num_entries * sizeof(*scan_list)); + } buffer = scan_list; entries = (AV *)SvRV(entries_ref); if (rr->errcode == 0) for (i = 0; i < rr->num_entries; i++) @@ -1526,6 +1533,13 @@ int bend_scan(void *handle, bend_scan_rr *rr) strcpy(buffer->term, ptr); temp = hv_fetch(scan_item, "OCCURRENCE", 10, 1); buffer->occurrences = SvIV(*temp); + if (hv_exists(scan_item, "DISPLAY_TERM", 12)) + { + temp = hv_fetch(scan_item, "DISPLAY_TERM", 12, 1); + ptr = SvPV(*temp, len); + buffer->display_term = (char *) odr_malloc (rr->stream, len + 1); + strcpy(buffer->display_term, ptr); + } buffer++; hv_undef(scan_item); } -- 1.7.10.4