org.ff4j.services.PropertyStoreServices.java Source code

Java tutorial

Introduction

Here is the source code for org.ff4j.services.PropertyStoreServices.java

Source

package org.ff4j.services;

/*
 * #%L
 * ff4j-spring-services
 * %%
 * Copyright (C) 2013 - 2016 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 org.ff4j.FF4j;
import org.ff4j.cache.FF4jCacheProxy;
import org.ff4j.property.Property;
import org.ff4j.services.domain.CacheApiBean;
import org.ff4j.services.domain.PropertyApiBean;
import org.ff4j.services.domain.PropertyStoreApiBean;
import org.ff4j.services.exceptions.PropertyStoreNotCached;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

/**
 * @author <a href="mailto:paul58914080@gmail.com">Paul Williams</a>
 */
@Service
public class PropertyStoreServices {

    @Autowired
    private FF4j ff4j;

    public PropertyStoreApiBean getPropertyStore() {
        return new PropertyStoreApiBean(ff4j.getPropertiesStore());
    }

    public List<PropertyApiBean> getAllProperties() {
        List<PropertyApiBean> properties;
        Map<String, Property<?>> propertyMap = ff4j.getPropertiesStore().readAllProperties();
        if (CollectionUtils.isEmpty(propertyMap)) {
            properties = new ArrayList<>(0);
        } else {
            properties = new ArrayList<>(propertyMap.size());
            properties.addAll(propertyMap.values().stream().map(PropertyApiBean::new).collect(Collectors.toList()));
        }
        return properties;
    }

    public void deleteAllProperties() {
        ff4j.getPropertiesStore().clear();
    }

    public CacheApiBean getPropertiesFromCache() {
        if (ff4j.getPropertiesStore() instanceof FF4jCacheProxy) {
            return new CacheApiBean(ff4j.getPropertiesStore());
        } else {
            throw new PropertyStoreNotCached();
        }
    }

    public void clearCachedPropertyStore() {
        if (ff4j.getPropertiesStore() instanceof FF4jCacheProxy) {
            ((FF4jCacheProxy) ff4j.getPropertiesStore()).getCacheManager().clearProperties();
        } else {
            throw new PropertyStoreNotCached();
        }
    }
}