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

keycloakjar.com.github.benmanes.caffeine.cache.NodeFactory Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
// Copyright 2020 Ben Manes. All Rights Reserved.
//
// 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.
package com.github.benmanes.caffeine.cache;

import com.github.benmanes.caffeine.cache.References.WeakKeyReference;
import java.lang.ref.ReferenceQueue;

/**
 * WARNING: GENERATED CODE
 *
 * 

A factory for cache nodes optimized for a particular configuration. * * @author [email protected] (Ben Manes) */ interface NodeFactory { Object RETIRED_STRONG_KEY = new Object(); Object DEAD_STRONG_KEY = new Object(); WeakKeyReference RETIRED_WEAK_KEY = new WeakKeyReference(null, null); WeakKeyReference DEAD_WEAK_KEY = new WeakKeyReference(null, null); /** Returns a node optimized for the specified features. */ Node newNode( K key, ReferenceQueue keyReferenceQueue, V value, ReferenceQueue valueReferenceQueue, int weight, long now); /** Returns a node optimized for the specified features. */ Node newNode( Object keyReference, V value, ReferenceQueue valueReferenceQueue, int weight, long now); /** * Returns a key suitable for inserting into the cache. If the cache holds keys strongly then the * key is returned. If the cache holds keys weakly then a {@link WeakKeyReference} holding the * key argument is returned. */ default Object newReferenceKey(K key, ReferenceQueue referenceQueue) { return key; } /** * Returns a key suitable for looking up an entry in the cache. If the cache holds keys strongly * then the key is returned. If the cache holds keys weakly then a {@link * com.github.benmanes.caffeine.cache.References.LookupKeyReference} holding the key argument is * returned. */ default Object newLookupKey(Object key) { return key; } /** Returns a factory optimized for the specified features. */ static NodeFactory newFactory(Caffeine builder, boolean isAsync) { StringBuilder sb = new StringBuilder("com.github.benmanes.caffeine.cache."); if (builder.isStrongKeys()) { sb.append('P'); } else { sb.append('F'); } if (builder.isStrongValues()) { sb.append('S'); } else if (builder.isWeakValues()) { sb.append('W'); } else { sb.append('D'); } if (builder.expiresVariable()) { if (builder.refreshAfterWrite()) { sb.append('A'); if (builder.evicts()) { sb.append('W'); } } else { sb.append('W'); } } else { if (builder.expiresAfterAccess()) { sb.append('A'); } if (builder.expiresAfterWrite()) { sb.append('W'); } } if (builder.refreshAfterWrite()) { sb.append('R'); } if (builder.evicts()) { sb.append('M'); if (isAsync || (builder.isWeighted() && (builder.weigher != Weigher.singletonWeigher()))) { sb.append('W'); } else { sb.append('S'); } } try { Class clazz = Class.forName(sb.toString()); @SuppressWarnings("unchecked") NodeFactory factory = (NodeFactory) clazz.getDeclaredConstructor().newInstance(); return factory; } catch (ReflectiveOperationException e) { throw new IllegalStateException(sb.toString(), e); } } /** Returns whether this factory supports weak values. */ default boolean weakValues() { return false; } /** Returns whether this factory supports soft values. */ default boolean softValues() { return false; } }