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

📄 vojxtainviteaction.java

📁 Myjxta的源代码 基于JXTA的P2P即时通信系统
💻 JAVA
字号:
/* * Created on Feb 25, 2005 */package net.jxta.myjxta.plugins.vojxta;import net.jxta.document.*;import net.jxta.endpoint.MessageElement;import net.jxta.endpoint.TextDocumentMessageElement;import net.jxta.logging.Logging;import net.jxta.myjxta.View;import net.jxta.myjxta.dialog.Dialog;import net.jxta.myjxta.dialog.DialogManager;import net.jxta.myjxta.dialog.DialogMessage;import net.jxta.myjxta.dialog.util.RemoteCommandInvoker;import net.jxta.myjxta.plugins.vojxta.command.VOJXTACommand;import net.jxta.myjxta.util.Group;import net.jxta.myjxta.util.Peer;import net.jxta.myjxta.util.Resources;import net.jxta.myjxta.util.objectmodel.PeerNode;import net.jxta.pipe.PipeService;import net.jxta.protocol.PipeAdvertisement;import javax.swing.*;import java.awt.event.ActionEvent;import java.io.IOException;import java.util.HashMap;import java.util.Map;import java.util.ResourceBundle;import java.util.logging.Level;import java.util.logging.Logger;/** * @author Ravi * @author jamoore */public class VoJxtaInviteAction extends AbstractAction {    private static final int INTERVAL = 250;    private static final int MAX = INTERVAL * 4 * 75;    private static final Logger LOG = Logger.getLogger(VoJxtaInviteAction.class.getName());    private View view = null;    private static final ResourceBundle STRINGS = Resources.getStrings();    public VoJxtaInviteAction(String name, View view) {        super(name);        this.view = view;        if (Logging.SHOW_FINE && LOG.isLoggable(Level.FINE)) {            LOG.fine("VOIPAction instantiated");        }    }    public void actionPerformed(ActionEvent ae) {        PeerNode pn = (PeerNode) this.view.getJxtaNode(PeerNode.class);        final Peer p = pn != null ? pn.getPeer() : null;        final Group g = pn != null ? pn.getParent().getGroup() : null;        String status;        if (p == null)            return;        if (g != null) {            status = STRINGS.getString("status.command.initiate") +                    ": " + p.getName();            if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {                LOG.info(status);            }            new Thread(new Runnable() {                public void run() {                    process(g, p);                }            }, getClass().getName() + ":getConnection").start();        } else {            status = STRINGS.getString("error.peer.invalid") +                    " " + p.getName();            if (Logging.SHOW_SEVERE && LOG.isLoggable(Level.SEVERE)) {                LOG.severe(status);            }        }        if (status != null) {            this.view.setStatus(status);        }    }    private void process(Group g, Peer p) {        LOG.setLevel(Level.INFO);        String status = "initiating vojxta action";        this.view.setStatus(status);        if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {            LOG.info(status);        }        //get pipe adv from DialogManager - this is the VOIPPipe        StructuredDocument d = getPipeAdv(g);        //attach it as a message element        TextDocumentMessageElement te = d != null ?                new TextDocumentMessageElement(VOJXTACommand.PIPE,                        (StructuredTextDocument) d, null) :                null;        if (te != null) {            if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {                LOG.info(status);                LOG.info("instantiating VOIPCommand");            }            //command fetecher will send out a command on the command pipe            RemoteCommandInvoker cf = new RemoteCommandInvoker(g, p.getPipeAdvertisement(),                    new VOJXTACommand(), this.view.getControl());            Map<String, MessageElement> m = new HashMap<String, MessageElement>();            // add the our pipe element            m.put(VOJXTACommand.PIPE, te);            if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {                LOG.info("dispatch VOIPcommand");            }            cf.invoke(MAX, m);            //get respsonse            DialogMessage r = cf.getResponse();            if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {                LOG.info("VOIPInvitationCommand response: " + r);            }            //this is why its important to have a consistent PIPE element in TestCommand            MessageElement pae = r != null ?                    r.getMessageElement(VOJXTACommand.PIPE) :                    null;            if (pae != null) {                status = "vojxta pipe import" +                        ": " + p.getName();                this.view.setStatus(status);                if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {                    LOG.info(status);                    LOG.info("adding dialog");                }                VoJxtaDialogView.setInitiatedLocally(true);                this.view.getControl().addDialog(                        DialogManager.getDialog(VoJxtaDialog.class,                                g, getPipeAdv(pae), this.view.getControl()));            } else {                status = "request vojxta pipe" +                        ": " + p.getName();                this.view.setStatus(status);                if (Logging.SHOW_SEVERE && LOG.isLoggable(Level.SEVERE)) {                    LOG.severe(status);                }            }        } else {            if (Logging.SHOW_SEVERE && LOG.isLoggable(Level.SEVERE)) {                LOG.severe("invalid response");            }        }        LOG.setLevel(Level.SEVERE);    }    private PipeAdvertisement getPipeAdv(MessageElement me) {        if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {            LOG.info("get pipeAdv");        }        StructuredDocument sd = null;        if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {            LOG.info("me instanceof ByteMessageElement");        }        try {            sd = StructuredDocumentFactory.newStructuredDocument(MimeMediaType.XMLUTF8,                    me.getStream());        } catch (IOException ioe) {            if (Logging.SHOW_SEVERE && LOG.isLoggable(Level.SEVERE)) {                LOG.log(Level.SEVERE, "can\'t document", ioe);            }        }        PipeAdvertisement pa = null;        if (sd != null) {            try {                XMLDocument xml = (XMLDocument) StructuredDocumentFactory.newStructuredDocument( MimeMediaType.XMLUTF8, sd.getStream() );                pa = (PipeAdvertisement) AdvertisementFactory.                        newAdvertisement(xml);            } catch (IOException ioe) {                if (Logging.SHOW_SEVERE && LOG.isLoggable(Level.SEVERE)) {                    LOG.log(Level.SEVERE, "can\'t get pipe advertisement", ioe);                }            }        }        return pa;    }    private StructuredDocument getPipeAdv(Group g) {        if (Logging.SHOW_INFO && LOG.isLoggable(Level.INFO)) {            LOG.info("getPipeAdvl");        }        String pn = Dialog.getDialogNamer(VoJxtaDialog.class).                getDialogName(g.getPeerGroup().getPeerName());        PipeAdvertisement pa = DialogManager.getInstance(g, pn,                PipeService.UnicastType).getPipeAdv(g.getPeerGroup());        return (StructuredDocument) pa.getDocument(MimeMediaType.XMLUTF8);    }    public boolean isEnabled() {        PeerNode jxtaNode = (PeerNode) view.getJxtaNode(PeerNode.class);        return jxtaNode != null; // we need a check that this isnt our own peer    }}

⌨️ 快捷键说明

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