Snapdragon® Telematics Application Framework (TelAF) Interface Specification
taf_update_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_update_ServerData, HIGH_SERVER_DATA_COUNT, sizeof(_ServerData_t))
 
 LE_REF_DEFINE_STATIC_MAP (taf_update_ServerHandlers, LE_MEM_BLOCKS(taf_update_ServerCmd, HIGH_SERVER_DATA_COUNT))
 
 __attribute__ ((unused))
 [in] Not used More...
 
le_msg_ServiceRef_t taf_update_GetServiceRef (void)
 
le_msg_SessionRef_t taf_update_GetClientSessionRef (void)
 
void taf_update_AdvertiseService (void)
 
static void AsyncResponse_taf_update_AddStateHandler (const taf_update_StateInd_t *LE_NONNULL stateIndPtr, void *contextPtr)
 
static void Handle_taf_update_AddStateHandler (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_RemoveStateHandler (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_Download (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_Install (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_GetDownloadSession (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_StartDownload (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_PauseDownload (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_ResumeDownload (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_CancelDownload (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_GetInstallationSession (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_InstallPreCheck (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_StartInstall (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_InstallPostCheck (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_GetActiveBank (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_VerifyActivation (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_Rollback (le_msg_MessageRef_t _msgRef)
 
static void Handle_taf_update_Sync (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_update_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_update_ServerHandlers  ,
LE_MEM_BLOCKS(taf_update_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_update_GetServiceRef()

le_msg_ServiceRef_t taf_update_GetServiceRef ( void  )

Get the server service reference

◆ taf_update_GetClientSessionRef()

le_msg_SessionRef_t taf_update_GetClientSessionRef ( void  )

Get the client session reference for the current message

◆ taf_update_AdvertiseService()

void taf_update_AdvertiseService ( void  )

Initialize the server and advertise the service.

◆ AsyncResponse_taf_update_AddStateHandler()

static void AsyncResponse_taf_update_AddStateHandler ( const taf_update_StateInd_t *LE_NONNULL  stateIndPtr,
void *  contextPtr 
)
static

◆ Handle_taf_update_AddStateHandler()

static void Handle_taf_update_AddStateHandler ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_RemoveStateHandler()

static void Handle_taf_update_RemoveStateHandler ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_Download()

static void Handle_taf_update_Download ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_Install()

static void Handle_taf_update_Install ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_GetDownloadSession()

static void Handle_taf_update_GetDownloadSession ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_StartDownload()

static void Handle_taf_update_StartDownload ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_PauseDownload()

static void Handle_taf_update_PauseDownload ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_ResumeDownload()

static void Handle_taf_update_ResumeDownload ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_CancelDownload()

static void Handle_taf_update_CancelDownload ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_GetInstallationSession()

static void Handle_taf_update_GetInstallationSession ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_InstallPreCheck()

static void Handle_taf_update_InstallPreCheck ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_StartInstall()

static void Handle_taf_update_StartInstall ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_InstallPostCheck()

static void Handle_taf_update_InstallPostCheck ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_GetActiveBank()

static void Handle_taf_update_GetActiveBank ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_VerifyActivation()

static void Handle_taf_update_VerifyActivation ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_Rollback()

static void Handle_taf_update_Rollback ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_taf_update_Sync()

static void Handle_taf_update_Sync ( 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.