Snapdragon® Telematics Application Framework (TelAF) Interface Specification
taf_voicecall_server.c File Reference

Data Structures

struct  _ServerData_t
 

Macros

#define HIGH_SERVER_DATA_COUNT   3
 
#define _LOCK   LE_ASSERT(pthread_mutex_lock(&_Mutex) == 0);
 
#define _UNLOCK   LE_ASSERT(pthread_mutex_unlock(&_Mutex) == 0);
 
#define TRACE(...)
 
#define IS_TRACE_ENABLED   0
 

Typedefs

typedef void(* RemoveHandlerFunc_t) (void *handlerRef)
 

Functions

 LE_MEM_DEFINE_STATIC_POOL (taf_voicecall_ServerData, HIGH_SERVER_DATA_COUNT, sizeof(_ServerData_t))
 
 LE_REF_DEFINE_STATIC_MAP (taf_voicecall_ServerHandlers, LE_MEM_BLOCKS(taf_voicecall_ServerCmd, HIGH_SERVER_DATA_COUNT))
 
 __attribute__ ((unused))
 [in] Not used More...
 
le_msg_ServiceRef_t taf_voicecall_GetServiceRef (void)
 
le_msg_SessionRef_t taf_voicecall_GetClientSessionRef (void)
 
void taf_voicecall_AdvertiseService (void)
 
static void AsyncResponse_taf_voicecall_AddStateHandler (taf_voicecall_CallRef_t reference, const char *LE_NONNULL identifer, taf_voicecall_Event_t event, void *contextPtr)
 
static void Handle_taf_voicecall_AddStateHandler (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_RemoveStateHandler (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_Start (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_End (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_Delete (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_Answer (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_GetEndCause (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_Hold (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_Resume (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_voicecall_Swap (le_msg_MessageRef_t _msgRef)
 
static void ServerMsgRecvHandler (le_msg_MessageRef_t msgRef, void *contextPtr)
 

Variables

static le_mem_PoolRef_t _ServerDataPool
 
static le_ref_MapRef_t _HandlerRefMap
 

Macro Definition Documentation

◆ HIGH_SERVER_DATA_COUNT

#define HIGH_SERVER_DATA_COUNT   3

Expected number of simultaneous server data objects.

◆ _LOCK

#define _LOCK   LE_ASSERT(pthread_mutex_lock(&_Mutex) == 0);

◆ _UNLOCK

#define _UNLOCK   LE_ASSERT(pthread_mutex_unlock(&_Mutex) == 0);

◆ TRACE

#define TRACE (   ...)

Trace reference used for controlling tracing in this module.

◆ IS_TRACE_ENABLED

#define IS_TRACE_ENABLED   0

Typedef Documentation

◆ RemoveHandlerFunc_t

typedef void(* RemoveHandlerFunc_t) (void *handlerRef)

Type definition for generic function to remove a handler, given the handler ref.

Function Documentation

◆ LE_MEM_DEFINE_STATIC_POOL()

LE_MEM_DEFINE_STATIC_POOL ( taf_voicecall_ServerData  ,
HIGH_SERVER_DATA_COUNT  ,
sizeof(_ServerData_t  
)

Static pool for server data objects

◆ LE_REF_DEFINE_STATIC_MAP()

LE_REF_DEFINE_STATIC_MAP ( taf_voicecall_ServerHandlers  ,
LE_MEM_BLOCKS(taf_voicecall_ServerCmd, HIGH_SERVER_DATA_COUNT  
)

Static safe reference map for use with Add/Remove handler references

◆ __attribute__()

__attribute__ ( (unused)  )

[in] Not used

[in] Reference to the message.

Mutex and associated macros for use with the above HandlerRefMap.

Unused attribute is needed because this variable may not always get used. Per-server data:

  • Server service reference
  • Server thread reference
  • Client session reference

Cleanup client data if the client is no longer connected

Send the message to the client (queued version)

This is a wrapper around le_msg_Send() with an extra parameter so that it can be used with le_event_QueueFunctionToThread().

Send the message to the client.

◆ taf_voicecall_GetServiceRef()

le_msg_ServiceRef_t taf_voicecall_GetServiceRef ( void  )

Get the server service reference

◆ taf_voicecall_GetClientSessionRef()

le_msg_SessionRef_t taf_voicecall_GetClientSessionRef ( void  )

Get the client session reference for the current message

◆ taf_voicecall_AdvertiseService()

void taf_voicecall_AdvertiseService ( void  )

Initialize the server and advertise the service.

◆ AsyncResponse_taf_voicecall_AddStateHandler()

static void AsyncResponse_taf_voicecall_AddStateHandler ( taf_voicecall_CallRef_t  reference,
const char *LE_NONNULL  identifer,
taf_voicecall_Event_t  event,
void *  contextPtr 
)
static

◆ Handle_taf_voicecall_AddStateHandler()

static void Handle_taf_voicecall_AddStateHandler ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_RemoveStateHandler()

static void Handle_taf_voicecall_RemoveStateHandler ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_Start()

static void Handle_taf_voicecall_Start ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_End()

static void Handle_taf_voicecall_End ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_Delete()

static void Handle_taf_voicecall_Delete ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_Answer()

static void Handle_taf_voicecall_Answer ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_GetEndCause()

static void Handle_taf_voicecall_GetEndCause ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_Hold()

static void Handle_taf_voicecall_Hold ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_Resume()

static void Handle_taf_voicecall_Resume ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_voicecall_Swap()

static void Handle_taf_voicecall_Swap ( le_msg_MessageRef_t  _msgRef)
static

◆ ServerMsgRecvHandler()

static void ServerMsgRecvHandler ( le_msg_MessageRef_t  msgRef,
void *  contextPtr 
)
static

Variable Documentation

◆ _ServerDataPool

le_mem_PoolRef_t _ServerDataPool
static

The memory pool for server data objects

◆ _HandlerRefMap

le_ref_MapRef_t _HandlerRefMap
static

Safe Reference Map for use with Add/Remove handler references

Warning
Use _Mutex, defined below, to protect accesses to this data.