aboutsummaryrefslogtreecommitdiffstats
path: root/src/GSMLURequest.st
diff options
context:
space:
mode:
Diffstat (limited to 'src/GSMLURequest.st')
-rw-r--r--src/GSMLURequest.st60
1 files changed, 60 insertions, 0 deletions
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.
+ ]
+]