All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.
org.ff4j.store.FeatureStoreRedis Maven / Gradle / Ivy
package org.ff4j.store;
/*-
* #%L
* ff4j-store-redis
* %%
* Copyright (C) 2013 - 2023 FF4J
* %%
* 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.
* #L%
*/
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.ff4j.core.Feature;
import org.ff4j.core.FeatureStore;
import org.ff4j.exception.FeatureAlreadyExistException;
import org.ff4j.exception.FeatureNotFoundException;
import org.ff4j.exception.GroupNotFoundException;
import org.ff4j.redis.RedisConnection;
import org.ff4j.redis.RedisKeysBuilder;
import org.ff4j.utils.Util;
import org.ff4j.utils.json.FeatureJsonParser;
import redis.clients.jedis.Jedis;
/**
* {@link FeatureStore} to persist data into
*
* @author Cedrick LUNVEN
* @author Shridhar Navanageri
*/
public class FeatureStoreRedis extends AbstractFeatureStore {
/** Wrapping of redis connection (isolation). */
private RedisConnection redisConnection;
/** Default key builder. */
private RedisKeysBuilder keyBuilder = new RedisKeysBuilder();
/**
* Constructors
*/
public FeatureStoreRedis() {
this(new RedisConnection(), new RedisKeysBuilder());
}
public FeatureStoreRedis(RedisKeysBuilder builder) {
this(new RedisConnection(), builder);
}
public FeatureStoreRedis(RedisConnection pRedisConnection) {
this(pRedisConnection, new RedisKeysBuilder());
}
public FeatureStoreRedis(RedisConnection pRedisConnection, RedisKeysBuilder builder) {
this.redisConnection = pRedisConnection;
this.keyBuilder = builder;
}
/** {@inheritDoc} */
public boolean exist(String uid) {
Util.assertParamHasLength(uid, "Feature identifier");
Jedis jedis = null;
try {
jedis = getJedis();
return jedis.exists(keyBuilder.getKeyFeature(uid));
} finally {
if (jedis != null) {
jedis.close();
}
}
}
/** {@inheritDoc} */
@Override
public Feature read(String uid) {
if (!exist(uid)) {
throw new FeatureNotFoundException(uid);
}
Jedis jedis = null;
try {
jedis = getJedis();
return FeatureJsonParser.parseFeature(jedis.get(keyBuilder.getKeyFeature(uid)));
} finally {
if (jedis != null) {
jedis.close();
}
}
}
/** {@inheritDoc} */
@Override
public void update(Feature fp) {
Util.assertNotNull("Feature" , fp);
if (!exist(fp.getUid())) {
throw new FeatureNotFoundException(fp.getUid());
}
Jedis jedis = null;
try {
jedis = getJedis();
jedis.set(keyBuilder.getKeyFeature(fp.getUid()), fp.toJson());
jedis.persist(keyBuilder.getKeyFeature(fp.getUid()));
} finally {
if (jedis != null) {
jedis.close();
}
}
}
/** {@inheritDoc} */
@Override
public void enable(String uid) {
// Read from redis, feature not found if no present
Feature f = read(uid);
// Update within Object
f.enable();
// Serialization and update key, update TTL
update(f);
}
/** {@inheritDoc} */
@Override
public void disable(String uid) {
// Read from redis, feature not found if no present
Feature f = read(uid);
// Update within Object
f.disable();
// Serialization and update key, update TTL
update(f);
}
/** {@inheritDoc} */
@Override
public void create(Feature fp) {
Util.assertNotNull("Feature", fp);
if (exist(fp.getUid())) {
throw new FeatureAlreadyExistException(fp.getUid());
}
Jedis jedis = null;
try {
String id = fp.getUid();
jedis = getJedis();
// Store the feature in the mapping bucket.
jedis.sadd(keyBuilder.getKeyFeatureMap(), id);
jedis.set(keyBuilder.getKeyFeature(id), fp.toJson());
jedis.persist(keyBuilder.getKeyFeature(id) + id);
} finally {
if (jedis != null) {
jedis.close();
}
}
}
/** {@inheritDoc} */
@Override
public Map readAll() {
Jedis jedis = null;
try {
jedis = getJedis();
Set features = jedis.smembers(keyBuilder.getKeyFeatureMap());
Map featuresMap = new HashMap<>();
if (features != null) {
for (String key : features) {
featuresMap.put(key, read(key));
}
}
return featuresMap;
} finally {
if (jedis != null) {
jedis.close();
}
}
}
/** {@inheritDoc} */
public void delete(String fpId) {
if (!exist(fpId)) {
throw new FeatureNotFoundException(fpId);
}
Jedis jedis = null;
try {
jedis = getJedis();
// Store the feature in the mapping bucket.
jedis.srem(keyBuilder.getKeyFeatureMap(), fpId);
jedis.del(keyBuilder.getKeyFeature(fpId));
} finally {
if (jedis != null) {
jedis.close();
}
}
}
/** {@inheritDoc} */
@Override
public void grantRoleOnFeature(String flipId, String roleName) {
Util.assertParamHasLength(roleName, "roleName (#2)");
// retrieve
Feature f = read(flipId);
// modify
f.getPermissions().add(roleName);
// persist modification
update(f);
}
/** {@inheritDoc} */
@Override
public void removeRoleFromFeature(String flipId, String roleName) {
Util.assertParamHasLength(roleName, "roleName (#2)");
// retrieve
Feature f = read(flipId);
f.getPermissions().remove(roleName);
// persist modification
update(f);
}
/** {@inheritDoc} */
@Override
public Map readGroup(String groupName) {
Util.assertParamHasLength(groupName, "groupName");
Map < String, Feature > features = readAll();
Map < String, Feature > group = new HashMap();
for (Map.Entry uid : features.entrySet()) {
if (groupName.equals(uid.getValue().getGroup())) {
group.put(uid.getKey(), uid.getValue());
}
}
if (group.isEmpty()) {
throw new GroupNotFoundException(groupName);
}
return group;
}
/** {@inheritDoc} */
@Override
public boolean existGroup(String groupName) {
Util.assertParamHasLength(groupName, "groupName");
Map < String, Feature > features = readAll();
Map < String, Feature > group = new HashMap();
for (Map.Entry uid : features.entrySet()) {
if (groupName.equals(uid.getValue().getGroup())) {
group.put(uid.getKey(), uid.getValue());
}
}
return !group.isEmpty();
}
/** {@inheritDoc} */
@Override
public void enableGroup(String groupName) {
Map < String, Feature > features = readGroup(groupName);
for (Map.Entry uid : features.entrySet()) {
uid.getValue().enable();
update(uid.getValue());
}
}
/** {@inheritDoc} */
@Override
public void disableGroup(String groupName) {
Map < String, Feature > features = readGroup(groupName);
for (Map.Entry uid : features.entrySet()) {
uid.getValue().disable();
update(uid.getValue());
}
}
/** {@inheritDoc} */
@Override
public void addToGroup(String featureId, String groupName) {
Util.assertParamHasLength(groupName, "groupName (#2)");
// retrieve
Feature f = read(featureId);
f.setGroup(groupName);
// persist modification
update(f);
}
/** {@inheritDoc} */
@Override
public void removeFromGroup(String featureId, String groupName) {
Util.assertParamHasLength(groupName, "groupName (#2)");
if (!existGroup(groupName)) {
throw new GroupNotFoundException(groupName);
}
// retrieve
Feature f = read(featureId);
f.setGroup(null);
// persist modification
update(f);
}
/** {@inheritDoc} */
@Override
public Set readAllGroups() {
Map < String, Feature > features = readAll();
Set < String > groups = new HashSet();
for (Map.Entry uid : features.entrySet()) {
groups.add(uid.getValue().getGroup());
}
groups.remove(null);
return groups;
}
/** {@inheritDoc} */
@Override
public void clear() {
Jedis jedis = null;
try {
jedis = getJedis();
Set myKeys = jedis.smembers(keyBuilder.getKeyFeatureMap());
for (String key : myKeys) {
delete(key);
}
} finally {
if (jedis != null) {
jedis.close();
}
}
}
/**
* Getter accessor for attribute 'redisConnection'.
*
* @return
* current value of 'redisConnection'
*/
public RedisConnection getRedisConnection() {
return redisConnection;
}
/**
* Setter accessor for attribute 'redisConnection'.
* @param redisConnection
* new value for 'redisConnection '
*/
public void setRedisConnection(RedisConnection redisConnection) {
this.redisConnection = redisConnection;
}
/**
* Safe acces to Jedis, avoid JNPE.
*
* @return
* access jedis
*/
public Jedis getJedis() {
if (redisConnection == null) {
throw new IllegalArgumentException("Cannot found any redisConnection");
}
Jedis jedis = redisConnection.getJedis();
if (jedis == null) {
throw new IllegalArgumentException("Cannot found any jedis connection, please build connection");
}
return jedis;
}
}