325N/A/*
325N/A * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
325N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A *
325N/A * This code is free software; you can redistribute it and/or modify it
325N/A * under the terms of the GNU General Public License version 2 only, as
325N/A * published by the Free Software Foundation. Oracle designates this
325N/A * particular file as subject to the "Classpath" exception as provided
325N/A * by Oracle in the LICENSE file that accompanied this code.
325N/A *
325N/A * This code is distributed in the hope that it will be useful, but WITHOUT
325N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A * version 2 for more details (a copy is included in the LICENSE file that
325N/A * accompanied this code).
325N/A *
325N/A * You should have received a copy of the GNU General Public License version
325N/A * 2 along with this work; if not, write to the Free Software Foundation,
325N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A *
325N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
325N/A * or visit www.oracle.com if you need additional information or have any
325N/A * questions.
325N/A */
325N/A
325N/Apackage com.sun.xml.internal.ws.api.pipe;
325N/A
325N/Aimport com.sun.xml.internal.ws.api.pipe.helper.AbstractTubeImpl;
325N/A
325N/A/**
325N/A * Clones the whole pipeline.
325N/A *
325N/A * <p>
325N/A * Since {@link Pipe}s may form an arbitrary directed graph, someone needs
325N/A * to keep track of isomorphism for a clone to happen correctly. This class
325N/A * serves that role.
325N/A *
325N/A * @deprecated
325N/A * Use {@link TubeCloner}.
325N/A * @author Kohsuke Kawaguchi
325N/A */
325N/Apublic final class PipeCloner extends TubeCloner {
325N/A /**
325N/A * {@link Pipe} version of {@link #clone(Tube)}
325N/A */
325N/A public static Pipe clone(Pipe p) {
325N/A return new PipeCloner().copy(p);
325N/A }
325N/A
325N/A // no need to be constructed publicly. always use the static clone method.
325N/A /*package*/ PipeCloner() {}
325N/A
325N/A /**
325N/A * {@link Pipe} version of {@link #copy(Tube)}
325N/A */
325N/A public <T extends Pipe> T copy(T p) {
325N/A Pipe r = (Pipe)master2copy.get(p);
325N/A if(r==null) {
325N/A r = p.copy(this);
325N/A // the pipe must puts its copy to the map by itself
325N/A assert master2copy.get(p)==r : "the pipe must call the add(...) method to register itself before start copying other pipes, but "+p+" hasn't done so";
325N/A }
325N/A return (T)r;
325N/A }
325N/A
325N/A
325N/A /**
325N/A * The {@link Pipe} version of {@link #add(Tube, Tube)}.
325N/A */
325N/A public void add(Pipe original, Pipe copy) {
325N/A assert !master2copy.containsKey(original);
325N/A assert original!=null && copy!=null;
325N/A master2copy.put(original,copy);
325N/A }
325N/A
325N/A /**
325N/A * Disambiguation version.
325N/A */
325N/A public void add(AbstractTubeImpl original, AbstractTubeImpl copy) {
325N/A add((Tube)original,copy);
325N/A }
325N/A}