aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-03-30 09:04:46 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-03-30 09:04:46 +0200
commite141dd456888077ad251c3201fc093182debd96b (patch)
tree081e52240ac4d350b66e8be0c1f5f6cdf27d92f0
parenteff4c24e8af0644c33a4a5290c29b0d46dbb8322 (diff)
gsm: Split out the LURequest to start with GSM LU requests.
-rw-r--r--Start.st1
-rw-r--r--package.xml1
-rw-r--r--src/GSMLURequest.st60
-rw-r--r--src/GSMProcessor.st5
4 files changed, 62 insertions, 5 deletions
diff --git a/Start.st b/Start.st
index 81faa8e..c87d4b7 100644
--- a/Start.st
+++ b/Start.st
@@ -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'.
diff --git a/package.xml b/package.xml
index cda13a3..c66fd94 100644
--- a/package.xml
+++ b/package.xml
@@ -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>
diff --git a/src/GSMLURequest.st b/src/GSMLURequest.st
new file mode 100644
index 0000000..0e4705b
--- /dev/null
+++ b/src/GSMLURequest.st
@@ -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.
+ ]
+]
diff --git a/src/GSMProcessor.st b/src/GSMProcessor.st
index d486a6a..e41b498 100644
--- a/src/GSMProcessor.st
+++ b/src/GSMProcessor.st
@@ -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 |