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

gsm: Split out the LURequest to start with GSM LU requests.

This commit is contained in:
Holger Hans Peter Freyther 2012-03-30 09:04:46 +02:00
parent eff4c24e8a
commit e141dd4568
4 changed files with 62 additions and 5 deletions

View File

@ -8,6 +8,7 @@ Eval [
fileIn: 'src/BSCSCCPHandler.st';
fileIn: 'src/GSMProcessor.st';
fileIn: 'src/GSMMOCall.st';
fileIn: 'src/GSMLURequest.st';
fileIn: 'src/BSCIPAConnection.st';
fileIn: 'src/MSC.st';
fileIn: 'src/SIPCall.st'.

View File

@ -13,6 +13,7 @@
<filein>src/BSCSCCPHandler.st</filein>
<filein>src/GSMProcessor.st</filein>
<filein>src/GSMMOCall.st</filein>
<filein>src/GSMLURequest.st</filein>
<filein>src/BSCIPAConnection.st</filein>
<filein>src/MSC.st</filein>
<filein>src/SIPCall.st</filein>

60
src/GSMLURequest.st Normal file
View File

@ -0,0 +1,60 @@
"
(C) 2012 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/>.
"
PackageLoader
fileInPackage: 'OsmoCore';
fileInPackage: 'OsmoGSM'.
OsmoGSM.GSM48LURequest extend [
openTransactionOn: aCon sapi: aSapi [
| tran |
<category: '*-OsmoMSC-GSM'>
'foo' printNl.
tran := (GSMLURequest on: aSapi with: self ti)
con: aCon;
yourself.
aCon addTransaction: tran.
tran start: self.
]
]
GSMTransaction subclass: GSMLURequest [
| timeout |
<category: 'OsmoMSC-GSM'>
<comment: 'I handle LU requests and do things. I am being written before
the actual code'>
initialize [
<category: 'creation'>
]
start: aCCMessage [
<category: 'start'>
aCCMessage inspect.
timeout := Osmo.TimerScheduler instance
scheduleInSeconds: 5 block: [self timeOut].
]
timeOut [
self logError: 'GSMLURequest(srcref:%1) timeout.' % {con srcRef} area: #bsc.
con removeTransaction: self.
]
]

View File

@ -125,11 +125,6 @@ GSM transaction on a given SAPI'>
]
]
GSMTransaction subclass: GSMLURequest [
<category: 'OsmoMSC-GSM'>
<comment: 'I handle a Location Updating Request'>
]
OsmoGSM.SCCPConnectionBase subclass: GSMProcessor [
| transactions state endp connId mgcp_trans |