blob: 516b036a55e67162227374bf94350eb028ad7327 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
8#ifndef SkStream_DEFINED
9#define SkStream_DEFINED
10
11#include "SkRefCnt.h"
12#include "SkScalar.h"
13
reed@google.com8d0b5772011-06-24 13:07:31 +000014class SkData;
reed@google.com70442a62011-06-23 21:48:04 +000015
bungeman@google.com6cab1a42013-05-29 13:43:31 +000016class SkStream;
17class SkStreamRewindable;
18class SkStreamSeekable;
19class SkStreamAsset;
20class SkStreamMemory;
21
reed@google.com3b345052013-05-07 15:59:16 +000022/**
23 * SkStream -- abstraction for a source of bytes. Subclasses can be backed by
24 * memory, or a file, or something else.
25 *
26 * NOTE:
27 *
28 * Classic "streams" APIs are sort of async, in that on a request for N
29 * bytes, they may return fewer than N bytes on a given call, in which case
30 * the caller can "try again" to get more bytes, eventually (modulo an error)
31 * receiving their total N bytes.
skia.committer@gmail.com2b34fe02013-05-08 07:01:40 +000032 *
reed@google.com3b345052013-05-07 15:59:16 +000033 * Skia streams behave differently. They are effectively synchronous, and will
34 * always return all N bytes of the request if possible. If they return fewer
35 * (the read() call returns the number of bytes read) then that means there is
36 * no more data (at EOF or hit an error). The caller should *not* call again
37 * in hopes of fulfilling more of the request.
38 */
bungeman@google.com6cab1a42013-05-29 13:43:31 +000039class SK_API SkStream : public SkRefCnt { //TODO: remove SkRefCnt
reed@android.com8a1c16f2008-12-17 15:59:43 +000040public:
reed@google.come1575aa2013-03-18 21:08:46 +000041 /**
42 * Attempts to open the specified file, and return a stream to it (using
43 * mmap if available). On success, the caller must call unref() on the
44 * returned object. On failure, returns NULL.
45 */
bungeman@google.com6cab1a42013-05-29 13:43:31 +000046 static SkStreamAsset* NewFromFile(const char path[]);
skia.committer@gmail.com8eaddb02013-03-19 07:15:10 +000047
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000048 SK_DECLARE_INST_COUNT(SkStream)
49
bungeman@google.com6cab1a42013-05-29 13:43:31 +000050 /** Reads or skips size number of bytes.
51 * If buffer == NULL, skip size bytes, return how many were skipped.
52 * If buffer != NULL, copy size bytes into buffer, return how many were copied.
53 * @param buffer when NULL skip size bytes, otherwise copy size bytes into buffer
54 * @param size the number of bytes to skip or copy
bungeman@google.com88682b72013-07-19 13:55:41 +000055 * @return the number of bytes actually read.
bungeman@google.com6cab1a42013-05-29 13:43:31 +000056 */
reed@android.com8a1c16f2008-12-17 15:59:43 +000057 virtual size_t read(void* buffer, size_t size) = 0;
58
bungeman@google.com6cab1a42013-05-29 13:43:31 +000059 /** Skip size number of bytes.
60 * @return the actual number bytes that could be skipped.
61 */
62 size_t skip(size_t size) {
bungeman@google.com04306922013-11-13 19:53:46 +000063 return this->read(NULL, size);
bungeman@google.com6cab1a42013-05-29 13:43:31 +000064 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000065
bungeman@google.com88682b72013-07-19 13:55:41 +000066 /** Returns true when all the bytes in the stream have been read.
67 * This may return true early (when there are no more bytes to be read)
68 * or late (after the first unsuccessful read).
bungeman@google.com6cab1a42013-05-29 13:43:31 +000069 */
bungeman@google.com04306922013-11-13 19:53:46 +000070 virtual bool isAtEnd() const = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +000071
72 int8_t readS8();
73 int16_t readS16();
74 int32_t readS32();
75
76 uint8_t readU8() { return (uint8_t)this->readS8(); }
77 uint16_t readU16() { return (uint16_t)this->readS16(); }
78 uint32_t readU32() { return (uint32_t)this->readS32(); }
79
80 bool readBool() { return this->readU8() != 0; }
81 SkScalar readScalar();
82 size_t readPackedUInt();
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000083
reed@google.com2e079422012-07-02 19:35:13 +000084 /**
epoger@google.com8e3fb2d2013-03-20 15:56:03 +000085 * Reconstitute an SkData object that was written to the stream
86 * using SkWStream::writeData().
reed@google.com2e079422012-07-02 19:35:13 +000087 */
88 SkData* readData();
89
bungeman@google.com6cab1a42013-05-29 13:43:31 +000090//SkStreamRewindable
scroggo@google.com4d213ab2013-08-28 13:08:54 +000091 /** Rewinds to the beginning of the stream. Returns true if the stream is known
92 * to be at the beginning after this call returns.
93 */
bungeman@google.com6cab1a42013-05-29 13:43:31 +000094 virtual bool rewind() { return false; }
95
96 /** Duplicates this stream. If this cannot be done, returns NULL.
97 * The returned stream will be positioned at the beginning of its data.
98 */
99 virtual SkStreamRewindable* duplicate() const { return NULL; }
100
101//SkStreamSeekable
102 /** Returns true if this stream can report it's current position. */
103 virtual bool hasPosition() const { return false; }
104 /** Returns the current position in the stream. If this cannot be done, returns 0. */
105 virtual size_t getPosition() const { return 0; }
106
107 /** Seeks to an absolute position in the stream. If this cannot be done, returns false.
108 * If an attempt is made to seek past the end of the stream, the position will be set
109 * to the end of the stream.
110 */
111 virtual bool seek(size_t position) { return false; }
112
113 /** Seeks to an relative offset in the stream. If this cannot be done, returns false.
114 * If an attempt is made to move to a position outside the stream, the position will be set
115 * to the closest point within the stream (beginning or end).
116 */
117 virtual bool move(long offset) { return false; }
118
119 /** Duplicates this stream. If this cannot be done, returns NULL.
120 * The returned stream will be positioned the same as this stream.
121 */
122 virtual SkStreamSeekable* fork() const { return NULL; }
123
124//SkStreamAsset
125 /** Returns true if this stream can report it's total length. */
126 virtual bool hasLength() const { return false; }
127 /** Returns the total length of the stream. If this cannot be done, returns 0. */
bungeman@google.com04306922013-11-13 19:53:46 +0000128 virtual size_t getLength() const { return 0; }
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000129
130//SkStreamMemory
131 /** Returns the starting address for the data. If this cannot be done, returns NULL. */
132 //TODO: replace with virtual const SkData* getData()
133 virtual const void* getMemoryBase() { return NULL; }
134
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +0000135private:
136 typedef SkRefCnt INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000137};
138
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000139/** SkStreamRewindable is a SkStream for which rewind and duplicate are required. */
140class SK_API SkStreamRewindable : public SkStream {
141public:
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000142 virtual bool rewind() SK_OVERRIDE = 0;
143 virtual SkStreamRewindable* duplicate() const SK_OVERRIDE = 0;
144};
145
146/** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
147class SK_API SkStreamSeekable : public SkStreamRewindable {
148public:
149 virtual SkStreamSeekable* duplicate() const SK_OVERRIDE = 0;
150
151 virtual bool hasPosition() const SK_OVERRIDE { return true; }
152 virtual size_t getPosition() const SK_OVERRIDE = 0;
153 virtual bool seek(size_t position) SK_OVERRIDE = 0;
154 virtual bool move(long offset) SK_OVERRIDE = 0;
155 virtual SkStreamSeekable* fork() const SK_OVERRIDE = 0;
156};
157
158/** SkStreamAsset is a SkStreamSeekable for which getLength is required. */
159class SK_API SkStreamAsset : public SkStreamSeekable {
160public:
161 virtual SkStreamAsset* duplicate() const SK_OVERRIDE = 0;
162 virtual SkStreamAsset* fork() const SK_OVERRIDE = 0;
163
164 virtual bool hasLength() const SK_OVERRIDE { return true; }
165 virtual size_t getLength() const SK_OVERRIDE = 0;
166};
167
168/** SkStreamMemory is a SkStreamAsset for which getMemoryBase is required. */
169class SK_API SkStreamMemory : public SkStreamAsset {
170public:
171 virtual SkStreamMemory* duplicate() const SK_OVERRIDE = 0;
172 virtual SkStreamMemory* fork() const SK_OVERRIDE = 0;
173
174 virtual const void* getMemoryBase() SK_OVERRIDE = 0;
175};
176
ctguil@chromium.orgdfc5ffe2011-03-30 20:14:49 +0000177class SK_API SkWStream : SkNoncopyable {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000178public:
reed@google.com3b429982012-06-26 15:30:08 +0000179 SK_DECLARE_INST_COUNT_ROOT(SkWStream)
180
reed@android.com8a1c16f2008-12-17 15:59:43 +0000181 virtual ~SkWStream();
182
183 /** Called to write bytes to a SkWStream. Returns true on success
184 @param buffer the address of at least size bytes to be written to the stream
185 @param size The number of bytes in buffer to write to the stream
186 @return true on success
187 */
188 virtual bool write(const void* buffer, size_t size) = 0;
189 virtual void newline();
190 virtual void flush();
191
commit-bot@chromium.org490fb6b2014-03-06 17:16:26 +0000192 virtual size_t bytesWritten() const = 0;
193
reed@android.com8a1c16f2008-12-17 15:59:43 +0000194 // helpers
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000195
reed@android.com8a1c16f2008-12-17 15:59:43 +0000196 bool write8(U8CPU);
197 bool write16(U16CPU);
198 bool write32(uint32_t);
199
200 bool writeText(const char text[]);
201 bool writeDecAsText(int32_t);
vandebo@chromium.orgd877fdb2010-10-12 23:08:13 +0000202 bool writeBigDecAsText(int64_t, int minDigits = 0);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000203 bool writeHexAsText(uint32_t, int minDigits = 0);
204 bool writeScalarAsText(SkScalar);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000205
reed@android.com8a1c16f2008-12-17 15:59:43 +0000206 bool writeBool(bool v) { return this->write8(v); }
207 bool writeScalar(SkScalar);
208 bool writePackedUInt(size_t);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000209
commit-bot@chromium.orgdcb8e542014-03-05 18:25:20 +0000210 bool writeStream(SkStream* input, size_t length);
reed@google.com8a85d0c2011-06-24 19:12:12 +0000211
epoger@google.com8e3fb2d2013-03-20 15:56:03 +0000212 /**
213 * Append an SkData object to the stream, such that it can be read
214 * out of the stream using SkStream::readData().
215 *
216 * Note that the encoding method used to write the SkData object
217 * to the stream may change over time. This method DOES NOT
218 * just write the raw content of the SkData object to the stream.
219 */
reed@google.com8a85d0c2011-06-24 19:12:12 +0000220 bool writeData(const SkData*);
commit-bot@chromium.orgdcb8e542014-03-05 18:25:20 +0000221
222 /**
223 * This returns the number of bytes in the stream required to store
224 * 'value'.
225 */
226 static int SizeOfPackedUInt(size_t value);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000227};
228
229////////////////////////////////////////////////////////////////////////////////////////
230
231#include "SkString.h"
bungeman@google.comfab44db2013-10-11 18:50:45 +0000232#include <stdio.h>
reed@android.com8a1c16f2008-12-17 15:59:43 +0000233
234struct SkFILE;
235
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000236/** A stream that wraps a C FILE* file stream. */
237class SK_API SkFILEStream : public SkStreamAsset {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000238public:
reed@google.com3b429982012-06-26 15:30:08 +0000239 SK_DECLARE_INST_COUNT(SkFILEStream)
240
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000241 /** Initialize the stream by calling sk_fopen on the specified path.
242 * This internal stream will be closed in the destructor.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000243 */
244 explicit SkFILEStream(const char path[] = NULL);
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000245
246 enum Ownership {
247 kCallerPasses_Ownership,
248 kCallerRetains_Ownership
249 };
250 /** Initialize the stream with an existing C file stream.
251 * While this stream exists, it assumes exclusive access to the C file stream.
252 * The C file stream will be closed in the destructor unless the caller specifies
253 * kCallerRetains_Ownership.
254 */
255 explicit SkFILEStream(FILE* file, Ownership ownership = kCallerPasses_Ownership);
256
reed@android.com8a1c16f2008-12-17 15:59:43 +0000257 virtual ~SkFILEStream();
258
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000259 /** Returns true if the current path could be opened. */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000260 bool isValid() const { return fFILE != NULL; }
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000261
262 /** Close the current file, and open a new file with the specified path.
263 * If path is NULL, just close the current file.
264 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000265 void setPath(const char path[]);
266
tomhudson@google.com13413042011-10-03 16:01:10 +0000267 virtual size_t read(void* buffer, size_t size) SK_OVERRIDE;
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000268 virtual bool isAtEnd() const SK_OVERRIDE;
269
270 virtual bool rewind() SK_OVERRIDE;
271 virtual SkStreamAsset* duplicate() const SK_OVERRIDE;
272
273 virtual size_t getPosition() const SK_OVERRIDE;
274 virtual bool seek(size_t position) SK_OVERRIDE;
275 virtual bool move(long offset) SK_OVERRIDE;
276 virtual SkStreamAsset* fork() const SK_OVERRIDE;
277
278 virtual size_t getLength() const SK_OVERRIDE;
279
bungeman@google.com88682b72013-07-19 13:55:41 +0000280 virtual const void* getMemoryBase() SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000281
282private:
283 SkFILE* fFILE;
284 SkString fName;
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000285 Ownership fOwnership;
286 // fData is lazilly initialized when needed.
287 mutable SkAutoTUnref<SkData> fData;
reed@google.com3b429982012-06-26 15:30:08 +0000288
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000289 typedef SkStreamAsset INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000290};
291
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000292class SK_API SkMemoryStream : public SkStreamMemory {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000293public:
reed@google.com3b429982012-06-26 15:30:08 +0000294 SK_DECLARE_INST_COUNT(SkMemoryStream)
295
reed@android.com8a1c16f2008-12-17 15:59:43 +0000296 SkMemoryStream();
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000297
298 /** We allocate (and free) the memory. Write to it via getMemoryBase() */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000299 SkMemoryStream(size_t length);
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000300
301 /** If copyData is true, the stream makes a private copy of the data. */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000302 SkMemoryStream(const void* data, size_t length, bool copyData = false);
scroggo@google.come4904202013-01-09 22:02:58 +0000303
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000304 /** Use the specified data as the memory for this stream.
305 * The stream will call ref() on the data (assuming it is not NULL).
scroggo@google.come4904202013-01-09 22:02:58 +0000306 */
307 SkMemoryStream(SkData*);
308
reed@android.com8a1c16f2008-12-17 15:59:43 +0000309 virtual ~SkMemoryStream();
310
311 /** Resets the stream to the specified data and length,
312 just like the constructor.
313 if copyData is true, the stream makes a private copy of the data
314 */
315 virtual void setMemory(const void* data, size_t length,
316 bool copyData = false);
djsollen@google.com57f49692011-02-23 20:46:31 +0000317 /** Replace any memory buffer with the specified buffer. The caller
318 must have allocated data with sk_malloc or sk_realloc, since it
319 will be freed with sk_free.
320 */
321 void setMemoryOwned(const void* data, size_t length);
reed@google.com8a85d0c2011-06-24 19:12:12 +0000322
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000323 /** Return the stream's data in a SkData.
324 * The caller must call unref() when it is finished using the data.
reed@google.com8a85d0c2011-06-24 19:12:12 +0000325 */
326 SkData* copyToData() const;
327
328 /**
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000329 * Use the specified data as the memory for this stream.
330 * The stream will call ref() on the data (assuming it is not NULL).
331 * The function returns the data parameter as a convenience.
reed@google.com8a85d0c2011-06-24 19:12:12 +0000332 */
333 SkData* setData(SkData*);
334
reed@android.com8a1c16f2008-12-17 15:59:43 +0000335 void skipToAlign4();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000336 const void* getAtPos();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000337 size_t peek() const { return fOffset; }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000338
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000339 virtual size_t read(void* buffer, size_t size) SK_OVERRIDE;
340 virtual bool isAtEnd() const SK_OVERRIDE;
341
342 virtual bool rewind() SK_OVERRIDE;
343 virtual SkMemoryStream* duplicate() const SK_OVERRIDE;
344
345 virtual size_t getPosition() const SK_OVERRIDE;
346 virtual bool seek(size_t position) SK_OVERRIDE;
347 virtual bool move(long offset) SK_OVERRIDE;
348 virtual SkMemoryStream* fork() const SK_OVERRIDE;
349
350 virtual size_t getLength() const SK_OVERRIDE;
351
352 virtual const void* getMemoryBase() SK_OVERRIDE;
353
reed@android.com8a1c16f2008-12-17 15:59:43 +0000354private:
reed@google.com8a85d0c2011-06-24 19:12:12 +0000355 SkData* fData;
356 size_t fOffset;
reed@google.com3b429982012-06-26 15:30:08 +0000357
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000358 typedef SkStreamMemory INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000359};
360
361/////////////////////////////////////////////////////////////////////////////////////////////
362
alokp@chromium.orgf7751ae2012-07-17 19:10:36 +0000363class SK_API SkFILEWStream : public SkWStream {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000364public:
reed@google.com3b429982012-06-26 15:30:08 +0000365 SK_DECLARE_INST_COUNT(SkFILEWStream)
366
367 SkFILEWStream(const char path[]);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000368 virtual ~SkFILEWStream();
369
370 /** Returns true if the current path could be opened.
371 */
372 bool isValid() const { return fFILE != NULL; }
373
tomhudson@google.com13413042011-10-03 16:01:10 +0000374 virtual bool write(const void* buffer, size_t size) SK_OVERRIDE;
375 virtual void flush() SK_OVERRIDE;
commit-bot@chromium.org490fb6b2014-03-06 17:16:26 +0000376 virtual size_t bytesWritten() const SK_OVERRIDE;
reed@google.com3b429982012-06-26 15:30:08 +0000377
reed@android.com8a1c16f2008-12-17 15:59:43 +0000378private:
379 SkFILE* fFILE;
reed@google.com3b429982012-06-26 15:30:08 +0000380
381 typedef SkWStream INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000382};
383
384class SkMemoryWStream : public SkWStream {
385public:
reed@google.com3b429982012-06-26 15:30:08 +0000386 SK_DECLARE_INST_COUNT(SkMemoryWStream)
387
reed@android.com8a1c16f2008-12-17 15:59:43 +0000388 SkMemoryWStream(void* buffer, size_t size);
tomhudson@google.com13413042011-10-03 16:01:10 +0000389 virtual bool write(const void* buffer, size_t size) SK_OVERRIDE;
commit-bot@chromium.org490fb6b2014-03-06 17:16:26 +0000390 virtual size_t bytesWritten() const SK_OVERRIDE { return fBytesWritten; }
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000391
reed@android.com8a1c16f2008-12-17 15:59:43 +0000392private:
393 char* fBuffer;
394 size_t fMaxLength;
395 size_t fBytesWritten;
reed@google.com3b429982012-06-26 15:30:08 +0000396
397 typedef SkWStream INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000398};
399
ctguil@chromium.orgdfc5ffe2011-03-30 20:14:49 +0000400class SK_API SkDynamicMemoryWStream : public SkWStream {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000401public:
reed@google.com3b429982012-06-26 15:30:08 +0000402 SK_DECLARE_INST_COUNT(SkDynamicMemoryWStream)
403
reed@android.com8a1c16f2008-12-17 15:59:43 +0000404 SkDynamicMemoryWStream();
405 virtual ~SkDynamicMemoryWStream();
reed@google.com8a85d0c2011-06-24 19:12:12 +0000406
tomhudson@google.com13413042011-10-03 16:01:10 +0000407 virtual bool write(const void* buffer, size_t size) SK_OVERRIDE;
commit-bot@chromium.org490fb6b2014-03-06 17:16:26 +0000408 virtual size_t bytesWritten() const SK_OVERRIDE { return fBytesWritten; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000409 // random access write
410 // modifies stream and returns true if offset + size is less than or equal to getOffset()
411 bool write(const void* buffer, size_t offset, size_t size);
412 bool read(void* buffer, size_t offset, size_t size);
vandebo@chromium.orga5180862010-10-26 19:48:49 +0000413 size_t getOffset() const { return fBytesWritten; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000414
415 // copy what has been written to the stream into dst
reed@google.com8a85d0c2011-06-24 19:12:12 +0000416 void copyTo(void* dst) const;
reed@google.com70442a62011-06-23 21:48:04 +0000417
418 /**
reed@google.com8a85d0c2011-06-24 19:12:12 +0000419 * Return a copy of the data written so far. This call is responsible for
420 * calling unref() when they are finished with the data.
reed@google.com70442a62011-06-23 21:48:04 +0000421 */
reed@google.com8d0b5772011-06-24 13:07:31 +0000422 SkData* copyToData() const;
reed@google.com70442a62011-06-23 21:48:04 +0000423
bungeman@google.com88682b72013-07-19 13:55:41 +0000424 /** Reset, returning a reader stream with the current content. */
bungeman@google.comc29f3d82013-07-19 22:32:11 +0000425 SkStreamAsset* detachAsStream();
bungeman@google.com88682b72013-07-19 13:55:41 +0000426
427 /** Reset the stream to its original, empty, state. */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000428 void reset();
429 void padToAlign4();
430private:
431 struct Block;
432 Block* fHead;
433 Block* fTail;
434 size_t fBytesWritten;
reed@google.com8a85d0c2011-06-24 19:12:12 +0000435 mutable SkData* fCopy; // is invalidated if we write after it is created
436
437 void invalidateCopy();
reed@google.com3b429982012-06-26 15:30:08 +0000438
bungeman@google.com88682b72013-07-19 13:55:41 +0000439 // For access to the Block type.
440 friend class SkBlockMemoryStream;
441 friend class SkBlockMemoryRefCnt;
442
reed@google.com3b429982012-06-26 15:30:08 +0000443 typedef SkWStream INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000444};
445
446
reed@google.coma718c5e2013-03-05 17:49:10 +0000447class SK_API SkDebugWStream : public SkWStream {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000448public:
commit-bot@chromium.org490fb6b2014-03-06 17:16:26 +0000449 SkDebugWStream() : fBytesWritten(0) {}
reed@google.com3b429982012-06-26 15:30:08 +0000450 SK_DECLARE_INST_COUNT(SkDebugWStream)
451
reed@android.com8a1c16f2008-12-17 15:59:43 +0000452 // overrides
tomhudson@google.com13413042011-10-03 16:01:10 +0000453 virtual bool write(const void* buffer, size_t size) SK_OVERRIDE;
454 virtual void newline() SK_OVERRIDE;
commit-bot@chromium.org490fb6b2014-03-06 17:16:26 +0000455 virtual size_t bytesWritten() const SK_OVERRIDE { return fBytesWritten; }
reed@google.com3b429982012-06-26 15:30:08 +0000456
457private:
commit-bot@chromium.org490fb6b2014-03-06 17:16:26 +0000458 size_t fBytesWritten;
reed@google.com3b429982012-06-26 15:30:08 +0000459 typedef SkWStream INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000460};
461
462// for now
463typedef SkFILEStream SkURLStream;
464
465#endif