/* -*- 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/. */
// 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 <typename T, typename... Args> friend RefPtr<T> MakeRefPtr(Args&&... aArgs);
public: // Factory method to get a FixedBufferOutputStream by allocating a char buffer // with the given length. static RefPtr<FixedBufferOutputStream> Create(size_t aLength);
// Factory method to get a FixedBufferOutputStream by allocating a char buffer // with the given length, fallible version. static RefPtr<FixedBufferOutputStream> 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<FixedBufferOutputStream> Create(mozilla::Span<char> aBuffer);
// Factory method to get a FixedBufferOutputStream from an arbitrary // StreamBufferSink. static RefPtr<FixedBufferOutputStream> Create(
UniquePtr<StreamBufferSink>&& aSink);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.