summaryrefslogtreecommitdiff
path: root/src/libgsmd/libgsmd_event.c
blob: b01a8b25d215cb97a5d5f878b0d053017c821e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* libgsmd event demultiplexer handler 
 *
 * (C) 2006-2007 by OpenMoko, Inc.
 * Written by Harald Welte <laforge@openmoko.org>
 * All Rights Reserved
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */ 

#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#include <libgsmd/voicecall.h>
#include <libgsmd/event.h>

#include <gsmd/usock.h>
#include <gsmd/event.h>

#include "lgsm_internals.h"

static lgsm_evt_handler *evt_handlers[__NUM_GSMD_EVT];

int lgsm_evt_handler_register(struct lgsm_handle *lh, int evt_type,
			      lgsm_evt_handler *handler)
{
	if (evt_type >= __NUM_GSMD_EVT)
		return -EINVAL;

	evt_handlers[evt_type] = handler;

	return 0;
}

void lgsm_evt_handler_unregister(struct lgsm_handle *lh, int evt_type)
{
	if (evt_type < __NUM_GSMD_EVT)
		evt_handlers[evt_type] = NULL;
}


static int evt_demux_msghandler(struct lgsm_handle *lh,
		struct gsmd_msg_hdr *gmh)
{
	struct gsmd_evt_auxdata *aux = (struct gsmd_evt_auxdata *) gmh->data;

	if (gmh->len < sizeof(*aux))
		return -EIO;
	
	if (gmh->msg_type != GSMD_MSG_EVENT || 
	    gmh->msg_subtype >= __NUM_GSMD_EVT)
		return -EINVAL;

	switch (gmh->msg_subtype) {
	case GSMD_EVT_NETREG:
		lh->netreg_state = aux->u.netreg.state;
		break;
	}

	if (evt_handlers[gmh->msg_subtype])
		return evt_handlers[gmh->msg_subtype](lh, gmh->msg_subtype, aux);
	else
		return 0;
}

int lgsm_evt_init(struct lgsm_handle *lh)
{
	lh->netreg_state = LGSM_NETREG_ST_NOTREG;
	return lgsm_register_handler(lh, GSMD_MSG_EVENT, &evt_demux_msghandler);
}

void lgsm_evt_exit(struct lgsm_handle *lh)
{
	lgsm_unregister_handler(lh, GSMD_MSG_EVENT);
}
personal git repositories of Harald Welte. Your mileage may vary