⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jxtamulticastsocket.java

📁 jxta_src_2.41b jxta 2.41b 最新版源码 from www.jxta.org
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* *  $Id: JxtaMulticastSocket.java,v 1.12 2006/03/21 22:04:57 hamada Exp $ * *  Copyright (c) 2001 Sun Microsystems, Inc.  All rights reserved. * *  Redistribution and use in source and binary forms, with or without *  modification, are permitted provided that the following conditions *  are met: * *  1. Redistributions of source code must retain the above copyright *  notice, this list of conditions and the following disclaimer. * *  2. Redistributions in binary form must reproduce the above copyright *  notice, this list of conditions and the following disclaimer in *  the documentation and/or other materials provided with the *  distribution. * *  3. The end-user documentation included with the redistribution, *  if any, must include the following acknowledgment: *  "This product includes software developed by the *  Sun Microsystems, Inc. for Project JXTA." *  Alternately, this acknowledgment may appear in the software itself, *  if and wherever such third-party acknowledgments normally appear. * *  4. The names "Sun", "Sun Microsystems, Inc.", "JXTA" and "Project JXTA" must *  not be used to endorse or promote products derived from this *  software without prior written permission. For written *  permission, please contact Project JXTA at http://www.jxta.org. * *  5. Products derived from this software may not be called "JXTA", *  nor may "JXTA" appear in their name, without prior written *  permission of Sun. * *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES *  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE *  DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR *  ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF *  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT *  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF *  SUCH DAMAGE. *  ==================================================================== * *  This software consists of voluntary contributions made by many *  individuals on behalf of Project JXTA.  For more *  information on Project JXTA, please see *  <http://www.jxta.org/>. * *  This license is based on the BSD license adopted by the Apache Foundation. * */package net.jxta.socket;import java.io.ByteArrayInputStream;import java.io.InputStream;import java.io.IOException;import java.net.DatagramPacket;import java.net.InetAddress;import java.net.InetSocketAddress;import java.net.MulticastSocket;import java.net.SocketAddress;import java.net.SocketException;import java.net.SocketTimeoutException;import java.net.URI;import java.util.Enumeration;import java.util.Collections;import net.jxta.credential.Credential;import net.jxta.document.MimeMediaType;import net.jxta.document.StructuredDocument;import net.jxta.endpoint.ByteArrayMessageElement;import net.jxta.endpoint.InputStreamMessageElement;import net.jxta.endpoint.Message;import net.jxta.endpoint.MessageElement;import net.jxta.endpoint.StringMessageElement;import net.jxta.id.IDFactory;import net.jxta.impl.util.ProducerBiasedQueue;import net.jxta.membership.MembershipService;import net.jxta.peer.PeerID;import net.jxta.peergroup.PeerGroup;import net.jxta.pipe.InputPipe;import net.jxta.pipe.OutputPipe;import net.jxta.pipe.PipeMsgEvent;import net.jxta.pipe.PipeMsgListener;import net.jxta.pipe.PipeService;import net.jxta.protocol.PipeAdvertisement;import org.apache.log4j.Level;import org.apache.log4j.Logger;/** * The JxtaMulticastSocket class is useful for sending and receiving  * JXTA multicast packets. A JxtaMulticastSocket is a (UDP) DatagramSocket,  * with additional capabilities for joining "groups" of other multicast hosts * on the internet. * A multicast group is specified within the context of PeerGroup and a propagate * pipe advertisement.  * One would join a multicast group by first creating a MulticastSocket * with the desired peer group and pipe advertisement : * * <pre> *  // join a Multicast group and send the group salutations *  ... *  String msg = "Hello"; *  MulticastSocket s = new JxtaMulticastSocket(peergroup, propPipeAdv); *  //We are joined at this point *  DatagramPacket hi = new DatagramPacket(msg.getBytes(), msg.length()); *  s.send(hi); *  // get their responses! *  byte[] buf = new byte[1000]; *  DatagramPacket recv = new DatagramPacket(buf, buf.length); *  s.receive(recv); *  ... *  // OK, I'm done talking - leave the group... *  s.close(); * </pre> * *  One can also respond only to the sender of the datagram as follows : * <pre> *  DatagramPacket res = new DatagramPacket(response.getBytes(), response.length()); *  res.setAddress(recv.getAddress()); *  s.send(res); * </pre> * * When one sends a message to a multicast group, all subscribing recipients to * that peergroup and pipe receive the message (including themselves) * When a socket subscribes to a multicast group/port, it receives datagrams  * sent by other hosts to the group/pipe, as do all other members of the group * and pipe. A socket relinquishes membership in a group by the  * close() method. Multiple MulticastSocket's may  * subscribe to a multicast group and pipe concurrently, and they will all receive * group datagrams. * * When a datagram is sent it carries along with the peerid of the sender. * The PeerID is represented as a InetAddress in the form of host/ipadress * where host name is the peerid, and ip address is always represented as 0.0.0.0 * since it is meaningless in the context of JXTA. * e.g of InetAddress resembles the following: * * <pre> * uuid-59616261646162614A787461503250339C6014B0F21A49DBBDF2ADBDDBCB314703/0.0.0.0 * </pre> * */public class JxtaMulticastSocket extends MulticastSocket implements PipeMsgListener {    private final static Logger LOG = Logger.getLogger(JxtaMulticastSocket.class.getName());    public static final String  NAMESPACE = "JXTAMCAST";    public static final String    DATATAG = "DATAGRAM";    public static final String   SRCIDTAG = "SRCID";    protected PipeAdvertisement pipeAdv;    protected PipeService pipeSvc;    protected InputPipe in;    protected PeerGroup group;    protected SocketAddress socketAddress;    protected InetAddress localAddress;    protected OutputPipe outputPipe;    protected boolean closed = false;    protected boolean bound = false;    protected ProducerBiasedQueue queue = new ProducerBiasedQueue();    protected Credential credential = null;    protected StructuredDocument credentialDoc = null;    private int timeout = 60000;    private byte [] fauxip = new byte[4];    private boolean jxtamode = false;    private MessageElement srcElement = null;    /**     * Create a multicast socket and bind it to a specific pipe within specified      * peer group     *     *@param  group            group context     *@param  pipeAd             PipeAdvertisement     *@exception  IOException  if an io error occurs     */    public JxtaMulticastSocket(PeerGroup group,                               PipeAdvertisement pipeAd) throws IOException {        super();        joinGroup(group, pipeAd);    }    /**     * joins MutlicastSocket to specified pipe within the context of group     *     *@param  group            group context     *@param  pipeAd           PipeAdvertisement     *@exception  IOException  if an io error occurs     */    public void joinGroup(PeerGroup group, PipeAdvertisement pipeAd) throws IOException {        if (pipeAd.getType() != null && !pipeAd.getType().equals(PipeService.PropagateType)) {            throw new IOException("Only propagate pipe advertisements are supported");        }        if (pipeAd.getPipeID() == null) {            throw new IOException("Invalid pipe advertisement");        }        this.group = group;        this.pipeAdv = pipeAd;        pipeSvc = group.getPipeService();        this.in = pipeSvc.createInputPipe(pipeAd, this);        this.credentialDoc = getCredDoc(group);        outputPipe = pipeSvc.createOutputPipe(pipeAd, 1);        String id = group.getPeerID().toString();        srcElement = new StringMessageElement(SRCIDTAG, id, null);        if (LOG.isEnabledFor(Level.INFO)) {            LOG.info("Statring JxtaMulticastSocket on pipe id :"+pipeAdv.getID());        }        String pipeStr = pipeAd.getPipeID().getUniqueValue().toString();        localAddress = InetAddress.getByAddress(pipeStr, fauxip);        socketAddress = new InetSocketAddress(localAddress, 0);        bound = true;    }    /**     * Obtain the credential doc from the group object     *     *@param  group  group context     *@return        The credDoc value     */    protected static StructuredDocument getCredDoc(PeerGroup group) {        try {            MembershipService membership = group.getMembershipService();            Enumeration each = membership.getCurrentCredentials();            if (each.hasMoreElements()) {                // get the only credential "nobody"                Credential credential = (Credential) each.nextElement();                return credential.getDocument(MimeMediaType.XMLUTF8);            }        } catch (Exception e) {            if (LOG.isEnabledFor(Level.WARN)) {

⌨️ 快捷键说明

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