Package de.jetwick.rmi

Source Code of de.jetwick.rmi.RMIClient

/**
* Copyright (C) 2010 Peter Karich <jetwick_@_pannous_._info>
*
* 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 de.jetwick.rmi;

import com.google.inject.Guice;
import com.google.inject.Inject;
import com.google.inject.Injector;
import de.jetwick.config.Configuration;
import de.jetwick.config.DefaultModule;
import de.jetwick.data.JTweet;
import de.jetwick.data.JUser;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.util.Collection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
*
* @author Peter Karich, peat_hal 'at' users 'dot' sourceforge 'dot' net
*/
public class RMIClient implements CommunicationService {

    private static Logger logger = LoggerFactory.getLogger(RMIClient.class);
    private CommunicationService service;
    private Configuration config;

    @Inject
    public RMIClient(Configuration config) {
        this.config = config;
    }

    public RMIClient init() {
        if (service != null)
            return this;

        try {
//            logger.info("sending to " + config.getRMIHost() + ":" + config.getRMIPort()
//                    + " using " + config.getRMIService());
            Registry registry = LocateRegistry.getRegistry(config.getRMIHost(), config.getRMIPort());
            // look up the remote object
            service = (CommunicationService) registry.lookup(config.getRMIService());
            return this;
        } catch (Exception ex) {
            throw new RuntimeException(ex);
        }
    }

    public static void main(String args[]) throws Exception {
        DefaultModule module = new DefaultModule();
        Injector injector = Guice.createInjector(module);
        RMIClient rmiProvider = injector.getInstance(RMIClient.class);
        rmiProvider.send(new JTweet(1L, "test", new JUser("peter")));
    }

    @Override
    public void send(JTweet tweet) throws RemoteException {
        if (service == null) {
            logger.error("Queue service not connected");
            return;
        }

        service.send(tweet);
    }

    @Override
    public void send(Collection<JTweet> tweets) throws RemoteException {
        if (service == null) {
            logger.error("Queue service not connected");
            return;
        }

        service.send(tweets);
    }
}
TOP

Related Classes of de.jetwick.rmi.RMIClient

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.