X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fzaccess.h;h=27fdd065d39d609b9727f5b8dc33243e4f521c97;hb=7f332a840baf336e34d612cdee0ef27901f0dd11;hp=4815669951973a8f191f6d2e8d56034e063001ca;hpb=5facb03a150bfa47ef284981c15d4a471cc3f510;p=egate.git diff --git a/include/zaccess.h b/include/zaccess.h index 4815669..27fdd06 100644 --- a/include/zaccess.h +++ b/include/zaccess.h @@ -1,15 +1,85 @@ +/* + * Copyright (c) 1995, the EUROPAGATE consortium (see below). + * + * The EUROPAGATE consortium members are: + * + * University College Dublin + * Danmarks Teknologiske Videnscenter + * An Chomhairle Leabharlanna + * Consejo Superior de Investigaciones Cientificas + * + * Permission to use, copy, modify, distribute, and sell this software and + * its documentation, in whole or in part, for any purpose, is hereby granted, + * provided that: + * + * 1. This copyright and permission notice appear in all copies of the + * software and its documentation. Notices of copyright or attribution + * which appear at the beginning of any file must remain unchanged. + * + * 2. The names of EUROPAGATE or the project partners may not be used to + * endorse or promote products derived from this software without specific + * prior written permission. + * + * 3. Users of this software (implementors and gateway operators) agree to + * inform the EUROPAGATE consortium of their use of the software. This + * information will be used to evaluate the EUROPAGATE project and the + * software, and to plan further developments. The consortium may use + * the information in later publications. + * + * 4. Users of this software agree to make their best efforts, when + * documenting their use of the software, to acknowledge the EUROPAGATE + * consortium, and the role played by the software in their work. + * + * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * IN NO EVENT SHALL THE EUROPAGATE CONSORTIUM OR ITS MEMBERS BE LIABLE + * FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF + * ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA + * OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND + * ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * USE OR PERFORMANCE OF THIS SOFTWARE. + * + */ +/* + * Europagate, 1995 + * + * $Log: zaccess.h,v $ + * Revision 1.14 2001/02/26 14:32:36 adam + * Updated for YAZ 1.7. HTML output tidy up. Added LOC target. + * + * Revision 1.13 1995/05/16 09:39:40 adam + * LICENSE. + * + * Revision 1.12 1995/04/20 15:25:25 quinn + * Asynch. API + * + * Revision 1.11 1995/04/19 12:55:41 quinn + * Added auth + * + * Revision 1.10 1995/04/17 11:27:24 quinn + * Smallish + * + * Revision 1.9 1995/02/23 08:32:12 adam + * Changed header. + * + * Revision 1.7 1995/02/17 13:59:06 quinn + * Added header. + * + */ + #ifndef ZACCESS_H #define ZACCESS_H #define ZASS_DEBUG GW_LOG_DEBUGN(9) #define ZASS_TYPE "zass" -#define ZASS_ID "EUROPAGATE/DTB/ID" +#define ZASS_ID "EUROPAGATE/DTV/ID" #define ZASS_NAME "EUROPAGATE E-mail/Z39.50 gateway" -#define ZASS_VERSION "development 0.1" +#define ZASS_VERSION "development 0.2" -#define ZASS_MAXRECORDSIZE 10000 -#define ZASS_PREFERREDMESSAGESIZE 10000 +#define ZASS_MAXRECORDSIZE 40000 +#define ZASS_PREFERREDMESSAGESIZE 40000 typedef struct zass *ZASS; @@ -39,8 +109,10 @@ typedef struct zass_record { enum { + ZASS_REC_UNKNOWN=-1, ZASS_REC_DIAG=0, - ZASS_REC_USMARC=10 + ZASS_REC_USMARC=10, + ZASS_REC_DANMARC=11 } which; /* 0 = diagnostic, others according to z3950v3 */ char *record; /* marc or other */ @@ -55,13 +127,66 @@ typedef struct zass_presentent int num; /* # of recs returned */ int nextpos; /* next resultset position. 1==first record */ enum present_status presentstatus; /* status of set */ - struct zass_records *records; + struct zass_record *records; } zass_presentent; -ZASS zass_open(char *host, int port); +/* + * open a connection to the target. If complete is NULL, the connection + * will be blocking, and complete will be ignored by the following + * primitives. If complete is not null, the connection will be non-blocking. + * if the connection cannot be established immediately, *complete will + * be set to zero, and the user should call openresult when select signals + * that I/O is possible. Returns NULL on a fatal error in the connection + * establishment. + */ +ZASS zass_open(char *host, int port, int *complete, char *auth); + +/* + * second half of connection establishment in nonblocking mode. + * Returns: + * -1 with *complete == 0 : call again when select allows. + * -1 with *complete == 1 : fatal error. Abort connection. + * 0 : success. + */ +int zass_openresult(ZASS a, int *complete); + +/* + * Return the file handle of the association (for select() & other fun. + */ +int zass_fileno(ZASS a); + +/* + * Returns: + * NULL with *complete == 0 : call searchresult when select allows (nonbl. only) + * NULL with *complete == 1 : fatal error. Abort connection. + * non-null : operation complete. + */ const struct zass_searchent *zass_search(ZASS a, struct ccl_rpn_node *query, - char *resname, char *databases); + char *resname, char *databases, int *complete); + +/* + * Returns: + * NULL with *complete == 0 : call again when select allows (nonbl. only) + * NULL with *complete == 1 : fatal error. Abort connection. + * non-null : operation complete. + */ +const struct zass_searchent *zass_searchresult(ZASS a, int *complete); + +/* + * Returns: + * NULL with *complete == 0 : call presentresult when select ok (nonbl. only) + * NULL with *complete == 1 : fatal error. Abort connection. + * non-null : operation complete. + */ const struct zass_presentent *zass_present(ZASS a, char *resname, int start, - int num); + int num, int *complete); + +/* + * Returns: + * NULL with *complete == 0 : call again when select allows (nonbl. only) + * NULL with *complete == 1 : fatal error. Abort connection. + * non-null : operation complete. + */ +const struct zass_presentent *zass_presentresult(ZASS a, int *complete); #endif