Class StreamNegotiator

  • Direct Known Subclasses:
    IBBTransferNegotiator, Socks5TransferNegotiator

    public abstract class StreamNegotiator
    extends Manager
    After the file transfer negotiation process is completed according to XEP-0096, the negotiation process is passed off to a particular stream negotiator. The stream negotiator will then negotiate the chosen stream and return the stream to transfer the file.
    • Method Detail

      • createInitiationAccept

        protected static StreamInitiation createInitiationAccept​(StreamInitiation streamInitiationOffer,
                                                                 java.lang.String namespace)
        Creates the initiation acceptance stanza to forward to the stream initiator.
        Parameters:
        streamInitiationOffer - The offer from the stream initiator to connect for a stream.
        namespace - The namespace that relates to the accepted means of transfer.
        Returns:
        The response to be forwarded to the initiator.
      • newStreamInitiation

        protected abstract void newStreamInitiation​(Jid from,
                                                    java.lang.String streamID)
        Signal that a new stream initiation arrived. The negotiator may needs to prepare for it.
        Parameters:
        from - The initiator of the file transfer.
        streamID - The stream ID related to the transfer.
      • createIncomingStream

        public abstract java.io.InputStream createIncomingStream​(StreamInitiation initiation)
                                                          throws XMPPException.XMPPErrorException,
                                                                 java.lang.InterruptedException,
                                                                 SmackException
        This method handles the file stream download negotiation process. The appropriate stream negotiator's initiate incoming stream is called after an appropriate file transfer method is selected. The manager will respond to the initiator with the selected means of transfer, then it will handle any negotiation specific to the particular transfer method. This method returns the InputStream, ready to transfer the file.
        Parameters:
        initiation - The initiation that triggered this download.
        Returns:
        After the negotiation process is complete, the InputStream to write a file to is returned.
        Throws:
        XMPPException.XMPPErrorException - If an error occurs during this process an XMPPException is thrown.
        java.lang.InterruptedException - If thread is interrupted.
        SmackException - if Smack detected an exceptional situation.
      • createOutgoingStream

        public abstract java.io.OutputStream createOutgoingStream​(java.lang.String streamID,
                                                                  Jid initiator,
                                                                  Jid target)
                                                           throws SmackException,
                                                                  XMPPException,
                                                                  java.lang.InterruptedException
        This method handles the file upload stream negotiation process. The particular stream negotiator is determined during the file transfer negotiation process. This method returns the OutputStream to transmit the file to the remote user.
        Parameters:
        streamID - The streamID that uniquely identifies the file transfer.
        initiator - The fully-qualified JID of the initiator of the file transfer.
        target - The fully-qualified JID of the target or receiver of the file transfer.
        Returns:
        The negotiated stream ready for data.
        Throws:
        SmackException - if Smack detected an exceptional situation.
        XMPPException - if an XMPP protocol error was received.
        java.lang.InterruptedException - if the calling thread was interrupted.
      • getNamespace

        public abstract java.lang.String getNamespace()
        Returns the XMPP namespace reserved for this particular type of file transfer.
        Returns:
        Returns the XMPP namespace reserved for this particular type of file transfer.
      • signal

        public static void signal​(java.lang.String eventKey,
                                  IQ eventValue)