I want to intercept an incoming phone call, then before it is answered I want to send out and receive some UDP packets.I have got all three of these areas of functionality working successfully in isolation but when I try to combine them together I am getting some problems (I'm using the simulator) which seem to indicate its not possible, at least with the default setup, to have simultaneous data and telephony connectivity.
The code is (all ret codes are returning success):
boolean ShapeApp::onEvent(...)
{
...
case EVT_APP_START:
{
RegisterForPhoneCallEventNotifications(pMe);
...
void ShapeApp::RegisterForPhoneCallEventNotifications(ShapeApp* pMe)
{
LISTENER_Init(&m_TelephoneModelListener, PhoneEventCallback, pMe);
int ret = IModel_AddListener(m_pITelephoneModel, &m_TelephoneModelListener);
}
void ShapeApp::PhoneEventCallback(ShapeApp* pMe, ModelEvent* pModelEvent)
{
AEETCallEvent *pCallEvent = (AEETCallEvent*) pModelEvent;
if (pCallEvent && (AEET_EVENT_CALL_INCOM == pCallEvent->evCode))
{
STRCPY(pMe->m_IncomingCallNumber, pTCallEventData->number.buf);
TryToSendUDPPacket(pMe);
}
}
void ShapeApp::TryToSendUDPPacket(ShapeApp* pMe)
{
pMe->m_SockAddr.wFamily = AEE_AF_INET;
pMe->m_SockAddr.inet.port = HTONS(21);
INET_PTON(pMe->m_SockAddr.wFamily, "127.0.0.1", &(pMe->m_SockAddr.inet.addr));
int ret = ISHELL_CreateInstance(pMe->m_pIShell, AEECLSID_SockPort, (void**)&(pMe->m_pISendSockPort));
ret = ISockPort_OpenEx(pMe->m_pISendSockPort, AEE_AF_INET, AEE_SOCKPORT_DGRAM, 0);
uint8 strLen = STRLEN(pMe->m_IncomingCallNumber);
ret = ISockPort_SendTo(pMe->m_pISendSockPort, pMe->m_IncomingCallNumber, strLen, 0, &pMe->m_SockAddr);
if (AEE_NET_WOULDBLOCK == ret) {
ISockPort_WriteableEx(pMe->m_pISendSockPort, &pMe->m_SendToCallback, TryToSendUDPPacket, pMe);
return;
}
if (AEE_NET_ERROR == ret) {
ret = ISockPort_GetLastError(pMe->m_pISendSockPort);
// ...
}
}
When running the simulator I use the Tapi tool to simulate an incoming call to the device and so PhoneEventCallBack() gets called, then TryToSendUDPPacket() gets called and ISOckPort_SendTo() returns AEE_NET_WOULDBLOCK and so ISockPort_WriteableEx() gets called. But then nothing happens after that. If I hang up the call using tapi-tool then I still don't get a callback to TryToSendUDPPacket(), also if I try to recall the simulator again using tapi tool again nothing happens i.e. PhoneEventCallback doesn't get called a 2nd time.
If I change the code slightly and add a call to TryToSendUDPPacket() in the EVT_APP_START switch, then the packet is initially sent successfully, but then if I use the tapi tool to try and call the device nothing happens - i.e. PhoneEventCallback() doesn't get called.
Perhaps a relevant point to note is that in both instances when PhoneEventCallBack() doesn't get called, the tapi tool also does not update its output window contents, normally it would display information saying such things as receiving incomming call.This suggests to me there is a problem or limitation with Brew/the simulator itself and its not possible to combine socket use and telephone calls simultaneously.Is this correct or is there some other issue?