smalltalk
/
osmo-st-smpp
Archived
1
0
Fork 0

connection: Dispatch on the message body we have received

This commit is contained in:
Holger Hans Peter Freyther 2014-06-17 21:54:18 +02:00
parent c9cb3d5cab
commit 244f9b682b
3 changed files with 58 additions and 10 deletions

29
connection/Extensions.st Normal file
View File

@ -0,0 +1,29 @@
"
(C) 2014 by Holger Hans Peter Freyther
All Rights Reserved
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"
SMPPEnquireLink extend [
connectionDispatchOn: aConnection with: aMessage [
aConnection respondToEnquire: aMessage
]
]
SMPPBindTransceiverResponse extend [
connectionDispatchOn: aConnection with: aMessage [
aConnection receviedResponse: aMessage
]
]

View File

@ -38,15 +38,11 @@ Osmo.OsmoStreamSocketBase subclass: SMPPConnection [
]
scheduleBindTrx [
| header body seq data |
seq := nextSeq.
nextSeq := nextSeq + 1.
| header body |
header := SMPPPDUHeader new
commandId: SMPPBindTransceiver messageType;
commandStatus: 0;
sequenceNumber: seq;
yourself.
body := SMPPBindTransceiver new
systemId: systemId;
@ -58,11 +54,18 @@ Osmo.OsmoStreamSocketBase subclass: SMPPConnection [
addressRange: #[];
yourself.
data := (SMPPMessage new
self send: (SMPPMessage new
header: header;
body: body;
toMessage) asByteArray.
writeQueue nextPut: data.
body: body)
]
send: aMessage [
| seq |
seq := nextSeq.
nextSeq := nextSeq + 1.
aMessage header sequenceNumber: seq.
writeQueue nextPut: aMessage toMessage asByteArray
]
connect [
@ -84,11 +87,26 @@ Osmo.OsmoStreamSocketBase subclass: SMPPConnection [
[
msg := SMPPMessage readFrom: socket.
msg inspect.
msg body connectionDispatchOn: self with: msg
] on: Error do: [:e |
e
inspect;
pass
]
]
respondToEnquire: aMessage [
| msg |
msg := SMPPMessage new
header: (SMPPPDUHeader new
commandId: SMPPBodyBase enquireLinkResp;
commandStatus: 0;
sequenceNumber: aMessage header sequenceNumber;
yourself);
body: #[].
self send: msg
]
receviedResponse: aMessage [
]
]

View File

@ -41,6 +41,7 @@
<filein>codec/SMPPMessage.st</filein>
<filein>connection/SMPPConnection.st</filein>
<filein>connection/Extensions.st</filein>
<test>
<sunit>Osmo.SMPPPDUHeaderTest</sunit>