scroggo@google.com | 83fd2c7 | 2013-09-26 21:35:39 +0000 | [diff] [blame] | 1 | /* |
| 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 Canary | 03a7f5f | 2017-02-10 09:06:38 -0500 | [diff] [blame] | 8 | #ifndef SkFrontBufferedStream_DEFINED |
| 9 | #define SkFrontBufferedStream_DEFINED |
| 10 | |
scroggo@google.com | 09a5383 | 2013-11-12 20:53:05 +0000 | [diff] [blame] | 11 | #include "SkTypes.h" |
| 12 | |
| 13 | class SkStream; |
| 14 | class SkStreamRewindable; |
scroggo@google.com | 83fd2c7 | 2013-09-26 21:35:39 +0000 | [diff] [blame] | 15 | |
| 16 | /** |
scroggo@google.com | 09a5383 | 2013-11-12 20:53:05 +0000 | [diff] [blame] | 17 | * Specialized stream that buffers the first X bytes of a stream, |
scroggo@google.com | 83fd2c7 | 2013-09-26 21:35:39 +0000 | [diff] [blame] | 18 | * where X is passed in by the user. Note that unlike some buffered |
scroggo@google.com | 09a5383 | 2013-11-12 20:53:05 +0000 | [diff] [blame] | 19 | * stream APIs, once more bytes than can fit in the buffer are read, |
| 20 | * no more buffering is done. This stream is designed for a use case |
| 21 | * where the caller knows that rewind will only be called from within |
| 22 | * X bytes (inclusive), and the wrapped stream is not necessarily |
| 23 | * able to rewind at all. |
scroggo@google.com | 83fd2c7 | 2013-09-26 21:35:39 +0000 | [diff] [blame] | 24 | */ |
scroggo@google.com | 09a5383 | 2013-11-12 20:53:05 +0000 | [diff] [blame] | 25 | class SkFrontBufferedStream { |
scroggo@google.com | 83fd2c7 | 2013-09-26 21:35:39 +0000 | [diff] [blame] | 26 | public: |
| 27 | /** |
scroggo@google.com | 09a5383 | 2013-11-12 20:53:05 +0000 | [diff] [blame] | 28 | * Creates a new stream that wraps and buffers an SkStream. |
| 29 | * @param stream SkStream to buffer. If stream is NULL, NULL is |
| 30 | * returned. When this call succeeds (i.e. returns non NULL), |
| 31 | * SkFrontBufferedStream is expected to be the only owner of |
scroggo | a1193e4 | 2015-01-21 12:09:53 -0800 | [diff] [blame] | 32 | * stream, so it should no be longer used directly. |
| 33 | * SkFrontBufferedStream will delete stream upon deletion. |
scroggo@google.com | 09a5383 | 2013-11-12 20:53:05 +0000 | [diff] [blame] | 34 | * @param minBufferSize Minimum size of buffer required. |
| 35 | * @return An SkStream that can buffer at least minBufferSize, or |
scroggo | a1193e4 | 2015-01-21 12:09:53 -0800 | [diff] [blame] | 36 | * NULL on failure. The caller is required to delete when finished with |
| 37 | * this object. |
scroggo@google.com | 83fd2c7 | 2013-09-26 21:35:39 +0000 | [diff] [blame] | 38 | */ |
scroggo@google.com | 09a5383 | 2013-11-12 20:53:05 +0000 | [diff] [blame] | 39 | static SkStreamRewindable* Create(SkStream* stream, size_t minBufferSize); |
scroggo@google.com | 83fd2c7 | 2013-09-26 21:35:39 +0000 | [diff] [blame] | 40 | }; |
Hal Canary | 03a7f5f | 2017-02-10 09:06:38 -0500 | [diff] [blame] | 41 | #endif // SkFrontBufferedStream_DEFINED |