Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* 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.cxf.phase;
import java.util.ArrayList;
import java.util.List;
import java.util.ListIterator;
import java.util.SortedSet;
import java.util.concurrent.atomic.AtomicReference;
import org.apache.cxf.common.util.ModCountCopyOnWriteArrayList;
import org.apache.cxf.interceptor.Interceptor;
import org.apache.cxf.message.Message;
/**
* The PhaseChainCache provides default interceptor chains for SOAP requests
* and responses, both from the client and web service side. The list of
* phases supplied in the get() methods of this class are defined by default
* within org.apache.cxf.phase.PhaseManagerImpl. For an example of this class
* in use, check the sourcecode of org.apache.cxf.endpoint.ClientImpl.
*/
public final class PhaseChainCache {
AtomicReference lastData = new AtomicReference();
@SuppressWarnings("unchecked")
public PhaseInterceptorChain get(SortedSet phaseList,
List> p1) {
return getChain(phaseList, p1);
}
@SuppressWarnings("unchecked")
public PhaseInterceptorChain get(SortedSet phaseList,
List> p1,
List> p2) {
return getChain(phaseList, p1, p2);
}
@SuppressWarnings("unchecked")
public PhaseInterceptorChain get(SortedSet phaseList,
List> p1,
List> p2,
List> p3) {
return getChain(phaseList, p1, p2, p3);
}
@SuppressWarnings("unchecked")
public PhaseInterceptorChain get(SortedSet phaseList,
List> p1,
List> p2,
List> p3,
List> p4) {
return getChain(phaseList, p1, p2, p3, p4);
}
@SuppressWarnings("unchecked")
public PhaseInterceptorChain get(SortedSet phaseList,
List> p1,
List> p2,
List> p3,
List> p4,
List> p5) {
return getChain(phaseList, p1, p2, p3, p4, p5);
}
private PhaseInterceptorChain getChain(SortedSet phaseList,
List> ... providers) {
ChainHolder last = lastData.get();
if (last == null
|| !last.matches(providers)) {
PhaseInterceptorChain chain = new PhaseInterceptorChain(phaseList);
List>> copy
= new ArrayList>>(providers.length);
for (List> p : providers) {
copy.add(new ModCountCopyOnWriteArrayList>(p));
chain.add(p);
}
last = new ChainHolder(chain, copy);
lastData.set(last);
}
return last.chain.cloneChain();
}
private static class ChainHolder {
List>> lists;
PhaseInterceptorChain chain;
ChainHolder(PhaseInterceptorChain c,
List>> l) {
lists = l;
chain = c;
}
boolean matches(List> ... providers) {
if (lists.size() == providers.length) {
for (int x = 0; x < providers.length; x++) {
if (lists.get(x).size() != providers[x].size()) {
return false;
}
if (providers[x].getClass() == ModCountCopyOnWriteArrayList.class) {
if (((ModCountCopyOnWriteArrayList)providers[x]).getModCount()
!= lists.get(x).getModCount()) {
return false;
}
} else {
ListIterator> i1 = lists.get(x).listIterator();
ListIterator> i2 = providers[x].listIterator();
while (i1.hasNext()) {
if (i1.next() != i2.next()) {
return false;
}
}
}
}
return true;
}
return false;
}
}
}