This is a combination of running clang-tidy with modernize-use-nullptr check for some ports (GTK, X11, OSX) and manual changes to the ports for which it couldn't be used easily (MSW, DFB) and also manually updating the docs. Also replace NULL with null or nullptr in the comments as this is more consistent with the use of nullptr in the code and makes it simpler to grep for the remaining occurrences of NULL itself. And also use null in the assert messages. Only a few occurrences of "NULL" are still left in non-C files, mostly corresponding to unclear comments or string output which it might not be safe to change.
94 lines
2.8 KiB
C++
94 lines
2.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/mstream.h
|
|
// Purpose: Memory stream classes
|
|
// Author: Guilhem Lavaux
|
|
// Modified by:
|
|
// Created: 11/07/98
|
|
// Copyright: (c) Guilhem Lavaux
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_WXMMSTREAM_H__
|
|
#define _WX_WXMMSTREAM_H__
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#if wxUSE_STREAMS
|
|
|
|
#include "wx/stream.h"
|
|
|
|
class WXDLLIMPEXP_FWD_BASE wxMemoryOutputStream;
|
|
|
|
class WXDLLIMPEXP_BASE wxMemoryInputStream : public wxInputStream
|
|
{
|
|
public:
|
|
wxMemoryInputStream(const void *data, size_t length);
|
|
wxMemoryInputStream(const wxMemoryOutputStream& stream);
|
|
wxMemoryInputStream(wxInputStream& stream,
|
|
wxFileOffset lenFile = wxInvalidOffset)
|
|
{
|
|
InitFromStream(stream, lenFile);
|
|
}
|
|
wxMemoryInputStream(wxMemoryInputStream& stream)
|
|
: wxInputStream()
|
|
{
|
|
InitFromStream(stream, wxInvalidOffset);
|
|
}
|
|
|
|
virtual ~wxMemoryInputStream();
|
|
virtual wxFileOffset GetLength() const override { return m_length; }
|
|
virtual bool IsSeekable() const override { return true; }
|
|
|
|
virtual char Peek() override;
|
|
virtual bool CanRead() const override;
|
|
|
|
wxStreamBuffer *GetInputStreamBuffer() const { return m_i_streambuf; }
|
|
|
|
protected:
|
|
wxStreamBuffer *m_i_streambuf;
|
|
|
|
size_t OnSysRead(void *buffer, size_t nbytes) override;
|
|
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode) override;
|
|
wxFileOffset OnSysTell() const override;
|
|
|
|
private:
|
|
// common part of ctors taking wxInputStream
|
|
void InitFromStream(wxInputStream& stream, wxFileOffset lenFile);
|
|
|
|
size_t m_length;
|
|
|
|
// copy ctor is implemented above: it copies the other stream in this one
|
|
wxDECLARE_ABSTRACT_CLASS(wxMemoryInputStream);
|
|
wxDECLARE_NO_ASSIGN_CLASS(wxMemoryInputStream);
|
|
};
|
|
|
|
class WXDLLIMPEXP_BASE wxMemoryOutputStream : public wxOutputStream
|
|
{
|
|
public:
|
|
// if data is not null it must be allocated with malloc()
|
|
wxMemoryOutputStream(void *data = nullptr, size_t length = 0);
|
|
virtual ~wxMemoryOutputStream();
|
|
virtual wxFileOffset GetLength() const override { return m_o_streambuf->GetLastAccess(); }
|
|
virtual bool IsSeekable() const override { return true; }
|
|
|
|
size_t CopyTo(void *buffer, size_t len) const;
|
|
|
|
wxStreamBuffer *GetOutputStreamBuffer() const { return m_o_streambuf; }
|
|
|
|
protected:
|
|
wxStreamBuffer *m_o_streambuf;
|
|
|
|
protected:
|
|
size_t OnSysWrite(const void *buffer, size_t nbytes) override;
|
|
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode) override;
|
|
wxFileOffset OnSysTell() const override;
|
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxMemoryOutputStream);
|
|
wxDECLARE_NO_COPY_CLASS(wxMemoryOutputStream);
|
|
};
|
|
|
|
#endif
|
|
// wxUSE_STREAMS
|
|
|
|
#endif
|
|
// _WX_WXMMSTREAM_H__
|