axmol/core/base/CCData.h

167 lines
4.7 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
https://axis-project.github.io/
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __CCDATA_H__
#define __CCDATA_H__
#include "platform/CCPlatformMacros.h"
2021-12-25 10:04:45 +08:00
#include <stdint.h> // for ssize_t on android
#include <string> // for ssize_t on linux
#include "platform/CCStdC.h" // for ssize_t on window
2019-11-23 20:27:39 +08:00
/**
* @addtogroup base
* @js NA
* @lua NA
*/
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
2022-07-16 10:43:05 +08:00
class AX_DLL Data
2019-11-23 20:27:39 +08:00
{
friend class Properties;
public:
/* stl compatible */
using value_type = uint8_t;
size_t size() const { return _size; }
uint8_t* data() const { return _bytes; }
2019-11-23 20:27:39 +08:00
/**
* This parameter is defined for convenient reference if a null Data object is needed.
*/
static const Data Null;
/**
* Constructor of Data.
*/
Data();
/**
* Copy constructor of Data.
*/
Data(const Data& other);
/**
* Copy constructor of Data.
*/
Data(Data&& other);
/**
* Destructor of Data.
*/
~Data();
/**
* Overloads of operator=.
*/
2021-12-25 10:04:45 +08:00
Data& operator=(const Data& other);
2019-11-23 20:27:39 +08:00
/**
* Overloads of operator=.
*/
2021-12-25 10:04:45 +08:00
Data& operator=(Data&& other);
2019-11-23 20:27:39 +08:00
/**
* Gets internal bytes of Data. It will return the pointer directly used in Data, so don't delete it.
*
* @return Pointer of bytes used internal in Data.
*/
2020-09-12 15:34:09 +08:00
uint8_t* getBytes() const;
2019-11-23 20:27:39 +08:00
/**
* Gets the size of the bytes.
*
* @return The size of bytes of Data.
*/
ssize_t getSize() const;
/** Copies the buffer pointer and its size.
* @note This method will copy the whole buffer.
* Developer should free the pointer after invoking this method.
* @see Data::fastSet
* @return The size of bytes copied, return 0 if size <= 0
*/
ssize_t copy(const unsigned char* bytes, const ssize_t size);
2020-09-12 15:34:09 +08:00
uint8_t* resize(ssize_t size);
2020-09-11 14:45:45 +08:00
2019-11-23 20:27:39 +08:00
/** Fast set the buffer pointer and its size. Please use it carefully.
* @param bytes The buffer pointer, note that it have to be allocated by 'malloc' or 'calloc',
* since in the destructor of Data, the buffer will be deleted by 'free'.
* @note 1. This method will move the ownship of 'bytes'pointer to Data,
* 2. The pointer should not be used outside after it was passed to this method.
* @see Data::copy
*/
2020-09-12 15:34:09 +08:00
void fastSet(uint8_t* bytes, const ssize_t size);
2019-11-23 20:27:39 +08:00
/**
* Clears data, free buffer and reset data size.
*/
void clear();
/**
* Check whether the data is null.
*
* @return True if the Data is null, false if not.
*/
bool isNull() const;
/**
* Get the internal buffer of data and set data to empty state.
*
* The ownership of the buffer removed from the data object.
* That is the user have to free the returned buffer.
* The data object is set to empty state, that is internal buffer is set to nullptr
* and size is set to zero.
* Usage:
* @code
* Data d;
* // ...
* ssize_t size;
* unsigned char* buffer = d.takeBuffer(&size);
* // use buffer and size
* free(buffer);
* @endcode
*
* @param size Will fill with the data buffer size in bytes, if you do not care buffer size, pass nullptr.
* @return the internal data buffer, free it after use.
*/
unsigned char* takeBuffer(ssize_t* size);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
private:
void move(Data& other);
private:
2020-09-12 15:34:09 +08:00
uint8_t* _bytes;
2019-11-23 20:27:39 +08:00
ssize_t _size;
};
NS_AX_END
2019-11-23 20:27:39 +08:00
/** @} */
2021-12-25 10:04:45 +08:00
#endif // __CCDATA_H__