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

org.ehcache.impl.internal.events.FudgingInvocationScopedEventSink Maven / Gradle / Ivy

There is a newer version: 3.10.8
Show newest version
/*
 * Copyright Terracotta, Inc.
 *
 * 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 org.ehcache.impl.internal.events;

import org.ehcache.event.EventType;
import org.ehcache.core.spi.store.events.StoreEventFilter;
import org.ehcache.core.spi.store.events.StoreEventListener;

import java.util.Iterator;
import java.util.Set;
import java.util.concurrent.BlockingQueue;
import java.util.function.Supplier;

/**
 * This class is responsible for handling the event fudging that needs to happen
 * in AbstractOffHeapStore because eviction event is fired after create / update
 * events have been recorded. But in reality, eviction happened first as the memory
 * limit on offheap is hard.
 * 

* This creates a special case where we have to rewrite events in case we get an evicted * event on the same key than the previous non eviction event. In that case we need to get rid * of that former event (in case of UPDATED) or former events (EXPIRED followed by CREATED) and * add a CREATED event after the EXPIRED one. */ class FudgingInvocationScopedEventSink extends InvocationScopedEventSink { FudgingInvocationScopedEventSink(Set> filters, boolean ordered, BlockingQueue>[] orderedQueues, Set> listeners) { super(filters, ordered, orderedQueues, listeners); } @Override public void evicted(K key, Supplier value) { V eventFudgingValue = handleEvictionPostWriteOnSameKey(key); super.evicted(key, value); if (eventFudgingValue != null) { created(key, eventFudgingValue); } } private V handleEvictionPostWriteOnSameKey(K key) { Iterator> iterator = getEvents().descendingIterator(); while (iterator.hasNext()) { FireableStoreEventHolder eventHolder = iterator.next(); if (eventHolder.getEvent().getType() != EventType.EVICTED) { if (eventHolder.getEvent().getKey().equals(key)) { // Found the previous non eviction event switch (eventHolder.getEvent().getType()) { case UPDATED: eventHolder.markFailed(); return eventHolder.getEvent().getNewValue(); case CREATED: eventHolder.markFailed(); if (iterator.hasNext()) { // Expecting previous event to be EXPIRY FireableStoreEventHolder next = iterator.next(); if (next.getEvent().getType() == EventType.EXPIRED && next.getEvent().getKey().equals(key)) { next.markFailed(); } } return eventHolder.getEvent().getNewValue(); } } else { return null; } } } return null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy