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

📄 rdvpeerrdvservice.java

📁 JXTA&#8482 is a set of open, generalized peer-to-peer (P2P) protocols that allow any networked devi
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) 2001-2007 Sun Microsystems, Inc.  All rights reserved. *   *  The Sun Project JXTA(TM) Software License *   *  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 Sun Microsystems, Inc. for JXTA(TM) technology."  *     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 SUN  *  MICROSYSTEMS 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. *   *  JXTA is a registered trademark of Sun Microsystems, Inc. in the United  *  States and other countries. *   *  Please see the license information page at : *  <http://www.jxta.org/project/www/license.html> for instructions on use of  *  the license in source files. *   *  ==================================================================== *   *  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.impl.rendezvous.rdv;import net.jxta.discovery.DiscoveryService;import net.jxta.document.Advertisement;import net.jxta.document.AdvertisementFactory;import net.jxta.document.Element;import net.jxta.document.MimeMediaType;import net.jxta.document.StructuredDocumentFactory;import net.jxta.document.XMLDocument;import net.jxta.endpoint.EndpointAddress;import net.jxta.endpoint.EndpointListener;import net.jxta.endpoint.Message;import net.jxta.endpoint.MessageElement;import net.jxta.endpoint.StringMessageElement;import net.jxta.endpoint.TextDocumentMessageElement;import net.jxta.id.ID;import net.jxta.impl.protocol.RdvConfigAdv;import net.jxta.impl.rendezvous.PeerConnection;import net.jxta.impl.rendezvous.RdvWalk;import net.jxta.impl.rendezvous.RdvWalker;import net.jxta.impl.rendezvous.RendezVousPropagateMessage;import net.jxta.impl.rendezvous.RendezVousServiceImpl;import net.jxta.impl.rendezvous.StdRendezVousService;import net.jxta.impl.rendezvous.limited.LimitedRangeWalk;import net.jxta.impl.rendezvous.rendezvousMeter.ClientConnectionMeter;import net.jxta.impl.rendezvous.rendezvousMeter.RendezvousMeterBuildSettings;import net.jxta.impl.rendezvous.rpv.PeerView;import net.jxta.impl.util.TimeUtils;import net.jxta.logging.Logging;import net.jxta.peer.PeerID;import net.jxta.peergroup.PeerGroup;import net.jxta.peergroup.PeerGroupID;import net.jxta.platform.Module;import net.jxta.protocol.ConfigParams;import net.jxta.protocol.PeerAdvertisement;import net.jxta.rendezvous.RendezvousEvent;import java.io.IOException;import java.util.Arrays;import java.util.Collections;import java.util.HashMap;import java.util.List;import java.util.Map;import java.util.TimerTask;import java.util.Vector;import java.util.logging.Level;import java.util.logging.Logger;/** * A JXTA {@link net.jxta.rendezvous.RendezVousService} implementation which * implements the rendezvous server portion of the standard JXTA Rendezvous * Protocol (RVP). * * @see net.jxta.rendezvous.RendezVousService * @see <a href="https://jxta-spec.dev.java.net/nonav/JXTAProtocols.html#proto-rvp" target="_blank">JXTA Protocols Specification : Rendezvous Protocol</a> */public class RdvPeerRdvService extends StdRendezVousService {    /**     * Logger     */    private final static Logger LOG = Logger.getLogger(RdvPeerRdvService.class.getName());    public static final String RDV_WALK_SVC_NAME = "RdvWalkSvcName";    public static final String RDV_WALK_SVC_PARAM = "RdvWalkSvcParam";    public final static long GC_INTERVAL = 2 * TimeUtils.AMINUTE;    public final static long DEFAULT_LEASE_DURATION = 20L * TimeUtils.AMINUTE;    public final static int DEFAULT_MAX_CLIENTS = 200;    /**     * Duration of leases we offer measured in relative milliseconds.     */    private final long LEASE_DURATION;    /**     * The maximum number of simultaneous clients we will allow.     */    private final int MAX_CLIENTS;    /**     * The clients which currently have a lease with us.     */    private final Map<ID, ClientConnection> clients = Collections.synchronizedMap(new HashMap<ID, ClientConnection>());    private RdvWalk walk = null;    private RdvWalker walker = null;    /**     * The peer view for this rendezvous server.     */    public final PeerView rpv;    /**     * Constructor for the RdvPeerRdvService object     *     * @param group      the peer group     * @param rdvService the rendezvous service object     */    public RdvPeerRdvService(PeerGroup group, RendezVousServiceImpl rdvService) {        super(group, rdvService);        Advertisement adv = null;        ConfigParams confAdv = group.getConfigAdvertisement();        // Get the config. If we do not have a config, we're done; we just keep        // the defaults (edge peer/no auto-rdv)        if (confAdv != null) {            try {                XMLDocument configDoc = (XMLDocument) confAdv.getServiceParam(rdvService.getAssignedID());                if (null != configDoc) {                    adv = AdvertisementFactory.newAdvertisement(configDoc);                }            } catch (java.util.NoSuchElementException failed) {// ignored            }        }        RdvConfigAdv rdvConfigAdv;        if (!(adv instanceof RdvConfigAdv)) {            if (Logging.SHOW_FINE && LOG.isLoggable(Level.FINE)) {                LOG.fine("Creating new RdvConfigAdv for defaults.");            }            rdvConfigAdv = (RdvConfigAdv) AdvertisementFactory.newAdvertisement(RdvConfigAdv.getAdvertisementType());        } else {            rdvConfigAdv = (RdvConfigAdv) adv;        }        if (rdvConfigAdv.getMaxTTL() > 0) {            MAX_TTL = rdvConfigAdv.getMaxTTL();        } else {            MAX_TTL = StdRendezVousService.DEFAULT_MAX_TTL;        }        if (rdvConfigAdv.getMaxClients() > 0) {            MAX_CLIENTS = rdvConfigAdv.getMaxClients();        } else {            MAX_CLIENTS = DEFAULT_MAX_CLIENTS;        }        if (rdvConfigAdv.getLeaseDuration() > 0) {            LEASE_DURATION = rdvConfigAdv.getLeaseDuration();        } else {            LEASE_DURATION = DEFAULT_LEASE_DURATION;        }        // Update the peeradv with that information:        // XXX 20050409 bondolo How does this interact with auto-rdv?        try {            XMLDocument params = (XMLDocument)                    StructuredDocumentFactory.newStructuredDocument(MimeMediaType.XMLUTF8, "Parm");            Element e = params.createElement("Rdv", Boolean.TRUE.toString());            params.appendChild(e);            group.getPeerAdvertisement().putServiceParam(rdvService.getAssignedID(), params);        } catch (Exception ohwell) {            // don't worry about it for now. It'll still work.            if (Logging.SHOW_WARNING && LOG.isLoggable(Level.WARNING)) {                LOG.log(Level.WARNING, "Failed adding service params", ohwell);            }        }        PeerGroup advGroup = group.getParentGroup();        if ((null == advGroup) || PeerGroupID.worldPeerGroupID.equals(advGroup.getPeerGroupID())) {            // For historical reasons, we publish in our own group rather than            // the parent if our parent is the world group.            advGroup = null;        }        rpv = new PeerView(group, advGroup, rdvService,                rdvService.getAssignedID().toString() + group.getPeerGroupID().getUniqueValue().toString());        if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {            LOG.info("RendezVous Service is initialized for " + group.getPeerGroupID() + " as a Rendezvous peer.");        }    }    /**     * Listener for     * <p/>     * &lt;assignedID>/&lt;group-unique>     */    private class StdRdvRdvProtocolListener implements StdRendezVousService.StdRdvProtocolListener {        /**         * {@inheritDoc}         */        public void processIncomingMessage(Message msg, EndpointAddress srcAddr, EndpointAddress dstAddr) {            if (Logging.SHOW_FINE && LOG.isLoggable(Level.FINE)) {                LOG.fine("[" + group.getPeerGroupID() + "] processing " + msg);            }            if (msg.getMessageElement("jxta", ConnectRequest) != null) {                processLeaseRequest(msg);            }            if (msg.getMessageElement("jxta", DisconnectRequest) != null) {                processDisconnectRequest(msg);            }        }    }    /**     * {@inheritDoc}     */    @Override    protected int startApp(String[] argv) {        super.startApp(argv, new StdRdvRdvProtocolListener());        rpv.start();        // The other services may not be fully functional but they're there        // so we can start our subsystems.        // As for us, it does not matter if our methods are called between init        // and startApp().        // Start the Walk protcol. Create a LimitedRange Walk        walk = new LimitedRangeWalk(group, new WalkListener(), pName, pParam, rpv);        // We need to use a Walker in order to propagate the request        // when when have no answer.        walker = walk.getWalker();        timer.scheduleAtFixedRate(new GCTask(), GC_INTERVAL, GC_INTERVAL);        if (RendezvousMeterBuildSettings.RENDEZVOUS_METERING && (rendezvousMeter != null)) {            rendezvousMeter.startRendezvous();        }        rdvService.generateEvent(RendezvousEvent.BECAMERDV, group.getPeerID());        if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {            LOG.info("RdvPeerRdvService is started");        }        return Module.START_OK;    }    /**     * {@inheritDoc}     */    @Override    public synchronized void stopApp() {        if (closed) {            return;        }        closed = true;        walk.stop();        walk = null;        rpv.stop();        // Tell all our clientss that we are going down        disconnectAllClients();        clients.clear();        super.stopApp();        if (RendezvousMeterBuildSettings.RENDEZVOUS_METERING && (rendezvousMeter != null)) {            rendezvousMeter.stopRendezvous();        }    }    /**     * {@inheritDoc}     */    @Override    public void connectToRendezVous(EndpointAddress addr, Object hint) {        throw new UnsupportedOperationException("Not supported by rendezvous");    }    /**     * {@inheritDoc}     */    @Override    public void challengeRendezVous(ID peer, long delay) {        throw new UnsupportedOperationException("Not supported by rendezvous");    }    /**     * {@inheritDoc}     */    @Override    public void disconnectFromRendezVous(ID peerId) {        throw new UnsupportedOperationException("Not supported by rendezvous");    }    /**     * {@inheritDoc}     */    @Override    public boolean isConnectedToRendezVous() {        return false;    }    /**     * {@inheritDoc}     */    @Override    public Vector<ID> getConnectedPeerIDs() {        Vector<ID> result = new Vector<ID>();        List allClients = Arrays.asList(clients.values().toArray());        for (Object allClient : allClients) {            PeerConnection aConnection = (PeerConnection) allClient;            if (aConnection.isConnected()) {                result.add(aConnection.getPeerID());            }        }        return result;    }    /**     * {@inheritDoc}     */    @Override    public void propagate(Message msg, String serviceName, String serviceParam, int initialTTL) throws IOException {        if (closed) {            return;        }        msg = msg.clone();        int useTTL = Math.min(initialTTL, MAX_TTL);        if (Logging.SHOW_FINE && LOG.isLoggable(Level.FINE)) {            LOG.fine("Propagating " + msg + "(TTL=" + useTTL + ") to :" +                    "\n\tsvc name:" + serviceName + "\tsvc params:" + serviceParam);        }        RendezVousPropagateMessage propHdr = updatePropHeader(msg, getPropHeader(msg), serviceName, serviceParam, useTTL);        if (null != propHdr) {            walk(msg, PropSName, PropPName, useTTL);            // hamada: this is a very expensive operation and therefore not a supported operation            // sendToEachConnection(msg, propHdr);            sendToNetwork(msg, propHdr);            if (RendezvousMeterBuildSettings.RENDEZVOUS_METERING && (rendezvousMeter != null)) {                rendezvousMeter.propagateToGroup();            }        }    }    /**     * {@inheritDoc}     */    @Override    public void propagateInGroup(Message msg, String serviceName, String serviceParam, int initialTTL) throws IOException {        if (closed) {            return;        }        msg = msg.clone();        int useTTL = Math.min(initialTTL, MAX_TTL);        if (Logging.SHOW_FINE && LOG.isLoggable(Level.FINE)) {            LOG.fine("Propagating " + msg + "(TTL=" + useTTL + ") in group to :" +                    "\n\tsvc name:" + serviceName + "\tsvc params:" + serviceParam);        }        RendezVousPropagateMessage propHdr = updatePropHeader(msg, getPropHeader(msg), serviceName, serviceParam, useTTL);        if (null != propHdr) {            walk(msg, PropSName, PropPName, useTTL);            sendToEachConnection(msg, propHdr);            if (RendezvousMeterBuildSettings.RENDEZVOUS_METERING && (rendezvousMeter != null)) {

⌨️ 快捷键说明

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