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

Data Structures

struct  _ClientThreadData_t
 

Macros

#define LOCK_INIT   le_mutex_Lock(le_ifgen_InitMutexRef);
 Locks the mutex. More...
 
#define UNLOCK_INIT   le_mutex_Unlock(le_ifgen_InitMutexRef);
 Unlocks the mutex. More...
 

Functions

 LE_MEM_DEFINE_STATIC_POOL (le_appCtrl_ClientThreadData, LE_CDATA_COMPONENT_COUNT, sizeof(_ClientThreadData_t))
 
static le_result_t InitClientForThread (bool isBlocking)
 
static _ClientThreadData_tGetClientThreadDataPtr (void)
 
 __attribute__ ((unused))
 [in] Not used More...
 
static void ClientThreadDestructor (void *objPtr)
 
static void InitCommonData (void)
 
static le_result_t DoConnectService (bool isBlocking)
 
void le_appCtrl_ConnectService (void)
 
le_result_t le_appCtrl_TryConnectService (void)
 
static void SessionCloseHandler (le_msg_SessionRef_t sessionRef, void *contextPtr)
 
void le_appCtrl_SetServerDisconnectHandler (le_appCtrl_DisconnectHandler_t disconnectHandler, void *contextPtr)
 
static void NonExitSessionCloseHandler (le_msg_SessionRef_t sessionRef, void *contextPtr)
 
void le_appCtrl_SetNonExitServerDisconnectHandler (le_appCtrl_DisconnectHandler_t disconnectHandler, void *contextPtr)
 
void le_appCtrl_DisconnectService (void)
 
le_appCtrl_AppRef_t le_appCtrl_GetRef (const char *LE_NONNULL appName)
 
void le_appCtrl_ReleaseRef (le_appCtrl_AppRef_t appRef)
 
void le_appCtrl_SetRun (le_appCtrl_AppRef_t appRef, const char *LE_NONNULL procName, bool run)
 
void le_appCtrl_SetDebug (le_appCtrl_AppRef_t appRef, const char *LE_NONNULL procName, bool debug)
 
le_result_t le_appCtrl_Import (le_appCtrl_AppRef_t appRef, const char *LE_NONNULL path)
 
le_result_t le_appCtrl_SetDevicePerm (le_appCtrl_AppRef_t appRef, const char *LE_NONNULL path, const char *LE_NONNULL permissions)
 
le_appCtrl_TraceAttachHandlerRef_t le_appCtrl_AddTraceAttachHandler (le_appCtrl_AppRef_t appRef, le_appCtrl_TraceAttachHandlerFunc_t attachToPidPtr, void *contextPtr)
 
void le_appCtrl_RemoveTraceAttachHandler (le_appCtrl_TraceAttachHandlerRef_t handlerRef)
 
void le_appCtrl_TraceUnblock (le_appCtrl_AppRef_t appRef, int32_t pid)
 
le_result_t le_appCtrl_Start (const char *LE_NONNULL appName)
 
le_result_t le_appCtrl_Stop (const char *LE_NONNULL appName)
 

Variables

static le_mem_PoolRef_t _ClientThreadDataPool
 
static pthread_key_t _ThreadDataKey
 
static bool CommonDataInitialized = false
 
le_mutex_Ref_t le_ifgen_InitMutexRef
 

Macro Definition Documentation

◆ LOCK_INIT

#define LOCK_INIT   le_mutex_Lock(le_ifgen_InitMutexRef);

Locks the mutex.

◆ UNLOCK_INIT

#define UNLOCK_INIT   le_mutex_Unlock(le_ifgen_InitMutexRef);

Unlocks the mutex.

Function Documentation

◆ LE_MEM_DEFINE_STATIC_POOL()

LE_MEM_DEFINE_STATIC_POOL ( le_appCtrl_ClientThreadData  ,
LE_CDATA_COMPONENT_COUNT  ,
sizeof(_ClientThreadData_t  
)

Static pool for client threads.

◆ InitClientForThread()

static le_result_t InitClientForThread ( bool  isBlocking)
static

Initialize thread specific data, and connect to the service for the current thread.

Returns
  • LE_OK if the client connected successfully to the service.
  • LE_UNAVAILABLE if the server is not currently offering the service to which the client is bound.
  • LE_NOT_PERMITTED if the client interface is not bound to any service (doesn't have a binding).
  • LE_COMM_ERROR if the Service Directory cannot be reached.

◆ GetClientThreadDataPtr()

static _ClientThreadData_t* GetClientThreadDataPtr ( void  )
static

Get a pointer to the client thread data for the current thread.

If the current thread does not have client data, then NULL is returned

◆ __attribute__()

__attribute__ ( (unused)  )

[in] Not used

[in] Reference to the message.

Return the sessionRef for the current thread.

If the current thread does not have a session ref, then this is a fatal error.

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.

◆ ClientThreadDestructor()

static void ClientThreadDestructor ( void *  objPtr)
static

Destructor function for client thread objects.

◆ InitCommonData()

static void InitCommonData ( void  )
static

Init data that is common across all threads.

◆ DoConnectService()

static le_result_t DoConnectService ( bool  isBlocking)
static

Connect to the service, using either blocking or non-blocking calls.

This function implements the details of the public ConnectService functions.

Returns
  • LE_OK if the client connected successfully to the service.
  • LE_UNAVAILABLE if the server is not currently offering the service to which the client is bound.
  • LE_NOT_PERMITTED if the client interface is not bound to any service (doesn't have a binding).
  • LE_COMM_ERROR if the Service Directory cannot be reached.

◆ le_appCtrl_ConnectService()

void le_appCtrl_ConnectService ( void  )

Connect the current client thread to the service providing this API. Block until the service is available.

For each thread that wants to use this API, either ConnectService or TryConnectService must be called before any other functions in this API. Normally, ConnectService is automatically called for the main thread, but not for any other thread. For details, see apiFilesC_client.

This function is created automatically.

◆ le_appCtrl_TryConnectService()

le_result_t le_appCtrl_TryConnectService ( void  )

Try to connect the current client thread to the service providing this API. Return with an error if the service is not available.

For each thread that wants to use this API, either ConnectService or TryConnectService must be called before any other functions in this API. Normally, ConnectService is automatically called for the main thread, but not for any other thread. For details, see apiFilesC_client.

This function is created automatically.

Returns
  • LE_OK if the client connected successfully to the service.
  • LE_UNAVAILABLE if the server is not currently offering the service to which the client is bound.
  • LE_NOT_PERMITTED if the client interface is not bound to any service (doesn't have a binding).
  • LE_COMM_ERROR if the Service Directory cannot be reached.

◆ SessionCloseHandler()

static void SessionCloseHandler ( le_msg_SessionRef_t  sessionRef,
void *  contextPtr 
)
static

◆ le_appCtrl_SetServerDisconnectHandler()

void le_appCtrl_SetServerDisconnectHandler ( le_appCtrl_DisconnectHandler_t  disconnectHandler,
void *  contextPtr 
)

Set handler called when server disconnection is detected.

When a server connection is lost, call this handler then exit with LE_FATAL. If a program wants to continue without exiting, it should call longjmp() from inside the handler.

◆ NonExitSessionCloseHandler()

static void NonExitSessionCloseHandler ( le_msg_SessionRef_t  sessionRef,
void *  contextPtr 
)
static

◆ le_appCtrl_SetNonExitServerDisconnectHandler()

void le_appCtrl_SetNonExitServerDisconnectHandler ( le_appCtrl_DisconnectHandler_t  disconnectHandler,
void *  contextPtr 
)

Set handler called when server disconnection is detected without exiting.

When a server connection is lost, call this handler without exit.

Warning
When using the API, it needs the application developer to handle some cases like re-connecting and recycling the resources. For most of cases, it is safe to use SetServerDisconnectHandler.

◆ le_appCtrl_DisconnectService()

void le_appCtrl_DisconnectService ( void  )

Disconnect the current client thread from the service providing this API.

Normally, this function doesn't need to be called. After this function is called, there's no longer a connection to the service, and the functions in this API can't be used. For details, see apiFilesC_client.

This function is created automatically.

◆ le_appCtrl_GetRef()

le_appCtrl_AppRef_t le_appCtrl_GetRef ( const char *LE_NONNULL  appName)

Gets a reference to an app.

Returns
Reference to the named app. NULL on error (check logs for errors).
Parameters
[in]appNameName of the app to get the ref for.

◆ le_appCtrl_ReleaseRef()

void le_appCtrl_ReleaseRef ( le_appCtrl_AppRef_t  appRef)

Release the reference to an app, resetting all overrides set for this app using other functions, like SetRun(), SetDevicePerm(), etc.

Parameters
[in]appRefRef to the app.

◆ le_appCtrl_SetRun()

void le_appCtrl_SetRun ( le_appCtrl_AppRef_t  appRef,
const char *LE_NONNULL  procName,
bool  run 
)

Sets the run flag for a process in an app.

If there is an error this function will kill the calling client.

Parameters
[in]appRefRef to the app.
[in]procNameProcess name to set the run flag for.
[in]runFlag to run the process or not.

◆ le_appCtrl_SetDebug()

void le_appCtrl_SetDebug ( le_appCtrl_AppRef_t  appRef,
const char *LE_NONNULL  procName,
bool  debug 
)

Sets the debug flag for a process in an app.

If there is an error this function will kill the calling client.

Parameters
[in]appRefRef to the app.
[in]procNameProcess name to set the run flag for.
[in]debugFlag to debug the process or not.

◆ le_appCtrl_Import()

le_result_t le_appCtrl_Import ( le_appCtrl_AppRef_t  appRef,
const char *LE_NONNULL  path 
)

Imports a file into the app's working directory.

Returns
LE_OK if successfully imported the file. LE_DUPLICATE if the path conflicts with items already in the app's working directory. LE_NOT_FOUND if the path does not point to a valid file. LE_BAD_PARAMETER if the path is formatted incorrectly. LE_FAULT if there was some other error.
Note
If the caller is passing an invalid reference to the app, it is a fatal error, the function will not return.
Parameters
[in]appRefRef to the app.
[in]pathAbsolute path to the file to import.

◆ le_appCtrl_SetDevicePerm()

le_result_t le_appCtrl_SetDevicePerm ( le_appCtrl_AppRef_t  appRef,
const char *LE_NONNULL  path,
const char *LE_NONNULL  permissions 
)

Sets a device file's permissions.

Returns
LE_OK if successfully set the device's permissions. LE_NOT_FOUND if the path does not point to a valid device. LE_BAD_PARAMETER if the path is formatted incorrectly. LE_FAULT if there was some other error.
Note
If the caller is passing an invalid reference to the app, it is a fatal error, the function will not return.
Parameters
[in]appRefRef to the app.
[in]pathAbsolute path to the device.
[in]permissionsPermission string, "r", "w", "rw".

◆ le_appCtrl_AddTraceAttachHandler()

le_appCtrl_TraceAttachHandlerRef_t le_appCtrl_AddTraceAttachHandler ( le_appCtrl_AppRef_t  appRef,
le_appCtrl_TraceAttachHandlerFunc_t  attachToPidPtr,
void *  contextPtr 
)

Add handler function for EVENT 'le_appCtrl_TraceAttach'

Event that indicates the process is blocked and can be attached to.

Parameters
[in]appRefRef to the app.
[in]attachToPidPtrAttach handler to register.
[in]contextPtr

◆ le_appCtrl_RemoveTraceAttachHandler()

void le_appCtrl_RemoveTraceAttachHandler ( le_appCtrl_TraceAttachHandlerRef_t  handlerRef)

Remove handler function for EVENT 'le_appCtrl_TraceAttach'

Parameters
[in]handlerRef

◆ le_appCtrl_TraceUnblock()

void le_appCtrl_TraceUnblock ( le_appCtrl_AppRef_t  appRef,
int32_t  pid 
)

Unblocks the traced process. This should normally be done once the tracer has successfully attached to the process.

Note
If the caller is passing an invalid reference to the app, it is a fatal error, the function will not return.
Parameters
[in]appRefRef to the app.
[in]pidPID of the process to unblock.

◆ le_appCtrl_Start()

le_result_t le_appCtrl_Start ( const char *LE_NONNULL  appName)

Starts an app.

Returns
LE_OK if the app is successfully started. LE_DUPLICATE if the app is already running. LE_NOT_FOUND if the app isn't installed. LE_FAULT if there was an error and the app could not be launched.
Parameters
[in]appNameName of the app to start.

◆ le_appCtrl_Stop()

le_result_t le_appCtrl_Stop ( const char *LE_NONNULL  appName)

Stops an app.

Returns
LE_OK if successful. LE_NOT_FOUND if the app could not be found.
Parameters
[in]appNameName of the app to stop.

Variable Documentation

◆ _ClientThreadDataPool

le_mem_PoolRef_t _ClientThreadDataPool
static

The memory pool for client thread objects

◆ _ThreadDataKey

pthread_key_t _ThreadDataKey
static

Key under which the pointer to the Thread Object (_ClientThreadData_t) will be kept in thread-local storage. This allows a thread to quickly get a pointer to its own Thread Object.

◆ CommonDataInitialized

bool CommonDataInitialized = false
static

This global flag is shared by all client threads, and is used to indicate whether the common data has been initialized.

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

◆ le_ifgen_InitMutexRef

le_mutex_Ref_t le_ifgen_InitMutexRef

Mutex and associated macros for use with the above CommonDataInitialized.