All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jlibs.wamp4j.router.WAMPRouter Maven / Gradle / Ivy

/**
 * Copyright 2015 Santhosh Kumar Tekuri
 *
 * The JLibs authors license 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 jlibs.wamp4j.router;

import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
import jlibs.wamp4j.Debugger;
import jlibs.wamp4j.WAMPSerialization;
import jlibs.wamp4j.error.UnsupportedSerializationException;
import jlibs.wamp4j.spi.AcceptListener;
import jlibs.wamp4j.spi.WAMPServerEndPoint;
import jlibs.wamp4j.spi.WAMPSocket;

import java.net.URI;

import static jlibs.wamp4j.Debugger.ROUTER;
import static jlibs.wamp4j.Util.serialization;
import static jlibs.wamp4j.Util.subProtocols;

/**
 * todo: ssl
 * @author Santhosh Kumar Tekuri
 */
public class WAMPRouter{
    protected final ArrayNode array = JsonNodeFactory.instance.arrayNode();

    protected final WAMPServerEndPoint server;
    private final URI uri;
    private final WAMPSerialization serializations[];
    protected final Realms realms;

    public WAMPRouter(WAMPServerEndPoint server, URI uri, WAMPSerialization... serializations){
        this.server = server;
        this.uri = uri;
        this.serializations = serializations;
        realms = new Realms(server);
    }

    public WAMPRouter(WAMPServerEndPoint server, URI uri){
        this(server, uri, WAMPSerialization.values());
    }

    protected RouterListener listener;
    public void bind(final RouterListener listener){
        if(ROUTER)
            Debugger.println(this, "-- bind %s", uri);
        this.listener = listener;
        server.bind(uri, subProtocols(serializations), new AcceptListener(){
            @Override
            public void onBind(WAMPServerEndPoint server){
                if(ROUTER)
                    Debugger.println(WAMPRouter.this, "-- bound %s", uri);
                listener.onBind(WAMPRouter.this);
            }

            @Override
            public void onAccept(WAMPSocket socket){
                if(ROUTER)
                    Debugger.println(WAMPRouter.this, "-- accept");
                WAMPSerialization serialization;
                try{
                    serialization = serialization(socket, serializations);
                }catch(UnsupportedSerializationException e){
                    throw new AssertionError(e);
                }
                socket.setListener(new Session(WAMPRouter.this, socket, serialization));
            }

            @Override
            public void onError(Throwable error){
                listener.onError(WAMPRouter.this, error);
            }

            @Override
            public void onClose(WAMPServerEndPoint server){
                listener.onClose(WAMPRouter.this);
            }
        });
    }

    public void close(){
        if(server.isEventLoop()){
            if(ROUTER)
                Debugger.println(this, "-- close");
            realms.close();
            if(ROUTER)
                Debugger.println(this, "-- disconnect");
            server.close();
        }else{
            server.submit(new Runnable(){
                @Override
                public void run(){
                    close();
                }
            });
        }
    }

    @Override
    public String toString(){
        return getClass().getSimpleName();
    }

    protected Session readingSession;

    /*-------------------------------------------------[ Flush Chain ]---------------------------------------------------*/

    protected Session flushHead;
    protected Session flushTail;

    protected void addToFlushList(Session session){
        assert !session.flushNeeded;
        session.flushNeeded = true;
        if(flushHead==null)
            flushHead = session;
        else
            flushTail.flushNext = session;
        flushTail = session;
    }

    protected Session removeFromFlushList(){
        if(flushHead==null)
            return null;
        Session removed = flushHead;
        assert removed.flushNeeded;
        flushHead = removed.flushNext;
        if(flushHead==null)
            flushTail = null;
        removed.flushNext = null;
        removed.flushNeeded = false;
        return removed;
    }

    protected void removeFromFlushList(Session session){
        assert session.flushNeeded;
        session.flushNeeded = false;
        if(flushHead==session){
            flushHead = session.flushNext;
            if(flushHead==null)
                flushTail = null;
        }else{
            Session prev = flushHead;
            while(prev.flushNext!=session)
                prev = prev.flushNext;
            prev.flushNext = session.flushNext;
            if(flushTail==session)
                flushTail = prev;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy