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

📄 submitmultiresp.java

📁 SMPP(点到点短消息协议)的java实现
💻 JAVA
字号:
package ie.omk.smpp.message;import ie.omk.smpp.Address;import ie.omk.smpp.ErrorAddress;import ie.omk.smpp.util.SMPPIO;import java.io.OutputStream;import java.util.ArrayList;import java.util.Collections;import java.util.Iterator;import java.util.List;/** * Submit to multiple destinations response. Relevant inherited fields from * SMPPPacket: <br> * <ul> * messageId * </ul> *  * @author Oran Kelly * @version 1.0 */public class SubmitMultiResp extends ie.omk.smpp.message.SMPPResponse {    /** Table of unsuccessful destinations */    private List unsuccessfulTable;    /**     * Construct a new Unbind.     */    public SubmitMultiResp() {        super(SUBMIT_MULTI_RESP);        unsuccessfulTable = Collections.synchronizedList(new ArrayList());    }    /**     * Construct a new Unbind with specified sequence number.     *      * @param seqNum     *            The sequence number to use     * @deprecated     */    public SubmitMultiResp(int seqNum) {        super(SUBMIT_MULTI_RESP, seqNum);        unsuccessfulTable = Collections.synchronizedList(new ArrayList());    }    /**     * Create a new SubmitMultiResp packet in response to a BindReceiver. This     * constructor will set the sequence number to it's expected value.     *      * @param r     *            The Request packet the response is to     */    public SubmitMultiResp(SubmitMulti r) {        super(r);    }    /** Get the number of destinations the message was not delivered to. */    public int getUnsuccessfulCount() {        return unsuccessfulTable.size();    }    /**     * Add a destination address to the table of unsuccessful destinations.     *      * @param ea     *            ErrorAddress object representing the failed destination     * @return The current count of unsuccessful destinations (including the new     *         one)     */    public int add(ErrorAddress ea) {        unsuccessfulTable.add(ea);        return unsuccessfulTable.size();    }    /**     * Remove an address from the table of unsuccessful destinations.     *      * @param a     *            the address to remove.     * @return the size of the table after removal.     */    public int remove(Address a) {        synchronized (unsuccessfulTable) {            int i = unsuccessfulTable.indexOf(a);            if (i > -1) {                unsuccessfulTable.remove(i);            }            return unsuccessfulTable.size();        }    }    /**     * Get an iterator to iterate over the set of addresses in the unsuccessful     * destination table.     */    public java.util.ListIterator tableIterator() {        return unsuccessfulTable.listIterator();    }    /**     * Return the number of bytes this packet would be encoded as to an     * OutputStream.     *      * @return the number of bytes this packet would encode as.     */    public int getBodyLength() {        int size = (messageId != null) ? messageId.length() : 0;        synchronized (unsuccessfulTable) {            Iterator i = unsuccessfulTable.iterator();            while (i.hasNext()) {                size += ((ErrorAddress) i.next()).getLength();            }        }        // 1 1-byte integer, 1 c-string        return size + 1 + 1;    }    /**     * Write a byte representation of this packet to an OutputStream     *      * @param out     *            The OutputStream to write to     * @throws java.io.IOException     *             If an error occurs writing to the output stream.     */    protected void encodeBody(OutputStream out) throws java.io.IOException {        int size = 0;        synchronized (unsuccessfulTable) {            size = unsuccessfulTable.size();            SMPPIO.writeCString(getMessageId(), out);            SMPPIO.writeInt(size, 1, out);            Iterator i = unsuccessfulTable.iterator();            while (i.hasNext()) {                ((ErrorAddress) i.next()).writeTo(out);            }        }    }    public void readBodyFrom(byte[] body, int offset)            throws SMPPProtocolException {        messageId = SMPPIO.readCString(body, offset);        offset += messageId.length() + 1;        int unsuccessfulCount = SMPPIO.bytesToInt(body, offset++, 1);        if (unsuccessfulCount < 1) {            return;        }        for (int loop = 0; loop < unsuccessfulCount; loop++) {            ErrorAddress a = new ErrorAddress();            a.readFrom(body, offset);            offset += a.getLength();            unsuccessfulTable.add(a);        }    }    /**     * Convert this packet to a String. Not to be interpreted programmatically,     * it's just dead handy for debugging!     */    public String toString() {        return new String("submit_multi_resp");    }}

⌨️ 快捷键说明

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