blob: f3ef47db59960adb080da9269ed42dc04019e5a2 [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
scroggo3ceef9a2014-10-24 06:55:07 -07008#include "SkBitmap.h"
scroggo@google.com83fd2c72013-09-26 21:35:39 +00009#include "SkFrontBufferedStream.h"
scroggo3ceef9a2014-10-24 06:55:07 -070010#include "SkImageDecoder.h"
scroggo@google.com83fd2c72013-09-26 21:35:39 +000011#include "SkRefCnt.h"
scroggo@google.com09a53832013-11-12 20:53:05 +000012#include "SkStream.h"
scroggo@google.com83fd2c72013-09-26 21:35:39 +000013#include "SkTypes.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000014#include "Test.h"
scroggo@google.com83fd2c72013-09-26 21:35:39 +000015
16static void test_read(skiatest::Reporter* reporter, SkStream* bufferedStream,
17 const void* expectations, size_t bytesToRead) {
18 // output for reading bufferedStream.
19 SkAutoMalloc storage(bytesToRead);
20
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +000021 const size_t bytesRead = bufferedStream->read(storage.get(), bytesToRead);
scroggo@google.com83fd2c72013-09-26 21:35:39 +000022 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEnd());
23 REPORTER_ASSERT(reporter, memcmp(storage.get(), expectations, bytesRead) == 0);
24}
25
26static void test_rewind(skiatest::Reporter* reporter,
27 SkStream* bufferedStream, bool shouldSucceed) {
28 const bool success = bufferedStream->rewind();
29 REPORTER_ASSERT(reporter, success == shouldSucceed);
30}
31
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +000032// Test that hasLength() returns the correct value, based on the stream
33// being wrapped. A length can only be known if the wrapped stream has a
34// length and it has a position (so its initial position can be taken into
35// account when computing the length).
36static void test_hasLength(skiatest::Reporter* reporter,
37 const SkStream& bufferedStream,
38 const SkStream& streamBeingBuffered) {
39 if (streamBeingBuffered.hasLength() && streamBeingBuffered.hasPosition()) {
40 REPORTER_ASSERT(reporter, bufferedStream.hasLength());
41 } else {
42 REPORTER_ASSERT(reporter, !bufferedStream.hasLength());
43 }
44}
45
scroggo@google.com83fd2c72013-09-26 21:35:39 +000046// All tests will buffer this string, and compare output to the original.
47// The string is long to ensure that all of our lengths being tested are
48// smaller than the string length.
49const char gAbcs[] = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwx";
50
51// Tests reading the stream across boundaries of what has been buffered so far and what
52// the total buffer size is.
53static void test_incremental_buffering(skiatest::Reporter* reporter, size_t bufferSize) {
scroggoa1193e42015-01-21 12:09:53 -080054 // NOTE: For this and other tests in this file, we cheat and continue to refer to the
55 // wrapped stream, but that's okay because we know the wrapping stream has not been
56 // deleted yet (and we only call const methods in it).
57 SkMemoryStream* memStream = SkNEW_ARGS(SkMemoryStream, (gAbcs, strlen(gAbcs), false));
scroggo@google.com83fd2c72013-09-26 21:35:39 +000058
scroggoa1193e42015-01-21 12:09:53 -080059 SkAutoTDelete<SkStream> bufferedStream(SkFrontBufferedStream::Create(memStream, bufferSize));
60 test_hasLength(reporter, *bufferedStream.get(), *memStream);
scroggo@google.com83fd2c72013-09-26 21:35:39 +000061
62 // First, test reading less than the max buffer size.
63 test_read(reporter, bufferedStream, gAbcs, bufferSize / 2);
64
65 // Now test rewinding back to the beginning and reading less than what was
66 // already buffered.
67 test_rewind(reporter, bufferedStream, true);
68 test_read(reporter, bufferedStream, gAbcs, bufferSize / 4);
69
70 // Now test reading part of what was buffered, and buffering new data.
71 test_read(reporter, bufferedStream, gAbcs + bufferedStream->getPosition(), bufferSize / 2);
72
73 // Now test reading what was buffered, buffering new data, and
74 // reading directly from the stream.
75 test_rewind(reporter, bufferedStream, true);
76 test_read(reporter, bufferedStream, gAbcs, bufferSize << 1);
77
78 // We have reached the end of the buffer, so rewinding will fail.
79 // This test assumes that the stream is larger than the buffer; otherwise the
80 // result of rewind should be true.
81 test_rewind(reporter, bufferedStream, false);
82}
83
84static void test_perfectly_sized_buffer(skiatest::Reporter* reporter, size_t bufferSize) {
scroggoa1193e42015-01-21 12:09:53 -080085 SkMemoryStream* memStream = SkNEW_ARGS(SkMemoryStream, (gAbcs, strlen(gAbcs), false));
86 SkAutoTDelete<SkStream> bufferedStream(SkFrontBufferedStream::Create(memStream, bufferSize));
87 test_hasLength(reporter, *bufferedStream.get(), *memStream);
scroggo@google.com83fd2c72013-09-26 21:35:39 +000088
89 // Read exactly the amount that fits in the buffer.
90 test_read(reporter, bufferedStream, gAbcs, bufferSize);
91
92 // Rewinding should succeed.
93 test_rewind(reporter, bufferedStream, true);
94
95 // Once again reading buffered info should succeed
96 test_read(reporter, bufferedStream, gAbcs, bufferSize);
97
98 // Read past the size of the buffer. At this point, we cannot return.
99 test_read(reporter, bufferedStream, gAbcs + bufferedStream->getPosition(), 1);
100 test_rewind(reporter, bufferedStream, false);
101}
102
103static void test_skipping(skiatest::Reporter* reporter, size_t bufferSize) {
scroggoa1193e42015-01-21 12:09:53 -0800104 SkMemoryStream* memStream = SkNEW_ARGS(SkMemoryStream, (gAbcs, strlen(gAbcs), false));
105 SkAutoTDelete<SkStream> bufferedStream(SkFrontBufferedStream::Create(memStream, bufferSize));
106 test_hasLength(reporter, *bufferedStream.get(), *memStream);
scroggo@google.com83fd2c72013-09-26 21:35:39 +0000107
108 // Skip half the buffer.
109 bufferedStream->skip(bufferSize / 2);
110
111 // Rewind, then read part of the buffer, which should have been read.
112 test_rewind(reporter, bufferedStream, true);
113 test_read(reporter, bufferedStream, gAbcs, bufferSize / 4);
114
115 // Now skip beyond the buffered piece, but still within the total buffer.
116 bufferedStream->skip(bufferSize / 2);
117
118 // Test that reading will still work.
119 test_read(reporter, bufferedStream, gAbcs + bufferedStream->getPosition(), bufferSize / 4);
120
121 test_rewind(reporter, bufferedStream, true);
122 test_read(reporter, bufferedStream, gAbcs, bufferSize);
123}
124
125// A custom class whose isAtEnd behaves the way Android's stream does - since it is an adaptor to a
126// Java InputStream, it does not know that it is at the end until it has attempted to read beyond
127// the end and failed. Used by test_read_beyond_buffer.
128class AndroidLikeMemoryStream : public SkMemoryStream {
129public:
130 AndroidLikeMemoryStream(void* data, size_t size, bool ownMemory)
131 : INHERITED(data, size, ownMemory)
132 , fIsAtEnd(false) {}
133
mtklein36352bf2015-03-25 18:17:31 -0700134 size_t read(void* dst, size_t requested) override {
scroggo@google.com83fd2c72013-09-26 21:35:39 +0000135 size_t bytesRead = this->INHERITED::read(dst, requested);
136 if (bytesRead < requested) {
137 fIsAtEnd = true;
138 }
139 return bytesRead;
140 }
141
mtklein36352bf2015-03-25 18:17:31 -0700142 bool isAtEnd() const override {
scroggo@google.com83fd2c72013-09-26 21:35:39 +0000143 return fIsAtEnd;
144 }
145
146private:
147 bool fIsAtEnd;
148 typedef SkMemoryStream INHERITED;
149};
150
151// This test ensures that buffering the exact length of the stream and attempting to read beyond it
152// does not invalidate the buffer.
153static void test_read_beyond_buffer(skiatest::Reporter* reporter, size_t bufferSize) {
154 // Use a stream that behaves like Android's stream.
scroggoa1193e42015-01-21 12:09:53 -0800155 AndroidLikeMemoryStream* memStream = SkNEW_ARGS(AndroidLikeMemoryStream, ((void*)gAbcs, bufferSize, false));
scroggo@google.com83fd2c72013-09-26 21:35:39 +0000156
157 // Create a buffer that matches the length of the stream.
scroggoa1193e42015-01-21 12:09:53 -0800158 SkAutoTDelete<SkStream> bufferedStream(SkFrontBufferedStream::Create(memStream, bufferSize));
159 test_hasLength(reporter, *bufferedStream.get(), *memStream);
scroggo@google.com83fd2c72013-09-26 21:35:39 +0000160
161 // Attempt to read one more than the bufferSize
162 test_read(reporter, bufferedStream.get(), gAbcs, bufferSize + 1);
163 test_rewind(reporter, bufferedStream.get(), true);
164
165 // Ensure that the initial read did not invalidate the buffer.
166 test_read(reporter, bufferedStream, gAbcs, bufferSize);
167}
168
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000169// Dummy stream that optionally has a length and/or position. Tests that FrontBufferedStream's
170// length depends on the stream it's buffering having a length and position.
171class LengthOptionalStream : public SkStream {
172public:
173 LengthOptionalStream(bool hasLength, bool hasPosition)
174 : fHasLength(hasLength)
175 , fHasPosition(hasPosition)
176 {}
177
mtklein36352bf2015-03-25 18:17:31 -0700178 bool hasLength() const override {
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000179 return fHasLength;
180 }
181
mtklein36352bf2015-03-25 18:17:31 -0700182 bool hasPosition() const override {
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000183 return fHasPosition;
184 }
185
mtklein36352bf2015-03-25 18:17:31 -0700186 size_t read(void*, size_t) override {
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000187 return 0;
188 }
189
mtklein36352bf2015-03-25 18:17:31 -0700190 bool isAtEnd() const override {
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000191 return true;
192 }
193
194private:
195 const bool fHasLength;
196 const bool fHasPosition;
197};
198
199// Test all possible combinations of the wrapped stream having a length and a position.
200static void test_length_combos(skiatest::Reporter* reporter, size_t bufferSize) {
201 for (int hasLen = 0; hasLen <= 1; hasLen++) {
202 for (int hasPos = 0; hasPos <= 1; hasPos++) {
scroggoa1193e42015-01-21 12:09:53 -0800203 LengthOptionalStream* stream = SkNEW_ARGS(LengthOptionalStream, (SkToBool(hasLen), SkToBool(hasPos)));
204 SkAutoTDelete<SkStream> buffered(SkFrontBufferedStream::Create(stream, bufferSize));
205 test_hasLength(reporter, *buffered.get(), *stream);
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000206 }
207 }
208}
209
210// Test using a stream with an initial offset.
211static void test_initial_offset(skiatest::Reporter* reporter, size_t bufferSize) {
scroggoa1193e42015-01-21 12:09:53 -0800212 SkMemoryStream* memStream = SkNEW_ARGS(SkMemoryStream, (gAbcs, strlen(gAbcs), false));
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000213
214 // Skip a few characters into the memStream, so that bufferedStream represents an offset into
215 // the stream it wraps.
216 const size_t arbitraryOffset = 17;
scroggoa1193e42015-01-21 12:09:53 -0800217 memStream->skip(arbitraryOffset);
218 SkAutoTDelete<SkStream> bufferedStream(SkFrontBufferedStream::Create(memStream, bufferSize));
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000219
220 // Since SkMemoryStream has a length and a position, bufferedStream must also.
221 REPORTER_ASSERT(reporter, bufferedStream->hasLength());
222
223 const size_t amountToRead = 10;
224 const size_t bufferedLength = bufferedStream->getLength();
225 size_t currentPosition = bufferedStream->getPosition();
226 REPORTER_ASSERT(reporter, 0 == currentPosition);
227
228 // Read the stream in chunks. After each read, the position must match currentPosition,
229 // which sums the amount attempted to read, unless the end of the stream has been reached.
230 // Importantly, the end should not have been reached until currentPosition == bufferedLength.
231 while (currentPosition < bufferedLength) {
232 REPORTER_ASSERT(reporter, !bufferedStream->isAtEnd());
233 test_read(reporter, bufferedStream, gAbcs + arbitraryOffset + currentPosition,
234 amountToRead);
235 currentPosition = SkTMin(currentPosition + amountToRead, bufferedLength);
236 REPORTER_ASSERT(reporter, bufferedStream->getPosition() == currentPosition);
237 }
238 REPORTER_ASSERT(reporter, bufferedStream->isAtEnd());
239 REPORTER_ASSERT(reporter, bufferedLength == currentPosition);
240}
241
scroggo@google.com83fd2c72013-09-26 21:35:39 +0000242static void test_buffers(skiatest::Reporter* reporter, size_t bufferSize) {
243 test_incremental_buffering(reporter, bufferSize);
244 test_perfectly_sized_buffer(reporter, bufferSize);
245 test_skipping(reporter, bufferSize);
246 test_read_beyond_buffer(reporter, bufferSize);
commit-bot@chromium.org74b88b72014-02-10 22:03:21 +0000247 test_length_combos(reporter, bufferSize);
248 test_initial_offset(reporter, bufferSize);
scroggo@google.com83fd2c72013-09-26 21:35:39 +0000249}
250
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +0000251DEF_TEST(FrontBufferedStream, reporter) {
scroggo@google.com83fd2c72013-09-26 21:35:39 +0000252 // Test 6 and 64, which are used by Android, as well as another arbitrary length.
253 test_buffers(reporter, 6);
254 test_buffers(reporter, 15);
255 test_buffers(reporter, 64);
256}
scroggo3ceef9a2014-10-24 06:55:07 -0700257
258// Test that a FrontBufferedStream does not allow reading after the end of a stream.
259// This class is a dummy SkStream which reports that it is at the end on the first
260// read (simulating a failure). Then it tracks whether someone calls read() again.
261class FailingStream : public SkStream {
262public:
263 FailingStream()
264 : fAtEnd(false)
265 , fReadAfterEnd(false)
266 {}
mtklein36352bf2015-03-25 18:17:31 -0700267 size_t read(void* buffer, size_t size) override {
scroggo3ceef9a2014-10-24 06:55:07 -0700268 if (fAtEnd) {
269 fReadAfterEnd = true;
270 } else {
271 fAtEnd = true;
272 }
273 return 0;
274 }
275
mtklein36352bf2015-03-25 18:17:31 -0700276 bool isAtEnd() const override {
scroggo3ceef9a2014-10-24 06:55:07 -0700277 return fAtEnd;
278 }
279
280 bool readAfterEnd() const {
281 return fReadAfterEnd;
282 }
283private:
284 bool fAtEnd;
285 bool fReadAfterEnd;
286};
287
288DEF_TEST(ShortFrontBufferedStream, reporter) {
scroggoa1193e42015-01-21 12:09:53 -0800289 FailingStream* failingStream = SkNEW(FailingStream);
290 SkAutoTDelete<SkStreamRewindable> stream(SkFrontBufferedStream::Create(failingStream, 64));
scroggo3ceef9a2014-10-24 06:55:07 -0700291 SkBitmap bm;
292 // The return value of DecodeStream is not important. We are just using DecodeStream because
293 // it simulates a bug. DecodeStream will read the stream, then rewind, then attempt to read
294 // again. FrontBufferedStream::read should not continue to read its underlying stream beyond
295 // its end.
296 SkImageDecoder::DecodeStream(stream, &bm);
scroggoa1193e42015-01-21 12:09:53 -0800297 REPORTER_ASSERT(reporter, !failingStream->readAfterEnd());
scroggo3ceef9a2014-10-24 06:55:07 -0700298}