blob: 14707f5fabb76f78072241c42110eaaa4ed46b62 [file] [log] [blame]
Jacob Erlbeck53670862015-05-12 17:54:33 +02001/* gprs_ms_storage.h
2 *
3 * Copyright (C) 2015 by Sysmocom s.f.m.c. GmbH
4 * Author: Jacob Erlbeck <jerlbeck@sysmocom.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#pragma once
22
23#include "gprs_ms.h"
24#include "cxx_linuxlist.h"
Jacob Erlbeck0e50ce62015-05-21 16:58:22 +020025#include "tbf.h"
Jacob Erlbeck53670862015-05-12 17:54:33 +020026#include <stdint.h>
27#include <stddef.h>
28
Jacob Erlbeck17214bb2015-06-02 14:06:12 +020029struct BTS;
30
Jacob Erlbeck53670862015-05-12 17:54:33 +020031class GprsMsStorage : public GprsMs::Callback {
32public:
Jacob Erlbeck17214bb2015-06-02 14:06:12 +020033 GprsMsStorage(BTS *bts);
Jacob Erlbeck53670862015-05-12 17:54:33 +020034 ~GprsMsStorage();
35
Jacob Erlbeckc362df22016-01-20 22:02:19 +010036 void cleanup();
37
Jacob Erlbeck53670862015-05-12 17:54:33 +020038 virtual void ms_idle(class GprsMs *);
39 virtual void ms_active(class GprsMs *);
40
41 GprsMs *get_ms(uint32_t tlli, uint32_t old_tlli = 0, const char *imsi = 0) const;
Jacob Erlbeckcb1b4942015-06-19 10:59:58 +020042 GprsMs *create_ms();
Jacob Erlbeck53670862015-05-12 17:54:33 +020043
Jacob Erlbeckf47f68a2015-06-04 10:23:24 +020044 const LListHead<GprsMs>& ms_list() const {return m_list;}
Jacob Erlbeck53670862015-05-12 17:54:33 +020045private:
Jacob Erlbeck17214bb2015-06-02 14:06:12 +020046 BTS *m_bts;
Jacob Erlbeck53670862015-05-12 17:54:33 +020047 LListHead<GprsMs> m_list;
48};