/* * 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.geode.modules.gatewaydelta; import org.apache.geode.cache.Cache; import org.apache.geode.cache.CacheFactory; import org.apache.geode.cache.DataPolicy; import org.apache.geode.cache.Declarable; import org.apache.geode.cache.EntryEvent; import org.apache.geode.cache.InterestPolicy; import org.apache.geode.cache.Region; import org.apache.geode.cache.RegionFactory; import org.apache.geode.cache.Scope; import org.apache.geode.cache.SerializedCacheValue; import org.apache.geode.cache.SubscriptionAttributes; import org.apache.geode.cache.util.CacheListenerAdapter; import org.apache.geode.internal.cache.EntryEventImpl; import org.apache.geode.internal.cache.LocalRegion; import java.util.Properties; public class GatewayDeltaForwarderCacheListener extends CacheListenerAdapter<String, GatewayDelta> implements Declarable { private final Cache cache; private LocalRegion gatewayDeltaRegion; public GatewayDeltaForwarderCacheListener() { this(CacheFactory.getAnyInstance()); } public GatewayDeltaForwarderCacheListener(Cache cache) { this.cache = cache; } @SuppressWarnings("unchecked") public void afterCreate(EntryEvent<String, GatewayDelta> event) { // If the event is from the local site, create a 'create' event and send it to the // gateway delta region if (event.getCallbackArgument() == null) { if (this.cache.getLogger().fineEnabled()) { StringBuilder builder = new StringBuilder(); builder.append("GatewayDeltaForwarderCacheListener: Received create event for ") .append(event.getKey()).append("->").append(event.getNewValue()) .append(" that originated in the local site. Sending it to the remote site."); this.cache.getLogger().fine(builder.toString()); } // Distribute the create event to the gateway hub(s) String regionName = event.getRegion().getFullPath(); String sessionId = event.getKey(); SerializedCacheValue scv = event.getSerializedNewValue(); if (scv == null) { getGatewayDeltaRegion().put(sessionId, new GatewayDeltaCreateEvent(regionName, sessionId, EntryEventImpl.serialize(event.getNewValue()))); } else { System.out.println( "GatewayDeltaForwarderCacheListener event.getSerializedNewValue().getSerializedValue(): " + event.getSerializedNewValue().getSerializedValue()); getGatewayDeltaRegion().put(sessionId, new GatewayDeltaCreateEvent(regionName, sessionId, scv.getSerializedValue())); } } else { if (this.cache.getLogger().fineEnabled()) { StringBuilder builder = new StringBuilder(); builder.append("GatewayDeltaForwarderCacheListener: Received create event for ") .append(event.getKey()).append("->").append(event.getNewValue()) .append(" that originated in the remote site."); this.cache.getLogger().fine(builder.toString()); } } } public void afterUpdate(EntryEvent<String, GatewayDelta> event) { // System.out.println("GatewayDeltaForwarderCacheListener.afterUpdate: " + event); // If the event is from the local site, create an 'update' event and send it to the // gateway delta region if (event.getCallbackArgument() == null) { if (this.cache.getLogger().fineEnabled()) { StringBuilder builder = new StringBuilder(); builder.append("GatewayDeltaForwarderCacheListener: Received update event for ") .append(event.getKey()).append("->").append(event.getNewValue()) .append(" that originated in the local site. Sending it to the remote site."); this.cache.getLogger().fine(builder.toString()); } // Distribute the update event to the gateway hub(s) GatewayDelta session = event.getNewValue(); getGatewayDeltaRegion().put(event.getKey(), session.getCurrentGatewayDeltaEvent()); // Reset the current delta session.setCurrentGatewayDeltaEvent(null); } else { if (this.cache.getLogger().fineEnabled()) { StringBuilder builder = new StringBuilder(); builder.append("GatewayDeltaForwarderCacheListener: Received update event for ") .append(event.getKey()).append("->").append(event.getNewValue()) .append(" that originated in the remote site."); this.cache.getLogger().fine(builder.toString()); } } } public void afterDestroy(EntryEvent<String, GatewayDelta> event) { // If the event is from the local site, create a 'destroy' event and send it to the // gateway delta region if (event.getCallbackArgument() != null) { if (this.cache.getLogger().fineEnabled()) { StringBuilder builder = new StringBuilder(); builder.append("GatewayDeltaForwarderCacheListener: Received destroy event for ") .append(event.getKey()).append("->").append(event.getNewValue()) .append(" that originated in the local site. Sending it to the remote site."); this.cache.getLogger().fine(builder.toString()); } // Distribute the destroy event to the gateway hub(s) String sessionId = event.getKey(); getGatewayDeltaRegion().put(sessionId, new GatewayDeltaDestroyEvent(event.getRegion().getFullPath(), sessionId)); } else { if (this.cache.getLogger().fineEnabled()) { StringBuilder builder = new StringBuilder(); builder.append("GatewayDeltaForwarderCacheListener: Received destroy event for session ") .append(event.getKey()) .append(" that either expired or originated in the remote site."); this.cache.getLogger().fine(builder.toString()); } } } public void init(Properties p) {} private LocalRegion getGatewayDeltaRegion() { if (this.gatewayDeltaRegion == null) { this.gatewayDeltaRegion = createOrRetrieveGatewayDeltaRegion(); } return this.gatewayDeltaRegion; } @SuppressWarnings("unchecked") private LocalRegion createOrRetrieveGatewayDeltaRegion() { Region region = this.cache.getRegion(GatewayDelta.GATEWAY_DELTA_REGION_NAME); if (region == null) { region = new RegionFactory().setScope(Scope.LOCAL).setDataPolicy(DataPolicy.EMPTY) .setSubscriptionAttributes(new SubscriptionAttributes(InterestPolicy.ALL)) // TODO: Disabled for WAN // .setEnableGateway(true) .addCacheListener(new GatewayDeltaEventApplicationCacheListener()) .create(GatewayDelta.GATEWAY_DELTA_REGION_NAME); } if (this.cache.getLogger().fineEnabled()) { StringBuilder builder = new StringBuilder(); builder.append("GatewayDeltaForwarderCacheListener: Created gateway delta region: ") .append(region); this.cache.getLogger().fine(builder.toString()); } return (LocalRegion) region; } public boolean equals(Object obj) { // This method is only implemented so that RegionCreator.validateRegion works properly. // The CacheListener comparison fails because two of these instances are not equal. if (this == obj) { return true; } if (obj == null || !(obj instanceof GatewayDeltaForwarderCacheListener)) { return false; } return true; } }