All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jena.atlas.lib.cache.CacheGuava Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
/**
 * 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.jena.atlas.lib.cache;

import java.util.Iterator ;
import java.util.concurrent.Callable ;
import java.util.concurrent.ExecutionException ;
import java.util.function.BiConsumer ;

import org.apache.jena.atlas.lib.Cache ;
import org.apache.jena.ext.com.google.common.cache.CacheStats ;
import org.apache.jena.atlas.logging.Log ;
import org.apache.jena.ext.com.google.common.cache.CacheBuilder ;
import org.apache.jena.ext.com.google.common.cache.RemovalListener ;

/** Wrapper around a shaded com.google.common.cache */
final public class CacheGuava implements Cache 
{
    private BiConsumer dropHandler = null ;
    
    private org.apache.jena.ext.com.google.common.cache.Cache cache ;

    public CacheGuava(int size)
    {
        RemovalListener drop = (notification)-> {
            if ( dropHandler != null )
                dropHandler.accept(notification.getKey(),
                                   notification.getValue()) ;
        } ;
            
        cache = CacheBuilder.newBuilder()
            .maximumSize(size)
            .removalListener(drop)
            .recordStats()
            .concurrencyLevel(8)
            .build() ;
    }

    @Override
    public V getOrFill(K key, Callable filler) {
        try {
            return cache.get(key, filler) ;
        }
        catch (ExecutionException e) {
            Log.warn(CacheGuava.class, "Execution exception filling cache", e) ;
            return null ;
        }
    }

    @Override
    public V getIfPresent(K key) {
        return cache.getIfPresent(key) ;
    }

    @Override
    public void put(K key, V thing) {
		if (thing == null)
			cache.invalidate(key);
		else
			cache.put(key, thing);
    }

    @Override
    public boolean containsKey(K key) {
        return cache.getIfPresent(key) != null ;
    }

    @Override
    public void remove(K key) {
        cache.invalidate(key) ;
    }

    @Override
    public Iterator keys() {
        return cache.asMap().keySet().iterator() ;
    }

    @Override
    public boolean isEmpty() {
        return cache.size() == 0 ;
    }

    @Override
    public void clear() {
        cache.invalidateAll() ;
    }

    @Override
    public long size() {
        return cache.size() ;
    }

    @Override
    public void setDropHandler(BiConsumer dropHandler) {
        this.dropHandler = dropHandler ;
    }
    
    public CacheStats stats() {
        return cache.stats() ;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy