Package com.ericsson.ssa.sip

Source Code of com.ericsson.ssa.sip.LayerHelper

/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
* Copyright (c) Ericsson AB, 2004-2008. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License").  You
* may not use this file except in compliance with the License. You can obtain
* a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
* or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
* Sun designates this particular file as subject to the "Classpath" exception
* as provided by Sun in the GPL Version 2 section of the License file that
* accompanied this code.  If applicable, add the following below the License
* Header, with the fields enclosed by brackets [] replaced by your own
* identifying information: "Portions Copyrighted [year]
* [name of copyright owner]"
*
* Contributor(s):
*
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license."  If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above.  However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.ericsson.ssa.sip;

import com.ericsson.ssa.container.ResponseDispatcher;
import com.ericsson.ssa.container.reporter.Reporter;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;


/**
* @author ekrigro
*/
public final class LayerHelper {
    public static void next(SipServletRequestImpl req, Layer layer,
        Layer nextLayer) {
        if (nextLayer == null) {
            layer.dispatch(req);
        } else {
            Reporter reporter = nextLayer.getReporter();
            if(reporter != null) {
                reporter.logIncomingRequest(Reporter.InterceptionType.LAYER, req, layer.getClass().getSimpleName());
            }
           
            nextLayer.next(req);
           
            if(reporter != null) {
                reporter.logPostIncomingRequest(Reporter.InterceptionType.LAYER, req, layer.getClass().getSimpleName(), null);
            }           
        }
    }

    public static void next(SipServletResponseImpl resp, Layer layer,
        Layer nextLayer) {
        if (nextLayer == null) {
            layer.dispatch(resp);
        } else {
            Reporter reporter = nextLayer.getReporter();
            if(reporter != null) {
                reporter.logIncomingResponse(Reporter.InterceptionType.LAYER, resp, layer.getClass().getSimpleName());
            }
           
            nextLayer.next(resp);
           
            if(reporter != null) {
                reporter.logPostIncomingResponse(Reporter.InterceptionType.LAYER, resp, layer.getClass().getSimpleName(), null);
            }           
        }
    }

    /**
     * Returns the singelton instance of a class implementing Layer Requirements
     * of the class as specified in "className" 1. The class has to implement the
     * Singelton pattern with the method getInstance() to retreive the singelton
     * instance. 2. The class has to implement the Layer interface
     *
     * @param className
     *        The fully qualified classname of the class implementing the Layer
     * @return A singelton instance of the class as specified by "className" OR
     *         null if the class does not comply to the condition of step 1 and 2
     */
    public static Layer getInstance(String className) {
        try {
            Class clazz = Class.forName(className);
            Method method = clazz.getMethod("getInstance", (Class[]) null);

            return (Layer) method.invoke((Object) null, (Object[]) null);
        } catch (Exception e) {
            return null;
        }
    }
   
    public static void resetDispatcher(SipServletRequestImpl req, Dispatcher dispatcher) {
        List<Dispatcher> dispStack = rebuildStack(req);

        // ...and add a fresh one (will force the NM to use msg.getRemote())
        dispStack.add(0, dispatcher);
        pushBackStack(dispStack, req);
    }

    public static void resetDispatcher(SipServletResponseImpl resp, Dispatcher dispatcher) {
        List<Dispatcher> dispStack = rebuildStack(resp);
        dispStack.add(0, dispatcher);
        pushBackStack(dispStack, resp);
    }

    /**
     * This method has been introduced to support the behavior of sending
     * UDP responses from backend rather than the frontend. The response
     * dispatcher has to be removed from the layer stack so that the
     * response can go out through the GZNM.
     * @param resp
     */
     public static void resetResponseDispatcher(SipServletResponseImpl resp) {
       List<Dispatcher> dispStack = new ArrayList<Dispatcher>();
        while (true) {
            Dispatcher dispatcher = resp.popDispatcher();
            if (dispatcher == null){
                break;
            } else if (!(dispatcher instanceof ResponseDispatcher)) {
                dispStack.add(0, dispatcher);
            }          
        }
        for (Dispatcher d : dispStack) {
            resp.pushTransactionDispatcher(d);
        }
    }

    static void pushBackStack(List<Dispatcher> dispStack,
        SipServletRequestImpl req) {
        for (Dispatcher d : dispStack) {
            req.pushApplicationDispatcher(d);
        }
    }

    static void pushBackStack(List<Dispatcher> dispStack,
        SipServletResponseImpl resp) {
        for (Dispatcher d : dispStack) {
            resp.pushTransactionDispatcher(d);
        }
    }

    static List<Dispatcher> rebuildStack(SipServletMessageImpl msg) {
        List<Dispatcher> dispStack = new ArrayList<Dispatcher>();

        while (true) {
            Dispatcher dispatcher = msg.popDispatcher();

            if (dispatcher != null) {
                dispStack.add(0, dispatcher);
            } else {
                break;
            }
        }

        // Remove first item in stack (shall be the Link or NetworkManager) tied
        // to the incoming connection...
        if (dispStack.size() > 0) {
            dispStack.remove(0);
        }

        return dispStack;
    }   
}
TOP

Related Classes of com.ericsson.ssa.sip.LayerHelper

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.