summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0-Beta2-RC1/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedMap.java
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-2.x/tags/2.0-Beta2-RC1/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedMap.java')
-rw-r--r--sca-java-2.x/tags/2.0-Beta2-RC1/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedMap.java163
1 files changed, 0 insertions, 163 deletions
diff --git a/sca-java-2.x/tags/2.0-Beta2-RC1/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedMap.java b/sca-java-2.x/tags/2.0-Beta2-RC1/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedMap.java
deleted file mode 100644
index 669ad82192..0000000000
--- a/sca-java-2.x/tags/2.0-Beta2-RC1/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedMap.java
+++ /dev/null
@@ -1,163 +0,0 @@
-/*
- * 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.tuscany.sca.endpoint.tribes;
-
-import java.io.Serializable;
-import java.util.Iterator;
-import java.util.Map;
-
-import org.apache.catalina.tribes.Channel;
-import org.apache.catalina.tribes.ChannelException;
-import org.apache.catalina.tribes.ChannelListener;
-import org.apache.catalina.tribes.Member;
-import org.apache.catalina.tribes.MembershipListener;
-import org.apache.catalina.tribes.group.RpcCallback;
-
-/**
- * This file is copied from:
- * https://svn.apache.org/repos/asf/tomcat/tc6.0.x/tags/TOMCAT_6_0_20/java/org/apache/catalina/tribes/tipis/ReplicatedMap.java
- *
- */
-public class ReplicatedMap extends AbstractReplicatedMap implements RpcCallback, ChannelListener, MembershipListener {
- private static final long serialVersionUID = -6318779627600581121L;
- protected static org.apache.juli.logging.Log log = org.apache.juli.logging.LogFactory.getLog(ReplicatedMap.class);
-
- //------------------------------------------------------------------------------
- // CONSTRUCTORS / DESTRUCTORS
- //------------------------------------------------------------------------------
- /**
- * Creates a new map
- * @param channel The channel to use for communication
- * @param timeout long - timeout for RPC messags
- * @param mapContextName String - unique name for this map, to allow multiple maps per channel
- * @param initialCapacity int - the size of this map, see HashMap
- * @param loadFactor float - load factor, see HashMap
- */
- public ReplicatedMap(MapOwner owner,
- Channel channel,
- long timeout,
- String mapContextName,
- int initialCapacity,
- float loadFactor,
- ClassLoader[] cls) {
- super(owner, channel, timeout, mapContextName, initialCapacity, loadFactor, Channel.SEND_OPTIONS_DEFAULT, cls);
- }
-
- /**
- * Creates a new map
- * @param channel The channel to use for communication
- * @param timeout long - timeout for RPC messags
- * @param mapContextName String - unique name for this map, to allow multiple maps per channel
- * @param initialCapacity int - the size of this map, see HashMap
- */
- public ReplicatedMap(MapOwner owner,
- Channel channel,
- long timeout,
- String mapContextName,
- int initialCapacity,
- ClassLoader[] cls) {
- super(owner, channel, timeout, mapContextName, initialCapacity, AbstractReplicatedMap.DEFAULT_LOAD_FACTOR,
- Channel.SEND_OPTIONS_DEFAULT, cls);
- }
-
- /**
- * Creates a new map
- * @param channel The channel to use for communication
- * @param timeout long - timeout for RPC messags
- * @param mapContextName String - unique name for this map, to allow multiple maps per channel
- */
- public ReplicatedMap(MapOwner owner, Channel channel, long timeout, String mapContextName, ClassLoader[] cls) {
- super(owner, channel, timeout, mapContextName, AbstractReplicatedMap.DEFAULT_INITIAL_CAPACITY,
- AbstractReplicatedMap.DEFAULT_LOAD_FACTOR, Channel.SEND_OPTIONS_DEFAULT, cls);
- }
-
- //------------------------------------------------------------------------------
- // METHODS TO OVERRIDE
- //------------------------------------------------------------------------------
- protected int getStateMessageType() {
- return AbstractReplicatedMap.MapMessage.MSG_STATE_COPY;
- }
-
- /**
- * publish info about a map pair (key/value) to other nodes in the cluster
- * @param key Object
- * @param value Object
- * @return Member - the backup node
- * @throws ChannelException
- */
- protected Member[] publishEntryInfo(Object key, Object value) throws ChannelException {
- if (!(key instanceof Serializable && value instanceof Serializable))
- return new Member[0];
- //select a backup node
- Member[] members = getMapMembers();
-
- if (members == null || members.length == 0) {
- return new Member[0];
- }
-
- //publish the data out to all nodes
- MapMessage msg =
- new MapMessage(getMapContextName(), MapMessage.MSG_COPY, false, (Serializable)key, (Serializable)value,
- null, channel.getLocalMember(false), members);
-
- getChannel().send(members, msg, getChannelSendOptions());
-
- return members;
- }
-
- /**
- * Override the base method to look up existing entries only
- */
- public Object get(Object key) {
- MapEntry entry = super.getInternal(key);
- if (log.isTraceEnabled())
- log.trace("Requesting id:" + key + " entry:" + entry);
- if (entry == null) {
- return null;
- }
- return entry.getValue();
- }
-
- /**
- * Override the base method to remove all entries owned by the member that disappeared
- */
- public void memberDisappeared(Member member) {
- boolean removed = false;
- synchronized (mapMembers) {
- removed = (mapMembers.remove(member) != null);
- if (!removed) {
- if (log.isDebugEnabled())
- log.debug("Member[" + member + "] disappeared, but was not present in the map.");
- return; //the member was not part of our map.
- }
- }
-
- Iterator<Map.Entry<Object, Object>> i = super.entrySetFull().iterator();
- while (i.hasNext()) {
- Map.Entry<Object, Object> e = i.next();
- MapEntry entry = (MapEntry)super.getInternal(e.getKey());
- if (entry == null) {
- continue;
- }
- if (member.equals(entry.getPrimary())) {
- if (log.isDebugEnabled())
- log.debug("[2] Primary disappeared");
- i.remove();
- } //end if
- } //while
- }
-}