* Copyright (c) 2023-2025 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 FOUNDATION_ACE_ADAPTER_CAPABILITY_JAVA_JNI_BRIDGE_RECEIVER_H
#define FOUNDATION_ACE_ADAPTER_CAPABILITY_JAVA_JNI_BRIDGE_RECEIVER_H
#include <functional>
#include <string>
#include "base/utils/macros.h"
#include "buffer_mapping.h"
namespace OHOS::Ace::Platform {
using AceCallMethodCallback = std::function<void(const std::string& methodName, const std::string& parameter)>;
using AceCallMethodSyncCallback =
std::function<std::string(const std::string& methodName, const std::string& parameter)>;
using AceMethodResultCallback = std::function<void(const std::string& methodName, const std::string& resultValue)>;
using AceSendMessageCallback = std::function<void(const std::string& data)>;
using AceSendMessageResponseCallback = std::function<void(const std::string& data)>;
using AceSendWillTerminateResponseCallback = std::function<void(bool success)>;
using AceMethodResultBinaryCallback = std::function<void(
const std::string& methodName,
int errorCode,
const std::string& errorMessage,
std::unique_ptr<BufferMapping> resultValue)>;
using AceCallMethodBinaryCallback = std::function<void(
const std::string& methodName,
std::unique_ptr<BufferMapping> resultValue)>;
using AceCallMethodSyncBinaryCallback = std::function<std::unique_ptr<BufferMapping>(
const std::string& methodName,
std::unique_ptr<BufferMapping> param,
int32_t& errorCode)>;
using AceSendMessageBinaryCallback = std::function<void(std::unique_ptr<BufferMapping> resultValue)>;
struct ACE_EXPORT BridgeReceiver {
std::string bridgeName_;
int32_t bridgeType_ = 0;
AceCallMethodCallback callMethodCallback_ = nullptr;
AceCallMethodSyncCallback callMethodSyncCallback_ = nullptr;
AceMethodResultCallback methodResultCallback_ = nullptr;
AceMethodResultBinaryCallback methodResultBinaryCallback_ = nullptr;
AceCallMethodBinaryCallback callMethodBinaryCallback_ = nullptr;
AceCallMethodSyncBinaryCallback callMethodSyncBinaryCallback_ = nullptr;
AceSendMessageBinaryCallback sendMessageBinaryCallback_ = nullptr;
AceSendMessageCallback sendMessageCallback_ = nullptr;
AceSendMessageResponseCallback sendMessageResponseCallback_ = nullptr;
AceSendWillTerminateResponseCallback sendWillTerminateResponseCallback_ = nullptr;
};
struct ACE_EXPORT BinaryResultHolder {
int32_t errorCode { 0 };
std::unique_ptr<BufferMapping> buffer { nullptr };
};
}
#endif