org.apache.james.rate.limiter.redis.RedisRateLimiterConfiguration.scala Maven / Gradle / Ivy
/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you 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 org.apache.james.rate.limiter.redis
import com.google.common.base.Preconditions
import eu.timepit.refined
import eu.timepit.refined.api.Refined
import eu.timepit.refined.collection.NonEmpty
import io.lettuce.core.RedisURI
import org.apache.commons.configuration2.Configuration
import org.apache.james.rate.limiter.redis.RedisUris.RedisUris
object RedisRateLimiterConfiguration {
val CLUSTER_ENABLED_DEFAULT = false
def from(config: Configuration): RedisRateLimiterConfiguration =
from(config.getString("redisURL"),
config.getBoolean("cluster.enabled", CLUSTER_ENABLED_DEFAULT),
Option(config.getInteger("redis.ioThreads", null)).map(Integer2int),
Option(config.getInteger("redis.workerThreads", null)).map(Integer2int))
def from(redisUri: String, isCluster: Boolean, ioThreads: Option[Int], workerThreads:Option[Int]): RedisRateLimiterConfiguration = {
Preconditions.checkArgument(redisUri != null && !redisUri.isBlank)
Preconditions.checkNotNull(isCluster)
RedisRateLimiterConfiguration(RedisUris.from(redisUri), isCluster, ioThreads, workerThreads)
}
def from(redisUri: String, isCluster: Boolean): RedisRateLimiterConfiguration = from(redisUri, isCluster, None, None)
}
object RedisUris {
type RedisUrisConstraint = NonEmpty
type RedisUris = List[RedisURI] Refined RedisUrisConstraint
def validate(value: List[RedisURI]): Either[IllegalArgumentException, RedisUris] =
refined.refineV[RedisUrisConstraint](value) match {
case Right(value) => Right(value)
case Left(error) => Left(new IllegalArgumentException(error))
}
def liftOrThrow(value: List[RedisURI]): RedisUris =
validate(value) match {
case Right(value) => value
case Left(error) => throw error
}
def from(value: String): RedisUris = liftOrThrow(value.split(',').toList.map(RedisURI.create))
}
case class RedisRateLimiterConfiguration(redisURI: RedisUris, isCluster: Boolean, ioThreads: Option[Int], workerThreads:Option[Int])