interface_sdk_c/IPCKit/ipc_cremote_object.h
Lixiaoying25 ba2492b2da 修复kit设计与实现不一致问题
Signed-off-by: Lixiaoying25 <lixiaoying25@huawei.com>
2024-06-11 17:25:05 +08:00

288 lines
11 KiB
C

/*
* Copyright (c) 2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef CAPI_INCLUDE_IPC_CREMOTE_OBJECT_H
#define CAPI_INCLUDE_IPC_CREMOTE_OBJECT_H
/**
* @addtogroup OHIPCRemoteObject
* @{
*
* @brief Provides C interfaces for creating and destroying a remote object, transferring data,
* and observing the dead status of a remote object.
*
* @syscap SystemCapability.Communication.IPC.Core
* @since 12
*/
/**
* @file ipc_cremote_object.h
*
* @brief Defines C interfaces for creating and destroying a remote object, transferring data,
* and observing the dead status of a remote object.
*
* @library libipc_capi.so
* @kit IPCKit
* @syscap SystemCapability.Communication.IPC.Core
* @since 12
*/
#include <stdint.h>
#include "ipc_cparcel.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Defines an <b>OHIPCDeathRecipient</b> object, which is used to receive a notification
* when the <b>OHIPCRemoteStub</b> object dies unexpectedly.
*
* @syscap SystemCapability.Communication.IPC.Core
* @since 12
*/
struct OHIPCDeathRecipient;
/**
* @brief Typedef an <b>OHIPCDeathRecipient</b> object.
*
* @syscap SystemCapability.Communication.IPC.Core
* @since 12
*/
typedef struct OHIPCDeathRecipient OHIPCDeathRecipient;
/**
* @brief Called to process the remote data request at the stub.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param code Custom command word for communication, in the range [0x01, 0x00ffffff].
* @param data Pointer to the request data object. It cannot be NULL or released in the function.
* @param reply Pointer to the response data object. It cannot be NULL or released in the function.
* If this function returns an error, data cannot be written to this parameter.
* @param userData Pointer to the user data. It can be NULL.
* @return Returns {@link OH_IPC_ErrorCode#OH_IPC_SUCCESS} if the operation is successful. \n
* Returns a custom error code in the range [1909001, 1909999] or a system error code otherwise. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_INVALID_USER_ERROR_CODE} if the custom error code is out of the value range.
* @since 12
*/
typedef int (*OH_OnRemoteRequestCallback)(uint32_t code, const OHIPCParcel *data,
OHIPCParcel *reply, void *userData);
/**
* @brief Called when an observed object is destroyed.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param userData Pointer to the user data. It can be NULL.
* @since 12
*/
typedef void (*OH_OnRemoteDestroyCallback)(void *userData);
/**
* @brief Creates an <b>OHIPCRemoteStub</b> object.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param descriptor Pointer to the descriptor of the <b>OHIPCRemoteStub</b> object to create. It cannot be NULL.
* @param requestCallback Callback used to process the data request. It cannot be NULL.
* @param destroyCallback Callback to be invoked when the object is destroyed. It can be NULL.
* @param userData Pointer to the user data. It can be NULL.
* @return Returns the pointer to the <b>OHIPCRemoteStub</b> object created if the operation is successful;
* returns NULL otherwise.
* @since 12
*/
OHIPCRemoteStub* OH_IPCRemoteStub_Create(const char *descriptor, OH_OnRemoteRequestCallback requestCallback,
OH_OnRemoteDestroyCallback destroyCallback, void *userData);
/**
* @brief Destroys an <b>OHIPCRemoteStub</b> object.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param stub Pointer to the <b>OHIPCRemoteStub</b> object to destroy.
* @since 12
*/
void OH_IPCRemoteStub_Destroy(OHIPCRemoteStub *stub);
/**
* @brief Destroys an <b>OHIPCRemoteProxy</b> object.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param proxy Pointer to the <b>OHIPCRemoteProxy</b> object to destroy.
* @since 12
*/
void OH_IPCRemoteProxy_Destroy(OHIPCRemoteProxy *proxy);
/**
* @brief Enumerates the IPC request modes.
*
* @since 12
*/
typedef enum {
/** Synchronous request. */
OH_IPC_REQUEST_MODE_SYNC = 0,
/** Asynchronous request. */
OH_IPC_REQUEST_MODE_ASYNC = 1,
} OH_IPC_RequestMode;
/**
* @brief Defines the IPC message options.
*
* @since 12
*/
#pragma pack(4)
typedef struct {
/** Message request mode. */
OH_IPC_RequestMode mode;
/** Parameter reserved for RPC, which is invalid for IPC. */
uint32_t timeout;
/** Reserved parameter, which must be NULL. */
void* reserved;
} OH_IPC_MessageOption;
#pragma pack()
/**
* @brief Sends an IPC message.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param proxy Pointer to the <b>OHIPCRemoteProxy</b> object. It cannot be NULL.
* @param code Custom IPC command word, in the range [0x01, 0x00ffffff].
* @param data Pointer to the request data object. It cannot be NULL.
* @param reply Pointer to the response data object. It cannot be NULL in the case of a synchronous request,
* and can be NULL in the case of an asynchronous request.
* @param option Pointer to the message options. It can be NULL, which indicates a synchronous request.
* @return Returns {@link OH_IPC_ErrorCode#OH_IPC_SUCCESS} if the operation is successful. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_CHECK_PARAM_ERROR} if invalid parameters are found. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_DEAD_REMOTE_OBJECT} if the <b>OHIPCRemoteStub</b> object is dead. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_CODE_OUT_OF_RANGE} if the error code is out of the value range. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_INNER_ERROR} or a custom error code in other cases.
* @since 12
*/
int OH_IPCRemoteProxy_SendRequest(const OHIPCRemoteProxy *proxy, uint32_t code, const OHIPCParcel *data,
OHIPCParcel *reply, const OH_IPC_MessageOption *option);
/**
* @brief Obtains the interface descriptor from the stub.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param proxy Pointer to the <b>OHIPCRemoteProxy</b> object. It cannot be NULL.
* @param descriptor Double pointer to the address of the memory for holding the interface descriptor.
* The memory is allocated by the allocator provided by the user and needs to be released. This pointer cannot be NULL.
* If an error code is returned, you still need to check whether the memory is empty and release the memory.
* Otherwise, memory leaks may occur.
* @param len Pointer to the length of the data to be written to the descriptor, including the terminator.
* This parameter cannot be NULL.
* @param allocator Memory allocator specified by the user for allocating memory for <b>descriptor</b>.
* It cannot be NULL.
* @return Returns {@link OH_IPC_ErrorCode#OH_IPC_SUCCESS} if the operation is successful. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_CHECK_PARAM_ERROR} if incorrect parameters are found. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_DEAD_REMOTE_OBJECT} if the <b>OHIPCRemoteStub</b> object is dead. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_MEM_ALLOCATOR_ERROR} if memory allocation fails. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_PARCEL_READ_ERROR} if the data in the serialized object failed to be read.
* @since 12
*/
int OH_IPCRemoteProxy_GetInterfaceDescriptor(OHIPCRemoteProxy *proxy, char **descriptor, int32_t *len,
OH_IPC_MemAllocator allocator);
/**
* @brief Called when the <b>OHIPCRemoteStub</b> object dies unexpectedly.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param userData Pointer to the user data. It can be NULL.
* @since 12
*/
typedef void (*OH_OnDeathRecipientCallback)(void *userData);
/**
* @brief Called when the <b>OHIPCDeathRecipient</b> object is destroyed.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param userData Pointer to the user data. It can be NULL.
* @since 12
*/
typedef void (*OH_OnDeathRecipientDestroyCallback)(void *userData);
/**
* @brief Creates an <b>OHIPCDeathRecipient</b> object, which allows a notification to be received
* when the <b>OHIPCRemoteStub</b> object dies unexpectedly.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param deathRecipientCallback Callback to be invoked when the <b>OHIPCRemoteStub</b> object is dead.
* It cannot be NULL.
* @param destroyCallback Callback to be invoked when the object is destroyed. It can be NULL.
* @param userData Pointer to the user data. It can be NULL.
* @return Returns the pointer to the <b>OHIPCDeathRecipient</b> object created if the operation is successful;
* returns NULL otherwise.
* @since 12
*/
OHIPCDeathRecipient* OH_IPCDeathRecipient_Create(OH_OnDeathRecipientCallback deathRecipientCallback,
OH_OnDeathRecipientDestroyCallback destroyCallback, void *userData);
/**
* @brief Destroys an <b>OHIPCDeathRecipient</b> object.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param recipient Pointer to the <b>OHIPCDeathRecipient</b> object to destroy.
* @since 12
*/
void OH_IPCDeathRecipient_Destroy(OHIPCDeathRecipient *recipient);
/**
* @brief Subscribes to the death of an <b>OHIPCRemoteStub</b> object for an <b>OHIPCRemoteProxy</b> object.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param proxy Pointer to the <b>OHIPCRemoteProxy</b> object that subscribes to the death notification.
* It cannot be NULL.
* @param recipient Pointer to the object that receives the death notification of the <b>OHIPCRemoteStub</b> object.
* It cannot be NULL.
* @return Returns {@link OH_IPC_ErrorCode#OH_IPC_SUCCESS} if the operation is successful. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_CHECK_PARAM_ERROR} if incorrect parameters are found. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_INNER_ERROR} in other cases.
* @since 12
*/
int OH_IPCRemoteProxy_AddDeathRecipient(OHIPCRemoteProxy *proxy, OHIPCDeathRecipient *recipient);
/**
* @brief Unsubscribes from the death of the <b>OHIPCRemoteStub</b> object for an <b>OHIPCRemoteProxy</b> object.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param proxy Pointer to the <b>OHIPCRemoteProxy</b> object that unsubscribes from the death notification.
* It cannot be NULL.
* @param recipient Pointer to the object that receives the death notification of the <b>OHIPCRemoteStub</b> object.
* It cannot be NULL.
* @return Returns {@link OH_IPC_ErrorCode#OH_IPC_SUCCESS} if the operation is successful. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_CHECK_PARAM_ERROR} if incorrect parameters are found. \n
* Returns {@link OH_IPC_ErrorCode#OH_IPC_INNER_ERROR} in other cases.
* @since 12
*/
int OH_IPCRemoteProxy_RemoveDeathRecipient(OHIPCRemoteProxy *proxy, OHIPCDeathRecipient *recipient);
/**
* @brief Checks whether the <b>OHIPCRemoteStub</b> object corresponding to the <b>OHIPCRemoteProxy</b> object is dead.
*
* @syscap SystemCapability.Communication.IPC.Core
* @param proxy Pointer to the <b>OHIPCRemoteProxy</b> object to check. It cannot be NULL.
* @return Returns <b>1</b> if the <b>OHIPCRemoteStub</b> object is dead; returns <b>0</b> otherwise.
* If an invalid parameter is found, the <b>OHIPCRemoteStub</b> object does not exist.
* In this case, <b>1</b> is returned.
* @since 12
*/
int OH_IPCRemoteProxy_IsRemoteDead(const OHIPCRemoteProxy *proxy);
#ifdef __cplusplus
}
#endif
/** @} */
#endif