X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Flockutil.c;h=325ac4a80a3cc8e6938fd116455e45b830dc6464;hb=f1a944fbdac20e88bf55918f2a4f66c301d684e2;hp=acd65410aa3f86a6b4acad9fb56883b2be59e265;hpb=4e2fc80e64f3d7895a871ea5b08aa80045a59f2c;p=idzebra-moved-to-github.git diff --git a/index/lockutil.c b/index/lockutil.c index acd6541..325ac4a 100644 --- a/index/lockutil.c +++ b/index/lockutil.c @@ -1,33 +1,130 @@ /* - * Copyright (C) 1994-1995, Index Data I/S + * Copyright (C) 1994-2002, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * - * $Log: lockutil.c,v $ - * Revision 1.1 1995-12-07 17:38:47 adam - * Work locking mechanisms for concurrent updates/commit. - * + * $Id: lockutil.c,v 1.13 2002-02-20 17:30:01 adam Exp $ */ #include #include -#include -#include -#include #include #include +#include +#include +#ifdef WIN32 +#include +#include +#else +#include +#endif -#include #include "index.h" -static char *lockDir = NULL; +struct zebra_lock_info { + int fd; + int excl_flag; +}; + +ZebraLockHandle zebra_lock_create (const char *name, int excl_flag) +{ + ZebraLockHandle h = (ZebraLockHandle) xmalloc (sizeof(*h)); + h->excl_flag = excl_flag; + h->fd = -1; +#ifdef WIN32 + if (!h->excl_flag) + h->fd = open (name, O_BINARY|O_RDONLY); + if (h->fd == -1) + h->fd = open (name, ((h->excl_flag > 1) ? O_EXCL : 0)| + (O_BINARY|O_CREAT|O_RDWR), 0666); +#else + h->fd= open (name, ((h->excl_flag > 1) ? O_EXCL : 0)| + (O_BINARY|O_CREAT|O_RDWR|O_SYNC), 0666); +#endif + if (h->fd == -1) + { + if (h->excl_flag <= 1) + logf (LOG_WARN|LOG_ERRNO, "open %s", name); + xfree (h); + return NULL; + } + return h; +} + +void zebra_lock_destroy (ZebraLockHandle h) +{ + if (!h) + return; + if (h->fd != -1) + close (h->fd); + xfree (h); +} + +void zebra_lock_prefix (Res res, char *path) +{ + char *lock_dir = res_get_def (res, "lockDir", ""); + + strcpy (path, lock_dir); + if (*path && path[strlen(path)-1] != '/') + strcat (path, "/"); +} + +#ifndef WIN32 +static int unixLock (int fd, int type, int cmd) +{ + struct flock area; + area.l_type = type; + area.l_whence = SEEK_SET; + area.l_len = area.l_start = 0L; + return fcntl (fd, cmd, &area); +} +#endif + +int zebra_lock_w (ZebraLockHandle h) +{ +#ifdef WIN32 + return _locking (h->fd, _LK_LOCK, 1); +#else + return unixLock (h->fd, F_WRLCK, F_SETLKW); +#endif +} + +int zebra_lock_r (ZebraLockHandle h) +{ +#ifdef WIN32 + return _locking (h->fd, _LK_LOCK, 1); +#else + return unixLock (h->fd, F_RDLCK, F_SETLKW); +#endif +} + +int zebra_lock (ZebraLockHandle h) +{ +#ifdef WIN32 + return _locking (h->fd, _LK_LOCK, 1); +#else + return unixLock (h->fd, h->excl_flag ? F_WRLCK : F_RDLCK, F_SETLKW); +#endif +} + +int zebra_lock_nb (ZebraLockHandle h) +{ +#ifdef WIN32 + return _locking (h->fd, _LK_NBLCK, 1); +#else + return unixLock (h->fd, h->excl_flag ? F_WRLCK : F_RDLCK, F_SETLK); +#endif +} + +int zebra_unlock (ZebraLockHandle h) +{ +#ifdef WIN32 + return _locking (h->fd, _LK_UNLCK, 1); +#else + return unixLock (h->fd, F_UNLCK, F_SETLKW); +#endif +} -void zebraLockPrefix (char *pathPrefix) +int zebra_lock_fd (ZebraLockHandle h) { - if (!lockDir) - lockDir = res_get_def (common_resource, "lockDir", ""); - assert (lockDir); - - strcpy (pathPrefix, lockDir); - if (*pathPrefix && pathPrefix[strlen(pathPrefix)-1] != '/') - strcat (pathPrefix, "/"); + return h->fd; }