X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=include%2Fidzebra%2Fapi.h;h=d01ce21176a20477ab0fbc09853353cc974fdc01;hp=e6ce250bd755cdc039a026fb48fb60e55ae3c500;hb=0f78f3fe78e859d9f0d3f0d3e13fcd28085dd427;hpb=ecb3935e78cd9bcfdebafdee0834cfb1060d7b5e diff --git a/include/idzebra/api.h b/include/idzebra/api.h index e6ce250..d01ce21 100644 --- a/include/idzebra/api.h +++ b/include/idzebra/api.h @@ -1,5 +1,5 @@ -/* $Id: api.h,v 1.34 2006-05-10 08:13:19 adam Exp $ - Copyright (C) 1995-2005 +/* $Id: api.h,v 1.40 2006-11-14 08:12:07 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; @@ -76,7 +63,7 @@ typedef struct { /** 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, @@ -391,11 +378,17 @@ ZEBRA_RES zebra_init(ZebraHandle zh); YAZ_EXPORT ZEBRA_RES zebra_compact(ZebraHandle zh); -YAZ_EXPORT int zebra_repository_update(ZebraHandle zh, const char *path); -YAZ_EXPORT int zebra_repository_delete(ZebraHandle zh, const char *path); -YAZ_EXPORT int zebra_repository_show(ZebraHandle zh, const char *path); +YAZ_EXPORT +ZEBRA_RES zebra_repository_update(ZebraHandle zh, const char *path); + +YAZ_EXPORT +ZEBRA_RES zebra_repository_delete(ZebraHandle zh, const char *path); -YAZ_EXPORT int zebra_add_record(ZebraHandle zh, const char *buf, int buf_size); +YAZ_EXPORT +ZEBRA_RES zebra_repository_show(ZebraHandle zh, const char *path); + +YAZ_EXPORT +ZEBRA_RES zebra_add_record(ZebraHandle zh, const char *buf, int buf_size); YAZ_EXPORT ZEBRA_RES zebra_insert_record(ZebraHandle zh, @@ -425,16 +418,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);