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

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

The newest version!
// Copyright 2021 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.SoftValueReference;
import java.lang.ref.Reference;
import java.lang.ref.ReferenceQueue;

/**
 * WARNING: GENERATED CODE
 *
 * 

A cache entry that provides the following features: * *

    *
  • StrongKeys *
  • SoftValues *
* * @author [email protected] (Ben Manes) */ @SuppressWarnings({"unchecked", "PMD.UnusedFormalParameter", "MissingOverride", "NullAway"}) class PD extends Node implements NodeFactory { protected static final long KEY_OFFSET = UnsafeAccess.objectFieldOffset( PD.class, com.github.benmanes.caffeine.cache.LocalCacheFactory.KEY); protected static final long VALUE_OFFSET = UnsafeAccess.objectFieldOffset( PD.class, com.github.benmanes.caffeine.cache.LocalCacheFactory.VALUE); volatile K key; volatile SoftValueReference value; PD() {} PD( K key, ReferenceQueue keyReferenceQueue, V value, ReferenceQueue valueReferenceQueue, int weight, long now) { this(key, value, valueReferenceQueue, weight, now); } PD(Object keyReference, V value, ReferenceQueue valueReferenceQueue, int weight, long now) { UnsafeAccess.UNSAFE.putObject(this, KEY_OFFSET, keyReference); UnsafeAccess.UNSAFE.putObject( this, VALUE_OFFSET, new SoftValueReference(keyReference, value, valueReferenceQueue)); } public final K getKey() { return (K) UnsafeAccess.UNSAFE.getObject(this, KEY_OFFSET); } public final Object getKeyReference() { return UnsafeAccess.UNSAFE.getObject(this, KEY_OFFSET); } public final V getValue() { for (; ; ) { Reference ref = (Reference) UnsafeAccess.UNSAFE.getObject(this, VALUE_OFFSET); V referent = ref.get(); if ((referent != null) || (ref == value)) { return referent; } } } public final Object getValueReference() { return UnsafeAccess.UNSAFE.getObject(this, VALUE_OFFSET); } public final void setValue(V value, ReferenceQueue referenceQueue) { Reference ref = (Reference) getValueReference(); UnsafeAccess.UNSAFE.putObject( this, VALUE_OFFSET, new SoftValueReference(getKeyReference(), value, referenceQueue)); ref.clear(); } public final boolean containsValue(Object value) { return getValue() == value; } public Node newNode( K key, ReferenceQueue keyReferenceQueue, V value, ReferenceQueue valueReferenceQueue, int weight, long now) { return new PD<>(key, keyReferenceQueue, value, valueReferenceQueue, weight, now); } public Node newNode( Object keyReference, V value, ReferenceQueue valueReferenceQueue, int weight, long now) { return new PD<>(keyReference, value, valueReferenceQueue, weight, now); } public boolean softValues() { return true; } public final boolean isAlive() { Object key = getKeyReference(); return (key != RETIRED_STRONG_KEY) && (key != DEAD_STRONG_KEY); } public final boolean isRetired() { return (getKeyReference() == RETIRED_STRONG_KEY); } public final void retire() { ((Reference) getValueReference()).clear(); UnsafeAccess.UNSAFE.putObject(this, KEY_OFFSET, RETIRED_STRONG_KEY); } public final boolean isDead() { return (getKeyReference() == DEAD_STRONG_KEY); } public final void die() { ((Reference) getValueReference()).clear(); UnsafeAccess.UNSAFE.putObject(this, KEY_OFFSET, DEAD_STRONG_KEY); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy