Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
swaydb.java.persistent.MapConfig.scala Maven / Gradle / Ivy
/*
* Copyright (c) 2020 Simer JS Plaha ([email protected] - @simerplaha)
*
* This file is a part of SwayDB.
*
* SwayDB is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* SwayDB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with SwayDB. If not, see .
*
* Additional permission under the GNU Affero GPL version 3 section 7:
* If you modify this Program or any covered work, only by linking or
* combining it with separate works, the licensors of this Program grant
* you additional permission to convey the resulting work.
*/
package swaydb.java.persistent
import java.nio.file.Path
import java.util.Collections
import swaydb.core.util.Eithers
import swaydb.data.accelerate.{Accelerator, LevelZeroMeter}
import swaydb.data.compaction.{LevelMeter, Throttle}
import swaydb.data.config._
import swaydb.data.order.KeyOrder
import swaydb.data.slice.Slice
import swaydb.data.util.Java.JavaFunction
import swaydb.data.util.StorageUnits._
import swaydb.java.data.slice.ByteSlice
import swaydb.java.serializers.{SerializerConverter, Serializer => JavaSerializer}
import swaydb.java.{KeyComparator, KeyOrderConverter, PureFunction, Return}
import swaydb.persistent.DefaultConfigs
import swaydb.serializers.Serializer
import swaydb.{Apply, Bag}
import scala.compat.java8.FunctionConverters._
import scala.concurrent.duration.FiniteDuration
import scala.jdk.CollectionConverters._
import scala.reflect.ClassTag
object MapConfig {
final class Config[K, V, F](dir: Path,
private var mapSize: Int = 4.mb,
private var mmapMaps: Boolean = true,
private var recoveryMode: RecoveryMode = RecoveryMode.ReportFailure,
private var mmapAppendix: Boolean = true,
private var appendixFlushCheckpointSize: Int = 2.mb,
private var otherDirs: java.util.Collection[Dir] = Collections.emptyList(),
private var cacheKeyValueIds: Boolean = true,
private var threadStateCache: ThreadStateCache = ThreadStateCache.Limit(hashMapMaxSize = 100, maxProbe = 10),
private var sortedKeyIndex: SortedKeyIndex = DefaultConfigs.sortedKeyIndex(),
private var randomKeyIndex: RandomKeyIndex = DefaultConfigs.randomKeyIndex(),
private var binarySearchIndex: BinarySearchIndex = DefaultConfigs.binarySearchIndex(),
private var mightContainKeyIndex: MightContainIndex = DefaultConfigs.mightContainKeyIndex(),
private var valuesConfig: ValuesConfig = DefaultConfigs.valuesConfig(),
private var segmentConfig: SegmentConfig = DefaultConfigs.segmentConfig(),
private var fileCache: FileCache.Enable = DefaultConfigs.fileCache(),
private var memoryCache: MemoryCache = DefaultConfigs.memoryCache(),
private var levelZeroThrottle: JavaFunction[LevelZeroMeter, FiniteDuration] = (DefaultConfigs.levelZeroThrottle _).asJava,
private var levelOneThrottle: JavaFunction[LevelMeter, Throttle] = (DefaultConfigs.levelOneThrottle _).asJava,
private var levelTwoThrottle: JavaFunction[LevelMeter, Throttle] = (DefaultConfigs.levelTwoThrottle _).asJava,
private var levelThreeThrottle: JavaFunction[LevelMeter, Throttle] = (DefaultConfigs.levelThreeThrottle _).asJava,
private var levelFourThrottle: JavaFunction[LevelMeter, Throttle] = (DefaultConfigs.levelFourThrottle _).asJava,
private var levelFiveThrottle: JavaFunction[LevelMeter, Throttle] = (DefaultConfigs.levelFiveThrottle _).asJava,
private var levelSixThrottle: JavaFunction[LevelMeter, Throttle] = (DefaultConfigs.levelSixThrottle _).asJava,
private var acceleration: JavaFunction[LevelZeroMeter, Accelerator] = (Accelerator.noBrakes() _).asJava,
private var byteComparator: KeyComparator[ByteSlice] = null,
private var typedComparator: KeyComparator[K] = null,
keySerializer: Serializer[K],
valueSerializer: Serializer[V],
functionClassTag: ClassTag[_]) {
def setMapSize(mapSize: Int) = {
this.mapSize = mapSize
this
}
def setMmapMaps(mmapMaps: Boolean) = {
this.mmapMaps = mmapMaps
this
}
def setRecoveryMode(recoveryMode: RecoveryMode) = {
this.recoveryMode = recoveryMode
this
}
def setMmapAppendix(mmapAppendix: Boolean) = {
this.mmapAppendix = mmapAppendix
this
}
def setAppendixFlushCheckpointSize(appendixFlushCheckpointSize: Int) = {
this.appendixFlushCheckpointSize = appendixFlushCheckpointSize
this
}
def setOtherDirs(otherDirs: java.util.Collection[Dir]) = {
this.otherDirs = otherDirs
this
}
def setCacheKeyValueIds(cacheKeyValueIds: Boolean) = {
this.cacheKeyValueIds = cacheKeyValueIds
this
}
def setThreadStateCache(threadStateCache: ThreadStateCache) = {
this.threadStateCache = threadStateCache
this
}
def setSortedKeyIndex(sortedKeyIndex: SortedKeyIndex) = {
this.sortedKeyIndex = sortedKeyIndex
this
}
def setRandomKeyIndex(randomKeyIndex: RandomKeyIndex) = {
this.randomKeyIndex = randomKeyIndex
this
}
def setBinarySearchIndex(binarySearchIndex: BinarySearchIndex) = {
this.binarySearchIndex = binarySearchIndex
this
}
def setMightContainKeyIndex(mightContainKeyIndex: MightContainIndex) = {
this.mightContainKeyIndex = mightContainKeyIndex
this
}
def setValuesConfig(valuesConfig: ValuesConfig) = {
this.valuesConfig = valuesConfig
this
}
def setSegmentConfig(segmentConfig: SegmentConfig) = {
this.segmentConfig = segmentConfig
this
}
def setFileCache(fileCache: FileCache.Enable) = {
this.fileCache = fileCache
this
}
def setMemoryCache(memoryCache: MemoryCache) = {
this.memoryCache = memoryCache
this
}
def setLevelZeroThrottle(levelZeroThrottle: JavaFunction[LevelZeroMeter, FiniteDuration]) = {
this.levelZeroThrottle = levelZeroThrottle
this
}
def setLevelOneThrottle(levelOneThrottle: JavaFunction[LevelMeter, Throttle]) = {
this.levelOneThrottle = levelOneThrottle
this
}
def setLevelTwoThrottle(levelTwoThrottle: JavaFunction[LevelMeter, Throttle]) = {
this.levelTwoThrottle = levelTwoThrottle
this
}
def setLevelThreeThrottle(levelThreeThrottle: JavaFunction[LevelMeter, Throttle]) = {
this.levelThreeThrottle = levelThreeThrottle
this
}
def setLevelFourThrottle(levelFourThrottle: JavaFunction[LevelMeter, Throttle]) = {
this.levelFourThrottle = levelFourThrottle
this
}
def setLevelFiveThrottle(levelFiveThrottle: JavaFunction[LevelMeter, Throttle]) = {
this.levelFiveThrottle = levelFiveThrottle
this
}
def setLevelSixThrottle(levelSixThrottle: JavaFunction[LevelMeter, Throttle]) = {
this.levelSixThrottle = levelSixThrottle
this
}
def setAcceleration(acceleration: JavaFunction[LevelZeroMeter, Accelerator]) = {
this.acceleration = acceleration
this
}
def setByteComparator(byteComparator: KeyComparator[ByteSlice]) = {
this.byteComparator = byteComparator
this
}
def setTypedComparator(typedComparator: KeyComparator[K]) = {
this.typedComparator = typedComparator
this
}
private val functions = swaydb.Map.Functions[K, V, swaydb.PureFunction[K, V, Apply.Map[V]]]()(keySerializer, valueSerializer)
def registerFunctions(functions: F*): Config[K, V, F] = {
functions.foreach(registerFunction(_))
this
}
def registerFunction(function: F): Config[K, V, F] = {
functions.register(PureFunction.asScala(function.asInstanceOf[swaydb.java.PureFunction[K, V, Return.Map[V]]]))
this
}
def removeFunction(function: F): Config[K, V, F] = {
functions.core.remove(function.asInstanceOf[swaydb.java.PureFunction[K, V, Return.Map[V]]].id.asInstanceOf[Slice[Byte]])
this
}
def get(): swaydb.java.Map[K, V, F] = {
val comparator: Either[KeyComparator[ByteSlice], KeyComparator[K]] =
Eithers.nullCheck(
left = byteComparator,
right = typedComparator,
default = KeyComparator.lexicographic
)
val scalaKeyOrder: KeyOrder[Slice[Byte]] = KeyOrderConverter.toScalaKeyOrder(comparator, keySerializer)
val scalaMap =
swaydb.persistent.Map[K, V, swaydb.PureFunction[K, V, Apply.Map[V]], Bag.Less](
dir = dir,
mapSize = mapSize,
mmapMaps = mmapMaps,
recoveryMode = recoveryMode,
mmapAppendix = mmapAppendix,
appendixFlushCheckpointSize = appendixFlushCheckpointSize,
otherDirs = otherDirs.asScala.toSeq,
cacheKeyValueIds = cacheKeyValueIds,
acceleration = acceleration.asScala,
threadStateCache = threadStateCache,
sortedKeyIndex = sortedKeyIndex,
randomKeyIndex = randomKeyIndex,
binarySearchIndex = binarySearchIndex,
mightContainKeyIndex = mightContainKeyIndex,
valuesConfig = valuesConfig,
segmentConfig = segmentConfig,
fileCache = fileCache,
memoryCache = memoryCache,
levelZeroThrottle = levelZeroThrottle.asScala,
levelOneThrottle = levelOneThrottle.asScala,
levelTwoThrottle = levelTwoThrottle.asScala,
levelThreeThrottle = levelThreeThrottle.asScala,
levelFourThrottle = levelFourThrottle.asScala,
levelFiveThrottle = levelFiveThrottle.asScala,
levelSixThrottle = levelSixThrottle.asScala
)(keySerializer = keySerializer,
valueSerializer = valueSerializer,
functions = functions.asInstanceOf[swaydb.Map.Functions[K, V, swaydb.PureFunction[K, V, Apply.Map[V]]]],
functionClassTag = functionClassTag.asInstanceOf[ClassTag[swaydb.PureFunction[K, V, Apply.Map[V]]]],
bag = Bag.less,
byteKeyOrder = scalaKeyOrder
)
swaydb.java.Map[K, V, F](scalaMap)
}
}
def functionsOn[K, V](dir: Path,
keySerializer: JavaSerializer[K],
valueSerializer: JavaSerializer[V]): Config[K, V, swaydb.java.PureFunction[K, V, Return.Map[V]]] =
new Config(
dir = dir,
keySerializer = SerializerConverter.toScala(keySerializer),
valueSerializer = SerializerConverter.toScala(valueSerializer),
functionClassTag = ClassTag.Any.asInstanceOf[ClassTag[swaydb.PureFunction[K, V, Apply.Map[V]]]]
)
def functionsOff[K, V](dir: Path,
keySerializer: JavaSerializer[K],
valueSerializer: JavaSerializer[V]): Config[K, V, Void] =
new Config[K, V, Void](
dir = dir,
keySerializer = SerializerConverter.toScala(keySerializer),
valueSerializer = SerializerConverter.toScala(valueSerializer),
functionClassTag = ClassTag.Nothing.asInstanceOf[ClassTag[Void]]
)
}