blob: e504dc5da60fcdd9f7010891b0f2cb8983d58de4 [file] [log] [blame]
scroggo@google.com83fd2c72013-09-26 21:35:39 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Hal Canary03a7f5f2017-02-10 09:06:38 -05008#ifndef SkFrontBufferedStream_DEFINED
9#define SkFrontBufferedStream_DEFINED
10
Mike Reed98c5d922017-09-15 21:39:47 -040011#include "SkStream.h"
scroggo@google.com83fd2c72013-09-26 21:35:39 +000012
13/**
scroggo@google.com09a53832013-11-12 20:53:05 +000014 * Specialized stream that buffers the first X bytes of a stream,
scroggo@google.com83fd2c72013-09-26 21:35:39 +000015 * where X is passed in by the user. Note that unlike some buffered
scroggo@google.com09a53832013-11-12 20:53:05 +000016 * stream APIs, once more bytes than can fit in the buffer are read,
17 * no more buffering is done. This stream is designed for a use case
18 * where the caller knows that rewind will only be called from within
19 * X bytes (inclusive), and the wrapped stream is not necessarily
20 * able to rewind at all.
scroggo@google.com83fd2c72013-09-26 21:35:39 +000021 */
Derek Sollenberger2fbf1bc2017-09-20 15:51:08 -040022class SK_API SkFrontBufferedStream {
scroggo@google.com83fd2c72013-09-26 21:35:39 +000023public:
24 /**
scroggo@google.com09a53832013-11-12 20:53:05 +000025 * Creates a new stream that wraps and buffers an SkStream.
26 * @param stream SkStream to buffer. If stream is NULL, NULL is
27 * returned. When this call succeeds (i.e. returns non NULL),
28 * SkFrontBufferedStream is expected to be the only owner of
scroggoa1193e42015-01-21 12:09:53 -080029 * stream, so it should no be longer used directly.
30 * SkFrontBufferedStream will delete stream upon deletion.
scroggo@google.com09a53832013-11-12 20:53:05 +000031 * @param minBufferSize Minimum size of buffer required.
32 * @return An SkStream that can buffer at least minBufferSize, or
scroggoa1193e42015-01-21 12:09:53 -080033 * NULL on failure. The caller is required to delete when finished with
34 * this object.
scroggo@google.com83fd2c72013-09-26 21:35:39 +000035 */
Mike Reed98c5d922017-09-15 21:39:47 -040036 static std::unique_ptr<SkStreamRewindable> Make(std::unique_ptr<SkStream> stream,
37 size_t minBufferSize);
scroggo@google.com83fd2c72013-09-26 21:35:39 +000038};
Hal Canary03a7f5f2017-02-10 09:06:38 -050039#endif // SkFrontBufferedStream_DEFINED