/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef mozilla_FixedBufferOutputStream_h #define mozilla_FixedBufferOutputStream_h #include #include "mozilla/fallible.h" #include "mozilla/Mutex.h" #include "mozilla/Span.h" #include "mozilla/UniquePtr.h" #include "nsIOutputStream.h" #include "nsStringFwd.h" template class RefPtr; namespace mozilla { class StreamBufferSink; // An output stream so you can read your potentially-async input stream into // a contiguous buffer using NS_AsyncCopy. Back when streams were more // synchronous and people didn't know blocking I/O was bad, if you wanted to // read a stream into a flat buffer, you could use NS_ReadInputStreamToString // or NS_ReadInputStreamToBuffer. But those don't work with async streams. // This can be used to replace hand-rolled Read/AsyncWait() loops. Because you // specify the expected size up front, the buffer is pre-allocated so wasteful // reallocations can be avoided. class FixedBufferOutputStream final : public nsIOutputStream { template friend RefPtr MakeRefPtr(Args&&... aArgs); public: // Factory method to get a FixedBufferOutputStream by allocating a char buffer // with the given length. static RefPtr Create(size_t aLength); // Factory method to get a FixedBufferOutputStream by allocating a char buffer // with the given length, fallible version. static RefPtr Create(size_t aLength, const mozilla::fallible_t&); // Factory method to get a FixedBufferOutputStream from a preallocated char // buffer. The output stream doesn't take ownership of the char buffer, so the // char buffer must outlive the output stream (to avoid a use-after-free). static RefPtr Create(mozilla::Span aBuffer); // Factory method to get a FixedBufferOutputStream from an arbitrary // StreamBufferSink. static RefPtr Create( UniquePtr&& aSink); nsDependentCSubstring WrittenData(); NS_DECL_THREADSAFE_ISUPPORTS NS_DECL_NSIOUTPUTSTREAM private: explicit FixedBufferOutputStream(UniquePtr&& aSink); ~FixedBufferOutputStream() = default; const UniquePtr mSink; Mutex mMutex; size_t mOffset MOZ_GUARDED_BY(mMutex); bool mWriting MOZ_GUARDED_BY(mMutex); bool mClosed MOZ_GUARDED_BY(mMutex); }; } // namespace mozilla #endif // mozilla_FixedBufferOutputStream_h