Class SMSCommand
- java.lang.Object
-
- com.opencloud.util.AbstractDataObject
-
- com.opencloud.util.AbstractFieldsObject
-
- AbstractEncodedDataObject<T>
-
- AbstractLazyEncodedDataObject<byte[]>
-
- AbstractLazyEncodedByteArray
-
- com.opencloud.slee.resources.in.datatypes.sms.SMSTPDU
-
- com.opencloud.slee.resources.in.datatypes.sms.SMSCommand
-
- All Implemented Interfaces:
DataObject
,FastSerializable
,Serializable
public final class SMSCommand extends SMSTPDU implements FastSerializable
Representation of a SMS-COMMAND TPDU.The API offered by this class is as if the type were specified in ASN.1 as follows.
SMSCommand ::= SEQUENCE { onlyHeader NULL OPTIONAL, userDataHeaderIndicator UserDataHeaderIndicator, statusReportRequest StatusReportRequest, messageReference INTEGER, protocolId SMSProtocolId, commandType INTEGER, messageNumber INTEGER, destinationAddress SMSAddress, commandData OCTET STRING OPTIONAL }
The class takes care of encoding the field values into a byte-array and decoding field values from a byte-array, the encoded representation being as tabulated below.Data Encoding - based on 3GPP TS 23.040 V9.0.0 (2009-06) §9.2.2.4 pp62-63 7 6 5 4 3 2 1 0 1 octet 0 User data header indicator Status report request 0 0 0 Message type
101 octet Message reference 1 octet Protocol id 1 octet Command type 1 octet Message number 2-12 octets Destination address 1 octet Command data length 0-156 octets Command data Field onlyHeader, when present, causes the commandData field to be omitted on encoding and to be required to be absent on decoding; it doesn't prevent a value from being set for that field, that field still participates in the Map returned by getFieldsMap(), and hence equals(), hashCode() and toString() are still affected.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SMSCommand.StatusReportRequest
Enumeration of Status Report Request constants.static class
SMSCommand.UserDataHeaderIndicator
Enumeration of User Data Header Indicator constants.-
Nested classes/interfaces inherited from class com.opencloud.slee.resources.in.datatypes.sms.SMSTPDU
SMSTPDU.Type
-
-
Field Summary
-
Fields inherited from class com.opencloud.slee.resources.cgin.AbstractLazyEncodedDataObject
isDecoded
-
Fields inherited from class com.opencloud.slee.resources.cgin.AbstractEncodedDataObject
encoded
-
Fields inherited from class com.opencloud.util.AbstractFieldsObject
FIELD_ABSENT, FIELD_UNINITIALISED
-
-
Constructor Summary
Constructors Constructor Description SMSCommand()
Constructs a new SMSCommand object with no fields set.SMSCommand(byte[] data)
Constructs a new SMSCommand object from network-encoded data.SMSCommand(byte[] data, int start, int len)
Constructs a new SMSCommand object from part of network-encoded data.SMSCommand(DataInput in)
Constructs a new SMSCommand object from data deserialized from a stream that was written bytoStream(DataOutput)
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkFieldsSet()
Checks that all mandatory fields are present.SMSCommand
clone()
Constructs a copy of this object and everything reachable from it.static SMSCommand
copyOf(SMSCommand from)
Creates a new object of this type, cloning the values of common fields from the given object of any subclass of the same base type.protected void
decode()
Computes the decoded form from the encoded form.static SMSCommand
decodeRPUIHeaderCommand(byte[] message)
Constructs a new SMSCommand with no data (header only) from the given data.static SMSCommand
decodeRPUIHeaderCommand(byte[] message, int start, int len)
Constructs a new SMSCommand with no data (header only) from the given data.protected void
encode()
Computes the encoded form from the decoded form.protected boolean
encodedIsInvalid()
Determines whether the encoded form is invalid.static byte[]
encodeRPUIHeaderCommand(SMSCommand smsCommand)
Encodes the given SMSCommand for sending as the payload of a SM-RP-UIHeader message.byte[]
getCommandData()
Gets the value of the command data.int
getCommandType()
Gets the value of the operation to be performed on a SM.int
getContainedLength(byte[] data, int start, int len)
Determines the length of the encoded value that commences at offsetstart
in the givendata
.SMSAddress
getDestinationAddress()
Gets the value of the destination address.byte[]
getEncodedForm()
Gets the encoded form.static FieldAccessor[]
getFieldAccessors()
Gets a new array of the accessors for fields of this type.Map<String,Object>
getFieldsMap(boolean withAbsents)
Gets a Map from field-name to field-value for the fields of a sequence.int
getMessageNumber()
Gets the value of indicates which SM in the SC to operate on.int
getMessageReference()
Gets the value of identifies the command.SMSProtocolId
getProtocolId()
Gets the value of identifies the above layer protocol.SMSCommand.StatusReportRequest
getStatusReportRequest()
Gets the value of whether the command is requesting a status report.SMSTPDU.Type
getType()
Return the message type of this PDUSMSCommand.UserDataHeaderIndicator
getUserDataHeaderIndicator()
Gets the value of whether command data contains a header.boolean
hasCommandData()
Tests whether the field CommandData has a value.boolean
hasCommandType()
Tests whether the field CommandType has a value.boolean
hasDestinationAddress()
Tests whether the field DestinationAddress has a value.boolean
hasMessageNumber()
Tests whether the field MessageNumber has a value.boolean
hasMessageReference()
Tests whether the field MessageReference has a value.boolean
hasOnlyHeader()
Tests whether the field OnlyHeader has a value.boolean
hasProtocolId()
Tests whether the field ProtocolId has a value.boolean
hasStatusReportRequest()
Tests whether the field StatusReportRequest has a value.boolean
hasUserDataHeaderIndicator()
Tests whether the field UserDataHeaderIndicator has a value.static SMSCommand
newInstanceOnlyHeader()
Factory method that creates an instance for representing only a header (no data).SMSCommand
setCommandData(byte[] value)
Sets the value of the command data.SMSCommand
setCommandType(int value)
Sets the value of the operation to be performed on a SM.SMSCommand
setCommandTypePresent(boolean flag)
Sets the presence or absence of the field CommandType.SMSCommand
setDestinationAddress(SMSAddress value)
Sets the value of the destination address.SMSCommand
setMessageNumber(int value)
Sets the value of indicates which SM in the SC to operate on.SMSCommand
setMessageNumberPresent(boolean flag)
Sets the presence or absence of the field MessageNumber.SMSCommand
setMessageReference(int value)
Sets the value of identifies the command.SMSCommand
setMessageReferencePresent(boolean flag)
Sets the presence or absence of the field MessageReference.SMSCommand
setOnlyHeaderPresent(boolean flag)
Sets the presence or absence of the field OnlyHeader.SMSCommand
setProtocolId(SMSProtocolId value)
Sets the value of identifies the above layer protocol.void
setReadOnly()
Sets this and all its fields to be immutable.SMSCommand
setStatusReportRequest(SMSCommand.StatusReportRequest value)
Sets the value of whether the command is requesting a status report.SMSCommand
setUserDataHeaderIndicator(SMSCommand.UserDataHeaderIndicator value)
Sets the value of whether command data contains a header.void
toStream(DataOutput out)
Serializes this object to a stream in a form suitable for reading bySMSCommand(DataInput)
.-
Methods inherited from class com.opencloud.slee.resources.in.datatypes.sms.SMSTPDU
decodeRPAck, decodeRPAck, decodeRPError, decodeRPError, decodeRPMOData, decodeRPMOData, decodeRPMTData, decodeRPMTData, encodeRPAck, encodeRPError, encodeRPMOData, encodeRPMTData
-
Methods inherited from class com.opencloud.slee.resources.cgin.AbstractLazyEncodedDataObject
checkDecode, checkModifyAndDecode
-
Methods inherited from class com.opencloud.util.AbstractFieldsObject
equals, hashCode, toString
-
Methods inherited from class com.opencloud.util.AbstractDataObject
checkModify, isReadOnly
-
-
-
-
Constructor Detail
-
SMSCommand
public SMSCommand()
Constructs a new SMSCommand object with no fields set.
-
SMSCommand
public SMSCommand(byte[] data)
Constructs a new SMSCommand object from network-encoded data. The data is not decoded and might not be decodable.- Parameters:
data
- network-encoded data- Throws:
NullPointerException
- if data is null
-
SMSCommand
public SMSCommand(byte[] data, int start, int len)
Constructs a new SMSCommand object from part of network-encoded data. The part starts at indexstart
and islen
bytes long. The data is not decoded and might not be decodable.- Parameters:
data
- network-encoded datastart
- starting offset of network-encoded data in byte arraylen
- default length if not predictable- Throws:
NullPointerException
- if data is nullIllegalArgumentException
- if len is negative
-
SMSCommand
public SMSCommand(DataInput in) throws IOException
Constructs a new SMSCommand object from data deserialized from a stream that was written bytoStream(DataOutput)
.- Parameters:
in
- the stream to read from- Throws:
EOFException
- if reading is pre-empted by end-of-fileIOException
- if the data cannot be read
-
-
Method Detail
-
toStream
public void toStream(DataOutput out) throws IOException
Serializes this object to a stream in a form suitable for reading bySMSCommand(DataInput)
.- Specified by:
toStream
in interfaceFastSerializable
- Parameters:
out
- the stream to write to- Throws:
IOException
- if an I/O error occurs
-
hasOnlyHeader
public boolean hasOnlyHeader() throws DecodeException
Tests whether the field OnlyHeader has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
setOnlyHeaderPresent
public SMSCommand setOnlyHeaderPresent(boolean flag) throws IllegalStateException
Sets the presence or absence of the field OnlyHeader.- Parameters:
flag
- whether the field should be marked as present- Returns:
- this
- Throws:
IllegalStateException
- if this instance has been marked as read-only
-
hasUserDataHeaderIndicator
public boolean hasUserDataHeaderIndicator() throws DecodeException
Tests whether the field UserDataHeaderIndicator has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
hasStatusReportRequest
public boolean hasStatusReportRequest() throws DecodeException
Tests whether the field StatusReportRequest has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
hasMessageReference
public boolean hasMessageReference() throws DecodeException
Tests whether the field MessageReference has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
setMessageReferencePresent
public SMSCommand setMessageReferencePresent(boolean flag) throws IllegalStateException
Sets the presence or absence of the field MessageReference.- Parameters:
flag
- whether the field should be marked as present- Returns:
- this
- Throws:
IllegalStateException
- if this instance has been marked as read-only
-
hasProtocolId
public boolean hasProtocolId() throws DecodeException
Tests whether the field ProtocolId has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
hasCommandType
public boolean hasCommandType() throws DecodeException
Tests whether the field CommandType has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
setCommandTypePresent
public SMSCommand setCommandTypePresent(boolean flag) throws IllegalStateException
Sets the presence or absence of the field CommandType.- Parameters:
flag
- whether the field should be marked as present- Returns:
- this
- Throws:
IllegalStateException
- if this instance has been marked as read-only
-
hasMessageNumber
public boolean hasMessageNumber() throws DecodeException
Tests whether the field MessageNumber has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
setMessageNumberPresent
public SMSCommand setMessageNumberPresent(boolean flag) throws IllegalStateException
Sets the presence or absence of the field MessageNumber.- Parameters:
flag
- whether the field should be marked as present- Returns:
- this
- Throws:
IllegalStateException
- if this instance has been marked as read-only
-
hasDestinationAddress
public boolean hasDestinationAddress() throws DecodeException
Tests whether the field DestinationAddress has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
hasCommandData
public boolean hasCommandData() throws DecodeException
Tests whether the field CommandData has a value.- Returns:
- whether the field has a value
- Throws:
DecodeException
- if encoded state cannot be decoded
-
checkFieldsSet
public void checkFieldsSet() throws EncodeException
Checks that all mandatory fields are present. Should be called immediately before all calls to encode().- Overrides:
checkFieldsSet
in classSMSTPDU
- Throws:
EncodeException
- if any mandatory field is not present
-
getUserDataHeaderIndicator
public SMSCommand.UserDataHeaderIndicator getUserDataHeaderIndicator() throws DecodeException
Gets the value of whether command data contains a header.- Returns:
- UserDataHeaderIndicator representation of whether command data contains a header
- Throws:
DecodeException
- if encoded state cannot be decoded
-
getStatusReportRequest
public SMSCommand.StatusReportRequest getStatusReportRequest() throws DecodeException
Gets the value of whether the command is requesting a status report.- Returns:
- StatusReportRequest representation of whether the command is requesting a status report
- Throws:
DecodeException
- if encoded state cannot be decoded
-
getMessageReference
public int getMessageReference() throws DecodeException
Gets the value of identifies the command.- Returns:
- int representation of identifies the command
- Throws:
DecodeException
- if encoded state cannot be decoded
-
getProtocolId
public SMSProtocolId getProtocolId() throws DecodeException
Gets the value of identifies the above layer protocol.- Returns:
- SMSProtocolId representation of identifies the above layer protocol
- Throws:
DecodeException
- if encoded state cannot be decoded
-
getCommandType
public int getCommandType() throws DecodeException
Gets the value of the operation to be performed on a SM.- Returns:
- int representation of the operation to be performed on a SM
- Throws:
DecodeException
- if encoded state cannot be decoded
-
getMessageNumber
public int getMessageNumber() throws DecodeException
Gets the value of indicates which SM in the SC to operate on.- Returns:
- int representation of indicates which SM in the SC to operate on
- Throws:
DecodeException
- if encoded state cannot be decoded
-
getDestinationAddress
public SMSAddress getDestinationAddress() throws DecodeException
Gets the value of the destination address.- Returns:
- SMSAddress representation of the destination address
- Throws:
DecodeException
- if encoded state cannot be decoded
-
getCommandData
public byte[] getCommandData() throws DecodeException
Gets the value of the command data.- Returns:
- byte[] representation of the command data
- Throws:
DecodeException
- if encoded state cannot be decoded
-
setUserDataHeaderIndicator
public SMSCommand setUserDataHeaderIndicator(SMSCommand.UserDataHeaderIndicator value) throws IllegalStateException
Sets the value of whether command data contains a header.- Parameters:
value
- UserDataHeaderIndicator representation of whether command data contains a header- Returns:
- this
- Throws:
IllegalStateException
-
setStatusReportRequest
public SMSCommand setStatusReportRequest(SMSCommand.StatusReportRequest value) throws IllegalStateException
Sets the value of whether the command is requesting a status report.- Parameters:
value
- StatusReportRequest representation of whether the command is requesting a status report- Returns:
- this
- Throws:
IllegalStateException
-
setMessageReference
public SMSCommand setMessageReference(int value) throws IllegalStateException
Sets the value of identifies the command.- Parameters:
value
- int representation of identifies the command- Returns:
- this
- Throws:
IllegalStateException
-
setProtocolId
public SMSCommand setProtocolId(SMSProtocolId value) throws IllegalStateException
Sets the value of identifies the above layer protocol.- Parameters:
value
- SMSProtocolId representation of identifies the above layer protocol- Returns:
- this
- Throws:
IllegalStateException
-
setCommandType
public SMSCommand setCommandType(int value) throws IllegalStateException
Sets the value of the operation to be performed on a SM.- Parameters:
value
- int representation of the operation to be performed on a SM- Returns:
- this
- Throws:
IllegalStateException
-
setMessageNumber
public SMSCommand setMessageNumber(int value) throws IllegalStateException
Sets the value of indicates which SM in the SC to operate on.- Parameters:
value
- int representation of indicates which SM in the SC to operate on- Returns:
- this
- Throws:
IllegalStateException
-
setDestinationAddress
public SMSCommand setDestinationAddress(SMSAddress value) throws IllegalStateException
Sets the value of the destination address.- Parameters:
value
- SMSAddress representation of the destination address- Returns:
- this
- Throws:
IllegalStateException
-
setCommandData
public SMSCommand setCommandData(byte[] value) throws IllegalStateException
Sets the value of the command data.- Parameters:
value
- byte[] representation of the command data- Returns:
- this
- Throws:
IllegalStateException
-
copyOf
public static SMSCommand copyOf(SMSCommand from)
Creates a new object of this type, cloning the values of common fields from the given object of any subclass of the same base type.- Parameters:
from
- the object from which to copy- Returns:
- SMSCommand
-
clone
public SMSCommand clone()
Constructs a copy of this object and everything reachable from it.- Specified by:
clone
in interfaceDataObject
- Specified by:
clone
in classAbstractDataObject
- Returns:
- copy of object
-
setReadOnly
public void setReadOnly()
Sets this and all its fields to be immutable.- Specified by:
setReadOnly
in interfaceDataObject
- Overrides:
setReadOnly
in classAbstractDataObject
-
getFieldAccessors
public static FieldAccessor[] getFieldAccessors()
Gets a new array of the accessors for fields of this type.- Returns:
- FieldAccessor[]
-
getFieldsMap
public Map<String,Object> getFieldsMap(boolean withAbsents)
Gets a Map from field-name to field-value for the fields of a sequence. For a field of primitive type, the field-value is boxed. For an absent optional field, the field-value is AbstractFieldsObject.FIELD_ABSENT. For an uninitialised mandatory field, the field-value is AbstractFieldsObject.FIELD_UNINITIALISED. For a field of String type, the encoded form is used if the String cannot be decoded. For a type that represents an OCTET STRING that cannot be decoded, a map from "encodedValue" to the byte array value is returned.- Specified by:
getFieldsMap
in classAbstractFieldsObject
- Parameters:
withAbsents
- whether to put absent optional fields into Map- Returns:
- Map from field-name to field-value
-
encodedIsInvalid
protected boolean encodedIsInvalid()
Determines whether the encoded form is invalid.- Returns:
- boolean
-
getEncodedForm
public byte[] getEncodedForm() throws EncodeException
Gets the encoded form.- Specified by:
getEncodedForm
in classSMSTPDU
- Returns:
- encoded form
- Throws:
EncodeException
- if encoding fails
-
getType
public SMSTPDU.Type getType()
Description copied from class:SMSTPDU
Return the message type of this PDU
-
getContainedLength
public int getContainedLength(byte[] data, int start, int len)
Determines the length of the encoded value that commences at offsetstart
in the givendata
. The value is not fully decoded and might not be decodable. If the encoded value ends with a filling field, then the givenlen
is returned. If the encoded value is so currupt that its length cannot be determined, then0
is returned.- Parameters:
data
- network-encoded datastart
- index into data where value commenceslen
- length in data to be considered- Returns:
- length of encoded value, or 0 if not decodable
- Throws:
NullPointerException
- if data is null
-
encode
protected void encode() throws EncodeException
Computes the encoded form from the decoded form.- Specified by:
encode
in classAbstractLazyEncodedDataObject<byte[]>
- Throws:
EncodeException
- if encoding fails
-
decode
protected void decode() throws DecodeException
Computes the decoded form from the encoded form.- Specified by:
decode
in classAbstractLazyEncodedDataObject<byte[]>
- Throws:
DecodeException
- if decoding fails
-
newInstanceOnlyHeader
public static SMSCommand newInstanceOnlyHeader()
Factory method that creates an instance for representing only a header (no data).- Returns:
- SMSCommand
-
decodeRPUIHeaderCommand
public static SMSCommand decodeRPUIHeaderCommand(byte[] message, int start, int len)
Constructs a new SMSCommand with no data (header only) from the given data. Decoding is deferred until needed.- Parameters:
message
- a bytearray containing the encoded headerstart
- the offset within 'message' to begin decodinglen
- the number of valid bytes after 'offset' to decode (must be at least 1)- Returns:
- SMSCommand
- Throws:
NullPointerException
- if message is nullArrayIndexOutOfBoundsException
- if start or len are out of range
-
decodeRPUIHeaderCommand
public static SMSCommand decodeRPUIHeaderCommand(byte[] message)
Constructs a new SMSCommand with no data (header only) from the given data. Equivalent todecodeRPUIHeaderCommand(message, 0, message.length)
- Parameters:
message
- a bytearray containing the encoded header- Returns:
- SMSCommand
- Throws:
NullPointerException
- if message is null
-
encodeRPUIHeaderCommand
public static byte[] encodeRPUIHeaderCommand(SMSCommand smsCommand) throws EncodeException
Encodes the given SMSCommand for sending as the payload of a SM-RP-UIHeader message.- Parameters:
smsCommand
- the pdu to encode- Returns:
- the encoded form of smsCommand
- Throws:
EncodeException
- if smsCommand is not only a header
-
-