| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- /****************************************************************************
- Copyright (c) 2018 Xiamen Yaji Software Co., Ltd.
-
- http://www.cocos2d-x.org
-
- 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.
- ****************************************************************************/
- #pragma once
- #include "base/ccMacros.h"
- #include <cstddef>
- #include <cstdint>
- #include <string>
- #include "MiddlewareMacro.h"
- #include <math.h>
- #include <functional>
- MIDDLEWARE_BEGIN
- /**
- * Use for such as vertex buffer or index buffer,write bytes in it.
- * If write data out of range,will sign it in _outRange property.
- * User decide to enlarge it or not.
- */
- class IOBuffer
- {
- public:
- IOBuffer (std::size_t defaultSize)
- {
- _bufferSize = defaultSize;
- _buffer = new uint8_t[_bufferSize];
- }
-
- IOBuffer () {}
-
- virtual ~IOBuffer ()
- {
- if (_buffer)
- {
- delete[] _buffer;
- _buffer = nullptr;
- }
- }
-
- inline void writeUint32 (std::size_t pos, uint32_t val)
- {
- if (_bufferSize < pos + sizeof(val))
- {
- _outRange = true;
- return;
- }
- uint32_t* buffer = (uint32_t*)(_buffer + pos);
- *buffer = val;
- }
-
- inline void writeFloat32 (std::size_t pos, float val)
- {
- if (_bufferSize < pos + sizeof(val))
- {
- _outRange = true;
- return;
- }
- float* buffer = (float*)(_buffer + pos);
- *buffer = val;
- }
-
- inline void writeBytes (const char* bytes, std::size_t bytesLen)
- {
- if (_bufferSize < _curPos + bytesLen)
- {
- _outRange = true;
- return;
- }
- memcpy(_buffer + _curPos, bytes, bytesLen);
- _curPos += bytesLen;
- }
-
- inline void writeUint32 (uint32_t val)
- {
- if (_bufferSize < _curPos + sizeof(val))
- {
- _outRange = true;
- return;
- }
- uint32_t* buffer = (uint32_t*)(_buffer + _curPos);
- *buffer = val;
- _curPos += sizeof(val);
- }
-
- inline void writeFloat32 (float val)
- {
- if (_bufferSize < _curPos + sizeof(val))
- {
- _outRange = true;
- return;
- }
- float* buffer = (float*)(_buffer + _curPos);
- *buffer = val;
- _curPos += sizeof(val);
- }
-
- inline void writeUint16 (uint16_t val)
- {
- if (_bufferSize < _curPos + sizeof(val))
- {
- _outRange = true;
- return;
- }
- uint16_t* buffer = (uint16_t*)(_buffer + _curPos);
- *buffer = val;
- _curPos += sizeof(val);
- }
-
- inline uint32_t readUint32 ()
- {
- uint32_t* buffer = (uint32_t*)(_buffer + _readPos);
- _readPos += sizeof(uint32_t);
- return *buffer;
- }
-
- inline uint16_t readUint16 ()
- {
- uint16_t* buffer = (uint16_t*)(_buffer + _readPos);
- _readPos += sizeof(uint16_t);
- return *buffer;
- }
-
- inline float readFloat32 ()
- {
- float* buffer = (float*)(_buffer + _readPos);
- _readPos += sizeof(float);
- return *buffer;
- }
-
- inline char readUint8 ()
- {
- char* buffer = (char*)(_buffer + _readPos);
- _readPos += sizeof(char);
- return *buffer;
- }
-
- inline void reset ()
- {
- _curPos = 0;
- _readPos = 0;
- }
-
- inline void clear ()
- {
- memset(_buffer, 0, _bufferSize);
- }
-
- inline void move (int pos)
- {
- if (_bufferSize < _curPos + pos)
- {
- _outRange = true;
- return;
- }
- _curPos += pos;
- }
-
- inline std::size_t length () const
- {
- return _curPos;
- }
- inline std::size_t getCurPos () const
- {
- return _curPos;
- }
- inline uint8_t* getCurBuffer () const
- {
- return _buffer + _curPos;
- }
-
- inline uint8_t* getBuffer () const
- {
- return _buffer;
- }
-
- inline std::size_t getCapacity () const
- {
- return _bufferSize;
- }
-
- inline bool isOutRange ()
- {
- return _outRange;
- }
-
- inline int checkSpace (std::size_t needSize, bool needCopy = false)
- {
- auto needLen = _curPos + needSize;
- auto isFull = 0;
- if (_maxSize > 0 && needLen > _maxSize)
- {
- isFull = 1;
- if (_fullCallback)
- {
- _fullCallback();
- }
- _curPos = 0;
- }
- if (_bufferSize < needLen)
- {
- std::size_t fitSize = ceil(needLen / float(MIN_TYPE_ARRAY_SIZE)) * MIN_TYPE_ARRAY_SIZE;
- resize(fitSize, needCopy);
- if (_resizeCallback)
- {
- _resizeCallback();
- }
- }
- return isFull;
- }
- void setMaxSize(std::size_t maxSize)
- {
- _maxSize = maxSize;
- }
-
- typedef std::function<void()> fullCallback;
- void setFullCallback(fullCallback callback)
- {
- _fullCallback = callback;
- }
-
- typedef std::function<void()> resizeCallback;
- void setResizeCallback(resizeCallback callback)
- {
- _resizeCallback = callback;
- }
-
- /**
- * @brief Resize buffer
- * @param[in] newLen New size you want to adjustment.
- * @param[in] needCopy If true,will copy old data to new buffer,default false.
- */
- virtual void resize (std::size_t newLen, bool needCopy = false);
- protected:
- uint8_t* _buffer = nullptr;
- std::size_t _bufferSize = 0;
- std::size_t _curPos = 0;
- std::size_t _readPos = 0;
- bool _outRange = false;
- std::size_t _maxSize = 0;
- fullCallback _fullCallback = nullptr;
- resizeCallback _resizeCallback = nullptr;
- };
- MIDDLEWARE_END
|