* Copyright (C) 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 PLUGINS_BLUETOOTH_COMMON_MOCK_MESSAGE_PARCEL_H
#define PLUGINS_BLUETOOTH_COMMON_MOCK_MESSAGE_PARCEL_H
#include <string>
#include "parcel.h"
#include "refbase.h"
#if !defined(__APPLE__) && !defined(_WIN32) && !defined(__gnu_linux__)
#include <ashmem.h>
#else
#include <memory>
#include <mutex>
#endif
namespace OHOS {
class IRemoteObject;
class MessageParcel : public Parcel {
public:
MessageParcel();
~MessageParcel();
explicit MessageParcel(Allocator* allocator);
bool WriteRemoteObject(const sptr<IRemoteObject>& object);
sptr<IRemoteObject> ReadRemoteObject();
bool WriteFileDescriptor(int fd);
int ReadFileDescriptor();
bool ContainFileDescriptors() const;
bool WriteInterfaceToken(const std::u16string& name);
std::u16string ReadInterfaceToken();
bool WriteRawData(const void* data, size_t size);
const void* ReadRawData(size_t size);
bool RestoreRawData(std::shared_ptr<char> rawData, size_t size);
const void* GetRawData() const;
size_t GetRawDataSize() const;
size_t GetRawDataCapacity() const;
void WriteNoException();
int32_t ReadException();
void ClearFileDescriptor();
void SetClearFdFlag()
{
needCloseFd_ = true;
};
bool Append(MessageParcel& data);
#if !defined(__APPLE__) && !defined(_WIN32) && !defined(__gnu_linux__)
bool WriteAshmem(sptr<Ashmem> ashmem);
sptr<Ashmem> ReadAshmem();
#endif
private:
#ifndef CONFIG_IPC_SINGLE
bool WriteDBinderProxy(const sptr<IRemoteObject>& object, uint32_t handle, uint64_t stubIndex);
#endif
static constexpr size_t kMaxRawdataSize = 128 * 1024 * 1024;
static constexpr size_t kMinRawdataSize = 32 * 1024;
bool needCloseFd_ = false;
std::vector<sptr<Parcelable>> holders_;
int writeRawDataFd_;
int readRawDataFd_;
void* kernelMappedWrite_;
void* kernelMappedRead_;
std::shared_ptr<char> rawData_;
size_t rawDataSize_;
};
}
#endif