blob: bfc2728ef0d964d93feeed868b51ffa419650be7 [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
scroggo@google.com09a53832013-11-12 20:53:05 +00008#include "SkTypes.h"
9
10class SkStream;
11class SkStreamRewindable;
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 */
scroggo@google.com09a53832013-11-12 20:53:05 +000022class 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 */
scroggo@google.com09a53832013-11-12 20:53:05 +000036 static SkStreamRewindable* Create(SkStream* stream, size_t minBufferSize);
scroggo@google.com83fd2c72013-09-26 21:35:39 +000037};