2 * $Id: SimpleServer.xs,v 1.32 2004-06-07 16:48:38 adam Exp $
3 * ----------------------------------------------------------------------
5 * Copyright (c) 2000-2004, Index Data.
7 * Permission to use, copy, modify, distribute, and sell this software and
8 * its documentation, in whole or in part, for any purpose, is hereby granted,
11 * 1. This copyright and permission notice appear in all copies of the
12 * software and its documentation. Notices of copyright or attribution
13 * which appear at the beginning of any file must remain unchanged.
15 * 2. The name of Index Data or the individual authors may not be used to
16 * endorse or promote products derived from this software without specific
17 * prior written permission.
19 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
20 * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
21 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
22 * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
23 * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES
24 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR
25 * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
26 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
35 #include <yaz/backend.h>
37 #include <yaz/wrbuf.h>
45 #define GRS_MAX_FIELDS 500
49 #ifndef sv_undef /* To fix the problem with Perl 5.6.0 */
50 #define sv_undef PL_sv_undef
53 NMEM_MUTEX simpleserver_mutex;
68 int stop_flag; /* is used to stop server prematurely .. */
71 #define ENABLE_STOP_SERVER 0
76 SV *search_ref = NULL;
78 SV *present_ref = NULL;
79 SV *esrequest_ref = NULL;
80 SV *delete_ref = NULL;
82 PerlInterpreter *root_perl_context;
85 #define GRS_BUF_SIZE 512
87 CV * simpleserver_sv2cv(SV *handler) {
93 buf = SvPV( handler, len);
94 if ( !( ret = perl_get_cv(buf, FALSE ) ) ) {
95 fprintf( stderr, "simpleserver_sv2cv: No such handler '%s'\n\n", buf );
101 return (CV *) handler;
105 /* debugging routine to check for destruction of Perl interpreters */
107 void tst_clones(void)
110 PerlInterpreter *parent = PERL_GET_CONTEXT;
111 for (i = 0; i<5000; i++)
113 PerlInterpreter *perl_interp;
115 PERL_SET_CONTEXT(parent);
116 PL_perl_destruct_level = 2;
117 perl_interp = perl_clone(parent, CLONEf_CLONE_HOST);
118 PL_perl_destruct_level = 2;
119 PERL_SET_CONTEXT(perl_interp);
120 perl_destruct(perl_interp);
121 perl_free(perl_interp);
127 int simpleserver_clone(void) {
129 nmem_mutex_enter(simpleserver_mutex);
132 PerlInterpreter *current = PERL_GET_CONTEXT;
134 /* if current is unset, then we're in a new thread with
135 * no Perl interpreter for it. So we must create one .
136 * This will only happen when threaded is used..
139 PerlInterpreter *perl_interp;
140 PERL_SET_CONTEXT( root_perl_context );
141 perl_interp = perl_clone(root_perl_context, CLONEf_CLONE_HOST);
142 PERL_SET_CONTEXT( perl_interp );
145 nmem_mutex_leave(simpleserver_mutex);
151 void simpleserver_free(void) {
152 nmem_mutex_enter(simpleserver_mutex);
155 PerlInterpreter *current_interp = PERL_GET_CONTEXT;
157 /* If current Perl Interp is different from root interp, then
158 * we're in threaded mode and we must destroy..
160 if (current_interp != root_perl_context) {
161 PL_perl_destruct_level = 2;
162 PERL_SET_CONTEXT(current_interp);
163 perl_destruct(current_interp);
164 perl_free(current_interp);
167 nmem_mutex_leave(simpleserver_mutex);
171 Z_GenericRecord *read_grs1(char *str, ODR o)
174 char line[GRS_BUF_SIZE+1], *buf, *ptr, *original;
175 char value[GRS_BUF_SIZE+1];
176 Z_GenericRecord *r = 0;
179 r = (Z_GenericRecord *)odr_malloc(o, sizeof(*r));
180 r->elements = (Z_TaggedElement **) odr_malloc(o, sizeof(Z_TaggedElement*) * GRS_MAX_FIELDS);
189 ptr = strchr(str, '\n');
194 if (len > GRS_BUF_SIZE) {
195 yaz_log(LOG_WARN, "GRS string too long - truncating (%d > %d)", len, GRS_BUF_SIZE);
198 strncpy(line, str, len);
202 while (*buf && isspace(*buf))
205 memmove(original, str, strlen(str));
208 if (sscanf(buf, "(%d,%[^)])", &type, value) != 2)
210 yaz_log(LOG_WARN, "Bad data in '%s'", buf);
213 if (!type && *value == '0')
215 if (!(buf = strchr(buf, ')')))
218 while (*buf && isspace(*buf))
220 if (r->num_elements >= GRS_MAX_FIELDS)
222 yaz_log(LOG_WARN, "Max number of GRS-1 elements exceeded [GRS_MAX_FIELDS=%d]", GRS_MAX_FIELDS);
225 r->elements[r->num_elements] = t = (Z_TaggedElement *) odr_malloc(o, sizeof(Z_TaggedElement));
226 t->tagType = (int *)odr_malloc(o, sizeof(int));
228 t->tagValue = (Z_StringOrNumeric *)
229 odr_malloc(o, sizeof(Z_StringOrNumeric));
230 if ((ivalue = atoi(value)))
232 t->tagValue->which = Z_StringOrNumeric_numeric;
233 t->tagValue->u.numeric = (int *)odr_malloc(o, sizeof(int));
234 *t->tagValue->u.numeric = ivalue;
238 t->tagValue->which = Z_StringOrNumeric_string;
239 t->tagValue->u.string = (char *)odr_malloc(o, strlen(value)+1);
240 strcpy(t->tagValue->u.string, value);
242 t->tagOccurrence = 0;
244 t->appliedVariant = 0;
245 t->content = c = (Z_ElementData *)odr_malloc(o, sizeof(Z_ElementData));
248 c->which = Z_ElementData_subtree;
249 c->u.subtree = read_grs1(str, o);
253 c->which = Z_ElementData_string;
254 c->u.string = odr_strdup(o, buf);
263 static void oid2str(Odr_oid *o, WRBUF buf)
265 for (; *o >= 0; o++) {
267 sprintf(ibuf, "%d", *o);
268 wrbuf_puts(buf, ibuf);
270 wrbuf_putc(buf, '.');
275 static int rpn2pquery(Z_RPNStructure *s, WRBUF buf)
278 case Z_RPNStructure_simple: {
279 Z_Operand *o = s->u.simple;
282 case Z_Operand_APT: {
283 Z_AttributesPlusTerm *at = o->u.attributesPlusTerm;
285 if (at->attributes) {
289 for (i = 0; i < at->attributes->num_attributes; i++) {
290 wrbuf_puts(buf, "@attr ");
291 if (at->attributes->attributes[i]->attributeSet) {
292 oid2str(at->attributes->attributes[i]->attributeSet, buf);
293 wrbuf_putc(buf, ' ');
295 sprintf(ibuf, "%d=", *at->attributes->attributes[i]->attributeType);
296 assert(at->attributes->attributes[i]->which == Z_AttributeValue_numeric);
297 wrbuf_puts(buf, ibuf);
298 sprintf(ibuf, "%d ", *at->attributes->attributes[i]->value.numeric);
299 wrbuf_puts(buf, ibuf);
302 switch (at->term->which) {
303 case Z_Term_general: {
304 wrbuf_putc(buf, '"');
305 wrbuf_write(buf, (char*) at->term->u.general->buf, at->term->u.general->len);
306 wrbuf_puts(buf, "\" ");
317 case Z_RPNStructure_complex: {
318 Z_Complex *c = s->u.complex;
320 switch (c->roperator->which) {
321 case Z_Operator_and: wrbuf_puts(buf, "@and "); break;
322 case Z_Operator_or: wrbuf_puts(buf, "@or "); break;
323 case Z_Operator_and_not: wrbuf_puts(buf, "@not "); break;
324 case Z_Operator_prox: abort();
327 if (!rpn2pquery(c->s1, buf))
329 if (!rpn2pquery(c->s2, buf))
339 WRBUF zquery2pquery(Z_Query *q)
341 WRBUF buf = wrbuf_alloc();
343 if (q->which != Z_Query_type_1 && q->which != Z_Query_type_101)
345 if (q->u.type_1->attributeSetId) {
346 /* Output attribute set ID */
347 wrbuf_puts(buf, "@attrset ");
348 oid2str(q->u.type_1->attributeSetId, buf);
349 wrbuf_putc(buf, ' ');
351 return rpn2pquery(q->u.type_1->RPNStructure, buf) ? buf : 0;
355 /* Lifted verbatim from Net::Z3950 yazwrap/util.c */
357 void fatal(char *fmt, ...)
361 fprintf(stderr, "FATAL (yazwrap): ");
363 vfprintf(stderr, fmt, ap);
365 fprintf(stderr, "\n");
370 /* Lifted verbatim from Net::Z3950 yazwrap/receive.c */
372 * Creates a new Perl object of type `class'; the newly-created scalar
373 * that is a reference to the blessed thingy `referent' is returned.
375 static SV *newObject(char *class, SV *referent)
380 sv = newRV_noinc((SV*) referent);
381 stash = gv_stashpv(class, 0);
383 fatal("attempt to create object of undefined class '%s'", class);
384 /*assert(stash != 0);*/
390 /* Lifted verbatim from Net::Z3950 yazwrap/receive.c */
391 static void setMember(HV *hv, char *name, SV *val)
393 /* We don't increment `val's reference count -- I think this is
394 * right because it's created with a refcount of 1, and in fact
395 * the reference via this hash is the only reference to it in
398 if (!hv_store(hv, name, (U32) strlen(name), val, (U32) 0))
399 fatal("couldn't store member in hash");
403 /* Lifted verbatim from Net::Z3950 yazwrap/receive.c */
404 static SV *translateOID(Odr_oid *x)
406 /* Yaz represents an OID by an int array terminated by a negative
407 * value, typically -1; we represent it as a reference to a
408 * blessed scalar string of "."-separated elements.
414 for (i = 0; x[i] >= 0; i++) {
415 sprintf(buf + strlen(buf), "%d", (int) x[i]);
421 * ### We'd like to return a blessed scalar (string) here, but of
422 * course you can't do that in Perl: only references can be
423 * blessed, so we'd have to return a _reference_ to a string, and
424 * bless _that_. Better to do without the blessing, I think.
427 return newSVpv(buf, 0);
429 return newObject("Net::Z3950::APDU::OID", newSVpv(buf, 0));
434 static SV *rpn2perl(Z_RPNStructure *s)
441 case Z_RPNStructure_simple: {
442 Z_Operand *o = s->u.simple;
443 Z_AttributesPlusTerm *at;
444 if (o->which != Z_Operand_APT)
445 fatal("can't handle RPN simples other than APT");
446 at = o->u.attributesPlusTerm;
447 if (at->term->which != Z_Term_general)
448 fatal("can't handle RPN terms other than general");
450 sv = newObject("Net::Z3950::RPN::Term", (SV*) (hv = newHV()));
451 if (at->attributes) {
453 SV *attrs = newObject("Net::Z3950::RPN::Attributes",
454 (SV*) (av = newAV()));
455 for (i = 0; i < at->attributes->num_attributes; i++) {
456 Z_AttributeElement *elem = at->attributes->attributes[i];
458 SV *tmp = newObject("Net::Z3950::RPN::Attribute",
459 (SV*) (hv2 = newHV()));
460 if (elem->attributeSet)
461 setMember(hv2, "attributeSet",
462 translateOID(elem->attributeSet));
463 setMember(hv2, "attributeType",
464 newSViv(*elem->attributeType));
465 assert(elem->which == Z_AttributeValue_numeric);
466 setMember(hv2, "attributeValue",
467 newSViv(*elem->value.numeric));
470 setMember(hv, "attributes", attrs);
472 setMember(hv, "term", newSVpv((char*) at->term->u.general->buf,
473 at->term->u.general->len));
476 case Z_RPNStructure_complex: {
478 Z_Complex *c = s->u.complex;
479 char *type = 0; /* vacuous assignment satisfies gcc -Wall */
480 switch (c->roperator->which) {
481 case Z_Operator_and: type = "Net::Z3950::RPN::And"; break;
482 case Z_Operator_or: type = "Net::Z3950::RPN::Or"; break;
483 case Z_Operator_and_not: type = "Net::Z3950::RPN::AndNot"; break;
484 case Z_Operator_prox: fatal("proximity not yet supported");
485 default: fatal("unknown RPN operator %d", (int) c->roperator->which);
487 sv = newObject(type, (SV*) (av = newAV()));
488 if ((tmp = rpn2perl(c->s1)) == 0)
491 if ((tmp = rpn2perl(c->s2)) == 0)
496 default: fatal("unknown RPN node type %d", (int) s->which);
503 static SV *zquery2perl(Z_Query *q)
508 if (q->which != Z_Query_type_1 && q->which != Z_Query_type_101)
510 sv = newObject("Net::Z3950::APDU::Query", (SV*) (hv = newHV()));
511 if (q->u.type_1->attributeSetId)
512 setMember(hv, "attributeSet",
513 translateOID(q->u.type_1->attributeSetId));
514 setMember(hv, "query", rpn2perl(q->u.type_1->RPNStructure));
519 int bend_sort(void *handle, bend_sort_rr *rr)
530 char **input_setnames;
531 Zfront_handle *zhandle = (Zfront_handle *)handle;
539 input_setnames = rr->input_setnames;
540 for (i = 0; i < rr->num_input_setnames; i++)
542 av_push(aref, newSVpv(*input_setnames++, 0));
545 hv_store(href, "INPUT", 5, newRV( (SV*) aref), 0);
546 hv_store(href, "OUTPUT", 6, newSVpv(rr->output_setname, 0), 0);
547 hv_store(href, "HANDLE", 6, zhandle->handle, 0);
548 hv_store(href, "STATUS", 6, newSViv(0), 0);
552 XPUSHs(sv_2mortal(newRV( (SV*) href)));
556 perl_call_sv(sort_ref, G_SCALAR | G_DISCARD);
560 temp = hv_fetch(href, "ERR_CODE", 8, 1);
561 err_code = newSVsv(*temp);
563 temp = hv_fetch(href, "ERR_STR", 7, 1);
564 err_str = newSVsv(*temp);
566 temp = hv_fetch(href, "STATUS", 6, 1);
567 status = newSVsv(*temp);
575 rr->errcode = SvIV(err_code);
576 rr->sort_status = SvIV(status);
577 ptr = SvPV(err_str, len);
578 ODR_err_str = (char *)odr_malloc(rr->stream, len + 1);
579 strcpy(ODR_err_str, ptr);
580 rr->errstring = ODR_err_str;
590 int bend_search(void *handle, bend_search_rr *rr)
602 Zfront_handle *zhandle = (Zfront_handle *)handle;
610 basenames = rr->basenames;
611 for (i = 0; i < rr->num_bases; i++)
613 av_push(aref, newSVpv(*basenames++, 0));
615 #if ENABLE_STOP_SERVER
616 if (rr->num_bases == 1 && !strcmp(rr->basenames[0], "XXstop"))
618 zhandle->stop_flag = 1;
622 hv_store(href, "SETNAME", 7, newSVpv(rr->setname, 0), 0);
623 hv_store(href, "REPL_SET", 8, newSViv(rr->replace_set), 0);
624 hv_store(href, "ERR_CODE", 8, newSViv(0), 0);
625 hv_store(href, "ERR_STR", 7, newSVpv("", 0), 0);
626 hv_store(href, "HITS", 4, newSViv(0), 0);
627 hv_store(href, "DATABASES", 9, newRV( (SV*) aref), 0);
628 hv_store(href, "HANDLE", 6, zhandle->handle, 0);
629 hv_store(href, "PID", 3, newSViv(getpid()), 0);
630 hv_store(href, "RPN", 3, zquery2perl(rr->query), 0);
631 query = zquery2pquery(rr->query);
634 hv_store(href, "QUERY", 5, newSVpv((char *)query->buf, query->pos), 0);
642 XPUSHs(sv_2mortal(newRV( (SV*) href)));
646 handler_cv = simpleserver_sv2cv( search_ref );
647 perl_call_sv( (SV *) handler_cv, G_SCALAR | G_DISCARD);
651 temp = hv_fetch(href, "HITS", 4, 1);
652 rr->hits = SvIV(*temp);
654 temp = hv_fetch(href, "ERR_CODE", 8, 1);
655 rr->errcode = SvIV(*temp);
657 temp = hv_fetch(href, "ERR_STR", 7, 1);
658 ptr = SvPV(*temp, len);
659 ODR_errstr = (char *)odr_malloc(rr->stream, len + 1);
660 strcpy(ODR_errstr, ptr);
661 rr->errstring = ODR_errstr;
663 temp = hv_fetch(href, "HANDLE", 6, 1);
664 point = newSVsv(*temp);
669 zhandle->handle = point;
670 sv_free( (SV*) aref);
671 sv_free( (SV*) href);
672 wrbuf_free(query, 1);
680 /* ### this is worryingly similar to oid2str() */
681 WRBUF oid2dotted(int *oid)
684 WRBUF buf = wrbuf_alloc();
687 for (; *oid != -1 ; oid++)
692 wrbuf_putc(buf, '.');
698 sprintf(ibuf, "%d", *oid);
699 wrbuf_puts(buf, ibuf);
705 int dotted2oid(char *dotted, int *buffer)
719 if (n == MAX_OID) /* Terminate if more than MAX_OID entries */
725 sscanf(ibuf, "%d", oid++);
738 sscanf(ibuf, "%d", oid++);
745 int bend_fetch(void *handle, bend_fetch_rr *rr)
764 Zfront_handle *zhandle = (Zfront_handle *)handle;
767 Z_RecordComposition *composition;
768 Z_ElementSetNames *simple;
777 hv_store(href, "SETNAME", 7, newSVpv(rr->setname, 0), 0);
778 temp = hv_store(href, "OFFSET", 6, newSViv(rr->number), 0);
779 oid_dotted = oid2dotted(rr->request_format_raw);
780 hv_store(href, "REQ_FORM", 8, newSVpv((char *)oid_dotted->buf, oid_dotted->pos), 0);
781 hv_store(href, "REP_FORM", 8, newSVpv((char *)oid_dotted->buf, oid_dotted->pos), 0);
782 hv_store(href, "BASENAME", 8, newSVpv("", 0), 0);
783 hv_store(href, "RECORD", 6, newSVpv("", 0), 0);
784 hv_store(href, "LAST", 4, newSViv(0), 0);
785 hv_store(href, "ERR_CODE", 8, newSViv(0), 0);
786 hv_store(href, "ERR_STR", 7, newSVpv("", 0), 0);
787 hv_store(href, "SUR_FLAG", 8, newSViv(0), 0);
788 hv_store(href, "HANDLE", 6, zhandle->handle, 0);
789 hv_store(href, "PID", 3, newSViv(getpid()), 0);
792 composition = rr->comp;
793 if (composition->which == Z_RecordComp_simple)
795 simple = composition->u.simple;
796 if (simple->which == Z_ElementSetNames_generic)
798 hv_store(href, "COMP", 4, newSVpv(simple->u.generic, 0), 0);
813 XPUSHs(sv_2mortal(newRV( (SV*) href)));
817 handler_cv = simpleserver_sv2cv( fetch_ref );
818 perl_call_sv( (SV *) handler_cv, G_SCALAR | G_DISCARD);
822 temp = hv_fetch(href, "BASENAME", 8, 1);
823 basename = newSVsv(*temp);
825 temp = hv_fetch(href, "RECORD", 6, 1);
826 record = newSVsv(*temp);
828 temp = hv_fetch(href, "LAST", 4, 1);
829 last = newSVsv(*temp);
831 temp = hv_fetch(href, "ERR_CODE", 8, 1);
832 err_code = newSVsv(*temp);
834 temp = hv_fetch(href, "ERR_STR", 7, 1),
835 err_string = newSVsv(*temp);
837 temp = hv_fetch(href, "SUR_FLAG", 8, 1);
838 sur_flag = newSVsv(*temp);
840 temp = hv_fetch(href, "REP_FORM", 8, 1);
841 rep_form = newSVsv(*temp);
843 temp = hv_fetch(href, "HANDLE", 6, 1);
844 point = newSVsv(*temp);
849 ptr = SvPV(basename, length);
850 ODR_basename = (char *)odr_malloc(rr->stream, length + 1);
851 strcpy(ODR_basename, ptr);
852 rr->basename = ODR_basename;
854 ptr = SvPV(rep_form, length);
855 ODR_oid_buf = (int *)odr_malloc(rr->stream, (MAX_OID + 1) * sizeof(int));
856 if (dotted2oid(ptr, ODR_oid_buf) == -1) /* Maximum number of OID elements exceeded */
858 printf("Net::Z3950::SimpleServer: WARNING: OID structure too long, max length is %d\n", MAX_OID);
860 rr->output_format_raw = ODR_oid_buf;
862 ptr = SvPV(record, length);
863 oid = oid_getentbyoid(ODR_oid_buf);
864 if (oid->value == VAL_GRS1) /* Treat GRS-1 records separately */
866 rr->record = (char *) read_grs1(ptr, rr->stream);
871 ODR_record = (char *)odr_malloc(rr->stream, length + 1);
872 strcpy(ODR_record, ptr);
873 rr->record = ODR_record;
876 zhandle->handle = point;
878 rr->last_in_set = SvIV(last);
882 rr->errcode = SvIV(err_code);
883 ptr = SvPV(err_string, length);
884 ODR_errstr = (char *)odr_malloc(rr->stream, length + 1);
885 strcpy(ODR_errstr, ptr);
886 rr->errstring = ODR_errstr;
888 rr->surrogate_flag = SvIV(sur_flag);
890 wrbuf_free(oid_dotted, 1);
908 int bend_present(void *handle, bend_present_rr *rr)
917 Z_RecordComposition *composition;
918 Z_ElementSetNames *simple;
921 Zfront_handle *zhandle = (Zfront_handle *)handle;
924 /* WRBUF oid_dotted; */
931 hv_store(href, "HANDLE", 6, zhandle->handle, 0);
932 hv_store(href, "ERR_CODE", 8, newSViv(0), 0);
933 hv_store(href, "ERR_STR", 7, newSVpv("", 0), 0);
934 hv_store(href, "START", 5, newSViv(rr->start), 0);
935 hv_store(href, "SETNAME", 7, newSVpv(rr->setname, 0), 0);
936 hv_store(href, "NUMBER", 6, newSViv(rr->number), 0);
937 /*oid_dotted = oid2dotted(rr->request_format_raw);
938 hv_store(href, "REQ_FORM", 8, newSVpv((char *)oid_dotted->buf, oid_dotted->pos), 0);*/
939 hv_store(href, "HITS", 4, newSViv(0), 0);
940 hv_store(href, "PID", 3, newSViv(getpid()), 0);
943 composition = rr->comp;
944 if (composition->which == Z_RecordComp_simple)
946 simple = composition->u.simple;
947 if (simple->which == Z_ElementSetNames_generic)
949 hv_store(href, "COMP", 4, newSVpv(simple->u.generic, 0), 0);
966 XPUSHs(sv_2mortal(newRV( (SV*) href)));
970 handler_cv = simpleserver_sv2cv( present_ref );
971 perl_call_sv( (SV *) handler_cv, G_SCALAR | G_DISCARD);
975 temp = hv_fetch(href, "ERR_CODE", 8, 1);
976 err_code = newSVsv(*temp);
978 temp = hv_fetch(href, "ERR_STR", 7, 1);
979 err_string = newSVsv(*temp);
981 temp = hv_fetch(href, "HITS", 4, 1);
982 hits = newSVsv(*temp);
984 temp = hv_fetch(href, "HANDLE", 6, 1);
985 point = newSVsv(*temp);
992 rr->errcode = SvIV(err_code);
993 rr->hits = SvIV(hits);
995 ptr = SvPV(err_string, len);
996 ODR_errstr = (char *)odr_malloc(rr->stream, len + 1);
997 strcpy(ODR_errstr, ptr);
998 rr->errstring = ODR_errstr;
999 /* wrbuf_free(oid_dotted, 1);*/
1000 zhandle->handle = point;
1003 sv_free(err_string);
1005 sv_free( (SV*) href);
1011 int bend_esrequest(void *handle, bend_esrequest_rr *rr)
1013 perl_call_sv(esrequest_ref, G_VOID | G_DISCARD | G_NOARGS);
1018 int bend_delete(void *handle, bend_delete_rr *rr)
1020 perl_call_sv(delete_ref, G_VOID | G_DISCARD | G_NOARGS);
1025 int bend_scan(void *handle, bend_scan_rr *rr)
1032 struct scan_entry *scan_list;
1033 struct scan_entry *buffer;
1034 int *step_size = rr->step_size;
1038 SV *err_code = sv_newmortal();
1039 SV *err_str = sv_newmortal();
1040 SV *point = sv_newmortal();
1041 SV *status = sv_newmortal();
1042 SV *number = sv_newmortal();
1048 Zfront_handle *zhandle = (Zfront_handle *)handle;
1056 if (rr->term->term->which == Z_Term_general)
1058 term_len = rr->term->term->u.general->len;
1059 hv_store(href, "TERM", 4, newSVpv(rr->term->term->u.general->buf, term_len), 0);
1061 rr->errcode = 229; /* Unsupported term type */
1064 hv_store(href, "STEP", 4, newSViv(*step_size), 0);
1065 hv_store(href, "NUMBER", 6, newSViv(rr->num_entries), 0);
1066 hv_store(href, "POS", 3, newSViv(rr->term_position), 0);
1067 hv_store(href, "ERR_CODE", 8, newSViv(0), 0);
1068 hv_store(href, "ERR_STR", 7, newSVpv("", 0), 0);
1069 hv_store(href, "HANDLE", 6, zhandle->handle, 0);
1070 hv_store(href, "STATUS", 6, newSViv(BEND_SCAN_SUCCESS), 0);
1071 hv_store(href, "ENTRIES", 7, newRV((SV *) list), 0);
1073 basenames = rr->basenames;
1074 for (i = 0; i < rr->num_bases; i++)
1076 av_push(aref, newSVpv(*basenames++, 0));
1078 hv_store(href, "DATABASES", 9, newRV( (SV*) aref), 0);
1082 XPUSHs(sv_2mortal(newRV( (SV*) href)));
1086 handler_cv = simpleserver_sv2cv( scan_ref );
1087 perl_call_sv( (SV *) handler_cv, G_SCALAR | G_DISCARD);
1091 temp = hv_fetch(href, "ERR_CODE", 8, 1);
1092 err_code = newSVsv(*temp);
1094 temp = hv_fetch(href, "ERR_STR", 7, 1);
1095 err_str = newSVsv(*temp);
1097 temp = hv_fetch(href, "HANDLE", 6, 1);
1098 point = newSVsv(*temp);
1100 temp = hv_fetch(href, "STATUS", 6, 1);
1101 status = newSVsv(*temp);
1103 temp = hv_fetch(href, "NUMBER", 6, 1);
1104 number = newSVsv(*temp);
1106 temp = hv_fetch(href, "ENTRIES", 7, 1);
1107 entries_ref = newSVsv(*temp);
1113 ptr = SvPV(err_str, len);
1114 ODR_errstr = (char *)odr_malloc(rr->stream, len + 1);
1115 strcpy(ODR_errstr, ptr);
1116 rr->errstring = ODR_errstr;
1117 rr->errcode = SvIV(err_code);
1118 rr->num_entries = SvIV(number);
1119 rr->status = SvIV(status);
1120 scan_list = (struct scan_entry *) odr_malloc (rr->stream, rr->num_entries * sizeof(*scan_list));
1122 entries = (AV *)SvRV(entries_ref);
1123 for (i = 0; i < rr->num_entries; i++)
1125 scan_item = (HV *)SvRV(sv_2mortal(av_shift(entries)));
1126 temp = hv_fetch(scan_item, "TERM", 4, 1);
1127 ptr = SvPV(*temp, len);
1128 buffer->term = (char *) odr_malloc (rr->stream, len + 1);
1129 strcpy(buffer->term, ptr);
1130 temp = hv_fetch(scan_item, "OCCURRENCE", 10, 1);
1131 buffer->occurrences = SvIV(*temp);
1133 hv_undef(scan_item);
1135 rr->entries = scan_list;
1136 zhandle->handle = point;
1143 sv_free((SV *)href);
1145 sv_free((SV *)aref);
1147 sv_free((SV *)list);
1149 /*sv_free((SV *)entries);*/
1150 sv_free(entries_ref);
1155 bend_initresult *bend_init(bend_initrequest *q)
1157 int dummy = simpleserver_clone();
1158 bend_initresult *r = (bend_initresult *)
1159 odr_malloc (q->stream, sizeof(*r));
1162 char *passwd = NULL;
1166 NMEM nmem = nmem_create();
1167 Zfront_handle *zhandle = (Zfront_handle *) nmem_malloc (nmem,
1176 zhandle->nmem = nmem;
1177 zhandle->stop_flag = 0;
1178 /*q->bend_sort = bend_sort;*/
1181 q->bend_search = bend_search;
1185 q->bend_present = bend_present;
1187 /*q->bend_esrequest = bend_esrequest;*/
1188 /*q->bend_delete = bend_delete;*/
1191 q->bend_fetch = bend_fetch;
1195 q->bend_scan = bend_scan;
1199 hv_store(href, "IMP_ID", 6, newSVpv("", 0), 0);
1200 hv_store(href, "IMP_NAME", 8, newSVpv("", 0), 0);
1201 hv_store(href, "IMP_VER", 7, newSVpv("", 0), 0);
1202 hv_store(href, "ERR_CODE", 8, newSViv(0), 0);
1203 hv_store(href, "ERR_STR", 7, newSViv(0), 0);
1204 hv_store(href, "PEER_NAME", 9, newSVpv(q->peer_name, 0), 0);
1205 hv_store(href, "HANDLE", 6, newSVsv(&sv_undef), 0);
1206 hv_store(href, "PID", 3, newSViv(getpid()), 0);
1208 if (q->auth->which == Z_IdAuthentication_open) {
1209 char *openpass = xstrdup (q->auth->u.open);
1210 char *cp = strchr (openpass, '/');
1213 user = nmem_strdup (odr_getmem (q->stream), openpass);
1214 passwd = nmem_strdup (odr_getmem (q->stream), cp + 1);
1217 } else if (q->auth->which == Z_IdAuthentication_idPass) {
1218 user = q->auth->u.idPass->userId;
1219 passwd = q->auth->u.idPass->password;
1221 /* ### some code paths have user/password unassigned here */
1222 hv_store(href, "USER", 4, newSVpv(user, 0), 0);
1223 hv_store(href, "PASS", 4, newSVpv(passwd, 0), 0);
1228 XPUSHs(sv_2mortal(newRV((SV*) href)));
1232 if (init_ref != NULL)
1234 handler_cv = simpleserver_sv2cv( init_ref );
1235 perl_call_sv( (SV *) handler_cv, G_SCALAR | G_DISCARD);
1240 temp = hv_fetch(href, "IMP_ID", 6, 1);
1241 ptr = SvPV(*temp, len);
1242 q->implementation_id = nmem_strdup(nmem, ptr);
1244 temp = hv_fetch(href, "IMP_NAME", 8, 1);
1245 ptr = SvPV(*temp, len);
1246 q->implementation_name = nmem_strdup(nmem, ptr);
1248 temp = hv_fetch(href, "IMP_VER", 7, 1);
1249 ptr = SvPV(*temp, len);
1250 q->implementation_version = nmem_strdup(nmem, ptr);
1252 temp = hv_fetch(href, "ERR_CODE", 8, 1);
1253 r->errcode = SvIV(*temp);
1255 temp = hv_fetch(href, "ERR_STR", 7, 1);
1256 ptr = SvPV(*temp, len);
1257 r->errstring = (char *)odr_malloc(q->stream, len + 1);
1258 strcpy(r->errstring, ptr);
1260 temp = hv_fetch(href, "HANDLE", 6, 1);
1261 handle= newSVsv(*temp);
1262 zhandle->handle = handle;
1264 r->handle = zhandle;
1267 sv_free((SV*) href);
1276 void bend_close(void *handle)
1279 Zfront_handle *zhandle = (Zfront_handle *)handle;
1289 hv_store(href, "HANDLE", 6, zhandle->handle, 0);
1293 XPUSHs(sv_2mortal(newRV((SV *)href)));
1297 handler_cv = simpleserver_sv2cv( close_ref );
1298 perl_call_sv( (SV *) handler_cv, G_SCALAR | G_DISCARD);
1302 sv_free((SV*) href);
1304 sv_free(zhandle->handle);
1308 stop_flag = zhandle->stop_flag;
1309 nmem_destroy(zhandle->nmem);
1310 simpleserver_free();
1318 MODULE = Net::Z3950::SimpleServer PACKAGE = Net::Z3950::SimpleServer
1321 set_init_handler(arg)
1324 init_ref = newSVsv(arg);
1328 set_close_handler(arg)
1331 close_ref = newSVsv(arg);
1335 set_sort_handler(arg)
1338 sort_ref = newSVsv(arg);
1341 set_search_handler(arg)
1344 search_ref = newSVsv(arg);
1348 set_fetch_handler(arg)
1351 fetch_ref = newSVsv(arg);
1355 set_present_handler(arg)
1358 present_ref = newSVsv(arg);
1362 set_esrequest_handler(arg)
1365 esrequest_ref = newSVsv(arg);
1369 set_delete_handler(arg)
1372 delete_ref = newSVsv(arg);
1376 set_scan_handler(arg)
1379 scan_ref = newSVsv(arg);
1391 argv_buf = (char **)xmalloc((items + 1) * sizeof(char *));
1393 for (i = 0; i < items; i++)
1395 ptr = SvPV(ST(i), len);
1396 *argv_buf = (char *)xmalloc(len + 1);
1397 strcpy(*argv_buf++, ptr);
1400 root_perl_context = PERL_GET_CONTEXT;
1401 nmem_mutex_create(&simpleserver_mutex);
1403 /* only for debugging perl_clone .. */
1407 RETVAL = statserv_main(items, argv, bend_init, bend_close);
1415 RETVAL = BEND_SCAN_SUCCESS;
1422 RETVAL = BEND_SCAN_PARTIAL;