aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/SocketMMI/src/socket_mmi.cpp
blob: 9a69de37968ab3fb68b1119c71feb9d9578d7078 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#include "socket_mmi.h"

#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>

#include <lib/base/ebase.h>
#include <lib/base/init.h>
#include <lib/base/init_num.h>
#include <lib/base/eerror.h>
#include <lib/base/estring.h>
#include <lib/dvb_ci/dvbci_session.h>

#define MAX_LENGTH_BYTES 4
#define MIN_LENGTH_BYTES 1
//#define MMIDEBUG

eSocket_UI *eSocket_UI::instance;

eSocket_UI::eSocket_UI()
	:eMMI_UI(1)
{
	ASSERT(!instance);
	instance = this;
	CONNECT(handler.mmi_progress, eMMI_UI::processMMIData);
}

eSocket_UI *eSocket_UI::getInstance()
{
	return instance;
}

void eSocket_UI::setInit(int)
{
	//NYI
}

void eSocket_UI::setReset(int)
{
	//NYI
}

int eSocket_UI::startMMI(int)
{
	unsigned char buf[]={0x9F,0x80,0x22,0x00};  // ENTER MMI
	if (handler.send_to_mmisock( buf, 4 ))
	{
		eDebug("eSocket_UI::startMMI failed");
		return -1;
	}
	return 0;
}

int eSocket_UI::stopMMI(int)
{
	unsigned char buf[]={0x9F,0x88,0x00,0x00};  // CLOSE MMI
	if (handler.send_to_mmisock( buf, 4 ))
	{
		eDebug("eSocket_UI::stopMMI failed");
		return -1;
	}
	return 0;
}

int eSocket_UI::answerMenu(int, int answer)
{
	unsigned char data[]={0x9f,0x88,0x0B,0x01,0x00};
	data[4] = answer & 0xff;
	if (handler.send_to_mmisock( data, 5 ))
	{
		eDebug("eSocket_UI::answerMenu failed");
		return -1;
	}
	return 0;
}

int eSocket_UI::answerEnq(int, char *answer)
{
	unsigned int len = strlen(answer);
	unsigned char data[4+len+MAX_LENGTH_BYTES];
	data[0] = 0x9f;
	data[1] = 0x88;
	data[2] = 0x08;
	int LengthBytes=eDVBCISession::buildLengthField(data+3, len+1);
	data[3+LengthBytes] = 0x01;
	memcpy(data+4+LengthBytes, answer, len);
	if (handler.send_to_mmisock( data, len+4+LengthBytes ))
	{
		eDebug("eSocket_UI::answerEnq failed");
		return -1;
	}
	return 0;
}

int eSocket_UI::cancelEnq(int)
{
	unsigned char data[]={0x9f,0x88,0x08,0x01,0x00};
	if (handler.send_to_mmisock( data, 5 ))
	{
		eDebug("eSocket_UI::cancelEnq failed");
		return -1;
	}
	return 0;
}

int eSocket_UI::getState(int)
{
	return handler.connected() ? 2 : 0;
}

int eSocket_UI::getMMIState(int)
{
	return handler.connected();
}

//FIXME: correct "run/startlevel"
eAutoInitP0<eSocket_UI> init_socketui(eAutoInitNumbers::rc, "Socket MMI");

int eSocketMMIHandler::send_to_mmisock( void* buf, size_t len)
{
	ssize_t ret = write(connfd, buf, len);
	if ( ret < 0 )
		eDebug("[eSocketMMIHandler] write (%m)");
	else if ( (size_t)ret != len )
		eDebug("[eSocketMMIHandler] only %zd bytes sent.. %zu bytes should be sent", ret, len );
	else
		return 0;
	return ret;
}

eSocketMMIHandler::eSocketMMIHandler()
	:buffer(512), connfd(-1), sockname("/tmp/mmi.socket"), name(0)
{
	memset(&servaddr, 0, sizeof(struct sockaddr_un));
	servaddr.sun_family = AF_UNIX;
	unlink(sockname);
	strcpy(servaddr.sun_path, sockname);
	clilen = sizeof(servaddr.sun_family) + strlen(servaddr.sun_path);
	if ((listenfd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
	{
		eDebug("[eSocketMMIHandler] socket (%m)");
		return;
	}

	int val = 1;
	if (setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val)) == -1)
		eDebug("[eSocketMMIHandler] SO_REUSEADDR (%m)");
	else if ((val = fcntl(listenfd, F_GETFL)) == -1)
		eDebug("[eSocketMMIHandler] F_GETFL (%m)");
	else if (fcntl(listenfd, F_SETFL, val | O_NONBLOCK) == -1)
		eDebug("[eSocketMMIHandler] F_SETFL (%m)");
	else if (bind(listenfd, (struct sockaddr *) &servaddr, clilen) == -1)
		eDebug("[eSocketMMIHandler] bind (%m)");
	else if (listen(listenfd, 0) == -1)
		eDebug("[eSocketMMIHandler] listen (%m)");
	else {
		listensn = eSocketNotifier::create( eApp, listenfd, POLLIN );
		listensn->start();
		CONNECT( listensn->activated, eSocketMMIHandler::listenDataAvail );
		eDebug("[eSocketMMIHandler] created successfully");
		return;
	}

	close(listenfd);
	listenfd = -1;
}

#define CMD_SET_NAME "\x01\x02\x03\x04"

void eSocketMMIHandler::listenDataAvail(int what)
{
	if (what & POLLIN) {
		if ( connsn ) {
			eDebug("[eSocketMMIHandler] connsn != NULL");
			return;
		}
		connfd = accept(listenfd, (struct sockaddr *) &servaddr, (socklen_t *) &clilen);
		if (connfd == -1) {
			eDebug("[eSocketMMIHandler] accept (%m)");
			return;
		}

		int val;
		if ((val = fcntl(connfd, F_GETFL)) == -1)
			eDebug("[eSocketMMIHandler] F_GETFL (%m)");
		else if (fcntl(connfd, F_SETFL, val | O_NONBLOCK) == -1)
			eDebug("[eSocketMMIHandler] F_SETFL (%m)");
		else {
			connsn = eSocketNotifier::create( eApp, connfd, POLLIN|POLLHUP|POLLERR );
			CONNECT( connsn->activated, eSocketMMIHandler::connDataAvail );
			return;
		}

		close(connfd);
		connfd = -1;
	}
}

void eSocketMMIHandler::connDataAvail(int what)
{
	if (what & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
		char msgbuffer[4096];
		ssize_t length = read(connfd, msgbuffer, sizeof(msgbuffer));

		if (length == -1) {
			if (errno != EAGAIN && errno != EINTR && errno != EBUSY) {
				eDebug("[eSocketMMIHandler] read (%m)");
				what |= POLLERR;
			}
		} else if (length == 0){
			what |= POLLHUP;
		} else if ((!name) && (length > 4) && (!memcmp(msgbuffer, CMD_SET_NAME, 4))) {
			length -= 4;
			delete [] name;
			name = new char[length + 1];
			memcpy(name, &msgbuffer[4], length);
			name[length] = '\0';
			eDebug("MMI NAME %s", name);
		} else {
			int len = length;
			unsigned char *data = (unsigned char*)msgbuffer;
			int clear = 1;
	// If a new message starts, then the previous message
	// should already have been processed. Otherwise the
	// previous message was incomplete and should therefore
	// be deleted.
			if ((len >= 1) && (data[0] != 0x9f))
				clear = 0;
			if ((len >= 2) && (data[1] != 0x88))
				clear = 0;
			if (clear)
			{
				buffer.clear();
#ifdef MMIDEBUG
				eDebug("clear buffer");
#endif
			}
#ifdef MMIDEBUG
			eDebug("Put to buffer:");
			for (int i=0; i < len; ++i)
				eDebugNoNewLine("%02x ", data[i]);
			eDebug("\n--------");
#endif
			buffer.write( data, len );

			while ( buffer.size() >= (3 + MIN_LENGTH_BYTES) )
			{
				unsigned char tmp[3+MAX_LENGTH_BYTES];
				buffer.peek(tmp, 3+MIN_LENGTH_BYTES);
				if (tmp[0] != 0x9f || tmp[1] != 0x88)
				{
					buffer.skip(1);
#ifdef MMIDEBUG
					eDebug("skip %02x", tmp[0]);
#endif
					continue;
				}
				if (tmp[3] & 0x80) {
					int peekLength = (tmp[3] & 0x7f) + 4;
					if (buffer.size() < peekLength)
						continue;
					buffer.peek(tmp, peekLength);
				}
				int size=0;
				int LengthBytes=eDVBCISession::parseLengthField(tmp+3, size);
				int messageLength = 3+LengthBytes+size;
				if ( buffer.size() >= messageLength )
				{
					unsigned char dest[messageLength];
					buffer.read(dest, messageLength);
#ifdef MMIDEBUG
					eDebug("dump mmi:");
					for (int i=0; i < messageLength; ++i)
						eDebugNoNewLine("%02x ", dest[i]);
					eDebug("\n--------");
#endif
					/*emit*/ mmi_progress(0, dest, (const void*)(dest+3+LengthBytes), messageLength-3-LengthBytes);
				}
			}
		}
	}

	if (what & (POLLERR | POLLHUP)) {
		eDebug("pollhup/pollerr");
		closeConn();
		/*emit*/ mmi_progress(0, (const unsigned char*)"\x9f\x88\x00", "\x00", 1);
	}
}

void eSocketMMIHandler::closeConn()
{
	if ( connfd != -1 )
	{
		close(connfd);
		connfd=-1;
	}
	connsn=0;
	if ( name )
	{
		delete [] name;
		name=0;
	}
}

eSocketMMIHandler::~eSocketMMIHandler()
{
	closeConn();
	unlink(sockname);
}

extern "C" {

static PyObject *
socketmmi_get_socket_state_changed_cb_list(PyObject *self)
{
	return eSocket_UI::getInstance()->socketStateChanged.get();
}

static PyObject *
socketmmi_set_init(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	eSocket_UI::getInstance()->setInit(slot);
	Py_RETURN_NONE;
}

static PyObject *
socketmmi_set_reset(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	eSocket_UI::getInstance()->setReset(slot);
	Py_RETURN_NONE;
}

static PyObject *
socketmmi_available_mmi(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	return PyInt_FromLong(eSocket_UI::getInstance()->availableMMI(slot));
}

static PyObject *
socketmmi_get_mmi_screen(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	return eSocket_UI::getInstance()->getMMIScreen(slot);
}

static PyObject *
socketmmi_start_mmi(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	return PyInt_FromLong(eSocket_UI::getInstance()->startMMI(slot));
}

static PyObject *
socketmmi_stop_mmi(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	return PyInt_FromLong(eSocket_UI::getInstance()->stopMMI(slot));
}

static PyObject *
socketmmi_answer_menu(PyObject *self, PyObject *args)
{
	int slot, answer;
	if (PyTuple_Size(args) != 2 || !PyArg_ParseTuple(args, "ii", &slot, &answer))
		return NULL;
	return PyInt_FromLong(eSocket_UI::getInstance()->answerMenu(slot, answer));
}

static PyObject *
socketmmi_answer_enq(PyObject *self, PyObject *args)
{
	int slot;
	char *answer;
	if (PyTuple_Size(args) != 2 || !PyArg_ParseTuple(args, "is", &slot, &answer))
		return NULL;
	return PyInt_FromLong(eSocket_UI::getInstance()->answerEnq(slot, answer));
}

static PyObject *
socketmmi_cancel_enq(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	return PyInt_FromLong(eSocket_UI::getInstance()->cancelEnq(slot));
}

static PyObject *
socketmmi_get_state(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	return PyInt_FromLong(eSocket_UI::getInstance()->getState(slot));
}

static PyObject *
socketmmi_get_mmi_state(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	return PyInt_FromLong(eSocket_UI::getInstance()->getMMIState(slot));
}

static PyObject *
socketmmi_get_name(PyObject *self, PyObject *args)
{
	int slot;
	if (PyTuple_Size(args) != 1 || !PyArg_ParseTuple(args, "i", &slot))
		return NULL;
	return PyString_FromString(eSocket_UI::getInstance()->getName(slot));
}

static PyMethodDef module_methods[] = {
	{"getSocketStateChangedCallbackList", (PyCFunction)socketmmi_get_socket_state_changed_cb_list, METH_NOARGS,
	 "get socket state change callback list"
	},
	{"setInit", (PyCFunction)socketmmi_set_init, METH_VARARGS,
	 "set init"
	},
	{"setReset", (PyCFunction)socketmmi_set_reset, METH_VARARGS,
	 "set reset"
	},
	{"availableMMI", (PyCFunction)socketmmi_available_mmi, METH_VARARGS,
	 "available mmi"
	},
	{"getMMIScreen", (PyCFunction)socketmmi_get_mmi_screen, METH_VARARGS,
	 "get mmi screen"
	},
	{"startMMI", (PyCFunction)socketmmi_start_mmi, METH_VARARGS,
	 "start mmi"
	},
	{"stopMMI", (PyCFunction)socketmmi_stop_mmi, METH_VARARGS,
	 "start mmi"
	},
	{"answerMenu", (PyCFunction)socketmmi_answer_menu, METH_VARARGS,
	 "answer menu"
	},
	{"answerEnq", (PyCFunction)socketmmi_answer_enq, METH_VARARGS,
	 "answer enq"
	},
	{"cancelEnq", (PyCFunction)socketmmi_cancel_enq, METH_VARARGS,
	 "cancel enq"
	},
	{"getState", (PyCFunction)socketmmi_get_state, METH_VARARGS,
	 "get state of socket"
	},
	{"getMMIState", (PyCFunction)socketmmi_get_mmi_state, METH_VARARGS,
	 "get state of mmi"
	},
	{"getName", (PyCFunction)socketmmi_get_name, METH_VARARGS,
	 "get name of socket user"
	},
	{NULL, NULL, 0, NULL}   /* Sentinel */
};

PyMODINIT_FUNC
initsocketmmi(void)
{
	Py_InitModule3("socketmmi", module_methods,
		"Module that implements mmi via unix domain socket.");
}
};