Class: Smpp::Pdu::SubmitSm
Overview
Sending an MT message
Constant Summary
Constants inherited from Base
Base::BIND_RECEIVER, Base::BIND_RECEIVER_RESP, Base::BIND_TRANSCEIVER, Base::BIND_TRANSCEIVER_RESP, Base::BIND_TRANSMITTER, Base::BIND_TRANSMITTER_RESP, Base::CANCEL_SM, Base::CANCEL_SM_RESP, Base::DELIVER_SM, Base::DELIVER_SM_RESP, Base::ENQUIRE_LINK, Base::ENQUIRE_LINK_RESP, Base::ESME_RALYBND, Base::ESME_RBINDFAIL, Base::ESME_RCANCELFAIL, Base::ESME_RCNTSUBDL, Base::ESME_RINVBNDSTS, Base::ESME_RINVCMDID, Base::ESME_RINVCMDLEN, Base::ESME_RINVDESTFLAG, Base::ESME_RINVDLNAME, Base::ESME_RINVDSTADR, Base::ESME_RINVDSTNPI, Base::ESME_RINVDSTTON, Base::ESME_RINVESMCLASS, Base::ESME_RINVMSGID, Base::ESME_RINVMSGLEN, Base::ESME_RINVNUMDESTS, Base::ESME_RINVNUMMSGS, Base::ESME_RINVPASWD, Base::ESME_RINVPRTFLG, Base::ESME_RINVREGDLVFLG, Base::ESME_RINVREPFLAG, Base::ESME_RINVSERTYP, Base::ESME_RINVSRCADR, Base::ESME_RINVSRCNPI, Base::ESME_RINVSRCTON, Base::ESME_RINVSUBREP, Base::ESME_RINVSYSID, Base::ESME_RINVSYSTYP, Base::ESME_RMSGQFUL, Base::ESME_ROK, Base::ESME_RREPLACEFAIL, Base::ESME_RSUBMITFAIL, Base::ESME_RSYSERR, Base::ESME_RTHROTTLED, Base::GENERIC_NACK, Base::PROTOCOL_VERSION, Base::QUERY_SM, Base::QUERY_SM_RESP, Base::REPLACE_SM, Base::REPLACE_SM_RESP, Base::SUBMIT_MULTI, Base::SUBMIT_MULTI_RESP, Base::SUBMIT_SM, Base::SUBMIT_SM_RESP, Base::UNBIND, Base::UNBIND_RESP
Instance Attribute Summary collapse
-
#data_coding ⇒ Object
readonly
Returns the value of attribute data_coding.
-
#dest_addr_npi ⇒ Object
readonly
Returns the value of attribute dest_addr_npi.
-
#dest_addr_ton ⇒ Object
readonly
Returns the value of attribute dest_addr_ton.
-
#destination_addr ⇒ Object
readonly
Returns the value of attribute destination_addr.
-
#esm_class ⇒ Object
readonly
Returns the value of attribute esm_class.
-
#priority_flag ⇒ Object
readonly
Returns the value of attribute priority_flag.
-
#protocol_id ⇒ Object
readonly
Returns the value of attribute protocol_id.
-
#registered_delivery ⇒ Object
readonly
Returns the value of attribute registered_delivery.
-
#replace_if_present_flag ⇒ Object
readonly
Returns the value of attribute replace_if_present_flag.
-
#schedule_delivery_time ⇒ Object
readonly
Returns the value of attribute schedule_delivery_time.
-
#service_type ⇒ Object
readonly
Returns the value of attribute service_type.
-
#short_message ⇒ Object
readonly
Returns the value of attribute short_message.
-
#sm_default_msg_id ⇒ Object
readonly
Returns the value of attribute sm_default_msg_id.
-
#sm_length ⇒ Object
readonly
Returns the value of attribute sm_length.
-
#source_addr ⇒ Object
readonly
Returns the value of attribute source_addr.
-
#source_addr_npi ⇒ Object
readonly
Returns the value of attribute source_addr_npi.
-
#source_addr_ton ⇒ Object
readonly
Returns the value of attribute source_addr_ton.
-
#udh ⇒ Object
readonly
Returns the value of attribute udh.
-
#validity_period ⇒ Object
readonly
Returns the value of attribute validity_period.
Attributes inherited from Base
#body, #command_id, #command_status, #data, #sequence_number
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(source_addr, destination_addr, short_message, options = {}, seq = nil) ⇒ SubmitSm
constructor
Note: short_message (the SMS body) must be in iso-8859-1 format.
-
#to_human ⇒ Object
some special formatting is needed for SubmitSm PDUs to show the actual message content.
Methods inherited from Base
create, #fixed_int, handles_cmd, #logger, next_sequence_number, #next_sequence_number
Constructor Details
#initialize(source_addr, destination_addr, short_message, options = {}, seq = nil) ⇒ SubmitSm
Note: short_message (the SMS body) must be in iso-8859-1 format
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/smpp/pdu/submit_sm.rb', line 11 def initialize(source_addr, destination_addr, , ={}, seq = nil) @msg_body = @udh = [:udh] @service_type = [:service_type]? [:service_type] :'' @source_addr_ton = [:source_addr_ton]?[:source_addr_ton]:0 # network specific @source_addr_npi = [:source_addr_npi]?[:source_addr_npi]:1 # unknown @source_addr = source_addr @dest_addr_ton = [:dest_addr_ton]?[:dest_addr_ton]:1 # international @dest_addr_npi = [:dest_addr_npi]?[:dest_addr_npi]:1 # unknown @destination_addr = destination_addr @esm_class = [:esm_class]?[:esm_class]:0 # default smsc mode @protocol_id = [:protocol_id]?[:protocol_id]:0 @priority_flag = [:priority_flag]?[:priority_flag]:1 @schedule_delivery_time = [:schedule_delivery_time]?[:schedule_delivery_time]:'' @validity_period = [:validity_period]?[:validity_period]:'' @registered_delivery = [:registered_delivery]?[:registered_delivery]:1 # we want delivery notifications @replace_if_present_flag = [:replace_if_present_flag]?[:replace_if_present_flag]:0 @data_coding = [:data_coding]?[:data_coding]:3 # iso-8859-1 @sm_default_msg_id = [:sm_default_msg_id]?[:sm_default_msg_id]:0 = payload = @udh ? @udh + : @sm_length = payload.length # craft the string/byte buffer pdu_body = sprintf("%s\0%c%c%s\0%c%c%s\0%c%c%c%s\0%s\0%c%c%c%c%c%s", @service_type, @source_addr_ton, @source_addr_npi, @source_addr, @dest_addr_ton, @dest_addr_npi, @destination_addr, @esm_class, @protocol_id, @priority_flag, @schedule_delivery_time, @validity_period, @registered_delivery, @replace_if_present_flag, @data_coding, @sm_default_msg_id, @sm_length, payload) seq ||= next_sequence_number super(SUBMIT_SM, 0, seq, pdu_body) end |
Instance Attribute Details
#data_coding ⇒ Object (readonly)
Returns the value of attribute data_coding.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def data_coding @data_coding end |
#dest_addr_npi ⇒ Object (readonly)
Returns the value of attribute dest_addr_npi.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def dest_addr_npi @dest_addr_npi end |
#dest_addr_ton ⇒ Object (readonly)
Returns the value of attribute dest_addr_ton.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def dest_addr_ton @dest_addr_ton end |
#destination_addr ⇒ Object (readonly)
Returns the value of attribute destination_addr.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def destination_addr @destination_addr end |
#esm_class ⇒ Object (readonly)
Returns the value of attribute esm_class.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def esm_class @esm_class end |
#priority_flag ⇒ Object (readonly)
Returns the value of attribute priority_flag.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def priority_flag @priority_flag end |
#protocol_id ⇒ Object (readonly)
Returns the value of attribute protocol_id.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def protocol_id @protocol_id end |
#registered_delivery ⇒ Object (readonly)
Returns the value of attribute registered_delivery.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def registered_delivery @registered_delivery end |
#replace_if_present_flag ⇒ Object (readonly)
Returns the value of attribute replace_if_present_flag.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def replace_if_present_flag @replace_if_present_flag end |
#schedule_delivery_time ⇒ Object (readonly)
Returns the value of attribute schedule_delivery_time.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def schedule_delivery_time @schedule_delivery_time end |
#service_type ⇒ Object (readonly)
Returns the value of attribute service_type.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def service_type @service_type end |
#short_message ⇒ Object (readonly)
Returns the value of attribute short_message.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def end |
#sm_default_msg_id ⇒ Object (readonly)
Returns the value of attribute sm_default_msg_id.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def sm_default_msg_id @sm_default_msg_id end |
#sm_length ⇒ Object (readonly)
Returns the value of attribute sm_length.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def sm_length @sm_length end |
#source_addr ⇒ Object (readonly)
Returns the value of attribute source_addr.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def source_addr @source_addr end |
#source_addr_npi ⇒ Object (readonly)
Returns the value of attribute source_addr_npi.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def source_addr_npi @source_addr_npi end |
#source_addr_ton ⇒ Object (readonly)
Returns the value of attribute source_addr_ton.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def source_addr_ton @source_addr_ton end |
#udh ⇒ Object (readonly)
Returns the value of attribute udh.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def udh @udh end |
#validity_period ⇒ Object (readonly)
Returns the value of attribute validity_period.
4 5 6 |
# File 'lib/smpp/pdu/submit_sm.rb', line 4 def validity_period @validity_period end |
Class Method Details
.from_wire_data(seq, status, body) ⇒ Object
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/smpp/pdu/submit_sm.rb', line 53 def self.from_wire_data(seq, status, body) = {} [:service_type], [:source_addr_ton], [:source_addr_npi], source_addr, [:dest_addr_ton], [:dest_addr_npi], destination_addr, [:esm_class], [:protocol_id], [:priority_flag], [:schedule_delivery_time], [:validity_period], [:registered_delivery], [:replace_if_present_flag], [:data_coding], [:sm_default_msg_id], [:sm_length], = body.unpack('Z*CCZ*CCZ*CCCZ*Z*CCCCCa*') Smpp::Base.logger.debug "DeliverSM with source_addr=#{source_addr}, destination_addr=#{destination_addr}" new(source_addr, destination_addr, , , seq) end |
Instance Method Details
#to_human ⇒ Object
some special formatting is needed for SubmitSm PDUs to show the actual message content
47 48 49 50 51 |
# File 'lib/smpp/pdu/submit_sm.rb', line 47 def to_human # convert header (4 bytes) to array of 4-byte ints a = @data.to_s.unpack('N4') sprintf("(%22s) len=%3d cmd=%8s status=%1d seq=%03d (%s)", self.class.to_s[11..-1], a[0], a[1].to_s(16), a[2], a[3], @msg_body[0..30]) end |