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

org.msgpack.rpc.Session Maven / Gradle / Ivy

The newest version!
//
// MessagePack-RPC for Java
//
// Copyright (C) 2010 FURUHASHI Sadayuki
//
//    Licensed 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.msgpack.rpc;

import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicInteger;
import org.msgpack.rpc.address.Address;
import org.msgpack.rpc.message.RequestMessage;
import org.msgpack.rpc.message.NotifyMessage;
import org.msgpack.rpc.reflect.Reflect;
import org.msgpack.rpc.transport.ClientTransport;
import org.msgpack.rpc.config.ClientConfig;
import org.msgpack.rpc.loop.EventLoop;
import org.msgpack.type.Value;
import org.msgpack.type.ValueFactory;

public class Session {
    protected Address address;
    protected EventLoop loop;
    private ClientTransport transport;
    private Reflect reflect;

    private int requestTimeout;
    private AtomicInteger seqid = new AtomicInteger(0); // FIXME rand()?
    private Map reqtable = new HashMap();

    Session(Address address, ClientConfig config, EventLoop loop) {
        this(address,config,loop,new Reflect(loop.getMessagePack()));
    }

    Session(Address address, ClientConfig config, EventLoop loop,Reflect reflect) {
        this.address = address;
        this.loop = loop;
        this.requestTimeout = config.getRequestTimeout();
        this.transport = loop.openTransport(config, this);
        this.reflect = reflect;
    }

    public  T proxy(Class iface) {
        return reflect.getProxy(iface).newProxyInstance(this);
        // Reflect.reflectProxy(iface,loop.getMessagePack()).newProxyInstance(this);
    }

    public Address getAddress() {
        return address;
    }

    // FIXME EventLoopHolder interface?
    public EventLoop getEventLoop() {
        return loop;
    }

    /**
     * Timeout seconds
     * @return
     */
    public int getRequestTimeout() {
        return requestTimeout;
    }

    public void setRequestTimeout(int requestTimeout) {
        this.requestTimeout = requestTimeout;
    }

    public Value callApply(String method, Object[] args) {
        Future f = sendRequest(method, args);
        while (true) {
            try {
                if(requestTimeout <= 0){
                    return f.get();
                }else{
                    return f.get(requestTimeout, TimeUnit.SECONDS);
                }
            } catch (InterruptedException e) {
                // FIXME
            } catch (TimeoutException e) {
                // FIXME
                throw new RuntimeException("Time out to call method:" + method,e);

            }
        }
    }

    public Future callAsyncApply(String method, Object[] args) {
        return sendRequest(method, args);
    }

    public void notifyApply(String method, Object[] args) {
        sendNotify(method, args);
    }

    public Future sendRequest(String method, Object[] args) {
        int msgid = seqid.getAndAdd(1);
        RequestMessage msg = new RequestMessage(msgid, method, args);
        FutureImpl f = new FutureImpl(this);

        synchronized (reqtable) {
            reqtable.put(msgid, f);
        }
        transport.sendMessage(msg);

        return new Future(loop.getMessagePack(), f);
    }

    public void sendNotify(String method, Object[] args) {
        NotifyMessage msg = new NotifyMessage(method, args);
        transport.sendMessage(msg);
    }

    void closeSession() {
        transport.close();
        synchronized (reqtable) {
            for (Map.Entry pair : reqtable.entrySet()) {
                // FIXME error result
                FutureImpl f = pair.getValue();
                f.setResult(null, ValueFactory.createRawValue("session closed"));
            }
            reqtable.clear();
        }
    }

    public void transportConnectFailed() { // FIXME error rseult
        /*
        synchronized(reqtable) {
            for(Map.Entry pair : reqtable.entrySet()) {
                // FIXME
                FutureImpl f = pair.getValue();
                f.setResult(null,null);
            }
            reqtable.clear();
        }
        */
    }

    public void onResponse(int msgid, Value result, Value error) {
        FutureImpl f;
        synchronized (reqtable) {
            f = reqtable.remove(msgid);
        }
        if (f == null) {
            // FIXME log
            return;
        }
        f.setResult(result, error);
    }

    void stepTimeout() {
        List timedout = new ArrayList();
        synchronized (reqtable) {
            for (Iterator> it = reqtable
                    .entrySet().iterator(); it.hasNext();) {
                Map.Entry pair = it.next();
                FutureImpl f = pair.getValue();
                if (f.stepTimeout()) {
                    it.remove();
                    timedout.add(f);
                }
            }
        }
        for (FutureImpl f : timedout) {
            // FIXME error result
            f.setResult(null, ValueFactory.createRawValue("timedout"));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy