tizen2.1 code merge
[apps/osp/Call.git] / src / CallTelephonyManager.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.1 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file        CallTelephonyManager.cpp
19  * @brief       Call log item provider
20  */
21 #include <stdio.h>
22 #include <FBaseSys.h>
23 #include <FSystem.h>
24 #include <FTelephony.h>
25 #include "ITapiModem.h"
26 #include "ITapiSim.h"
27 #include "CallInfo.h"
28 #include "CallTelephonyManager.h"
29 #include "CallSettingsManager.h"
30 #include "CallTypes.h"
31
32 using namespace Tizen::Base;
33 using namespace Tizen::Graphics;
34 using namespace Tizen::Social;
35 using namespace Tizen::System;
36 using namespace Tizen::Base::Collection;
37 using namespace Tizen::Telephony;
38
39 const char* callEventList[] = {
40                 TAPI_NOTI_VOICE_CALL_STATUS_IDLE,
41                 TAPI_NOTI_VOICE_CALL_STATUS_ACTIVE,
42                 TAPI_NOTI_VOICE_CALL_STATUS_HELD,
43                 TAPI_NOTI_VOICE_CALL_STATUS_DIALING,
44                 TAPI_NOTI_VOICE_CALL_STATUS_ALERT,
45                 TAPI_NOTI_VOICE_CALL_STATUS_WAITING,
46                 TAPI_NOTI_CALL_INFO_CALL_CONNECTED_LINE,
47                 TAPI_NOTI_CALL_INFO_WAITING,
48                 TAPI_NOTI_CALL_INFO_CUG,
49                 TAPI_NOTI_CALL_INFO_FORWARDED,
50                 TAPI_NOTI_CALL_INFO_BARRED_INCOMING,
51                 TAPI_NOTI_CALL_INFO_BARRED_OUTGOING,
52                 TAPI_NOTI_CALL_INFO_DEFLECTED,
53                 TAPI_NOTI_CALL_INFO_CLIR_SUPPRESSION_REJECT,
54                 TAPI_NOTI_CALL_INFO_FORWARD_UNCONDITIONAL,
55                 TAPI_NOTI_CALL_INFO_FORWARD_CONDITIONAL,
56                 TAPI_NOTI_CALL_INFO_CALL_LINE_IDENTITY,
57                 TAPI_NOTI_CALL_INFO_CALL_NAME_INFORMATION,
58                 TAPI_NOTI_CALL_INFO_FORWARDED_CALL,
59                 TAPI_NOTI_CALL_INFO_CUG_CALL,
60                 TAPI_NOTI_CALL_INFO_DEFLECTED_CALL,
61                 TAPI_NOTI_CALL_INFO_TRANSFERED_CALL,
62                 TAPI_NOTI_CALL_INFO_HELD,
63                 TAPI_NOTI_CALL_INFO_ACTIVE,
64                 TAPI_NOTI_CALL_INFO_JOINED,
65                 TAPI_NOTI_CALL_INFO_RELEASED_ON_HOLD,
66                 TAPI_NOTI_CALL_INFO_TRANSFER_ALERT,
67                 TAPI_NOTI_CALL_INFO_TRANSFERED,
68                 TAPI_NOTI_CALL_INFO_CF_CHECK_MESSAGE,
69 };
70
71 TelephonyManager* TelephonyManager::__pManager = null;
72
73 TelephonyManager::TelephonyManager(ITelephonyEventListener* pEventListener)
74 : __pEventListener(pEventListener)
75 {
76         __pDialedCall = null;
77         __pIncomingCall = null;
78         __pActiveCallList = null;
79         __pSettingsManager = null;
80         __pTapiHandle = null;
81         __pAddressBook = null;
82         __pCachedContact = null;
83         __isMuted = false;
84         __isSpeakerOn = false;
85         __pSoundManager = null;
86         __pCalllogMgr = null;
87         __pNetworkManager = null;
88 }
89
90 TelephonyManager::~TelephonyManager(void)
91 {
92         if (__pActiveCallList != null)
93         {
94                 delete __pActiveCallList;
95         }
96
97         if (__pDialedCall != null)
98         {
99                 delete __pDialedCall;
100                 __pDialedCall = null;
101         }
102
103         if (__pIncomingCall != null)
104         {
105                 delete __pIncomingCall;
106                 __pIncomingCall = null;
107         }
108
109         if (__pAddressBook != null)
110         {
111                 delete __pAddressBook;
112                 __pAddressBook = null;
113         }
114         if (__pCachedContact != null)
115         {
116                 delete __pCachedContact;
117                 __pCachedContact = null;
118         }
119
120         //unregister for events from TAPI Lib.
121         UnregisterEvents();
122
123         //De-initialize the TAPI Library
124         if(__pTapiHandle != null)
125         {
126                 tel_deinit(__pTapiHandle);
127         }
128
129         if (__pSoundManager != null)
130         {
131                 delete __pSoundManager;
132         }
133
134         if (__pCalllogMgr != null)
135         {
136                 __pCalllogMgr = null;
137         }
138 }
139
140 TelephonyManager*
141 TelephonyManager::GetInstance(ITelephonyEventListener* pEventListener)
142 {
143         if (__pManager == null)
144         {
145                 CreateInstance(pEventListener);
146         }
147         return __pManager;
148 }
149
150 void
151 TelephonyManager::CreateInstance(ITelephonyEventListener* pEventListener)
152 {
153         __pManager = new (std::nothrow) TelephonyManager(pEventListener);
154         result r = __pManager->Initialize();
155         if (IsFailed(r))
156         {
157                 delete __pManager;
158                 __pManager = null;
159         }
160         atexit(&(TelephonyManager::DestroyInstance));
161 }
162
163 void
164 TelephonyManager::DestroyInstance(void)
165 {
166         if (__pManager != null)
167         {
168                 __pManager->EndAllCalls();
169                 delete __pManager;
170                 __pManager = null;
171         }
172 }
173
174 result
175 TelephonyManager::Initialize(void)
176 {
177         //Initialize telephony library
178         result r = InitializeTelephonyLibrary();
179         if (IsFailed(r))
180         {
181                 return r;
182         }
183         __pActiveCallList = new (std::nothrow) HashMapT<long, AppCallInfo>();
184         __pActiveCallList->Construct(IDI_MAX_ACTIVE_CALLS);
185
186         //Initialize the Settings Manager to fetch call settings
187         __pSettingsManager = SettingsManager::GetInstance();
188
189         __pSoundManager = new (std::nothrow) SoundManager();
190         __pCalllogMgr = CallLogManager::GetInstance();
191
192         //initialize address book to fetch contacts information
193         __pAddressBook = AddressbookManager::GetInstance()->GetAddressbookN();
194         if(__pAddressBook == null)
195         {
196                 return E_FAILURE;
197         }
198         __pNetworkManager = new NetworkManager();
199         if(__pNetworkManager != null)
200         {
201                 __pNetworkManager->Construct(this);
202         }
203         return r;
204 }
205
206 result
207 TelephonyManager::InitializeTelephonyLibrary(void)
208 {
209         result r = E_FAILURE;
210
211         __pTapiHandle = tel_init(null);
212         if (__pTapiHandle != null)
213         {
214                 //register telephony events
215                 int errorCode = RegisterEvents();
216                 if (errorCode == TAPI_CAUSE_SUCCESS)
217                 {
218                         r = E_SUCCESS;
219                 }
220         }
221         //TAPI Library is initialized and events registered successfully
222         return r;
223 }
224
225 int
226 TelephonyManager::RegisterEvents(void)
227 {
228         int errCode = -1;
229         int eventCount = sizeof(callEventList) / sizeof(char *);
230         for (int index = 0; index < eventCount; index++)
231         {
232                 errCode = tel_register_noti_event(__pTapiHandle, callEventList[index], &HandleCallback, this);
233                 if (errCode != TAPI_API_SUCCESS)
234                 {
235                         return errCode;
236                 }
237         }
238         return errCode;
239 }
240
241 void
242 TelephonyManager::UnregisterEvents(void)
243 {
244         int eventCount = sizeof(callEventList) / sizeof(char *);
245         for (int index = 0; index < eventCount; index++)
246         {
247                 tel_deregister_noti_event(__pTapiHandle, callEventList[index]);
248         }
249 }
250
251 ErrorCodes
252 TelephonyManager::SetupMoCall(String& contactNumber, bool isEmergency)
253 {
254         result res = E_SUCCESS;
255         //check if valid phone number exist
256         res = CheckValidTelePhoneNumber(contactNumber);
257         if (IsFailed(res))
258         {
259                 return ERROR_INVALID_NUMBER;
260         }
261
262         //if dialing an emergency call and active calls exist
263         //then end all active calls.
264         if (isEmergency && __pActiveCallList->GetCount() > 0)
265         {
266                 //Get first call handle
267                 AppCallInfo endCallInfo;
268                 IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
269                 pCallList->GetAt(0, endCallInfo);
270                 int callHandle = endCallInfo.GetCallHandle()->ToLong();
271                 delete pCallList;
272                 pCallList = null;
273
274                 //release all active or held calls
275                 int tapiRes = tel_end_call(__pTapiHandle, callHandle, TAPI_CALL_END_ALL, &HandleCallbackResponse, this);
276                 if (tapiRes == TAPI_CAUSE_SUCCESS)
277                 {
278                         __pActiveCallList->RemoveAll();
279                         res = E_SUCCESS;
280                 }
281                 else
282                 {
283                         res = E_FAILURE;
284                 }
285         }
286         else if (__pActiveCallList->GetCount() == 1)
287         {
288                 //Check if there is already an active call,
289                 //Put the already active call on hold.
290                 AppCallInfo holdCallInfo;
291                 IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
292
293                 pCallList->GetAt(0, holdCallInfo);
294                 //Check if call is active, then put on hold
295                 if (holdCallInfo.IsOnHold() == false)
296                 {
297                         res = HoldActiveCall(&holdCallInfo, true);
298                 }
299                 delete pCallList;
300                 pCallList = null;
301         }
302
303         //make the next call, only if any existing active call
304         //is successfully put on hold or is already on hold.
305         if (res == E_SUCCESS)
306         {
307                 res = DialOutgoingCall(contactNumber, isEmergency);
308         }
309
310         if(res == E_SUCCESS)
311         {
312                 return ERROR_NONE;
313         }
314         else
315         {
316                 return ERROR_TAPI_ERROR;
317         }
318 }
319
320 void
321 TelephonyManager::EndAllCalls(void)
322 {
323         if(__pDialedCall != null)
324         {
325                 if(__pDialedCall->GetCallHandle() != null)
326                 {
327                         tel_end_call(__pTapiHandle, __pDialedCall->GetCallHandle()->ToLong(), TAPI_CALL_END, &HandleCallbackResponse, this);
328                 }
329         }
330         tel_end_call(__pTapiHandle, -1, TAPI_CALL_END_HOLD_ALL, &HandleCallbackResponse, this);
331         //end all active calls before terminating application
332         tel_end_call(__pTapiHandle, -1, TAPI_CALL_END_ALL, &HandleCallbackResponse, this);
333         __pSettingsManager->SetCallState(CALL_STATE_CALL_OFF);
334 }
335
336 result
337 TelephonyManager::EndActiveCall(Long callHandle)
338 {
339         result r = E_FAILURE;
340
341         //fetch ended callInfo from active call list
342         AppCallInfo endCall;
343         r = __pActiveCallList->GetValue(callHandle.ToLong(), endCall);
344         if (r == E_SUCCESS)
345         {
346                 r = EndCall(endCall);
347         }
348         return r;
349 }
350
351 result
352 TelephonyManager::EndDialingCall(String& contactNumber)
353 {
354         result r = E_FAILURE;
355         //This is because for a dialing call, call handle is updated with some delay in telephony manager.
356         //And it is not available with outgoing call screen.
357         if (contactNumber.IsEmpty())
358         {
359                 return r;
360         }
361
362         //Check If Ended call matches Dialed Call.
363         AppCallInfo endCall;
364         if (__pDialedCall != null && __pDialedCall->GetContactNumber().Equals(contactNumber))
365         {
366                 endCall = *__pDialedCall;
367                 r = EndCall(endCall);
368         }
369         return r;
370 }
371
372 result
373 TelephonyManager::EndCall(AppCallInfo& endCallInfo)
374 {
375         result r = E_FAILURE;
376
377         if (endCallInfo.GetCallHandle() != null)
378         {
379                 unsigned int callHandle = endCallInfo.GetCallHandle()->ToLong();
380                 //end "dialed but unconnected" call or active call - processing to be handled in HandleIdleCallback().
381                 int res = tel_end_call(__pTapiHandle, callHandle, TAPI_CALL_END, &HandleCallbackResponse, this);
382                 if (res == TAPI_CAUSE_SUCCESS)
383                 {
384                         r = E_SUCCESS;
385                 }
386         }
387         return r;
388 }
389
390 result
391 TelephonyManager::AnswerAutoRejectCall(int callHandle)
392 {
393         //Incoming call automatically blocked is handled here.
394         AppLogDebug("Enter ");
395         result r = E_FAILURE;
396         TelCallAnswerType_t answerType = TAPI_CALL_ANSWER_REJECT;
397         int res = -1;
398
399         AppLogDebug("tel_answer_call");
400         //save to logs db.
401         AppCallInfo rejectedCallInfo;
402         rejectedCallInfo = *(__pIncomingCall);
403         rejectedCallInfo.SetCalllogType(CALL_LOG_TYPE_VOICE_BLOCKED);
404         SaveCallInfoToLogsDb(rejectedCallInfo);
405         delete __pIncomingCall;
406         __pIncomingCall = null;
407
408         // redirect to reject call back handler as the flow has to be handled
409         res = tel_answer_call(__pTapiHandle, callHandle, answerType, &HandleCallbackResponse, this);
410
411         if (res == TAPI_CAUSE_SUCCESS)
412         {
413                 r = E_SUCCESS;
414         }
415         else
416         {
417                 r = E_FAILURE;
418         }
419         return r;
420 }
421
422 result
423 TelephonyManager::AnswerCall(int callHandle, bool acceptCall)
424 {
425         AppLogDebug("Enter %d",acceptCall);
426         result r = E_FAILURE;
427         __pSoundManager->StopAlert();
428         TelCallAnswerType_t answerType = TAPI_CALL_ANSWER_ACCEPT;
429         int res = -1;
430         if (acceptCall == true)
431         {
432                 answerType = TAPI_CALL_ANSWER_ACCEPT;
433                 // redirect to dummy call back handler as the flow already handled in registered event callback
434                 res = tel_answer_call(__pTapiHandle, callHandle, answerType, &HandleCallbackResponse, this);
435         }
436         else
437         {
438                 AppLogDebug("tel_answer_call");
439                 answerType = TAPI_CALL_ANSWER_REJECT;
440                 // redirect to reject call back handler as the flow has to be handled
441                 res = tel_answer_call(__pTapiHandle, callHandle, answerType, &HandleRejectCallbackResponse, this);
442         }
443
444         if (res == TAPI_CAUSE_SUCCESS)
445         {
446                 r = E_SUCCESS;
447         }
448         else
449         {
450                 r = E_FAILURE;
451         }
452         return r;
453 }
454
455 result
456 TelephonyManager::AcceptCall(CallAnsweringOptions answerOptions,int callHandle)
457 {
458         result r = E_FAILURE;
459         __pSoundManager->StopAlert();
460         __pSoundManager->SetSoundMode(SOUND_MODE_VOICE);
461
462         //Check if this is a new incoming call
463         if(__pIncomingCall == null || (callHandle != (unsigned int)__pIncomingCall->GetCallHandle()->ToLong()))
464         {
465                 //construct and fetch new Incoming call Info
466                 String incomingHandle;
467                 incomingHandle.Append(callHandle);
468                 AppCallInfo* pDuplicateCallInfo = FetchIncomingCallHandleN(incomingHandle, String(L""));
469                 if(pDuplicateCallInfo == null)
470                 {
471                         r = E_FAILURE;
472                         return r;
473                 }
474                 delete pDuplicateCallInfo;
475                 pDuplicateCallInfo = null;
476         }
477
478         switch(answerOptions)
479         {
480         case ANSERWING_OPTION_HOLD_SINGLE_CALL:
481         case ANSERWING_OPTION_END_SINGLE_CALL:
482         {
483                 r = AcceptSecondCall(answerOptions, callHandle);
484         }
485         break;
486
487         case ANSERWING_OPTION_REPLACE_ACTIVE_CALL:
488         case ANSERWING_OPTION_REPLACE_HELD_CALL:
489         case ANSERWING_OPTION_END_ALL_CALLS:
490         {
491                 r = AcceptMultipleCall(answerOptions, callHandle);
492         }
493         break;
494
495         default:
496                 break;
497         }
498         return r;
499 }
500
501 result
502 TelephonyManager::AcceptSecondCall(CallAnsweringOptions answerOptions, const int incomingCallHandle)
503 {
504         result r = E_FAILURE;
505
506         switch (answerOptions)
507         {
508         case ANSERWING_OPTION_HOLD_SINGLE_CALL:
509         {
510                 //accept incoming call by putting active call on Hold with 'TAPI_CALL_ANSWER_HOLD_AND_ACCEPT'
511                 int res = tel_answer_call(__pTapiHandle, incomingCallHandle, TAPI_CALL_ANSWER_HOLD_AND_ACCEPT, &HandleCallbackResponse, this);
512                 if (res != 0)
513                 {
514                         r = E_FAILURE;
515                         break;
516                 }
517
518                 //Call connected successfully
519                 r = E_SUCCESS;
520                 //update status of first call to "OnHold"
521                 IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
522                 AppCallInfo firstCallInfo;
523                 pCallList->GetAt(0, firstCallInfo);
524                 //replace old object with update AppCallInfo
525                 AppCallInfo* pHeldCallInfo = new (std::nothrow) AppCallInfo();
526                 *pHeldCallInfo = firstCallInfo;
527                 pHeldCallInfo->SetOnHold(true);
528                 __pActiveCallList->Remove(firstCallInfo.GetCallHandle()->ToLong());
529                 __pActiveCallList->Add(pHeldCallInfo->GetCallHandle()->ToLong(), *pHeldCallInfo);
530                 delete pCallList;
531                 pCallList = null;
532         }
533         break;
534
535         case ANSERWING_OPTION_END_SINGLE_CALL:
536         {
537                 //Transfer Old active calls to a separate list to avoid any processing in HandleIdleCallback().
538                 HashMapT<long, AppCallInfo>*  pEndCallsList = __pActiveCallList;
539                 //create a new ActiveCallList
540                 __pActiveCallList = new (std::nothrow) HashMapT<long, AppCallInfo>();
541                 __pActiveCallList->Construct(IDI_MAX_ACTIVE_CALLS);
542
543                 //accept call and reject all active calls with 'TAPI_CALL_ANSWER_REPLACE'
544                 int res = tel_answer_call(__pTapiHandle, incomingCallHandle, TAPI_CALL_ANSWER_REPLACE, &HandleCallbackResponse, this);
545                 if (res != 0)
546                 {
547                         r = E_FAILURE;
548                         //delete newly constructed list and gain ownership of old list
549                         delete __pActiveCallList;
550                         __pActiveCallList = pEndCallsList;
551                         break;
552                 }
553
554                 //Call connected successfully
555                 r = E_SUCCESS;
556                 //Add calls information to call log before deleting from active call list.
557                 /*IListT<AppCallInfo>* pCallList = pEndCallsList->GetValuesN();
558                 if(pCallList != null)
559                 {
560                         AppCallInfo endCallInfo;
561                         if (pCallList->GetAt(0, endCallInfo) == E_SUCCESS)
562                         {
563                                 SaveCallInfoToLogsDb(endCallInfo);
564                         }
565                         delete pCallList;
566                 }*/
567                 pEndCallsList->RemoveAll();
568                 delete pEndCallsList;
569         }
570         break;
571
572         default:
573                 break;
574         }
575         return r;
576 }
577
578 result
579 TelephonyManager::AcceptMultipleCall(CallAnsweringOptions answerOptions, const int incomingCallHandle)
580 {
581         result r = E_FAILURE;
582
583         switch (answerOptions)
584         {
585         case ANSERWING_OPTION_REPLACE_ACTIVE_CALL:
586         {
587                 //Replace "Active" call by incoming call and save ended call to call logs db.
588                 IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
589                 AppCallInfo callToBeEnded;
590                 pCallList->GetAt(0, callToBeEnded);
591                 //Check if the call is on "Hold", then fetch 2nd callInfo
592                 if (callToBeEnded.IsOnHold() == true)
593                 {
594                         pCallList->GetAt(1, callToBeEnded);
595                 }
596                 delete pCallList;
597                 pCallList = null;
598
599                 //remove "CallToBeEnded" from Active call list to avoid processing in HandleIdleCallback().
600                 __pActiveCallList->Remove(callToBeEnded.GetCallHandle()->ToLong());
601
602                 //Accept incoming call by End Active call with 'TAPI_CALL_ANSWER_REPLACE'
603                 int res = tel_answer_call(__pTapiHandle, incomingCallHandle, TAPI_CALL_ANSWER_REPLACE, &HandleCallbackResponse, this);
604                 if (res != 0)
605                 {
606                         r = E_FAILURE;
607                         //save the previous call back to active call list
608                         __pActiveCallList->Add(callToBeEnded.GetCallHandle()->ToLong(), callToBeEnded);
609                         break;
610                 }
611
612                 //Incoming Call connected successfully
613                 r = E_SUCCESS;
614                 //save to ended call to call logs db.
615                 //SaveCallInfoToLogsDb(callToBeEnded);
616         }
617         break;
618
619         case ANSERWING_OPTION_REPLACE_HELD_CALL:
620         {
621                 //Replace "Held" call by incoming call and save ended call to call logs db.
622                 IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
623                 //"Held" call is to be ended
624                 AppCallInfo callToBeEnded;
625                 //"Active" call will be put on Hold
626                 AppCallInfo callToPutOnHold;
627                 pCallList->GetAt(0, callToBeEnded);
628                 //Check if the call is NOT "Held", then fetch 2nd callInfo
629                 if (callToBeEnded.IsOnHold() == false)
630                 {
631                         callToPutOnHold = callToBeEnded;
632                         pCallList->GetAt(1, callToBeEnded);
633                 }
634                 else
635                 {
636                         pCallList->GetAt(1, callToPutOnHold);
637                 }
638                 delete pCallList;
639                 pCallList = null;
640
641                 //remove "CallToBeEnded" from Active call list to avoid processing in HandleIdleCallback().
642                 __pActiveCallList->Remove(callToBeEnded.GetCallHandle()->ToLong());
643
644                 //End "Held" Call using 'TAPI_CALL_END'.
645                 int res = -1;
646                 if (callToBeEnded.IsConferenceCall() == false)
647                 {
648                         res = tel_end_call(__pTapiHandle, callToBeEnded.GetCallHandle()->ToLong(), TAPI_CALL_END, &HandleCallbackResponse, this);
649                 }
650                 else
651                 {
652                         IListT<AppCallInfo>* pParticipantsInfo = callToBeEnded.GetCallerList();
653                         //need to end every participant individually for conference call
654                         for (int index = 0; index < pParticipantsInfo->GetCount(); index++)
655                         {
656                                 AppCallInfo memberCallInfo;
657                                 pParticipantsInfo->GetAt(index, memberCallInfo);
658                                 res = tel_end_call(__pTapiHandle, memberCallInfo.GetCallHandle()->ToLong(), TAPI_CALL_END, &HandleCallbackResponse, this);
659                         }
660                 }
661
662                 if (res != 0)
663                 {
664                         r = E_FAILURE;
665                         //save the previous "callToBeEnded" call back to active call list
666                         __pActiveCallList->Add(callToBeEnded.GetCallHandle()->ToLong(), callToBeEnded);
667                         break;
668                 }
669                 //"Held" call successfully ended - Add call ended to call log database
670                 //SaveCallInfoToLogsDb(callToBeEnded);
671
672                 //accept incoming call by Holding "Active" call using "TAPI_CALL_ANSWER_HOLD_AND_ACCEPT".
673                 res = tel_answer_call(__pTapiHandle, incomingCallHandle, TAPI_CALL_ANSWER_HOLD_AND_ACCEPT, &HandleCallbackResponse, this);
674                 if (res != 0)
675                 {
676                         r = E_FAILURE;
677                         break;
678                 }
679
680                 //Call connected successfully and active call is "Onhold"
681                 r = E_SUCCESS;
682                 //replace old object with update CallInfo
683                 AppCallInfo* pHeldCallInfo = new (std::nothrow) AppCallInfo();
684                 *pHeldCallInfo = callToPutOnHold;
685                 pHeldCallInfo->SetOnHold(true);
686                 __pActiveCallList->Remove(callToPutOnHold.GetCallHandle()->ToLong());
687                 __pActiveCallList->Add(pHeldCallInfo->GetCallHandle()->ToLong(), *pHeldCallInfo);
688         }
689         break;
690
691         case ANSERWING_OPTION_END_ALL_CALLS:
692         {
693                 //End all active and Held calls after saving to call log. Incoming call is automatically accepted by TAPI engine,
694                 // and processing of Incoming call is handled in HandleActiveCallback().
695
696                 //Transfer Old active calls to a separate list to avoid any processing in HandleIdleCallback().
697                 HashMapT<long, AppCallInfo>*  pEndCallsList = __pActiveCallList;
698                 //create a new ActiveCallList
699                 __pActiveCallList = new (std::nothrow) HashMapT<long, AppCallInfo>();
700                 __pActiveCallList->Construct(IDI_MAX_ACTIVE_CALLS);
701
702                 //End all active calls and all hold calls
703                 int res = tel_end_call(__pTapiHandle, -1, TAPI_CALL_END_ACTIVE_ALL, &HandleCallbackResponse, this);
704                 if(res == 0)
705                 {
706                         res = tel_end_call(__pTapiHandle, -1, TAPI_CALL_END_HOLD_ALL, &HandleCallbackResponse, this);
707                 }
708
709                 if (res != 0)
710                 {
711                         r = E_FAILURE;
712                         //delete newly constructed list and gain ownership of old list
713                         delete __pActiveCallList;
714                         __pActiveCallList = pEndCallsList;
715                         break;
716                 }
717
718                 //all calls ended successfully, Incoming call is automatically accepted.
719                 r = E_SUCCESS;
720
721                 //Add calls information to call log before deleting from active call list.
722                 IListT<AppCallInfo>* pCallList = pEndCallsList->GetValuesN();
723                 if(pCallList != null)
724                 {
725 /*                      int callCount = pCallList->GetCount();
726                         for (int index = 0; index < callCount; index++)
727                         {
728                                 AppCallInfo endCallInfo;
729                                 if (pCallList->GetAt(index, endCallInfo) == E_SUCCESS)
730                                 {
731                                         SaveCallInfoToLogsDb(endCallInfo);
732                                 }
733                         }*/
734                         delete pCallList;
735                         pCallList = null;
736                 }
737                 pEndCallsList->RemoveAll();
738                 delete pEndCallsList;
739                 pEndCallsList = null;
740         }
741         break;
742
743         default:
744                 break;
745         }
746         return r;
747 }
748
749 result
750 TelephonyManager::HoldCall(Tizen::Base::Long callHandle, bool holdCall)
751 {
752         result r = E_SUCCESS;
753         //Check if there are any existing active calls
754         if (__pActiveCallList->GetCount())
755         {
756                 IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
757                 int callCount = pCallList->GetCount();
758                 for (int index = 0; index < callCount; index++)
759                 {
760                         AppCallInfo holdCallInfo;
761
762                         r = pCallList->GetAt(index, holdCallInfo);
763                         //check if an active call is found with matching contact no.
764                         if ((r == E_SUCCESS) && (holdCallInfo.GetCallHandle()->Equals(callHandle)))
765                         {
766                                 r = HoldActiveCall(&holdCallInfo, holdCall);
767                                 break;
768                         }
769                 }
770                 delete pCallList;
771                 pCallList = null;
772         }
773
774         return r;
775 }
776
777 result
778 TelephonyManager::EndConferenceCall(void)
779 {
780         result r = E_FAILURE;
781         //fetch conference callInfo to end
782         AppCallInfo confCallToEnd;
783         bool isConferenceCallFound = false;
784
785         IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
786         int callCount = pCallList->GetCount();
787         for (int index = 0; index < callCount; index++)
788         {
789                 pCallList->GetAt(index, confCallToEnd);
790                 if (confCallToEnd.IsConferenceCall() == true)
791                 {
792                         isConferenceCallFound = true;
793                         break;
794                 }
795         }
796         delete pCallList;
797         pCallList = null;
798
799         if (isConferenceCallFound == true)
800         {
801                 //End conference call
802                 TelCallEndType_t callEndType = TAPI_CALL_END_ACTIVE_ALL;
803                 if (confCallToEnd.IsOnHold() == true)
804                 {
805                         callEndType = TAPI_CALL_END_HOLD_ALL;
806                 }
807                 int res = tel_end_call(__pTapiHandle, confCallToEnd.GetCallHandle()->ToLong(), callEndType, &HandleEndConferenceCallbackResponse, this);
808                 if (res == TAPI_CAUSE_SUCCESS)
809                 {
810                         r = E_SUCCESS;
811                 }
812         }
813         return r;
814 }
815
816 result
817 TelephonyManager::HoldConferenceCall(bool holdCall)
818 {
819         result r = E_FAILURE;
820         int confCallIndex = -1;
821         AppCallInfo confCallToHold;
822         bool isConferenceCallFound = false;
823
824         IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
825         int confCallCount = pCallList->GetCount();
826
827         for (int index = 0; index < confCallCount; index++)
828         {
829                 pCallList->GetAt(index, confCallToHold);
830                 if (confCallToHold.IsConferenceCall() == true)
831                 {
832                         isConferenceCallFound = true;
833                         confCallIndex = index;
834                         //Found the Conference call to be ended.
835                         break;
836                 }
837         }
838
839         if (isConferenceCallFound == false)
840         {
841                 delete pCallList;
842                 pCallList = null;
843                 return r;
844         }
845
846         unsigned int callHandle = confCallToHold.GetCallHandle()->ToLong();
847         int res = TAPI_API_INVALID_INPUT;
848         if (holdCall == true)
849         {
850                 res = tel_hold_call(__pTapiHandle, callHandle, &HandleCallbackResponse, this);
851         }
852         else
853         {
854                 res = tel_active_call(__pTapiHandle, callHandle, &HandleCallbackResponse, this);
855         }
856         if (res == TAPI_API_SUCCESS)
857         {
858                 r = E_SUCCESS;
859                 if (holdCall == true)
860                 {
861                         confCallToHold.SetOnHold(true);
862                 }
863                 else
864                 {
865                         confCallToHold.SetOnHold(false);
866                 }
867                 AppCallInfo* pConfCallInfo = new (std::nothrow) AppCallInfo();
868                 *pConfCallInfo = confCallToHold;
869                 __pActiveCallList->Remove(callHandle);
870                 __pActiveCallList->Add(callHandle, *pConfCallInfo);
871         }
872         else
873         {
874                 r = E_FAILURE;
875         }
876
877         delete pCallList;
878         pCallList = null;
879         return r;
880 }
881
882 result
883 TelephonyManager::JoinCall(void)
884 {
885         result r = E_FAILURE;
886         int res = -1;
887         AppCallInfo activeCall;
888         AppCallInfo heldCall;
889         // Use enumerator to access elements in the map
890         IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
891         r = pCallList->GetAt(0, activeCall);
892
893         if (r == E_SUCCESS)
894         {
895                 r = pCallList->GetAt(1, heldCall);
896                 if (r == E_SUCCESS)
897                 {
898                         unsigned int activeCallHandle = activeCall.GetCallHandle()->ToLong();
899                         unsigned int heldCallHandle = heldCall.GetCallHandle()->ToLong();
900
901                         //Check if participants in conference call are under limit.
902                         if ((heldCall.IsConferenceCall() == true) && (heldCall.GetCallerListCount() < IDI_MAX_CONF_CALL_PARTICIPANTS))
903                         {
904                                 res = tel_join_call(__pTapiHandle, heldCallHandle, activeCallHandle, &HandleJoinCallbackResponse, this);
905                         }
906                         else if (activeCall.GetCallerListCount() < IDI_MAX_CONF_CALL_PARTICIPANTS)
907                         {
908                                 res = tel_join_call(__pTapiHandle, activeCallHandle, heldCallHandle, &HandleJoinCallbackResponse, this);
909                         }
910                 }
911         }
912         delete pCallList;
913         pCallList = null;
914         if (res == TAPI_API_SUCCESS)
915         {
916                 r = E_SUCCESS;
917         }
918         else
919         {
920                 r = E_FAILURE;
921         }
922         return r;
923 }
924
925 result
926 TelephonyManager::HoldActiveCall(AppCallInfo* pActiveCallInfo, bool holdCall)
927 {
928         unsigned int callHandle = pActiveCallInfo->GetCallHandle()->ToLong();
929         int retStatus = -1;
930         if (holdCall == true)
931         {
932                 retStatus = tel_hold_call(__pTapiHandle, callHandle, &HandleCallbackResponse, this);
933         }
934         else
935         {
936                 retStatus = tel_active_call(__pTapiHandle, callHandle, &HandleCallbackResponse, this);
937         }
938
939         if (retStatus == TAPI_CAUSE_SUCCESS)
940         {
941                 AppCallInfo* pHeldCallInfo = new (std::nothrow) AppCallInfo();
942                 //copy state into new callinfo object
943                 *pHeldCallInfo = *pActiveCallInfo;
944
945                 //set call to hold state
946                 pHeldCallInfo->SetOnHold(holdCall);
947
948                 __pActiveCallList->Remove(callHandle);
949                 //replace old object with new
950                 __pActiveCallList->Add(callHandle, *pHeldCallInfo);
951                 return E_SUCCESS;
952         }
953         else
954         {
955                 return E_FAILURE;
956         }
957 }
958
959 result
960 TelephonyManager::DialOutgoingCall(String& contactNumber, bool isEmergency)
961 {
962         TelCallDial_t structDialCall;
963
964         AppLogDebug("Enter %ls",contactNumber.GetPointer());
965         //Temp String to replace , with P and ; with W
966         String TempContactNum;
967         TempContactNum.Append(contactNumber);
968         TempContactNum.Replace(L",",L"W");
969         TempContactNum.Replace(L";",L",");
970         //conversion "contactNumber" to char*
971         const wchar_t* pContact = TempContactNum.GetPointer();
972         int len = TempContactNum.GetLength()+1;
973         char* pNumber = new (std::nothrow) char[len];
974         wcstombs(pNumber, pContact, len);
975
976
977         //initialize request parameter
978         memset(&structDialCall, '\0', sizeof(TelCallDial_t));
979         memcpy(structDialCall.szNumber, pNumber, strlen(pNumber));
980         AppLogDebug("%s",structDialCall.szNumber);
981         if(isEmergency == true)
982         {
983                 structDialCall.CallType = TAPI_CALL_TYPE_E911;
984         }
985         else
986         {
987                 structDialCall.CallType = TAPI_CALL_TYPE_VOICE;
988         }
989
990         int res = tel_dial_call(__pTapiHandle, &structDialCall, &HandleDialCallbackResponse, this);
991         if (__pSoundManager == null)
992         {
993                 __pSoundManager = new (std::nothrow) SoundManager();
994         }
995         __pSoundManager->StartSession();
996         delete[] pNumber;
997         pNumber = null;
998
999         if (res == TAPI_CAUSE_SUCCESS)
1000         {
1001                 if (__pDialedCall != null)
1002                 {
1003                         delete __pDialedCall;
1004                         __pDialedCall = null;
1005                 }
1006                 __pDialedCall = new (std::nothrow) AppCallInfo();
1007                 __pDialedCall->SetContactNumber(contactNumber);
1008                 __pDialedCall->SetEmergency(isEmergency);
1009                 result r = FetchContactInfoForNumber(contactNumber);
1010                 if (!IsFailed(r))
1011                 {
1012                         __pDialedCall->SetContactInfo(*__pCachedContact);
1013                 }
1014                 return E_SUCCESS;
1015         }
1016         else
1017         {
1018                 return E_FAILURE;
1019         }
1020 }
1021
1022 result
1023 TelephonyManager::SwapCalls(void)
1024 {
1025         result r = E_FAILURE;
1026
1027         //check if there are atleast 2 active calls
1028         if (__pActiveCallList->GetCount() == IDI_MAX_ACTIVE_CALLS)
1029         {
1030                 int retStatus = 0;
1031
1032                 //fetch call handles
1033                 IListT<long>* pCallHandleList = __pActiveCallList->GetKeysN();
1034                 long callHandle1 = 0;
1035                 pCallHandleList->GetAt(0, callHandle1);
1036                 long callHandle2 = 0;
1037                 pCallHandleList->GetAt(1, callHandle2);
1038
1039                 retStatus = tel_swap_call(__pTapiHandle, callHandle1, callHandle2, &HandleSwapCallbackResponse, this);
1040
1041                 if (retStatus == TAPI_CAUSE_SUCCESS)
1042                 {
1043                         r = E_SUCCESS;
1044                 }
1045                 delete pCallHandleList;
1046                 pCallHandleList = null;
1047         }
1048
1049         return r;
1050 }
1051
1052 result
1053 TelephonyManager::SendCallDTMF(String& textToBeSent)
1054 {
1055         result r = E_FAILURE;
1056         //check if there is an active Call
1057         if (__pActiveCallList->GetCount() > 0)
1058         {
1059                 //conversion "textToBeSent" to char*
1060                 const wchar_t* pTextToBeSent = textToBeSent.GetPointer();
1061                 int len = textToBeSent.GetLength() + 1;
1062                 char* pNumber = new (std::nothrow) char[len];
1063                 wcstombs(pNumber, pTextToBeSent, len);
1064                 int retStatus = tel_call_dtmf(__pTapiHandle, pNumber, &HandleCallbackResponse, this);
1065                 delete []pNumber;
1066                 pNumber = null;
1067                 if (retStatus == TAPI_CAUSE_SUCCESS)
1068                 {
1069                         r = E_SUCCESS;
1070                 }
1071         }
1072         return r;
1073 }
1074
1075 result
1076 TelephonyManager::EndFromConference(int callHandle)
1077 {
1078         result r = E_FAILURE;
1079         int confCallIndex = -1;
1080         AppCallInfo endConfCall;
1081         bool isConferenceCallFound = false;
1082
1083         IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
1084         int callCount = pCallList->GetCount();
1085         for (int index = 0; index < callCount; index++)
1086         {
1087                 pCallList->GetAt(index, endConfCall);
1088                 if (endConfCall.IsConferenceCall() == true)
1089                 {
1090                         isConferenceCallFound = true;
1091                         confCallIndex = index;
1092                         //Found the Conference call to be ended.
1093                         break;
1094                 }
1095         }
1096
1097         delete pCallList;
1098         pCallList = null;
1099
1100         if (isConferenceCallFound == false)
1101         {
1102                 //no conference call found
1103                 return r;
1104         }
1105
1106         //Identify the call to be ended and remove from list on API success
1107         AppCallInfo callToBeEnded;
1108         IListT<AppCallInfo>* pParticipantList = endConfCall.GetCallerList();
1109         int participantCount = pParticipantList->GetCount();
1110         for (int index = 0; index < participantCount; index++)
1111         {
1112                 pParticipantList->GetAt(index, callToBeEnded);
1113                 if (callToBeEnded.GetCallHandle()->ToLong() == callHandle)
1114                 {
1115                         //Identify the call to be ended and remove from list on API success
1116                         TelCallEndType_t endType = TAPI_CALL_END;
1117
1118                         int res = tel_end_call(__pTapiHandle, callHandle, endType, &HandleEndFromConferenceCallbackResponse, this);
1119                         if (res == TAPI_CAUSE_SUCCESS)
1120                         {
1121                                 r = E_SUCCESS;
1122                         }
1123                         else
1124                         {
1125                                 r = E_FAILURE;
1126                         }
1127                         break;
1128                 }
1129         }
1130
1131         return r;
1132 }
1133
1134 result
1135 TelephonyManager::SplitFromConference(int callHandle)
1136 {
1137         result r = E_FAILURE;
1138         int confCallIndex = -1;
1139         AppCallInfo endConfCall;
1140         bool isConferenceCallFound = false;
1141
1142         IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
1143         int callCount = pCallList->GetCount();
1144         for (int index = 0; index < callCount; index++)
1145         {
1146                 pCallList->GetAt(index, endConfCall);
1147                 if (endConfCall.IsConferenceCall() == true)
1148                 {
1149                         isConferenceCallFound = true;
1150                         confCallIndex = index;
1151                         //Found the Conference call to be ended.
1152                         break;
1153                 }
1154         }
1155         delete pCallList;
1156         pCallList = null;
1157         if (isConferenceCallFound == false)
1158         {
1159                 //no conference call found
1160                 return r;
1161         }
1162
1163         //Identify the call to be ended and remove from list on API success
1164         AppCallInfo callToBeEnded;
1165         pCallList = endConfCall.GetCallerList();
1166         callCount = pCallList->GetCount();
1167         for (int index = 0; index < callCount; index++)
1168         {
1169                 pCallList->GetAt(index, callToBeEnded);
1170                 if (callToBeEnded.GetCallHandle()->ToLong() == callHandle)
1171                 {
1172                         int res = tel_split_call(__pTapiHandle, callHandle, &HandleSplitFromConferenceCallbackResponse, this);
1173                         if (res == TAPI_CAUSE_SUCCESS)
1174                         {
1175                                 r = E_SUCCESS;
1176                         }
1177                         else
1178                         {
1179                                 r = E_FAILURE;
1180                         }
1181                         break;
1182                 }
1183         }
1184         return r;
1185 }
1186
1187 result
1188 TelephonyManager::SetMuteStatus(bool setMute)
1189 {
1190         TelSoundMuteStatus_t muteStatus;
1191         result r = E_FAILURE;
1192         if (setMute == true)
1193         {
1194                 muteStatus = TAPI_SOUND_MUTE_STATUS_ON;
1195         }
1196         else
1197         {
1198                 muteStatus = TAPI_SOUND_MUTE_STATUS_OFF;
1199         }
1200         int res = tel_set_call_mute_status(__pTapiHandle, muteStatus, &HandleCallbackResponse, this);
1201         if (res == TAPI_CAUSE_SUCCESS)
1202         {
1203                 __isMuted = setMute;
1204                 r = E_SUCCESS;
1205         }
1206         else
1207         {
1208                 r = E_FAILURE;
1209         }
1210         return r;
1211 }
1212
1213 bool
1214 TelephonyManager::IsCallMuted(void)
1215 {
1216         return __isMuted;
1217 }
1218
1219 result
1220 TelephonyManager::SetSpeakerStatus(bool setSpeaker)
1221 {
1222         result r = E_FAILURE;
1223         TelCallSoundPathInfo_t callSoundPathInfo;
1224         __pSoundManager->SetSpeakerStatus(setSpeaker);
1225         if (setSpeaker == true)
1226         {
1227                 callSoundPathInfo.path = TAPI_SOUND_PATH_SPK_PHONE;
1228         }
1229         else
1230         {
1231                 callSoundPathInfo.path = TAPI_SOUND_PATH_HANDSET;
1232         }
1233         callSoundPathInfo.ex_volume = TelCallSoundPathInfo_t::TAPI_SOUND_EX_VOLUME_ON;
1234
1235         int res = tel_set_call_sound_path(__pTapiHandle, &callSoundPathInfo, &HandleCallbackResponse, this);
1236
1237         if (res == TAPI_CAUSE_SUCCESS)
1238         {
1239                 __isSpeakerOn = setSpeaker;
1240                 r = E_SUCCESS;
1241         }
1242         else
1243         {
1244                 r = E_FAILURE;
1245         }
1246         return r;
1247 }
1248
1249 bool
1250 TelephonyManager::IsSpeakerOn(void)
1251 {
1252         return __isSpeakerOn;
1253 }
1254
1255 bool
1256 TelephonyManager::IsSplitAllowed(void)
1257 {
1258         // Split functionality is allowed only if a one call is present.
1259         // The call can be a single call or a conference call
1260         if (__pActiveCallList->GetCount() == 1)
1261         {
1262                 return true;
1263         }
1264         return false;
1265 }
1266
1267 void
1268 TelephonyManager::HandleCallbackResponse(TapiHandle* pHandle, int callBackResult, void* pData, void* pUserData)
1269 {
1270         //should not do anything here.
1271 }
1272
1273 void
1274 TelephonyManager::HandleDialCallbackResponse(TapiHandle* pHandle, int callBackResult, void* pData, void* pUserData)
1275 {
1276         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
1277         if (callBackResult != TAPI_CAUSE_SUCCESS)
1278         {
1279                 if (pTelManager->__pDialedCall != null)
1280                 {
1281                         delete pTelManager->__pDialedCall;
1282                         pTelManager->__pDialedCall = null;
1283                 }
1284
1285                 //Check if there are no active connected calls and no incoming call.
1286                 if (pTelManager->__pIncomingCall != null)
1287                 {
1288                         pTelManager->__pSettingsManager->SetCallState(CALL_STATE_CALL_VOICE_CONNECTING);
1289                 }
1290                 else if (pTelManager->GetCurrentCallCount() >= 1)
1291                 {
1292                         pTelManager->__pSettingsManager->SetCallState(CALL_STATE_CALL_VOICE_ACTIVE);
1293                 }
1294                 else
1295                 {
1296                         pTelManager->__pSettingsManager->SetCallState(CALL_STATE_CALL_OFF);
1297                 }
1298
1299                 pTelManager->__pEventListener->HandleTelephonyError(ERROR_DIAL_FAILED);
1300         }
1301 }
1302
1303 void
1304 TelephonyManager::HandleRejectCallbackResponse(TapiHandle* pHandle, int callBackResult, void* pData, void* pUserData)
1305 {
1306         AppLogDebug("ENTER");
1307         // This callback comes only if user has rejected an incoming call from IncomingCallForm.
1308         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
1309         if (pData != null && callBackResult == TAPI_API_SUCCESS)
1310         {
1311                 unsigned int rejectedCallHandle = 0;
1312                 memcpy(&rejectedCallHandle, pData, sizeof(TS_UINT));
1313
1314                 //Check if incoming call is rejected
1315                 if (pTelManager->__pIncomingCall != null && (rejectedCallHandle == (unsigned int) pTelManager->__pIncomingCall->GetCallHandle()->ToLong()))
1316                 {
1317                         AppLogDebug("Call rejected by user");
1318                         AppCallInfo rejectedCallInfo;
1319                         rejectedCallInfo = *(pTelManager->__pIncomingCall);
1320                         delete pTelManager->__pIncomingCall;
1321                         pTelManager->__pIncomingCall = null;
1322
1323                         //rejected by user from incoming call form
1324                         rejectedCallInfo.SetCalllogType(CALL_LOG_TYPE_VOICE_REJECTED);
1325                         //Save rejected incoming call to call log db.
1326                         pTelManager->SaveCallInfoToLogsDb(rejectedCallInfo);
1327
1328                         //check if the ended call was the last call
1329                         bool isLastCall = (pTelManager->__pActiveCallList->GetCount() == 0);
1330                         //Stop alert - started only for incoming calls which are not blocked.
1331                         if(pTelManager->__pSoundManager != null)
1332                         {
1333                                 pTelManager->__pSoundManager->StopAlert();
1334                                 //Do not call stop session if there is already a call going on
1335                                 if(isLastCall == true)
1336                                 {
1337                                         pTelManager->__pSoundManager->StopSession();
1338                                 }
1339                         }
1340                         //Send notification to user
1341                         ArrayListT<AppCallInfo>* pCallList = null;
1342                         if (isLastCall)
1343                         {
1344                                 //save 'RejectedCall' to list to show on EndCallForm
1345                                 pCallList = new (std::nothrow) ArrayListT<AppCallInfo>();
1346                                 pCallList->Construct(1);
1347                                 AppCallInfo* pRejectedCall = new (std::nothrow) AppCallInfo();
1348                                 *pRejectedCall = rejectedCallInfo;
1349                                 pCallList->Add(*pRejectedCall);
1350                         }
1351                         else
1352                         {
1353                                 //fetch active calls to show appropriate scene
1354                                 pCallList = static_cast<ArrayListT<AppCallInfo>*>(pTelManager->__pActiveCallList->GetValuesN());
1355                         }
1356                         pTelManager->__pEventListener->HandleCallDisconnected(isLastCall, *pCallList);
1357                         delete pCallList;
1358                         pCallList = null;
1359                 }
1360         }
1361         else
1362         {
1363                 pTelManager->__pEventListener->HandleTelephonyError(ERROR_REJECT_FAILED);
1364         }
1365         AppLogDebug("EXIT");
1366 }
1367
1368 void
1369 TelephonyManager::HandleJoinCallbackResponse(TapiHandle* pHandle, int callBackResult, void* pData, void* pUserData)
1370 {
1371         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
1372         if (callBackResult == TAPI_API_SUCCESS && pData != null)
1373         {
1374                 unsigned int tempHandle = 0;
1375                 TelCallInfoJoinedNoti_t joinedInfoNotification;
1376                 AppCallInfo confCallInfo;
1377
1378                 memcpy(&tempHandle, pData, sizeof(TS_UINT));
1379                 joinedInfoNotification.id = tempHandle;
1380                 AppCallInfo activeCall;
1381                 AppCallInfo heldCall;
1382                 // Use enumerator to access elements in the map
1383                 IListT<AppCallInfo>* pCallList = pTelManager->__pActiveCallList->GetValuesN();
1384                 result r = pCallList->GetAt(0, activeCall);
1385
1386                 if (r == E_SUCCESS)
1387                 {
1388                         r = pCallList->GetAt(1, heldCall);
1389                         if (r == E_SUCCESS)
1390                         {
1391                                 AppCallInfo* pConfCallInfo = new (std::nothrow) AppCallInfo();
1392                                 unsigned int activeCallHandle = activeCall.GetCallHandle()->ToLong();
1393                                 unsigned int heldCallHandle = heldCall.GetCallHandle()->ToLong();
1394                                 if (activeCall.IsConferenceCall() == true)
1395                                 {
1396                                         r = E_SUCCESS;
1397                                         //When joined both become active
1398                                         activeCall.SetOnHold(false);
1399                                         heldCall.SetOnHold(false);
1400                                         *pConfCallInfo = activeCall;
1401                                         pConfCallInfo->AddCallToCallerList(heldCall);
1402                                         pConfCallInfo->SetCallHandle(activeCallHandle);
1403                                         //Set call start time
1404                                         if (pConfCallInfo->GetCallConnectTime() > heldCall.GetCallConnectTime())
1405                                         {
1406                                                 pConfCallInfo->SetCallConnectTime(heldCall.GetCallConnectTime());
1407                                                 pConfCallInfo->SetCallNotificationTime(heldCall.GetCallNotificationTime());
1408                                         }
1409                                 }
1410                                 else if (heldCall.IsConferenceCall() == true)
1411                                 {
1412                                         r = E_SUCCESS;
1413                                         heldCall.SetOnHold(false);
1414                                         activeCall.SetOnHold(false);
1415                                         *pConfCallInfo = heldCall;
1416                                         pConfCallInfo->AddCallToCallerList(activeCall);
1417                                         pConfCallInfo->SetCallHandle(heldCallHandle);
1418                                         //Set call start time
1419                                         if (pConfCallInfo->GetCallConnectTime() > activeCall.GetCallConnectTime())
1420                                         {
1421                                                 pConfCallInfo->SetCallConnectTime(activeCall.GetCallConnectTime());
1422                                                 pConfCallInfo->SetCallNotificationTime(activeCall.GetCallNotificationTime());
1423                                         }
1424                                 }
1425                                 else
1426                                 {
1427                                         r = E_SUCCESS;
1428                                         pConfCallInfo->SetConference(true);
1429                                         heldCall.SetOnHold(false);
1430                                         activeCall.SetOnHold(false);
1431                                         pConfCallInfo->AddCallToCallerList(activeCall);
1432                                         pConfCallInfo->AddCallToCallerList(heldCall);
1433                                         pConfCallInfo->SetCallHandle(activeCallHandle);
1434                                         //Set call start time
1435                                         if (activeCall.GetCallConnectTime() > heldCall.GetCallConnectTime())
1436                                         {
1437                                                 pConfCallInfo->SetCallConnectTime(heldCall.GetCallConnectTime());
1438                                                 pConfCallInfo->SetCallNotificationTime(heldCall.GetCallNotificationTime());
1439                                         }
1440                                         else
1441                                         {
1442                                                 pConfCallInfo->SetCallConnectTime(activeCall.GetCallConnectTime());
1443                                                 pConfCallInfo->SetCallNotificationTime(activeCall.GetCallNotificationTime());
1444                                         }
1445                                 }
1446                                 pConfCallInfo->SetCallHandle(joinedInfoNotification.id);
1447                                 pTelManager->__pActiveCallList->RemoveAll();
1448                                 //only one call in the list
1449                                 pTelManager->__pActiveCallList->Add(joinedInfoNotification.id, *pConfCallInfo);
1450                                 //notify listener that call is connected.
1451                                 pTelManager->__pEventListener->HandleConferenceCall(*pConfCallInfo);
1452                                 delete pCallList;
1453                                 pCallList = null;
1454                         }
1455                 }
1456         }
1457         else
1458         {
1459                 pTelManager->__pEventListener->HandleTelephonyError(ERROR_JOIN_FAILED);
1460         }
1461 }
1462
1463 void
1464 TelephonyManager::HandleSwapCallbackResponse(TapiHandle* pHandle, int callBackResult, void* pData, void* pUserData)
1465 {
1466         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
1467         if (callBackResult == TAPI_CAUSE_SUCCESS)
1468         {
1469                 IListT<AppCallInfo>* pCallList = pTelManager->__pActiveCallList->GetValuesN();
1470                 IListT<long>* pKeyList = pTelManager->__pActiveCallList->GetKeysN();
1471                 int callCount = pTelManager->__pActiveCallList->GetCount();
1472                 for (int index = 0; index < callCount; index++)
1473                 {
1474                         AppCallInfo* pTempCallInfo = new (std::nothrow) AppCallInfo();
1475                         pCallList->GetAt(index, *pTempCallInfo);
1476                         (pTempCallInfo->IsOnHold() == false) ? pTempCallInfo->SetOnHold(true) : pTempCallInfo->SetOnHold(false);
1477                         long callHandle;
1478                         pKeyList->GetAt(index, callHandle);
1479                         pTelManager->__pActiveCallList->SetValue(callHandle, *pTempCallInfo);
1480                 }
1481                 delete pCallList;
1482                 pCallList = null;
1483                 delete pKeyList;
1484                 pKeyList = null;
1485                 pCallList = pTelManager->__pActiveCallList->GetValuesN();
1486                 pTelManager->__pEventListener->HandleCallSwapOccured(*pCallList);
1487         }
1488         else
1489         {
1490                 pTelManager->__pEventListener->HandleTelephonyError(ERROR_SWAP_FAILED);
1491         }
1492 }
1493
1494 void
1495 TelephonyManager::HandleEndFromConferenceCallbackResponse(TapiHandle* pHandle, int callBackResult, void* pData, void* pUserData)
1496 {
1497         AppLogDebug("ENTER");
1498         //This callback comes if a single call is ended from Conference call.
1499         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
1500         bool isParticipantCallEnded = false;
1501
1502         if (callBackResult == TAPI_CAUSE_SUCCESS && pData != null)
1503         {
1504                 //fetch end call handle
1505                 TelCallEndCnf_t callEndNotification;
1506                 memcpy(&callEndNotification, pData, sizeof(TelCallEndCnf_t));
1507                 //Fetch conference call
1508                 AppCallInfo endConfCall;
1509                 bool isConferenceCallFound = false;
1510                 IListT<AppCallInfo>* pCallList = pTelManager->__pActiveCallList->GetValuesN();
1511                 int callCount = pCallList->GetCount();
1512                 for (int index = 0; index < callCount; index++)
1513                 {
1514                         pCallList->GetAt(index, endConfCall);
1515                         if (endConfCall.IsConferenceCall() == true)
1516                         {
1517                                 isConferenceCallFound = true;
1518                                 //Found the Conference call to be changed.
1519                                 break;
1520                         }
1521                 }
1522                 delete pCallList;
1523                 pCallList = null;
1524
1525                 //Identify the call to be ended and remove from list.
1526                 if (isConferenceCallFound == true)
1527                 {
1528                         isParticipantCallEnded = pTelManager->HandleParticipantEndedFromConference(callEndNotification.id, endConfCall);
1529                 }
1530         }
1531         else
1532         {
1533                 AppLog("TAPI Failed - %d", callBackResult);
1534         }
1535
1536         //Check if participant call or Conference call was not found, then show error
1537         if (isParticipantCallEnded == false)
1538         {
1539                 pTelManager->__pEventListener->HandleTelephonyError(ERROR_END_FROM_CONFERENCE_FAILED);
1540         }
1541         AppLogDebug("EXIT");
1542 }
1543
1544 bool
1545 TelephonyManager::HandleParticipantEndedFromConference(unsigned int participantCallHandle, AppCallInfo& conferenceCall)
1546 {
1547         AppLogDebug("ENTER");
1548         //to check if participant call was found and ended.
1549         bool isParticipantCallEnded = false;
1550         //Identify the call to be ended and remove from list.
1551         AppCallInfo callToBeEnded;
1552         IListT<AppCallInfo>* pCallerList = conferenceCall.GetCallerList();
1553         int callerCount = pCallerList->GetCount();
1554         for (int index = 0; index < callerCount; index++)
1555         {
1556                 pCallerList->GetAt(index, callToBeEnded);
1557                 if ((unsigned int)callToBeEnded.GetCallHandle()->ToLong() == participantCallHandle)
1558                 {
1559                         //Identify the call to be ended and remove from conference list
1560                         conferenceCall.RemoveCallFromCallerList(index);
1561                         //update its status to individual call before saving to database
1562                         callToBeEnded.SetConference(false);
1563                 //      SaveCallInfoToLogsDb(callToBeEnded);
1564                         isParticipantCallEnded = true;
1565                         break;
1566                 }
1567         }
1568
1569         if(isParticipantCallEnded == false)
1570         {
1571                 //participant call not found and not ended
1572                 return isParticipantCallEnded;
1573         }
1574
1575         unsigned int confCallHandle = (unsigned int)conferenceCall.GetCallHandle()->ToLong();
1576         //Check if last participant removed. If yes, switch to single active view
1577         if (conferenceCall.GetCallerListCount() == 1)
1578         {
1579                 AppCallInfo callFromList;
1580                 pCallerList = conferenceCall.GetCallerList();
1581                 pCallerList->GetAt(0, callFromList);
1582                 //construct a new single active call
1583                 AppCallInfo* pActiveCall = new (std::nothrow) AppCallInfo();
1584                 *pActiveCall = callFromList;
1585                 //update conference status and Hold status
1586                 pActiveCall->SetConference(false);
1587                 pActiveCall->SetOnHold(conferenceCall.IsOnHold());
1588
1589                 __pActiveCallList->Remove(confCallHandle);
1590                 __pActiveCallList->Add(pActiveCall->GetCallHandle()->ToLong(), *pActiveCall);
1591                 pActiveCall = null;
1592
1593                 //using the callConnected to switch to single active screen
1594                 //or update multiple active call screen
1595                 IListT<AppCallInfo>* pActiveCallList = __pActiveCallList->GetValuesN();
1596                 __pEventListener->HandleCallConnected(*pActiveCallList);
1597                 delete pActiveCallList;
1598                 pActiveCallList = null;
1599         }
1600         else
1601         {
1602                 AppCallInfo callFromList;
1603                 pCallerList = conferenceCall.GetCallerList();
1604                 pCallerList->GetAt(0, callFromList);
1605                 //construct a new conference call
1606                 AppCallInfo* pConfCallInfo = new (std::nothrow) AppCallInfo();
1607                 *pConfCallInfo = conferenceCall;
1608                 if (confCallHandle == participantCallHandle)
1609                 {
1610                         //Call Handle is same as conf call handle, so need to change conf call handle
1611                         __pActiveCallList->Remove(confCallHandle);
1612                         int newConfCallHandle = callFromList.GetCallHandle()->ToLong();
1613                         pConfCallInfo->SetCallHandle(newConfCallHandle);
1614                         __pActiveCallList->Add(newConfCallHandle, *pConfCallInfo);
1615                 }
1616                 else
1617                 {
1618                         __pActiveCallList->SetValue(confCallHandle, *pConfCallInfo);
1619                 }
1620                 __pEventListener->HandleConferenceChange();
1621         }
1622         AppLogDebug("EXIT");
1623         return isParticipantCallEnded;
1624 }
1625
1626 void
1627 TelephonyManager::HandleSplitFromConferenceCallbackResponse(TapiHandle* pHandle, int callBackResult, void* pData, void* pUserData)
1628 {
1629         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
1630         if (callBackResult == TAPI_CAUSE_SUCCESS && pData != null)
1631         {
1632                 TelCallSplitCnf_t callSplitNotification;
1633                 memcpy(&callSplitNotification, pData, sizeof(TelCallSplitCnf_t));
1634                 int confCallIndex = -1;
1635                 AppCallInfo endConfCall;
1636                 bool isConferenceCallFound = false;
1637
1638                 IListT<AppCallInfo>* pCallList = pTelManager->__pActiveCallList->GetValuesN();
1639                 int callCount = pCallList->GetCount();
1640                 for (int index = 0; index < callCount; index++)
1641                 {
1642                         pCallList->GetAt(index, endConfCall);
1643                         if (endConfCall.IsConferenceCall() == true)
1644                         {
1645                                 isConferenceCallFound = true;
1646                                 confCallIndex = index;
1647                                 //Found the Conference call to be ended.
1648                                 break;
1649                         }
1650                 }
1651
1652                 if (isConferenceCallFound == false)
1653                 {
1654                         delete pCallList;
1655                         pCallList = null;
1656                         return;
1657                 }
1658                 delete pCallList;
1659                 pCallList = null;
1660                 //Identify the call to be ended and remove from list on API success
1661                 AppCallInfo callToBeEnded;
1662                 pCallList = endConfCall.GetCallerList();
1663                 callCount = pCallList->GetCount();
1664                 for (int index = 0; index < callCount; index++)
1665                 {
1666                         pCallList->GetAt(index, callToBeEnded);
1667                         if ((unsigned int)callToBeEnded.GetCallHandle()->ToLong() == callSplitNotification.id)
1668                         {
1669                                 //Identified the call to be ended and remove from conference list
1670                                 //Add this to the active call list
1671                                 endConfCall.RemoveCallFromCallerList(index);
1672                                 break;
1673                         }
1674                 }
1675                 unsigned int confCallHandle = (unsigned int)endConfCall.GetCallHandle()->ToLong();
1676                 //Set the hold flags correctly and make the changes to the active call list
1677                 if (endConfCall.GetCallerListCount() == 1)
1678                 {
1679                         //Set hold for the other single call
1680                         // and add to the list
1681                         AppCallInfo callFromList;
1682                         pCallList = endConfCall.GetCallerList();
1683                         pCallList->GetAt(0, callFromList);
1684                         AppCallInfo* pHeldCall = new (std::nothrow) AppCallInfo();
1685                         *pHeldCall = callFromList;
1686                         pHeldCall->SetConference(false);
1687                         pHeldCall->SetOnHold(true);
1688                         pTelManager->__pActiveCallList->Remove(confCallHandle);
1689                         pTelManager->__pActiveCallList->Add(pHeldCall->GetCallHandle()->ToLong(), *pHeldCall);
1690                         pHeldCall = null;
1691                 }
1692                 else
1693                 {
1694                         //Set hold flag for conference call
1695                         endConfCall.SetOnHold(true);
1696                         AppCallInfo callFromList;
1697                         pCallList = endConfCall.GetCallerList();
1698                         pCallList->GetAt(0, callFromList);
1699
1700                         AppCallInfo* pConfCallInfo = new (std::nothrow) AppCallInfo();
1701                         *pConfCallInfo = endConfCall;
1702                         if (confCallHandle == callSplitNotification.id)
1703                         {
1704                                 //Call Handle is same as conf call handle.
1705                                 //Change conf call handle
1706                                 pTelManager->__pActiveCallList->Remove(confCallHandle);
1707                                 int tmpCallHandle = callFromList.GetCallHandle()->ToLong();
1708                                 pConfCallInfo->SetCallHandle(tmpCallHandle);
1709                                 pTelManager->__pActiveCallList->Add(callFromList.GetCallHandle()->ToLong(), *pConfCallInfo);
1710                         }
1711                         else
1712                         {
1713                                 pTelManager->__pActiveCallList->Remove(confCallHandle);
1714                                 pTelManager->__pActiveCallList->Add(confCallHandle, *pConfCallInfo);
1715                         }
1716                 }
1717                 //Add the new active call to active call list
1718                 AppCallInfo* pActiveCall = new (std::nothrow) AppCallInfo();
1719                 *pActiveCall = callToBeEnded;
1720                 pActiveCall->SetConference(false);
1721                 pActiveCall->SetOnHold(false);
1722                 pTelManager->__pActiveCallList->Remove(pActiveCall->GetCallHandle()->ToLong());
1723                 pTelManager->__pActiveCallList->Add(pActiveCall->GetCallHandle()->ToLong(), *pActiveCall);
1724                 pActiveCall = null;
1725                 //using the callConnected to switch to Multiple active screen
1726                 pCallList = pTelManager->__pActiveCallList->GetValuesN();
1727                 pTelManager->__pEventListener->HandleCallConnected(*pCallList);
1728                 pCallList = null;
1729         }
1730         else
1731         {
1732                 pTelManager->__pEventListener->HandleTelephonyError(ERROR_SPLIT_FROM_CONFERENCE_FAILED);
1733         }
1734 }
1735
1736 void
1737 TelephonyManager::HandleEndConferenceCallbackResponse(TapiHandle* pHandle, int callBackResult, void* pData, void* pUserData)
1738 {
1739         AppLog("ENTER");
1740         //This callback comes only if a conference call is ended by user.
1741         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
1742         if (callBackResult == TAPI_CAUSE_SUCCESS && pData != null)
1743         {
1744                 //fetch ended confCall details
1745                 result r = E_FAILURE;
1746                 AppCallInfo endConfCallInfo;
1747                 IListT<AppCallInfo>* pActiveCallList = pTelManager->__pActiveCallList->GetValuesN();
1748                 if(pActiveCallList != null && pActiveCallList->GetCount() > 0)
1749                 {
1750                         for (int index = 0; index < pActiveCallList->GetCount(); index++)
1751                         {
1752                                 r = pActiveCallList->GetAt(index, endConfCallInfo);
1753                                 if(r == E_SUCCESS && endConfCallInfo.IsConferenceCall() == true)
1754                                 {
1755                                         //conference call found.
1756                                         r = E_SUCCESS;
1757                                         break;
1758                                 }
1759                                 else
1760                                 {
1761                                         r = E_FAILURE;
1762                                 }
1763                         }
1764                 }
1765                 delete pActiveCallList;
1766                 pActiveCallList = null;
1767
1768                 //check if no conference call found, then return.
1769                 if(r == E_FAILURE)
1770                 {
1771                         return;
1772                 }
1773                 //remove the conference call handle from active call list to avoid any processing in HandleIdleCallback().
1774                 pTelManager->__pActiveCallList->Remove(endConfCallInfo.GetCallHandle()->ToLong());
1775                 //Save "End" Conf. call info to call log database
1776         //      pTelManager->SaveCallInfoToLogsDb(endConfCallInfo);
1777
1778                 //check if the ended call was the last call and show notification to user
1779                 bool isLastCall = (pTelManager->__pActiveCallList->GetCount() == 0);
1780                 ArrayListT<AppCallInfo>* pCallList = null;
1781                 if (isLastCall)
1782                 {
1783                         pTelManager->__pSoundManager->SetlastEndedConferenceCall();
1784                         //stop sound session
1785                         pTelManager->__pSoundManager->StopSession();
1786                         //send empty call list to show dialer or call log screen
1787                         pCallList =new (std::nothrow) ArrayListT<AppCallInfo>();
1788                         pCallList->Construct(1);
1789                         pCallList->Add(endConfCallInfo);
1790                 }
1791                 else
1792                 {
1793                         //fetch active calls to show appropriate scene
1794                         pCallList = static_cast<ArrayListT<AppCallInfo>*>(pTelManager->__pActiveCallList->GetValuesN());
1795                 }
1796                 //notify listener that call is disconnected.
1797                 pTelManager->__pEventListener->HandleCallDisconnected(isLastCall, *pCallList);
1798                 delete pCallList;
1799                 pCallList = null;
1800         }
1801         else
1802         {
1803                 pTelManager->__pEventListener->HandleTelephonyError(ERROR_END_CALL_FAILED);
1804         }
1805         AppLog("EXIT");
1806 }
1807
1808 void
1809 TelephonyManager::HandleIdleCallBack(void* pData)
1810 {
1811         AppLogDebug("ENTER");
1812         //This callback comes when any type of calls are ended
1813         //We do NOT handle below scenarios here -
1814         //1) In incoming call scenarios, if we end any active calls - handled in "AcceptCall()".
1815         //2) Incoming call automatically blocked is handled in "AnswerAutoRejectCall()" and rejection by user scenarios are handled in "HandleRejectCallbackResponse()".
1816         //3) End conference call is handled in "HandleEndConferenceCallbackResponse()".
1817         //4) End Single Call from Conference call by user is handled in "HandleEndFromConferenceCallbackResponse()".
1818         //5) End Single Call from Conference call using eventInjector is diverted to "HandleParticipantEndedFromConference()".
1819         //BUT, we do handle below scenarios here -
1820         //1) "MISSED" incoming call scenario here i.e incoming call is rejected by other caller.
1821         //2) an "unconnected" dialed call is ended by caller or other party.
1822         //3) Any normal active calls(NOT conference calls) ended by user or by other party.
1823
1824
1825
1826         TelCallStatusIdleNoti_t idleNotification;
1827         memcpy(&idleNotification, pData, sizeof(TelCallStatusIdleNoti_t));
1828         //handle end call event, show next screen
1829         unsigned int endCallHandle = idleNotification.id;
1830
1831         //empty active call list or no dialed or incoming calls - ignore this event
1832         IListT<AppCallInfo>* pActiveCallList = __pActiveCallList->GetValuesN();
1833         if((pActiveCallList == null || pActiveCallList->GetCount() <= 0) && __pDialedCall == null && __pIncomingCall == null)
1834         {
1835                 delete pActiveCallList;
1836                 AppLogDebug("EXIT - no calls exist");
1837                 return;
1838         }
1839         if(__pSoundManager->GetLastConferenceCall() == false)
1840         {
1841                 __pSoundManager->SetDisconnectTone();
1842         }
1843         //Check if ended call was among conference caller list,
1844         //then divert event to "HandleParticipantEndedFromConference()"
1845         AppCallInfo confCallInfo;
1846         bool isConferenceCallChanged = false;
1847         for (int index = 0; (pActiveCallList != null && index < pActiveCallList->GetCount()); index++)
1848         {
1849                 //fetch conference call
1850                 result r = pActiveCallList->GetAt(index, confCallInfo);
1851                 if (r == E_SUCCESS && confCallInfo.IsConferenceCall() == true)
1852                 {
1853                         //Conference call found - check if ended call is a participant
1854                         isConferenceCallChanged = HandleParticipantEndedFromConference(endCallHandle, confCallInfo);
1855                         break;
1856                 }
1857         }
1858         delete pActiveCallList;
1859         pActiveCallList = null;
1860         if (isConferenceCallChanged == true)
1861         {
1862                 //end call event handled - conference call will now either remain as conf. call
1863                 //or become single active call, if it has only 1 participant left.
1864                 __pSoundManager->SetSoundMode(SOUND_MODE_VOICE);
1865                 AppLogDebug("isConferenceCallChanged == true");
1866                 return;
1867         }
1868
1869         //check if ended call was among the active call list and not a conference call
1870         AppCallInfo endCallInfo;
1871         result r = __pActiveCallList->GetValue(endCallHandle, endCallInfo);
1872         if (r == E_SUCCESS)
1873         {
1874                 bool isHandled = HandleEndNormalActiveCall(endCallInfo);
1875                 if (isHandled == true)
1876                 {
1877                         __pSoundManager->SetSoundMode(SOUND_MODE_VOICE);
1878                         return;
1879                 }
1880         }
1881
1882         //Check if dialed call is rejected by other party
1883         bool isDialedCallEnded = ((__pDialedCall != null)  && (__pDialedCall->GetCallHandle() != null) &&(((unsigned int)__pDialedCall->GetCallHandle()->ToLong()) == idleNotification.id));
1884         //Check if "missed" incoming call is ended
1885         bool isMissedIncomingCallEnded = (__pIncomingCall != null && ((unsigned int)__pIncomingCall->GetCallHandle()->ToLong() == idleNotification.id));
1886         if (isDialedCallEnded == true || isMissedIncomingCallEnded == true)
1887         {
1888                 //It comes here only if the ended call was either a "unconnected" dialed call or an "Missed" incoming call.
1889                 bool isLastCall = (__pActiveCallList->GetCount() == 0);
1890
1891                 ArrayListT<AppCallInfo>* pCallList = null;
1892                 //Check if dialed call was ended
1893                 if (isDialedCallEnded == true)
1894                 {
1895                         AppLogDebug("Dialed Call Ended");
1896                         //Call Ended is the dialed call
1897                         endCallInfo = *(__pDialedCall);
1898                         delete __pDialedCall;
1899                         __pDialedCall = null;
1900                 }
1901                 else
1902                 {
1903                         //Here, only "Missed" Incoming call ended by other caller is handled.
1904                         AppLogDebug("Missed Call Ended");
1905                         __pSoundManager->StopAlert();
1906                         endCallInfo = *(__pIncomingCall);
1907                         delete __pIncomingCall;
1908                         __pIncomingCall = null;
1909                         //update missed status
1910                         endCallInfo.SetCalllogType(CALL_LOG_TYPE_VOICE_MISSED_UNSEEN);
1911                         //save ended call to call log db.
1912                         SaveCallInfoToLogsDb(endCallInfo);
1913                 }
1914                 /*//save ended call to call log db.
1915                 SaveCallInfoToLogsDb(endCallInfo);*/
1916
1917                 //notify listener that call is disconnected.
1918                 if (isLastCall == true)
1919                 {
1920                         __pSoundManager->StopSession();
1921                         pCallList = new (std::nothrow) ArrayListT<AppCallInfo>();
1922                         pCallList->Construct(1);
1923                 //This is done to show end call form in missed call case also
1924                 //this was done on request received from HQ to solve a bug in
1925                 //camera application. In which if a call comes when camera is
1926                 //running and user disconnects before the ui is shown the camera
1927                 //application hangs
1928                         //if (isMissedIncomingCallEnded == false)
1929                         {
1930                                 //save to list to show EndCallForm
1931                                 pCallList->Add(endCallInfo);
1932                         }
1933                         __pSoundManager->GetTimer()->Cancel();
1934
1935                 }
1936                 else
1937                 {
1938                         pCallList = static_cast<ArrayListT<AppCallInfo>*>(__pActiveCallList->GetValuesN());
1939                 }
1940                 __pEventListener->HandleCallDisconnected(isLastCall, *pCallList);
1941                 delete pCallList;
1942                 pCallList = null;
1943         }
1944         __pSoundManager->SetSoundMode(SOUND_MODE_VOICE);
1945         AppLogDebug("EXIT");
1946 }
1947
1948 bool
1949 TelephonyManager::HandleEndNormalActiveCall(AppCallInfo& endCallInfo)
1950 {
1951         AppLogDebug("Enter");
1952         // This function gets called only from HandleIdleCallback(),
1953         // to handle disconnection of normal active calls.
1954         if (endCallInfo.IsConferenceCall() == false)
1955         {
1956                 //remove the call handle from active call list
1957                 __pActiveCallList->Remove(endCallInfo.GetCallHandle()->ToLong());
1958                 //check if the ended call was the last call and show notification to user
1959                 bool isLastCall = (__pActiveCallList->GetCount() == 0);
1960                 ArrayListT<AppCallInfo>* pCallList = null;
1961                 if (isLastCall)
1962                 {
1963                         //stop sound session
1964                         __pSoundManager->StopSession();
1965                         //save "End" CallInfo to list to show EndCallForm
1966                         pCallList = new (std::nothrow) ArrayListT<AppCallInfo>();
1967                         pCallList->Construct(1);
1968                         pCallList->Add(endCallInfo);
1969                 }
1970                 else
1971                 {
1972                         //fetch active calls to show appropriate scene
1973                         pCallList = static_cast<ArrayListT<AppCallInfo>*>(__pActiveCallList->GetValuesN());
1974                 }
1975
1976                 //Save "End" call info to call log database
1977                 //SaveCallInfoToLogsDb(endCallInfo);
1978                 //notify listener that call is disconnected.
1979                 __pEventListener->HandleCallDisconnected(isLastCall, *pCallList);
1980                 delete pCallList;
1981                 pCallList = null;
1982                 return true;
1983         }
1984         return false;
1985 }
1986
1987 void
1988 TelephonyManager::HandleDialingCallBack(void* pData)
1989 {
1990         AppLogDebug("Enter");
1991         unsigned int tempHandle = 0;
1992         TelCallStatusDialingNoti_t dialingNotification;
1993         memcpy(&tempHandle, pData, sizeof(TS_UINT));
1994         dialingNotification.id = tempHandle;
1995         //check if callback is for different dialed call
1996         //Dont check for call handle, since this is the first time, we get call handle for a dialed call.
1997         if (__pDialedCall == null)
1998         {
1999                 AppLogDebug("__pDialedCall == null");
2000                 //construct new dialed call
2001                 __pDialedCall = new (std::nothrow) AppCallInfo();
2002
2003                 TelCallStatus_t callStatus;
2004                 int res = tel_get_call_status(__pTapiHandle, dialingNotification.id, &callStatus);
2005                 if (res == TAPI_CAUSE_SUCCESS)
2006                 {
2007                         //save phone number
2008                         String contactNumber(callStatus.pNumber);
2009                         __pDialedCall->SetContactNumber(contactNumber);
2010                         //set emergency state
2011                         if(callStatus.CallType == TAPI_CALL_TYPE_E911)
2012                         {
2013                                 __pDialedCall->SetEmergency(true);
2014                         }
2015                         else
2016                         {
2017                                 __pDialedCall->SetEmergency(false);
2018                         }
2019                         //save contact info
2020                         FetchContactInfoForNumber(__pDialedCall->GetContactNumber());
2021                         if (__pCachedContact != null)
2022                         {
2023                                 __pDialedCall->SetContactInfo(*(__pCachedContact));
2024                         }
2025                 }
2026         }
2027         //set call handle for dialed call
2028         __pDialedCall->SetCallHandle(dialingNotification.id);
2029         __pDialedCall->SetCalllogType(CALL_LOG_TYPE_VOICE_OUTGOING);
2030
2031         //set call notification time.
2032         long long startTime = 0;
2033         SystemTime::GetTicks(startTime);
2034         __pDialedCall->SetCallNotificationTime(startTime);
2035         SaveCallInfoToLogsDb(*__pDialedCall);
2036 }
2037
2038 void
2039 TelephonyManager::HandleActiveCallBack(void* pData)
2040 {
2041         // This callback comes whenever any new call is connected
2042         // Or, any "Held" call is activated (we ignore activation of "Held" calls).
2043         unsigned int newCallHandle = 0;
2044         TelCallStatusActiveNoti_t activeNotification;
2045         memcpy(&newCallHandle, pData, sizeof(TS_UINT));
2046         activeNotification.id = newCallHandle;
2047         IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
2048
2049         //Check if the "Held" call was activated, i.e it is already present in already activated calls list.
2050         bool toHandleEvent = true;
2051         for (int callIndex = 0; (callIndex < pCallList->GetCount() && toHandleEvent == true); callIndex++ )
2052         {
2053                 AppCallInfo tempCallInfo;
2054                 pCallList->GetAt(callIndex, tempCallInfo);
2055                 unsigned int tempCallHandle = tempCallInfo.GetCallHandle()->ToLong();
2056                 //Check if active callback came for "HandleJoinCallbackResponse"
2057                 //or for "UnHold Conference Call or normal call".
2058                 if(tempCallInfo.IsConferenceCall() == true)
2059                 {
2060                         if (tempCallHandle == activeNotification.id)
2061                         {
2062                                 toHandleEvent = false;
2063                         }
2064                         else
2065                         {
2066                                 //check individual participants of conf call
2067                                 IListT<AppCallInfo>* pConfCallList = tempCallInfo.GetCallerList();
2068                                 int confCallCount  = pConfCallList->GetCount();
2069                                 for (int callIndex = 0; (callIndex < confCallCount && toHandleEvent == true); callIndex++)
2070                                 {
2071                                         AppCallInfo confCallerInfo;
2072                                         pConfCallList->GetAt(callIndex, confCallerInfo);
2073                                         unsigned int confCallerHandle = confCallerInfo.GetCallHandle()->ToLong();
2074                                         if (confCallerHandle == activeNotification.id)
2075                                         {
2076                                                 toHandleEvent = false;
2077                                         }
2078                                 }
2079                         }
2080                 }
2081                 else if(tempCallHandle == activeNotification.id)
2082                 {
2083                         //If normal call is UnHold
2084                         toHandleEvent = false;
2085                 }
2086         }
2087
2088         //check if we need to handle this event.
2089         if(toHandleEvent == true)
2090         {
2091                 //Here it comes, only if either new dialed or incoming call was connected.
2092                 HandleCallConnected( activeNotification.id);
2093         }
2094         delete pCallList;
2095         pCallList = null;
2096 }
2097
2098 void
2099 TelephonyManager::HandleCallConnected(unsigned int connectedCallHandle)
2100 {
2101         //Here it comes, only if either new dialed or incoming call was connected.
2102         //This function should be called only from "HandleActiveCallback()".
2103         AppCallInfo* pConnectedCall = null;
2104         //to check if incoming call was connected
2105         bool isIncomingCallConnected = false;
2106
2107         __pSoundManager->SetConnectTone();
2108         //Check if dialed call is connected.
2109         if ((__pDialedCall != null) && (connectedCallHandle == (unsigned int)__pDialedCall->GetCallHandle()->ToLong()))
2110         {
2111                 pConnectedCall = __pDialedCall;
2112                 __pDialedCall = null;
2113         }
2114         //Check if connected call is incoming call.
2115         else if (__pIncomingCall != null && (connectedCallHandle == (unsigned int)__pIncomingCall->GetCallHandle()->ToLong()))
2116         {
2117                 pConnectedCall = __pIncomingCall;
2118                 __pIncomingCall = null;
2119                 isIncomingCallConnected = true;
2120         }
2121         else
2122         {
2123                 // this is just for safety. This scenario should never come.
2124                 // Otherwise Correct the code in some other function, if it comes here.
2125                 AppLogDebug("Error - Connected call was neither one of active calls nor it was dialed or incoming call");
2126                 //Construct a new CallInfo object for call
2127                 pConnectedCall = new (std::nothrow) AppCallInfo();
2128                 pConnectedCall->SetCallHandle(connectedCallHandle);
2129
2130                 TelCallStatus_t callStatus;
2131                 int res = tel_get_call_status(__pTapiHandle, connectedCallHandle, &callStatus);
2132                 if (res == TAPI_CAUSE_SUCCESS)
2133                 {
2134                         String contactNumber(callStatus.pNumber);
2135                         pConnectedCall->SetContactNumber(contactNumber);
2136                         //set emergency state
2137                         if(callStatus.CallType == TAPI_CALL_TYPE_E911)
2138                         {
2139                                 pConnectedCall->SetEmergency(true);
2140                         }
2141                         else
2142                         {
2143                                 pConnectedCall->SetEmergency(false);
2144                         }
2145                         //set call notification time
2146                         long long startTime = 0;
2147                         SystemTime::GetTicks(startTime);
2148                         pConnectedCall->SetCallNotificationTime(startTime);
2149                         if (callStatus.bMoCall == true)
2150                         {
2151                                 pConnectedCall->SetCalllogType(CALL_LOG_TYPE_VOICE_OUTGOING);
2152                         }
2153                         else
2154                         {
2155                                 pConnectedCall->SetCalllogType(CALL_LOG_TYPE_VOICE_INCOMING);
2156                                 isIncomingCallConnected = true;
2157                         }
2158                 }
2159                 //delete any dialed or incoming call objects
2160                 delete __pDialedCall;
2161                 __pDialedCall = null;
2162                 delete __pIncomingCall;
2163                 __pIncomingCall = null;
2164         }
2165
2166         //fetch contact info for connected call & it is not a hidden call
2167         if (pConnectedCall->GetContactInfo() == null && pConnectedCall->GetContactNumber().IsEmpty() == false)
2168         {
2169                 FetchContactInfoForNumber(pConnectedCall->GetContactNumber());
2170                 if (__pCachedContact != null)
2171                 {
2172                         pConnectedCall->SetContactInfo(*(__pCachedContact));
2173                 }
2174         }
2175         //set Call connect time for newly connected call
2176         long long startTime = 0;
2177         SystemTime::GetTicks(startTime);
2178         pConnectedCall->SetCallConnectTime(startTime);
2179         if(GetCurrentCallCount() == 0)
2180         {
2181                 __pSoundManager->SetMinuteReminderTone();
2182         }
2183
2184
2185         //transfer ownership to Active calls list
2186         __pActiveCallList->Add(connectedCallHandle, *(pConnectedCall));
2187         if (pConnectedCall->GetCalllogType() == CALL_LOG_TYPE_VOICE_INCOMING)
2188         {
2189                 SaveCallInfoToLogsDb(*pConnectedCall);
2190         }
2191         pConnectedCall = null;
2192
2193         //notify listener that call is connected.
2194         IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
2195         __pSoundManager->SetSoundMode(SOUND_MODE_VOICE);
2196         __pEventListener->HandleCallConnected(*pCallList);
2197         if (isIncomingCallConnected == true)
2198         {
2199                 __pSoundManager->StopAlert();
2200         }
2201         delete pCallList;
2202         pCallList = null;
2203 }
2204
2205 bool
2206 TelephonyManager::CheckIncomingCallToBeRejected(AppCallInfo* pIncomingCallInfo)
2207 {
2208         AppLogDebug("Enter");
2209         int callHandle = pIncomingCallInfo->GetCallHandle()->ToLong();
2210         String contactNumber(L"");
2211         contactNumber.Append(pIncomingCallInfo->GetContactNumber());
2212         //Check if "reject unknown calls" is set and contact number is not present in AddressBook
2213         //or if contact number is blacklisted
2214         if(__pSettingsManager != null)
2215         {
2216                 if (((__pSettingsManager->GetUnknownRejectStatus() == true) && (pIncomingCallInfo->GetContactInfo() == null))
2217                                 || (__pSettingsManager->IsCallToBeRejected(contactNumber) == true))
2218                 {
2219                         AnswerAutoRejectCall(callHandle);
2220                         return true;
2221                 }
2222         }
2223         return false;
2224 }
2225
2226 void
2227 TelephonyManager::HandleCallback(TapiHandle* pHandle, const char* pNotiId, void* pData, void* pUserData)
2228 {
2229         AppLogDebug("Enter");
2230         unsigned int tempHandle = 0;
2231         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
2232         if (pTelManager->__pSoundManager == null)
2233         {
2234                 AppLog("Creating Sound Manager");
2235                 pTelManager->__pSoundManager = new (std::nothrow) SoundManager();
2236         }
2237         //Handle telephony events
2238         if (strcmp(pNotiId, TAPI_NOTI_VOICE_CALL_STATUS_IDLE) == 0)
2239         {
2240                 pTelManager->HandleIdleCallBack(pData);
2241         }
2242         else if (strcmp(pNotiId, TAPI_NOTI_VOICE_CALL_STATUS_ACTIVE) == 0)
2243         {
2244                 pTelManager->__pSoundManager->StartSession();
2245                 pTelManager->HandleActiveCallBack(pData);
2246         }
2247         else if (strcmp(pNotiId, TAPI_NOTI_VOICE_CALL_STATUS_DIALING) == 0)
2248         {
2249                 pTelManager->HandleDialingCallBack(pData);
2250         }
2251         else
2252         {
2253                 memcpy(&tempHandle, pData, sizeof(TS_UINT));
2254         }
2255 }
2256
2257 AppCallInfo*
2258 TelephonyManager::GetConferenceCallInfoN(void)
2259 {
2260         AppCallInfo* pConfCallInfo = null;
2261
2262         IListT<AppCallInfo>* pCallList = __pActiveCallList->GetValuesN();
2263         int callCount = pCallList->GetCount();
2264         for (int index = 0; index < callCount; index++)
2265         {
2266                 AppCallInfo callInfo;
2267                 pCallList->GetAt(index, callInfo);
2268                 if (callInfo.IsConferenceCall() == true)
2269                 {
2270                         pConfCallInfo = new (std::nothrow) AppCallInfo();
2271                         *pConfCallInfo = callInfo;
2272                         //Found the Conference call
2273                         break;
2274                 }
2275         }
2276         delete pCallList;
2277         pCallList = null;
2278
2279         return pConfCallInfo;
2280 }
2281
2282 IListT<AppCallInfo>*
2283 TelephonyManager::GetCallListN(void)
2284 {
2285         ArrayListT<AppCallInfo>* pCallList = null;
2286         if (__pActiveCallList != null)
2287         {
2288                 pCallList = static_cast<ArrayListT<AppCallInfo>*>(__pActiveCallList->GetValuesN());
2289         }
2290         return pCallList;
2291 }
2292
2293 int
2294 TelephonyManager::GetCurrentCallCount(void)
2295 {
2296         if (__pActiveCallList != null)
2297         {
2298                 return __pActiveCallList->GetCount();
2299         }
2300         return 0;
2301 }
2302
2303 void
2304 TelephonyManager::StartAlert(AppCallInfo& incomingCallInfo)
2305 {
2306         String contactRingTone(L"");
2307         String contactNumber = incomingCallInfo.GetContactNumber();
2308         //check if not hidden call
2309         if(contactNumber.IsEmpty() == false)
2310         {
2311                 //fetch contact info from Db
2312                 Contact* foundContact = GetContactN(contactNumber);
2313                 if(foundContact != null)
2314                 {
2315                         //fetch custom ringtone for contact
2316                         result r = foundContact->GetValue(CONTACT_PROPERTY_ID_RINGTONE, contactRingTone);
2317                         //Now check if there is a group ring tone
2318                         if(contactRingTone.IsEmpty() == true)
2319                         {
2320                                 IList* pCategoryList = __pAddressBook->GetCategoriesByContactN(foundContact->GetRecordId());
2321                                 if(pCategoryList != null && pCategoryList->GetCount() > 0)
2322                                 {
2323                                         Category* pCategory = static_cast<Category*>(pCategoryList->GetAt(0));
2324                                         contactRingTone = pCategory->GetRingtonePath();
2325                                 }
2326                         }
2327                         AppLog("ringtone fetched - r = %d", r);
2328                         delete foundContact;
2329                         foundContact = null;
2330                 }
2331         }
2332         __pSoundManager->StartAlert(contactRingTone);
2333 }
2334
2335 void
2336 TelephonyManager::StopAlert(void)
2337 {
2338         __pSoundManager->StopAlert();
2339 }
2340
2341 result
2342 TelephonyManager::CheckValidTelePhoneNumber(const String& contactNumber)
2343 {
2344         result r = E_SUCCESS;
2345         if (contactNumber.GetLength() > TAPI_CALL_DIALDIGIT_LEN_MAX)
2346         {
2347                 r = E_FAILURE;
2348         }
2349         //TODO: check if valid phone number else return error message
2350         return r;
2351 }
2352
2353 result
2354 TelephonyManager::CheckIfMOCallIsPossible()
2355 {
2356         result r = E_SUCCESS;
2357
2358         //Check modem power status
2359         int modemStatus = 0;
2360         int errorCode = tel_check_modem_power_status(__pTapiHandle, &modemStatus);
2361         if (errorCode != TAPI_API_SUCCESS || modemStatus == TAPI_PHONE_POWER_STATUS_OFF
2362                         || modemStatus == TAPI_PHONE_POWER_STATUS_ERROR)
2363         {
2364                 r = E_FAILURE;
2365         }
2366         else
2367         {
2368                 TelSimCardStatus_t simStatus;
2369                 int simChangedStatus;
2370                 //fetch sim initialization status
2371                 int errorCode = tel_get_sim_init_info(__pTapiHandle, &simStatus, &simChangedStatus);
2372                 if (errorCode != TAPI_API_SUCCESS)
2373                 {
2374                         r = E_FAILURE;
2375                 }
2376                 else
2377                 {
2378                         switch (simStatus)
2379                         {
2380                         case TAPI_SIM_STATUS_SIM_INIT_COMPLETED: // Sim Initialization ok
2381                                 r = E_SUCCESS;
2382                                 break;
2383
2384                         case TAPI_SIM_STATUS_UNKNOWN: //initial state
2385                         case TAPI_SIM_STATUS_CARD_NOT_PRESENT: //Card not present
2386                         case TAPI_SIM_STATUS_CARD_REMOVED: //Card removed
2387                         case TAPI_SIM_STATUS_CARD_ERROR: // Bad card / On the fly, SIM gone bad
2388                                 //TODO: might want to set different error code, to give proper message to user
2389                                 r = E_FAILURE;
2390                                 break;
2391                         default:
2392                                 r = E_FAILURE;
2393                                 break;
2394                         }
2395                 }
2396         }
2397         return r;
2398 }
2399
2400 bool
2401 TelephonyManager::CheckIfMOCallIsEmergency(const String& contactNumber, bool isSimInitialized)
2402 {
2403         //TODO: extract actual telephone number from contactNumber
2404         //by deleting prefix,'P','W', etx.
2405
2406         bool isEmergency = false;
2407         //conversion "contactNumber" to char*
2408         const wchar_t* pContact = contactNumber.GetPointer();
2409         int len = contactNumber.GetLength() + 1;
2410         char* pNumber = new (std::nothrow) char[len];
2411         wcstombs(pNumber, pContact, len);
2412
2413         if(isSimInitialized)
2414         {
2415                 //used to get Ecc information for 2G and 3G.
2416                 TelSimEccList_t simEccList;
2417                 memset(&simEccList, 0x00, sizeof(TelSimEccList_t));
2418                 //Check if given number matches the sim card's emergency numbers
2419                 int errorCode = tel_get_sim_ecc(__pTapiHandle, &simEccList);
2420                 if (errorCode == TAPI_API_SUCCESS && simEccList.ecc_count > 0)
2421                 {
2422                         for (int index = 0; index < simEccList.ecc_count; index++)
2423                         {
2424                                 if ((strcmp(pNumber, simEccList.list[index].number) == 0))
2425                                 {
2426                                         isEmergency = true;
2427                                 }
2428                         }
2429                 }
2430         }
2431         else
2432         {
2433                 //TODO: check if we need to also check SOS call numbers, if sim not present.
2434         }
2435
2436         delete[] pNumber;
2437         pNumber = null;
2438         return isEmergency;
2439 }
2440
2441 result
2442 TelephonyManager::FetchContactInfoForNumber(const String& phoneNumberStr)
2443 {
2444         result r = E_FAILURE;
2445
2446         //delete previously cached data
2447         if (__pCachedContact != null)
2448         {
2449                 delete __pCachedContact;
2450                 __pCachedContact = null;
2451         }
2452
2453         //Searches contacts by phone number.
2454         IList* pContactList = __pAddressBook->SearchContactsByPhoneNumberN(phoneNumberStr);
2455         if (pContactList == null || IsFailed(GetLastResult()))
2456         {
2457                 return r;
2458         }
2459
2460         //Fetch the contact's info to be displayed
2461         IEnumerator* pContactEnum = pContactList->GetEnumeratorN();
2462         while ((E_SUCCESS == pContactEnum->MoveNext()) && (__pCachedContact == null))
2463         {
2464                 Contact* pContact = static_cast<Contact*>(pContactEnum->GetCurrent());
2465
2466                 IList* pPhoneNumberList = pContact->GetValuesN(CONTACT_MPROPERTY_ID_PHONE_NUMBERS);
2467                 if (pPhoneNumberList != null)
2468                 {
2469                         IEnumerator* pPhoneEnum = pPhoneNumberList->GetEnumeratorN();
2470                         while (E_SUCCESS == pPhoneEnum->MoveNext())
2471                         {
2472                                 PhoneNumber* pPhoneNumber = (PhoneNumber*) pPhoneEnum->GetCurrent();
2473                                 //Check if this is the correct contact
2474                                 if (pPhoneNumber->GetPhoneNumber().Equals(phoneNumberStr))
2475                                 {
2476                                         //save newly fetched contact info.
2477                                         __pCachedContact = new (std::nothrow) Contact(*pContact);
2478                                         r = E_SUCCESS;
2479                                         break;
2480                                 }
2481                         }
2482                         delete pPhoneEnum;
2483                         pPhoneNumberList->RemoveAll(true);
2484                         delete pPhoneNumberList;
2485                 }
2486         }
2487         delete pContactEnum;
2488         pContactList->RemoveAll(true);
2489         delete pContactList;
2490
2491         return r;
2492 }
2493
2494 Contact*
2495 TelephonyManager::GetContactN(const String& phoneNumber)
2496 {
2497         result r = FetchContactInfoForNumber(phoneNumber);
2498         if (!IsFailed(r))
2499         {
2500                 return new (std::nothrow) Contact(*__pCachedContact);
2501         }
2502         return null;
2503 }
2504
2505 AppCallInfo*
2506 TelephonyManager::FetchIncomingCallHandleN(const String& callHandle, const String& contactNumber)
2507 {
2508         if(__pIncomingCall != null)
2509         {
2510                 delete __pIncomingCall;
2511                 __pIncomingCall = null;
2512         }
2513
2514         if(callHandle.IsEmpty() == false)
2515         {
2516                 int incomingHandle;
2517                 Integer::Parse(callHandle,incomingHandle);
2518                 //This API call is synchronous
2519                 TelCallStatus_t callStatus;
2520                 int errCode = tel_get_call_status(__pTapiHandle, incomingHandle, &callStatus);
2521                 if (errCode != TAPI_API_SUCCESS)
2522                 {
2523                         AppLogDebug("tel_get_call_status failed");
2524                         return null;
2525                 }
2526                 //construct incoming call info object
2527                 __pIncomingCall = new (std::nothrow) AppCallInfo();
2528                 __pIncomingCall->SetCallHandle(incomingHandle);
2529
2530                 //contact number
2531                 String phoneNumber(contactNumber);
2532                 if(phoneNumber.IsEmpty() == true)
2533                 {
2534                         phoneNumber.Append(callStatus.pNumber);
2535                 }
2536                 __pIncomingCall->SetContactNumber(phoneNumber);
2537                 //set emergency state
2538                 if(callStatus.CallType == TAPI_CALL_TYPE_E911)
2539                 {
2540                         __pIncomingCall->SetEmergency(true);
2541                 }
2542                 else
2543                 {
2544                         __pIncomingCall->SetEmergency(false);
2545                 }
2546                 //set start time, when call is connected
2547                 long long startTime = 0;
2548                 SystemTime::GetTicks(startTime);
2549                 __pIncomingCall->SetCallNotificationTime(startTime);
2550                 __pIncomingCall->SetCalllogType(CALL_LOG_TYPE_VOICE_INCOMING);
2551         }
2552         else
2553         {
2554                 //TODO: This 'else' block can be removed once AppControl request API is stabilized.
2555                 //This API call is synchronous and 'HandleIncomingCallStatusCallBack' is called for each active call.
2556                 int errCode = tel_get_call_status_all(__pTapiHandle, &HandleIncomingCallStatusCallBack, this);
2557                 if (errCode != TAPI_API_SUCCESS)
2558                 {
2559                         return null;
2560                 }
2561         }
2562
2563         if(__pIncomingCall != null)
2564         {
2565                 //set call notification time
2566                 long long startTime = 0;
2567                 SystemTime::GetTicks(startTime);
2568                 __pIncomingCall->SetCallNotificationTime(startTime);
2569
2570                 if(__pIncomingCall->GetContactNumber().IsEmpty() == false)
2571                 {
2572                         //fetch contact info
2573                         FetchContactInfoForNumber(__pIncomingCall->GetContactNumber());
2574                         if (__pCachedContact != null)
2575                         {
2576                                 __pIncomingCall->SetContactInfo(*__pCachedContact);
2577                         }
2578                 }
2579
2580                 //construct a new callinfo object to pass its ownership to caller.
2581                 AppCallInfo* pNewIncomingCall = new (std::nothrow) AppCallInfo();
2582                 *pNewIncomingCall = *__pIncomingCall;
2583                 return pNewIncomingCall;
2584         }
2585         //return null, if no incoming call found
2586         return null;
2587 }
2588
2589 void
2590 TelephonyManager::HandleIncomingCallStatusCallBack(TelCallStatus_t* pCallStatus, void* pUserData)
2591 {
2592         TelephonyManager* pTelManager = (TelephonyManager*) pUserData;
2593         if (pCallStatus != null && pCallStatus->bMoCall == false
2594                         && ((pCallStatus->CallState == TAPI_CALL_STATE_INCOMING)
2595                                         || (pCallStatus->CallState == TAPI_CALL_STATE_WAITING)))
2596         {
2597                 //construct incoming call details
2598                 pTelManager->__pIncomingCall = new (std::nothrow) AppCallInfo();
2599                 pTelManager->__pIncomingCall->SetCallHandle(pCallStatus->CallHandle);
2600                 //contact number
2601                 String contactNumber(pCallStatus->pNumber);
2602                 pTelManager->__pIncomingCall->SetContactNumber(contactNumber);
2603                 //set emergency state
2604                 if(pCallStatus->CallType == TAPI_CALL_TYPE_E911)
2605                 {
2606                         pTelManager->__pIncomingCall->SetEmergency(true);
2607                 }
2608                 else
2609                 {
2610                         pTelManager->__pIncomingCall->SetEmergency(false);
2611                 }
2612
2613                 pTelManager->__pIncomingCall->SetCalllogType(CALL_LOG_TYPE_VOICE_INCOMING);
2614         }
2615 }
2616
2617 void
2618 TelephonyManager::SaveCallInfoToLogsDb(AppCallInfo& endCallInfo)
2619 {
2620         if (endCallInfo.IsConferenceCall() == false)
2621         {
2622                 //single active call - Add call ended to call log database
2623                 __pCalllogMgr->AddCallogInfoToDatabase(&endCallInfo);
2624         }
2625         else
2626         {
2627                 //Conference call
2628                 int confCallCount = endCallInfo.GetCallerListCount();
2629                 IListT<AppCallInfo>* pParticipantList = endCallInfo.GetCallerList();
2630                 for (int index = 0; index < confCallCount; index++)
2631                 {
2632                         AppCallInfo participantInfo;
2633                         if (pParticipantList->GetAt(index, participantInfo) == E_SUCCESS)
2634                         {
2635                                 //Add call ended to call log database
2636                                 __pCalllogMgr->AddCallogInfoToDatabase(&participantInfo);
2637                         }
2638                 }
2639         }
2640 }
2641
2642 void
2643 TelephonyManager::OnTelephonyNetworkStatusChanged(const NetworkStatus& networkStatus)
2644 {
2645         if(networkStatus.IsCallServiceAvailable() == false)
2646         {
2647                 EndAllCalls();
2648         }
2649 }
2650
2651 bool
2652 TelephonyManager::IsIncomingorDialingCallPresent(void)
2653 {
2654         //returns false, if incoming call or dialed call is present.
2655         return ((__pIncomingCall != null) || (__pDialedCall != null));
2656 }