| /* |
| * Copyright 2006 The Android Open Source Project |
| * |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #ifndef SkBuffer_DEFINED |
| #define SkBuffer_DEFINED |
| |
| #include "include/private/base/SkAssert.h" |
| #include "include/private/base/SkNoncopyable.h" |
| #include "src/base/SkSafeMath.h" |
| |
| #include <cstddef> |
| #include <cstdint> |
| |
| typedef float SkScalar; |
| |
| /** \class SkRBuffer |
| |
| Light weight class for reading data from a memory block. |
| The RBuffer is given the buffer to read from, with either a specified size |
| or no size (in which case no range checking is performed). It is iillegal |
| to attempt to read a value from an empty RBuffer (data == null). |
| */ |
| class SkRBuffer : SkNoncopyable { |
| public: |
| SkRBuffer() : fData(nullptr), fPos(nullptr), fStop(nullptr) {} |
| |
| /** Initialize RBuffer with a data point and length. |
| */ |
| SkRBuffer(const void* data, size_t size) { |
| SkASSERT(data != nullptr || size == 0); |
| fData = (const char*)data; |
| fPos = (const char*)data; |
| fStop = (const char*)data + size; |
| } |
| |
| /** Return the number of bytes that have been read from the beginning |
| of the data pointer. |
| */ |
| size_t pos() const { return fPos - fData; } |
| /** Return the total size of the data pointer. Only defined if the length was |
| specified in the constructor or in a call to reset(). |
| */ |
| size_t size() const { return fStop - fData; } |
| /** Return true if the buffer has read to the end of the data pointer. |
| Only defined if the length was specified in the constructor or in a call |
| to reset(). Always returns true if the length was not specified. |
| */ |
| bool eof() const { return fPos >= fStop; } |
| |
| size_t available() const { return fStop - fPos; } |
| |
| bool isValid() const { return fValid; } |
| |
| /** Read the specified number of bytes from the data pointer. If buffer is not |
| null, copy those bytes into buffer. |
| */ |
| bool read(void* buffer, size_t size); |
| bool skipToAlign4(); |
| |
| bool readU8(uint8_t* x) { return this->read(x, 1); } |
| bool readS32(int32_t* x) { return this->read(x, 4); } |
| bool readU32(uint32_t* x) { return this->read(x, 4); } |
| |
| // returns nullptr on failure |
| const void* skip(size_t bytes); |
| template <typename T> const T* skipCount(size_t count) { |
| return static_cast<const T*>(this->skip(SkSafeMath::Mul(count, sizeof(T)))); |
| } |
| |
| private: |
| const char* fData; |
| const char* fPos; |
| const char* fStop; |
| bool fValid = true; |
| }; |
| |
| /** \class SkWBuffer |
| |
| Light weight class for writing data to a memory block. |
| The WBuffer is given the buffer to write into, with either a specified size |
| or no size, in which case no range checking is performed. An empty WBuffer |
| is legal, in which case no data is ever written, but the relative pos() |
| is updated. |
| */ |
| class SkWBuffer : SkNoncopyable { |
| public: |
| SkWBuffer() : fData(nullptr), fPos(nullptr), fStop(nullptr) {} |
| SkWBuffer(void* data) { reset(data); } |
| SkWBuffer(void* data, size_t size) { reset(data, size); } |
| |
| void reset(void* data) { |
| fData = (char*)data; |
| fPos = (char*)data; |
| fStop = nullptr; // no bounds checking |
| } |
| |
| void reset(void* data, size_t size) { |
| SkASSERT(data != nullptr || size == 0); |
| fData = (char*)data; |
| fPos = (char*)data; |
| fStop = (char*)data + size; |
| } |
| |
| size_t pos() const { return fPos - fData; } |
| void* skip(size_t size); // return start of skipped data |
| |
| void write(const void* buffer, size_t size) { |
| if (size) { |
| this->writeNoSizeCheck(buffer, size); |
| } |
| } |
| |
| size_t padToAlign4(); |
| |
| void writePtr(const void* x) { this->writeNoSizeCheck(&x, sizeof(x)); } |
| void writeScalar(SkScalar x) { this->writeNoSizeCheck(&x, 4); } |
| void write32(int32_t x) { this->writeNoSizeCheck(&x, 4); } |
| void write16(int16_t x) { this->writeNoSizeCheck(&x, 2); } |
| void write8(int8_t x) { this->writeNoSizeCheck(&x, 1); } |
| void writeBool(bool x) { this->write8(x); } |
| |
| private: |
| void writeNoSizeCheck(const void* buffer, size_t size); |
| |
| char* fData; |
| char* fPos; |
| char* fStop; |
| }; |
| |
| #endif |