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
|
/* DVB CI Application Manager */
#include <lib/base/eerror.h>
#include <lib/dvb_ci/dvbci_appmgr.h>
#include <lib/dvb_ci/dvbci_ui.h>
eDVBCIApplicationManagerSession::eDVBCIApplicationManagerSession(eDVBCISlot *tslot)
{
slot = tslot;
slot->setAppManager(this);
}
eDVBCIApplicationManagerSession::~eDVBCIApplicationManagerSession()
{
slot->setAppManager(NULL);
}
int eDVBCIApplicationManagerSession::receivedAPDU(const unsigned char *tag,const void *data, int len)
{
eDebugNoNewLine("SESSION(%d)/APP %02x %02x %02x: ", session_nb, tag[0], tag[1], tag[2]);
for (int i=0; i<len; i++)
eDebugNoNewLine("%02x ", ((const unsigned char*)data)[i]);
eDebug("");
if ((tag[0]==0x9f) && (tag[1]==0x80))
{
switch (tag[2])
{
case 0x21:
{
int dl;
eDebug("application info:");
eDebug(" len: %d", len);
eDebug(" application_type: %d", ((unsigned char*)data)[0]);
eDebug(" application_manufacturer: %02x %02x", ((unsigned char*)data)[2], ((unsigned char*)data)[1]);
eDebug(" manufacturer_code: %02x %02x", ((unsigned char*)data)[4],((unsigned char*)data)[3]);
eDebugNoNewLine(" menu string: ");
dl=((unsigned char*)data)[5];
if ((dl + 6) > len)
{
eDebug("warning, invalid length (%d vs %d)", dl+6, len);
dl=len-6;
}
char str[dl + 1];
memcpy(str, ((char*)data) + 6, dl);
str[dl] = '\0';
for (int i = 0; i < dl; ++i)
eDebugNoNewLine("%c", ((unsigned char*)data)[i+6]);
eDebug("");
eDVBCI_UI::getInstance()->setAppName(slot->getSlotID(), str);
eDVBCI_UI::getInstance()->setState(slot->getSlotID(), 2);
break;
}
default:
eDebug("unknown APDU tag 9F 80 %02x", tag[2]);
break;
}
}
return 0;
}
int eDVBCIApplicationManagerSession::doAction()
{
switch (state)
{
case stateStarted:
{
const unsigned char tag[3]={0x9F, 0x80, 0x20}; // application manager info e sendAPDU(tag);
sendAPDU(tag);
state=stateFinal;
return 1;
}
case stateFinal:
eDebug("in final state.");
wantmenu = 0;
if (wantmenu)
{
eDebug("wantmenu: sending Tenter_menu");
const unsigned char tag[3]={0x9F, 0x80, 0x22}; // Tenter_menu
sendAPDU(tag);
wantmenu=0;
return 0;
} else
return 0;
default:
return 0;
}
}
int eDVBCIApplicationManagerSession::startMMI()
{
eDebug("in appmanager -> startmmi()");
const unsigned char tag[3]={0x9F, 0x80, 0x22}; // Tenter_menu
sendAPDU(tag);
return 0;
}
|