Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding extendLockExpiration function #67

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,34 @@ object RedisLock {
}
}

/**
* Extends the lock expiration
* @return Returns true if identifier owns the lock and extends it; false if not the owner
*/
def extendLockExpiration[F[_]: Async](
connection: RedisConnection[F],
lockname: String,
identifier: UUID,
lockTimeout: FiniteDuration
): F[Boolean] = {
val lockName = "lock:" ++ lockname
(RedisCtx[RedisPipeline].keyed[Status](lockName, NonEmptyList.of("WATCH", lockName)) *>
RedisCommands.get[RedisPipeline](lockName)).pipeline.run(connection).flatMap {
case Some(value) if value === identifier.toString =>
RedisCommands
.expire[RedisTransaction](lockName, lockTimeout.toSeconds)
.transact
.run(connection)
.flatMap {
case Success(_) => Applicative[F].pure(true)
case Aborted => extendLockExpiration(connection, lockName, identifier, lockTimeout)
case Error(value) =>
new Throwable(s"lock expiration extension for $lockName encountered error $value").raiseError[F, Boolean]
}
case _ => Applicative[F].pure(false)
}
}

def tryAcquireLockWithTimeout[F[_]: Async: UUIDGen](
connection: RedisConnection[F],
lockname: String,
Expand Down