From 052a8d963af8bb186b956057763021624332c7a8 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Fri, 19 Feb 2016 14:41:46 -0800 Subject: Revert "Revert "Use safe arithmentic in CFX_BinaryBuf::ExpandBuf."" This relands the CL at https://codereview.chromium.org/1710403002 Tests passed locally. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1717603003 . --- core/include/fxcrt/fx_basic.h | 110 ++++++++++++++++-------------------------- 1 file changed, 41 insertions(+), 69 deletions(-) (limited to 'core/include/fxcrt/fx_basic.h') diff --git a/core/include/fxcrt/fx_basic.h b/core/include/fxcrt/fx_basic.h index de915323d0..3e30b1d1a1 100644 --- a/core/include/fxcrt/fx_basic.h +++ b/core/include/fxcrt/fx_basic.h @@ -8,6 +8,7 @@ #define CORE_INCLUDE_FXCRT_FX_BASIC_H_ #include +#include #include "core/include/fxcrt/fx_memory.h" #include "core/include/fxcrt/fx_stream.h" @@ -29,109 +30,90 @@ template char(&ArraySizeHelper(T(&array)[N]))[N]; +// Used with std::unique_ptr to FX_Free raw memory. +struct FxFreeDeleter { + inline void operator()(void* ptr) const { FX_Free(ptr); } +}; + +// Used with std::unique_ptr to Release() objects that can't be deleted. +template +struct ReleaseDeleter { + inline void operator()(T* ptr) const { ptr->Release(); } +}; + class CFX_BinaryBuf { public: CFX_BinaryBuf(); - CFX_BinaryBuf(FX_STRSIZE size); + explicit CFX_BinaryBuf(FX_STRSIZE size); - ~CFX_BinaryBuf(); + uint8_t* GetBuffer() const { return m_pBuffer.get(); } + FX_STRSIZE GetSize() const { return m_DataSize; } void Clear(); - void EstimateSize(FX_STRSIZE size, FX_STRSIZE alloc_step = 0); - void AppendBlock(const void* pBuf, FX_STRSIZE size); - - void AppendFill(uint8_t byte, FX_STRSIZE count); - void AppendString(const CFX_ByteStringC& str) { AppendBlock(str.GetPtr(), str.GetLength()); } - inline void AppendByte(uint8_t byte) { - if (m_AllocSize <= m_DataSize) { - ExpandBuf(1); - } - m_pBuffer[m_DataSize++] = byte; + void AppendByte(uint8_t byte) { + ExpandBuf(1); + m_pBuffer.get()[m_DataSize++] = byte; } void InsertBlock(FX_STRSIZE pos, const void* pBuf, FX_STRSIZE size); - - void AttachData(void* pBuf, FX_STRSIZE size); - - void CopyData(const void* pBuf, FX_STRSIZE size); - - void TakeOver(CFX_BinaryBuf& other); - void Delete(int start_index, int count); - uint8_t* GetBuffer() const { return m_pBuffer; } + // Takes ownership of |pBuf|. + void AttachData(uint8_t* pBuf, FX_STRSIZE size); - FX_STRSIZE GetSize() const { return m_DataSize; } - - CFX_ByteStringC GetByteString() const; - - void DetachBuffer(); + // Releases ownership of |m_pBuffer| and returns it. + uint8_t* DetachBuffer(); protected: - FX_STRSIZE m_AllocStep; - - uint8_t* m_pBuffer; - - FX_STRSIZE m_DataSize; + void ExpandBuf(FX_STRSIZE size); + FX_STRSIZE m_AllocStep; FX_STRSIZE m_AllocSize; - - void ExpandBuf(FX_STRSIZE size); + FX_STRSIZE m_DataSize; + std::unique_ptr m_pBuffer; }; + class CFX_ByteTextBuf : public CFX_BinaryBuf { public: - void operator=(const CFX_ByteStringC& str); - void AppendChar(int ch) { AppendByte((uint8_t)ch); } + FX_STRSIZE GetLength() const { return m_DataSize; } + CFX_ByteStringC GetByteString() const; CFX_ByteTextBuf& operator<<(int i); - CFX_ByteTextBuf& operator<<(FX_DWORD i); - CFX_ByteTextBuf& operator<<(double f); - CFX_ByteTextBuf& operator<<(const CFX_ByteStringC& lpsz); - CFX_ByteTextBuf& operator<<(const CFX_ByteTextBuf& buf); - - FX_STRSIZE GetLength() const { return m_DataSize; } }; + class CFX_WideTextBuf : public CFX_BinaryBuf { public: - void operator=(const FX_WCHAR* lpsz); - - void operator=(const CFX_WideStringC& str); - void AppendChar(FX_WCHAR wch); - - CFX_WideTextBuf& operator<<(int i); - - CFX_WideTextBuf& operator<<(double f); - - CFX_WideTextBuf& operator<<(const FX_WCHAR* lpsz); - - CFX_WideTextBuf& operator<<(const CFX_WideStringC& str); - CFX_WideTextBuf& operator<<(const CFX_WideString& str); - - CFX_WideTextBuf& operator<<(const CFX_WideTextBuf& buf); - FX_STRSIZE GetLength() const { return m_DataSize / sizeof(FX_WCHAR); } - - FX_WCHAR* GetBuffer() const { return (FX_WCHAR*)m_pBuffer; } + FX_WCHAR* GetBuffer() const { + return reinterpret_cast(m_pBuffer.get()); + } + CFX_WideStringC GetWideString() const; void Delete(int start_index, int count) { CFX_BinaryBuf::Delete(start_index * sizeof(FX_WCHAR), count * sizeof(FX_WCHAR)); } - CFX_WideStringC GetWideString() const; + CFX_WideTextBuf& operator<<(int i); + CFX_WideTextBuf& operator<<(double f); + CFX_WideTextBuf& operator<<(const FX_WCHAR* lpsz); + CFX_WideTextBuf& operator<<(const CFX_WideStringC& str); + CFX_WideTextBuf& operator<<(const CFX_WideString& str); + CFX_WideTextBuf& operator<<(const CFX_WideTextBuf& buf); }; + #ifdef PDF_ENABLE_XFA class CFX_ArchiveSaver { public: @@ -1031,16 +1013,6 @@ class CFX_AutoRestorer { const T m_OldValue; }; -struct FxFreeDeleter { - inline void operator()(void* ptr) const { FX_Free(ptr); } -}; - -// Used with std::unique_ptr to Release() objects that can't be deleted. -template -struct ReleaseDeleter { - inline void operator()(T* ptr) const { ptr->Release(); } -}; - #define FX_DATALIST_LENGTH 1024 template class CFX_SortListArray { -- cgit v1.2.3