* Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
#ifndef OMNIFLINK_BINARYSECTION_H
#define OMNIFLINK_BINARYSECTION_H
#include <cstdint>
template <typename U>
class LazyBinaryFormat;
class BinarySection {
template <typename U>
friend class LazyBinaryFormat;
public:
BinarySection() = default;
virtual ~BinarySection();
BinarySection(uint8_t *segment, int offset, int sizeInBytes) : memoryBuffer(segment), offset_(offset), sizeInBytes_(sizeInBytes) {};
void pointTo(uint8_t *segment, int offset, int sizeInBytes, int bufferCapacity);
void own(uint8_t *segment, int offset, int sizeInBytes, int bufferCapacity);
int getSizeInBytes() const;
int getOffset() const;
uint8_t *getSegment() const;
int getBufferCapacity() const;
void changeOwner(int owner);
protected:
uint8_t *memoryBuffer;
int offset_ = 0;
int sizeInBytes_ = 0;
int bufferCapacity = 0;
int owner_ = 0;
};
#endif