Snapdragon® Telematics Application Framework (TelAF) Interface Specification
le_instStat_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 (le_instStat_ServerData, HIGH_SERVER_DATA_COUNT, sizeof(_ServerData_t))
 
 LE_REF_DEFINE_STATIC_MAP (le_instStat_ServerHandlers, LE_MEM_BLOCKS(le_instStat_ServerCmd, HIGH_SERVER_DATA_COUNT))
 
 __attribute__ ((unused))
 [in] Not used More...
 
le_msg_ServiceRef_t le_instStat_GetServiceRef (void)
 
le_msg_SessionRef_t le_instStat_GetClientSessionRef (void)
 
void le_instStat_AdvertiseService (void)
 
static void AsyncResponse_le_instStat_AddAppInstallEventHandler (const char *LE_NONNULL appName, void *contextPtr)
 
static void Handle_le_instStat_AddAppInstallEventHandler (le_msg_MessageRef_t _msgRef)
 
static void Handle_le_instStat_RemoveAppInstallEventHandler (le_msg_MessageRef_t _msgRef)
 
static void AsyncResponse_le_instStat_AddAppUninstallEventHandler (const char *LE_NONNULL appName, void *contextPtr)
 
static void Handle_le_instStat_AddAppUninstallEventHandler (le_msg_MessageRef_t _msgRef)
 
static void Handle_le_instStat_RemoveAppUninstallEventHandler (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 ( le_instStat_ServerData  ,
HIGH_SERVER_DATA_COUNT  ,
sizeof(_ServerData_t  
)

Static pool for server data objects

◆ LE_REF_DEFINE_STATIC_MAP()

LE_REF_DEFINE_STATIC_MAP ( le_instStat_ServerHandlers  ,
LE_MEM_BLOCKS(le_instStat_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.

◆ le_instStat_GetServiceRef()

le_msg_ServiceRef_t le_instStat_GetServiceRef ( void  )

Get the server service reference

◆ le_instStat_GetClientSessionRef()

le_msg_SessionRef_t le_instStat_GetClientSessionRef ( void  )

Get the client session reference for the current message

◆ le_instStat_AdvertiseService()

void le_instStat_AdvertiseService ( void  )

Initialize the server and advertise the service.

◆ AsyncResponse_le_instStat_AddAppInstallEventHandler()

static void AsyncResponse_le_instStat_AddAppInstallEventHandler ( const char *LE_NONNULL  appName,
void *  contextPtr 
)
static

◆ Handle_le_instStat_AddAppInstallEventHandler()

static void Handle_le_instStat_AddAppInstallEventHandler ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_le_instStat_RemoveAppInstallEventHandler()

static void Handle_le_instStat_RemoveAppInstallEventHandler ( le_msg_MessageRef_t  _msgRef)
static

◆ AsyncResponse_le_instStat_AddAppUninstallEventHandler()

static void AsyncResponse_le_instStat_AddAppUninstallEventHandler ( const char *LE_NONNULL  appName,
void *  contextPtr 
)
static

◆ Handle_le_instStat_AddAppUninstallEventHandler()

static void Handle_le_instStat_AddAppUninstallEventHandler ( le_msg_MessageRef_t  _msgRef)
static

◆ Handle_le_instStat_RemoveAppUninstallEventHandler()

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