From 8be9672804ac30d0681bae0043dfcfa06c19f71b Mon Sep 17 00:00:00 2001 From: rfeng Date: Mon, 9 Nov 2009 19:09:33 +0000 Subject: Turn the IdentityHashMap into a ConcurrentHashMap to avoid expensive synchronizations git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@834176 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/sca/core/assembly/RuntimeWireImpl.java | 47 +++++++++++----------- 1 file changed, 23 insertions(+), 24 deletions(-) (limited to 'branches/sca-java-1.x/modules') diff --git a/branches/sca-java-1.x/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java b/branches/sca-java-1.x/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java index cc71374296..4a90d47fa9 100644 --- a/branches/sca-java-1.x/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java +++ b/branches/sca-java-1.x/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/RuntimeWireImpl.java @@ -21,9 +21,9 @@ package org.apache.tuscany.sca.core.assembly; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; -import java.util.IdentityHashMap; import java.util.List; import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; import org.apache.tuscany.sca.assembly.Binding; import org.apache.tuscany.sca.assembly.Component; @@ -82,8 +82,8 @@ public class RuntimeWireImpl implements RuntimeWire { private List chains; private InvocationChain bindingInvocationChain; // Cache - private transient final Map invocationChainMap = - new IdentityHashMap(); + private transient final Map invocationChainMap = + new ConcurrentHashMap(); /** @@ -135,29 +135,28 @@ public class RuntimeWireImpl implements RuntimeWire { } public InvocationChain getInvocationChain(Operation operation) { - synchronized (invocationChainMap) { - InvocationChain cached = invocationChainMap.get(operation); - if (cached == null) { - for (InvocationChain chain : getInvocationChains()) { - Operation op = null; - if (wireSource.getContract() != null) { - // Reference chain - op = chain.getSourceOperation(); - } else { - // Service chain - op = chain.getTargetOperation(); - } - if (interfaceContractMapper.isCompatible(operation, op, op.getInterface().isRemotable())) { - invocationChainMap.put(operation, chain); - return chain; - } + Integer id = operation == null ? new Integer(0) : new Integer(System.identityHashCode(operation)); + InvocationChain cached = invocationChainMap.get(id); + if (cached == null) { + for (InvocationChain chain : getInvocationChains()) { + Operation op = null; + if (wireSource.getContract() != null) { + // Reference chain + op = chain.getSourceOperation(); + } else { + // Service chain + op = chain.getTargetOperation(); + } + if (interfaceContractMapper.isCompatible(operation, op, op.getInterface().isRemotable())) { + invocationChainMap.put(id, chain); + return chain; } - invocationChainMap.put(operation, null); - return null; - - } else { - return cached; } + invocationChainMap.put(id, null); + return null; + + } else { + return cached; } } -- cgit v1.2.3