discoverytest.java

来自「JGRoups源码」· Java 代码 · 共 96 行

JAVA
96
字号
package org.jgroups.tests;

import org.jgroups.*;
import org.jgroups.util.Util;

import java.io.Serializable;

/**
 * Simple test for multicast discovery. Use with ./conf/bare-bones.xml (without the UNICAST protocol).
 * Has no error checking and only rudimentary tracing (System.err :-))
 * @author Bela Ban
 * @version $Id: DiscoveryTest.java,v 1.1 2006/03/16 15:47:12 belaban Exp $
 */
public class DiscoveryTest {
    Channel ch;

    public static void main(String[] args) throws Exception {
        String props=null;

        for(int i=0; i < args.length; i++) {
            if(args[i].equals("-props")) {
                props=args[++i];
                continue;
            }
            System.out.println("DiscoveryTest [-props <properties>]");
        }

        new DiscoveryTest().start(props);
    }

    private void start(String props) throws Exception {
        ch=new JChannel(props);
        ch.connect("discovery");

        new Thread() {
            public void run() {
                while(true) {
                    try {
                        ch.send(null, null, new Data(Data.DISCOVERY_REQ, null));
                    }
                    catch(ChannelNotConnectedException e) {
                        e.printStackTrace();
                    }
                    catch(ChannelClosedException e) {
                        e.printStackTrace();
                    }
                    Util.sleep(5000);
                }
            }
        }.start();

        Object obj;
        Data d;
        Message msg;
        while(ch.isConnected()) {
            obj=ch.receive(0);
            if(obj instanceof Message) {
                msg=(Message)obj;
                d=(Data)msg.getObject();
                switch(d.type) {
                    case Data.DISCOVERY_REQ:
                        ch.send(msg.getSrc(), null, new Data(Data.DISCOVEY_RSP,
                                                             " my address is " + ch.getLocalAddress()));
                        break;
                    case Data.DISCOVEY_RSP:
                        Address sender=msg.getSrc();

                        System.out.println("received response from " + sender + ": " + d.payload);
                        break;
                    default:
                        System.err.println("type " + d.type + " not known");
                        break;
                }
            }
        }
        ch.close();
    }


    private static class Data implements Serializable {
        private static final int DISCOVERY_REQ = 1;
        private static final int DISCOVEY_RSP  = 2;
        private static final long serialVersionUID = 9193522684840201133L;

        int type=0;
        Serializable payload=null;


        public Data(int type, Serializable payload) {
            this.type=type;
            this.payload=payload;
        }

    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?