X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fidzebra%2Fapi.h;h=4f0dec69c1806eabcfcab3f83d3d4f70879d4a5a;hb=b3af54f7bf58db2a5d85b6a54b720bf6c5359c1f;hp=19f2c16132ab91edbea2f79dd2b0ce200e5d8193;hpb=fc83d98d346711f446d9f9a29cc2ff0eee398053;p=idzebra-moved-to-github.git diff --git a/include/idzebra/api.h b/include/idzebra/api.h index 19f2c16..4f0dec6 100644 --- a/include/idzebra/api.h +++ b/include/idzebra/api.h @@ -1,5 +1,5 @@ -/* $Id: api.h,v 1.35 2006-05-30 13:21:13 adam Exp $ - Copyright (C) 1995-2005 +/* $Id: api.h,v 1.41 2006-11-21 22:17:49 adam Exp $ + Copyright (C) 1995-2006 Index Data ApS This file is part of the Zebra server. @@ -15,9 +15,9 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ /** \file api.h @@ -39,24 +39,11 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA YAZ_BEGIN_CDECL -/** - expand GCC_ATTRIBUTE if GCC is in use. See : - http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html -*/ - -#ifndef GCC_ATTRIBUTE -#ifdef __GNUC__ -#define GCC_ATTRIBUTE(x) __attribute__ (x) -#else -#define GCC_ATTRIBUTE(x) -#endif -#endif - typedef struct { - int processed; - int inserted; - int updated; - int deleted; + zint processed; + zint inserted; + zint updated; + zint deleted; long utime; long stime; } ZebraTransactionStatus; @@ -70,13 +57,13 @@ typedef struct { int len; /* length */ oid_value format; /* record syntax */ char *base; - SYSNO sysno; + zint sysno; int score; } ZebraRetrievalRecord; /** Scan Term Descriptor */ typedef struct { - int occurrences; /* scan term occurrences */ + zint occurrences; /* scan term occurrences */ char *term; /* scan term string */ } ZebraScanEntry; @@ -97,7 +84,7 @@ typedef struct zebra_service *ZebraService; */ YAZ_EXPORT ZebraService zebra_start(const char *configName - ) GCC_ATTRIBUTE((warn_unused_result)); + ) ZEBRA_GCC_ATTR((warn_unused_result)); /** \brief Creates a Zebra service with resources. \param configName name of configuration file @@ -110,7 +97,7 @@ ZebraService zebra_start(const char *configName YAZ_EXPORT ZebraService zebra_start_res(const char *configName, Res def_res, Res over_res - ) GCC_ATTRIBUTE((warn_unused_result)); + ) ZEBRA_GCC_ATTR((warn_unused_result)); /** \brief stops a Zebra service. \param zs service handle @@ -140,7 +127,7 @@ void zebra_filter_info(ZebraService zs, void *cd, */ YAZ_EXPORT ZebraHandle zebra_open(ZebraService zs, Res res - ) GCC_ATTRIBUTE((warn_unused_result)); + ) ZEBRA_GCC_ATTR((warn_unused_result)); /** \brief Destroys Zebra session handle. \param zh zebra session handle. @@ -369,11 +356,11 @@ ZEBRA_RES zebra_admin_exchange_record(ZebraHandle zh, YAZ_EXPORT ZEBRA_RES zebra_begin_trans(ZebraHandle zh, int rw - ) GCC_ATTRIBUTE((warn_unused_result)); + ) ZEBRA_GCC_ATTR((warn_unused_result)); YAZ_EXPORT ZEBRA_RES zebra_end_trans(ZebraHandle zh - ) GCC_ATTRIBUTE((warn_unused_result)); + ) ZEBRA_GCC_ATTR((warn_unused_result)); YAZ_EXPORT ZEBRA_RES zebra_end_transaction(ZebraHandle zh, @@ -406,21 +393,22 @@ ZEBRA_RES zebra_add_record(ZebraHandle zh, const char *buf, int buf_size); YAZ_EXPORT ZEBRA_RES zebra_insert_record(ZebraHandle zh, const char *recordType, - SYSNO *sysno, const char *match, + zint *sysno, const char *match, const char *fname, const char *buf, int buf_size, int force_update); YAZ_EXPORT ZEBRA_RES zebra_update_record(ZebraHandle zh, const char *recordType, - SYSNO *sysno, const char *match, + zint *sysno, const char *match, const char *fname, const char *buf, int buf_size, int force_update); YAZ_EXPORT ZEBRA_RES zebra_delete_record(ZebraHandle zh, const char *recordType, - SYSNO *sysno, const char *match, const char *fname, + zint *sysno, const char *match, + const char *fname, const char *buf, int buf_size, int force_update); @@ -431,16 +419,16 @@ ZEBRA_RES zebra_sort(ZebraHandle zh, ODR stream, const char *output_setname, Z_SortKeySpecList *sort_sequence, int *sort_status - ) GCC_ATTRIBUTE((warn_unused_result)); + ) ZEBRA_GCC_ATTR((warn_unused_result)); YAZ_EXPORT ZEBRA_RES zebra_select_databases(ZebraHandle zh, int num_bases, const char **basenames - ) GCC_ATTRIBUTE((warn_unused_result)); + ) ZEBRA_GCC_ATTR((warn_unused_result)); YAZ_EXPORT ZEBRA_RES zebra_select_database(ZebraHandle zh, const char *basename - ) GCC_ATTRIBUTE((warn_unused_result)); + ) ZEBRA_GCC_ATTR((warn_unused_result)); YAZ_EXPORT void zebra_shadow_enable(ZebraHandle zh, int value);