2013-10-12 15:25:45 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2016-04-29 09:29:54 +08:00
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
https://axmolengine.github.io/
|
2013-10-12 15:25:45 +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.
|
|
|
|
****************************************************************************/
|
2013-12-20 21:41:20 +08:00
|
|
|
|
2023-06-11 13:08:08 +08:00
|
|
|
#include "base/Data.h"
|
|
|
|
#include "base/Console.h"
|
2013-10-12 15:25:45 +08:00
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2013-10-12 15:25:45 +08:00
|
|
|
|
2013-12-18 14:58:17 +08:00
|
|
|
const Data Data::Null;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
Data::Data() : _bytes(nullptr), _size(0)
|
2013-12-18 14:58:17 +08:00
|
|
|
{
|
2022-07-16 10:43:05 +08:00
|
|
|
AXLOGINFO("In the empty constructor of Data.");
|
2013-12-18 14:58:17 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
Data::Data(Data&& other) : _bytes(nullptr), _size(0)
|
2013-10-12 15:25:45 +08:00
|
|
|
{
|
2022-07-16 10:43:05 +08:00
|
|
|
AXLOGINFO("In the move constructor of Data.");
|
2013-12-18 14:58:17 +08:00
|
|
|
move(other);
|
2013-10-12 15:25:45 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
Data::Data(const Data& other) : _bytes(nullptr), _size(0)
|
2013-10-12 15:25:45 +08:00
|
|
|
{
|
2022-07-16 10:43:05 +08:00
|
|
|
AXLOGINFO("In the copy constructor of Data.");
|
2019-04-04 09:41:17 +08:00
|
|
|
if (other._bytes && other._size)
|
|
|
|
{
|
|
|
|
copy(other._bytes, other._size);
|
|
|
|
}
|
2013-10-12 15:25:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Data::~Data()
|
|
|
|
{
|
2022-07-16 10:43:05 +08:00
|
|
|
AXLOGINFO("deallocing Data: %p", this);
|
2013-12-20 21:41:20 +08:00
|
|
|
clear();
|
2013-12-18 14:58:17 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
Data& Data::operator=(const Data& other)
|
2013-12-18 14:58:17 +08:00
|
|
|
{
|
2018-05-25 09:58:11 +08:00
|
|
|
if (this != &other)
|
|
|
|
{
|
2022-07-16 10:43:05 +08:00
|
|
|
AXLOGINFO("In the copy assignment of Data.");
|
2018-05-25 09:58:11 +08:00
|
|
|
copy(other._bytes, other._size);
|
|
|
|
}
|
2013-12-18 14:58:17 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
Data& Data::operator=(Data&& other)
|
2013-12-18 14:58:17 +08:00
|
|
|
{
|
2018-05-25 09:58:11 +08:00
|
|
|
if (this != &other)
|
|
|
|
{
|
2022-07-16 10:43:05 +08:00
|
|
|
AXLOGINFO("In the move assignment of Data.");
|
2018-05-25 09:58:11 +08:00
|
|
|
move(other);
|
|
|
|
}
|
2013-12-18 14:58:17 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Data::move(Data& other)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_bytes != other._bytes)
|
|
|
|
clear();
|
|
|
|
|
2013-12-18 14:58:17 +08:00
|
|
|
_bytes = other._bytes;
|
2021-12-25 10:04:45 +08:00
|
|
|
_size = other._size;
|
2016-04-29 09:29:54 +08:00
|
|
|
|
2013-12-18 14:58:17 +08:00
|
|
|
other._bytes = nullptr;
|
2021-12-25 10:04:45 +08:00
|
|
|
other._size = 0;
|
2013-12-18 14:58:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Data::isNull() const
|
|
|
|
{
|
|
|
|
return (_bytes == nullptr || _size == 0);
|
2013-10-12 15:25:45 +08:00
|
|
|
}
|
|
|
|
|
2020-09-12 15:34:09 +08:00
|
|
|
uint8_t* Data::getBytes() const
|
2013-10-12 15:25:45 +08:00
|
|
|
{
|
|
|
|
return _bytes;
|
|
|
|
}
|
|
|
|
|
2013-12-05 17:19:01 +08:00
|
|
|
ssize_t Data::getSize() const
|
2013-10-12 15:25:45 +08:00
|
|
|
{
|
|
|
|
return _size;
|
|
|
|
}
|
|
|
|
|
2018-09-14 14:36:47 +08:00
|
|
|
ssize_t Data::copy(const unsigned char* bytes, const ssize_t size)
|
2013-12-18 14:58:17 +08:00
|
|
|
{
|
2022-07-16 10:43:05 +08:00
|
|
|
AXASSERT(size >= 0, "copy size should be non-negative");
|
|
|
|
AXASSERT(bytes, "bytes should not be nullptr");
|
2018-09-14 14:36:47 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
if (size <= 0)
|
|
|
|
return 0;
|
2016-04-29 09:29:54 +08:00
|
|
|
|
2018-09-14 14:36:47 +08:00
|
|
|
if (bytes != _bytes)
|
2013-12-18 14:58:17 +08:00
|
|
|
{
|
2018-09-14 14:36:47 +08:00
|
|
|
clear();
|
2018-09-20 15:19:10 +08:00
|
|
|
_bytes = (unsigned char*)malloc(sizeof(unsigned char) * size);
|
|
|
|
memcpy(_bytes, bytes, size);
|
2013-12-18 14:58:17 +08:00
|
|
|
}
|
2018-09-14 14:36:47 +08:00
|
|
|
|
|
|
|
_size = size;
|
|
|
|
return _size;
|
2013-12-18 14:58:17 +08:00
|
|
|
}
|
|
|
|
|
2020-09-12 15:34:09 +08:00
|
|
|
uint8_t* Data::resize(ssize_t size)
|
2020-09-11 14:45:45 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_size < size)
|
|
|
|
{
|
2020-09-11 14:45:45 +08:00
|
|
|
auto newmb = (uint8_t*)realloc(_bytes, size);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!newmb)
|
|
|
|
return _bytes;
|
2020-09-11 14:45:45 +08:00
|
|
|
_bytes = newmb;
|
|
|
|
}
|
|
|
|
_size = size;
|
2020-09-12 15:34:09 +08:00
|
|
|
return _bytes;
|
2020-09-11 14:45:45 +08:00
|
|
|
}
|
|
|
|
|
2020-09-12 15:34:09 +08:00
|
|
|
void Data::fastSet(uint8_t* bytes, const ssize_t size)
|
2013-12-18 14:58:17 +08:00
|
|
|
{
|
2022-07-16 10:43:05 +08:00
|
|
|
AXASSERT(size >= 0, "fastSet size should be non-negative");
|
|
|
|
// AXASSERT(bytes, "bytes should not be nullptr");
|
2013-12-18 14:58:17 +08:00
|
|
|
_bytes = bytes;
|
2021-12-25 10:04:45 +08:00
|
|
|
_size = size;
|
2013-12-18 14:58:17 +08:00
|
|
|
}
|
|
|
|
|
2013-12-20 21:41:20 +08:00
|
|
|
void Data::clear()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_bytes)
|
|
|
|
free(_bytes);
|
2013-12-20 21:41:20 +08:00
|
|
|
_bytes = nullptr;
|
2021-12-25 10:04:45 +08:00
|
|
|
_size = 0;
|
2013-12-20 21:41:20 +08:00
|
|
|
}
|
|
|
|
|
2020-09-12 15:34:09 +08:00
|
|
|
uint8_t* Data::takeBuffer(ssize_t* size)
|
2016-04-29 09:29:54 +08:00
|
|
|
{
|
|
|
|
auto buffer = getBytes();
|
|
|
|
if (size)
|
|
|
|
*size = getSize();
|
|
|
|
fastSet(nullptr, 0);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|