postgresql/contrib/userlock/user_locks.c

82 lines
1.5 KiB
C
Raw Normal View History

1997-11-05 22:38:25 +01:00
/*
* user_locks.c --
*
* This loadable module provides support for user-level long-term
* cooperative locks.
1997-11-05 22:38:25 +01:00
*
1999-09-27 22:04:14 +02:00
* Copyright (C) 1999, Massimo Dal Zotto <dz@cs.unitn.it>
*
1999-09-27 22:04:14 +02:00
* This software is distributed under the GNU General Public License
* either version 2, or (at your option) any later version.
1997-11-05 22:38:25 +01:00
*/
#include "postgres.h"
1997-11-05 22:38:25 +01:00
#include "miscadmin.h"
#include "storage/lmgr.h"
1997-11-05 22:38:25 +01:00
#include "storage/proc.h"
#include "user_locks.h"
#define SET_LOCKTAG_USERLOCK(locktag,id1,id2) \
((locktag).locktag_field1 = MyDatabaseId, \
(locktag).locktag_field2 = (id1), \
(locktag).locktag_field3 = (id2), \
(locktag).locktag_field4 = 0, \
(locktag).locktag_type = LOCKTAG_USERLOCK)
1997-11-05 22:38:25 +01:00
int
user_lock(uint32 id1, uint32 id2, LOCKMODE lockmode)
1997-11-05 22:38:25 +01:00
{
LOCKTAG tag;
1997-11-05 22:38:25 +01:00
SET_LOCKTAG_USERLOCK(tag, id1, id2);
1997-11-05 22:38:25 +01:00
return (LockAcquire(USER_LOCKMETHOD, &tag, false,
lockmode, true, true) != LOCKACQUIRE_NOT_AVAIL);
1997-11-05 22:38:25 +01:00
}
int
user_unlock(uint32 id1, uint32 id2, LOCKMODE lockmode)
1997-11-05 22:38:25 +01:00
{
LOCKTAG tag;
SET_LOCKTAG_USERLOCK(tag, id1, id2);
return LockRelease(USER_LOCKMETHOD, &tag, lockmode, true);
1997-11-05 22:38:25 +01:00
}
int
user_write_lock(uint32 id1, uint32 id2)
1997-11-05 22:38:25 +01:00
{
return user_lock(id1, id2, ExclusiveLock);
1997-11-05 22:38:25 +01:00
}
int
user_write_unlock(uint32 id1, uint32 id2)
1997-11-05 22:38:25 +01:00
{
return user_unlock(id1, id2, ExclusiveLock);
1997-11-05 22:38:25 +01:00
}
int
user_write_lock_oid(Oid oid)
{
return user_lock(0, oid, ExclusiveLock);
1997-11-05 22:38:25 +01:00
}
int
user_write_unlock_oid(Oid oid)
{
return user_unlock(0, oid, ExclusiveLock);
1997-11-05 22:38:25 +01:00
}
int
user_unlock_all(void)
1997-11-05 22:38:25 +01:00
{
LockReleaseAll(USER_LOCKMETHOD, true);
return true;
1997-11-05 22:38:25 +01:00
}