📄 smppreader.java
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
// Source File Name: SMPPReader.java
package com.huawei.insa2.comm.smpp;
import com.huawei.insa2.comm.PMessage;
import com.huawei.insa2.comm.PReader;
import com.huawei.insa2.comm.smpp.message.SMPPDeliverMessage;
import com.huawei.insa2.comm.smpp.message.SMPPEnquireLinkMessage;
import com.huawei.insa2.comm.smpp.message.SMPPEnquireLinkRespMessage;
import com.huawei.insa2.comm.smpp.message.SMPPLoginRespMessage;
import com.huawei.insa2.comm.smpp.message.SMPPSubmitRespMessage;
import com.huawei.insa2.comm.smpp.message.SMPPUnbindMessage;
import com.huawei.insa2.comm.smpp.message.SMPPUnbindRespMessage;
import com.huawei.insa2.util.TypeConvert;
import java.io.*;
public class SMPPReader extends PReader
{
protected DataInputStream in;
public SMPPReader(InputStream is)
{
in = new DataInputStream(is);
}
public PMessage read()
throws IOException
{
int total_Length = in.readInt();
int command_Id = in.readInt();
byte tmpbuf[] = new byte[total_Length - 8];
in.readFully(tmpbuf);
byte buf[] = new byte[total_Length];
System.arraycopy(tmpbuf, 0, buf, 8, tmpbuf.length);
TypeConvert.int2byte(total_Length, buf, 0);
TypeConvert.int2byte(command_Id, buf, 4);
if(command_Id == 0x80000001 || command_Id == 0x80000002)
return new SMPPLoginRespMessage(buf);
if(command_Id == 5)
return new SMPPDeliverMessage(buf);
if(command_Id == 0x80000004)
return new SMPPSubmitRespMessage(buf);
if(command_Id == 21)
return new SMPPEnquireLinkMessage(buf);
if(command_Id == 0x80000015)
return new SMPPEnquireLinkRespMessage(buf);
if(command_Id == 6)
return new SMPPUnbindMessage(buf);
if(command_Id == 0x80000006)
return new SMPPUnbindRespMessage(buf);
else
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -