dev.profunktor.redis4cats.algebra.bitmaps.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018-2021 ProfunKtor
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dev.profunktor.redis4cats.algebra
import dev.profunktor.redis4cats.algebra.BitCommandOperation.Overflows.Overflows
import io.lettuce.core.BitFieldArgs.BitFieldType
sealed trait BitCommandOperation
object BitCommandOperation {
final case class Get(bitFieldType: BitFieldType, offset: Int) extends BitCommandOperation
final case class SetSigned(offset: Int, value: Long, bits: Int = 1) extends BitCommandOperation
final case class SetUnsigned(offset: Int, value: Long, bits: Int = 1) extends BitCommandOperation
final case class IncrSignedBy(offset: Int, increment: Long, bits: Int = 1) extends BitCommandOperation
final case class IncrUnsignedBy(offset: Int, increment: Long, bits: Int = 1) extends BitCommandOperation
final case class Overflow(overflow: Overflows) extends BitCommandOperation
object Overflows extends Enumeration {
type Overflows = Value
val WRAP, SAT, FAIL = Value
}
}
trait BitCommands[F[_], K, V] {
def bitCount(key: K): F[Long]
def bitCount(key: K, start: Long, end: Long): F[Long]
def bitField(key: K, operations: BitCommandOperation*): F[List[Long]]
def bitOpAnd(destination: K, sources: K*): F[Unit]
def bitOpNot(destination: K, source: K): F[Unit]
def bitOpOr(destination: K, sources: K*): F[Unit]
def bitOpXor(destination: K, sources: K*): F[Unit]
def bitPos(key: K, state: Boolean): F[Long]
def bitPos(key: K, state: Boolean, start: Long): F[Long]
def bitPos(key: K, state: Boolean, start: Long, end: Long): F[Long]
def getBit(key: K, offset: Long): F[Option[Long]]
def setBit(key: K, offset: Long, value: Int): F[Long]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy