blob: 275c1f2229be95f487ee3f919e8d2c4f8605ec74 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2008 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 SkPixelRef_DEFINED
9#define SkPixelRef_DEFINED
10
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +000011#include "SkBitmap.h"
mtklein0b544ae2014-07-08 19:37:47 -070012#include "SkDynamicAnnotations.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000013#include "SkRefCnt.h"
14#include "SkString.h"
reed@google.comd0419b12014-01-06 17:08:27 +000015#include "SkImageInfo.h"
sugoi518d83d2014-07-21 11:37:39 -070016#include "SkSize.h"
commit-bot@chromium.org50a30432013-10-24 17:44:27 +000017#include "SkTDArray.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000018
reed@google.combf0001d2014-01-13 14:53:55 +000019//#define xed
reed@google.comd0419b12014-01-06 17:08:27 +000020
reed@google.com2a3f08b2012-12-13 21:41:00 +000021#ifdef SK_DEBUG
22 /**
23 * Defining SK_IGNORE_PIXELREF_SETPRELOCKED will force all pixelref
24 * subclasses to correctly handle lock/unlock pixels. For performance
25 * reasons, simple malloc-based subclasses call setPreLocked() to skip
26 * the overhead of implementing these calls.
27 *
28 * This build-flag disables that optimization, to add in debugging our
29 * call-sites, to ensure that they correctly balance their calls of
30 * lock and unlock.
31 */
32// #define SK_IGNORE_PIXELREF_SETPRELOCKED
33#endif
34
reed@android.com8a1c16f2008-12-17 15:59:43 +000035class SkColorTable;
reed@google.comeb776122012-12-06 14:26:02 +000036class SkData;
reed@google.com50dfa012011-04-01 19:05:36 +000037struct SkIRect;
reed@android.com8a1c16f2008-12-17 15:59:43 +000038class SkMutex;
reed@android.com8a1c16f2008-12-17 15:59:43 +000039
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000040class GrTexture;
reed@android.comce4e53a2010-09-09 16:01:26 +000041
reed@android.com8a1c16f2008-12-17 15:59:43 +000042/** \class SkPixelRef
43
44 This class is the smart container for pixel memory, and is used with
45 SkBitmap. A pixelref is installed into a bitmap, and then the bitmap can
46 access the actual pixel memory by calling lockPixels/unlockPixels.
47
48 This class can be shared/accessed between multiple threads.
49*/
reeded458682014-07-14 09:21:31 -070050class SK_API SkPixelRef : public SkRefCnt {
reed@android.com8a1c16f2008-12-17 15:59:43 +000051public:
robertphillips@google.com0456e0b2012-06-27 14:03:26 +000052 SK_DECLARE_INST_COUNT(SkPixelRef)
53
reed@google.comf1715702013-12-06 22:07:17 +000054 explicit SkPixelRef(const SkImageInfo&);
reed@google.comb0eb1022013-12-06 22:16:10 +000055 SkPixelRef(const SkImageInfo&, SkBaseMutex* mutex);
commit-bot@chromium.org50a30432013-10-24 17:44:27 +000056 virtual ~SkPixelRef();
reed@google.com93c5f9e2011-02-24 18:09:46 +000057
reed@google.com9230ea22013-12-09 22:01:03 +000058 const SkImageInfo& info() const {
59 return fInfo;
60 }
61
reed@android.com8a1c16f2008-12-17 15:59:43 +000062 /** Return the pixel memory returned from lockPixels, or null if the
63 lockCount is 0.
64 */
reed@google.comd0419b12014-01-06 17:08:27 +000065 void* pixels() const { return fRec.fPixels; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000066
67 /** Return the current colorTable (if any) if pixels are locked, or null.
68 */
reed@google.comd0419b12014-01-06 17:08:27 +000069 SkColorTable* colorTable() const { return fRec.fColorTable; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000070
reed@google.com672588b2014-01-08 15:42:01 +000071 size_t rowBytes() const { return fRec.fRowBytes; }
72
reed@google.comff0da4f2012-05-17 13:14:52 +000073 /**
reed@google.com92713892014-01-03 17:58:57 +000074 * To access the actual pixels of a pixelref, it must be "locked".
75 * Calling lockPixels returns a LockRec struct (on success).
76 */
77 struct LockRec {
78 void* fPixels;
79 SkColorTable* fColorTable;
80 size_t fRowBytes;
skia.committer@gmail.com98272d92014-01-04 07:01:40 +000081
reed@google.com92713892014-01-03 17:58:57 +000082 void zero() { sk_bzero(this, sizeof(*this)); }
83
84 bool isZero() const {
85 return NULL == fPixels && NULL == fColorTable && 0 == fRowBytes;
86 }
87 };
skia.committer@gmail.com98272d92014-01-04 07:01:40 +000088
reed@google.com92713892014-01-03 17:58:57 +000089 /**
reed@google.comff0da4f2012-05-17 13:14:52 +000090 * Returns true if the lockcount > 0
91 */
92 bool isLocked() const { return fLockCount > 0; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000093
reed@google.comea033602012-12-14 13:13:55 +000094 SkDEBUGCODE(int getLockCount() const { return fLockCount; })
95
reed@google.comd0419b12014-01-06 17:08:27 +000096 /**
97 * Call to access the pixel memory. Return true on success. Balance this
98 * with a call to unlockPixels().
99 */
100 bool lockPixels();
101
102 /**
103 * Call to access the pixel memory. On success, return true and fill out
104 * the specified rec. On failure, return false and ignore the rec parameter.
105 * Balance this with a call to unlockPixels().
106 */
107 bool lockPixels(LockRec* rec);
108
reed@android.com8a1c16f2008-12-17 15:59:43 +0000109 /** Call to balanace a previous call to lockPixels(). Returns the pixels
110 (or null) after the unlock. NOTE: lock calls can be nested, but the
111 matching number of unlock calls must be made in order to free the
112 memory (if the subclass implements caching/deferred-decoding.)
113 */
114 void unlockPixels();
reed@google.com93c5f9e2011-02-24 18:09:46 +0000115
reed@google.com9c49bc32011-07-07 13:42:37 +0000116 /**
117 * Some bitmaps can return a copy of their pixels for lockPixels(), but
118 * that copy, if modified, will not be pushed back. These bitmaps should
119 * not be used as targets for a raster device/canvas (since all pixels
120 * modifications will be lost when unlockPixels() is called.)
121 */
122 bool lockPixelsAreWritable() const;
123
reed@android.com8a1c16f2008-12-17 15:59:43 +0000124 /** Returns a non-zero, unique value corresponding to the pixels in this
125 pixelref. Each time the pixels are changed (and notifyPixelsChanged is
126 called), a different generation ID will be returned.
127 */
128 uint32_t getGenerationID() const;
reed@google.com93c5f9e2011-02-24 18:09:46 +0000129
scroggof3ca41c2014-11-25 13:42:12 -0800130#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
131 /** Returns a non-zero, unique value corresponding to this SkPixelRef.
132 Unlike the generation ID, this ID remains the same even when the pixels
133 are changed. IDs are not reused (until uint32_t wraps), so it is safe
134 to consider this ID unique even after this SkPixelRef is deleted.
135
136 Can be used as a key which uniquely identifies this SkPixelRef
137 regardless of changes to its pixels or deletion of this object.
138 */
139 uint32_t getStableID() const { return fStableID; }
140#endif
141
commit-bot@chromium.org0e8d0d62014-01-27 15:41:07 +0000142 /**
143 * Call this if you have changed the contents of the pixels. This will in-
144 * turn cause a different generation ID value to be returned from
145 * getGenerationID().
commit-bot@chromium.org0e8d0d62014-01-27 15:41:07 +0000146 */
reed@google.comc1587f92014-01-28 16:05:39 +0000147 void notifyPixelsChanged();
148
149 /**
150 * Change the info's AlphaType. Note that this does not automatically
151 * invalidate the generation ID. If the pixel values themselves have
152 * changed, then you must explicitly call notifyPixelsChanged() as well.
153 */
154 void changeAlphaType(SkAlphaType at);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000155
156 /** Returns true if this pixelref is marked as immutable, meaning that the
157 contents of its pixels will not change for the lifetime of the pixelref.
158 */
159 bool isImmutable() const { return fIsImmutable; }
reed@google.com93c5f9e2011-02-24 18:09:46 +0000160
reed@android.com8a1c16f2008-12-17 15:59:43 +0000161 /** Marks this pixelref is immutable, meaning that the contents of its
162 pixels will not change for the lifetime of the pixelref. This state can
163 be set on a pixelref, but it cannot be cleared once it is set.
164 */
165 void setImmutable();
166
167 /** Return the optional URI string associated with this pixelref. May be
168 null.
169 */
170 const char* getURI() const { return fURI.size() ? fURI.c_str() : NULL; }
171
172 /** Copy a URI string to this pixelref, or clear the URI if the uri is null
173 */
174 void setURI(const char uri[]) {
175 fURI.set(uri);
176 }
reed@google.com93c5f9e2011-02-24 18:09:46 +0000177
reed@android.com8a1c16f2008-12-17 15:59:43 +0000178 /** Copy a URI string to this pixelref
179 */
180 void setURI(const char uri[], size_t len) {
181 fURI.set(uri, len);
182 }
reed@google.com93c5f9e2011-02-24 18:09:46 +0000183
reed@android.com8a1c16f2008-12-17 15:59:43 +0000184 /** Assign a URI string to this pixelref.
185 */
186 void setURI(const SkString& uri) { fURI = uri; }
187
reed@google.comeb776122012-12-06 14:26:02 +0000188 /**
189 * If the pixelRef has an encoded (i.e. compressed) representation,
190 * return a ref to its data. If the pixelRef
191 * is uncompressed or otherwise does not have this form, return NULL.
192 *
193 * If non-null is returned, the caller is responsible for calling unref()
194 * on the data when it is finished.
195 */
196 SkData* refEncodedData() {
197 return this->onRefEncodedData();
198 }
199
reed@google.comcee9dcb2013-09-13 16:04:49 +0000200 /**
201 * Experimental -- tells the caller if it is worth it to call decodeInto().
202 * Just an optimization at this point, to avoid checking the cache first.
203 * We may remove/change this call in the future.
204 */
205 bool implementsDecodeInto() {
206 return this->onImplementsDecodeInto();
207 }
208
209 /**
210 * Return a decoded instance of this pixelRef in bitmap. If this cannot be
211 * done, return false and the bitmap parameter is ignored/unchanged.
212 *
213 * pow2 is the requeste power-of-two downscale that the caller needs. This
214 * can be ignored, and the "original" size can be returned, but if the
215 * underlying codec can efficiently return a smaller size, that should be
216 * done. Some examples:
217 *
218 * To request the "base" version (original scale), pass 0 for pow2
219 * To request 1/2 scale version (1/2 width, 1/2 height), pass 1 for pow2
220 * To request 1/4 scale version (1/4 width, 1/4 height), pass 2 for pow2
221 * ...
222 *
223 * If this returns true, then bitmap must be "locked" such that
224 * bitmap->getPixels() will return the correct address.
225 */
226 bool decodeInto(int pow2, SkBitmap* bitmap) {
227 SkASSERT(pow2 >= 0);
228 return this->onDecodeInto(pow2, bitmap);
229 }
230
reed@android.comce4e53a2010-09-09 16:01:26 +0000231 /** Are we really wrapping a texture instead of a bitmap?
232 */
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000233 virtual GrTexture* getTexture() { return NULL; }
reed@android.comce4e53a2010-09-09 16:01:26 +0000234
sugoi518d83d2014-07-21 11:37:39 -0700235 /**
236 * If any planes or rowBytes is NULL, this should output the sizes and return true
237 * if it can efficiently return YUV planar data. If it cannot, it should return false.
238 *
239 * If all planes and rowBytes are not NULL, then it should copy the associated Y,U,V data
240 * into those planes of memory supplied by the caller. It should validate that the sizes
241 * match what it expected. If the sizes do not match, it should return false.
rileyaabaef862014-09-12 17:45:58 -0700242 *
243 * If colorSpace is not NULL, the YUV color space of the data should be stored in the address
244 * it points at.
sugoi518d83d2014-07-21 11:37:39 -0700245 */
rileyaabaef862014-09-12 17:45:58 -0700246 bool getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
247 SkYUVColorSpace* colorSpace) {
248 return this->onGetYUV8Planes(sizes, planes, rowBytes, colorSpace);
sugoi518d83d2014-07-21 11:37:39 -0700249 }
250
reed@google.com50dfa012011-04-01 19:05:36 +0000251 bool readPixels(SkBitmap* dst, const SkIRect* subset = NULL);
252
scroggo@google.coma2a31922012-12-07 19:14:45 +0000253 /**
254 * Makes a deep copy of this PixelRef, respecting the requested config.
reede4538f52014-06-11 06:09:50 -0700255 * @param colorType Desired colortype.
scroggo@google.coma2a31922012-12-07 19:14:45 +0000256 * @param subset Subset of this PixelRef to copy. Must be fully contained within the bounds of
257 * of this PixelRef.
258 * @return A new SkPixelRef, or NULL if either there is an error (e.g. the destination could
259 * not be created with the given config), or this PixelRef does not support deep
260 * copies.
261 */
djsollenc87dd2c2014-11-14 11:11:46 -0800262 virtual SkPixelRef* deepCopy(SkColorType, const SkIRect* /*subset*/) {
scroggo@google.coma2a31922012-12-07 19:14:45 +0000263 return NULL;
264 }
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000265
djsollen@google.com56c69772011-11-08 19:00:26 +0000266#ifdef SK_BUILD_FOR_ANDROID
reed@google.com93c5f9e2011-02-24 18:09:46 +0000267 /**
268 * Acquire a "global" ref on this object.
269 * The default implementation just calls ref(), but subclasses can override
270 * this method to implement additional behavior.
271 */
djsollen@google.com57f49692011-02-23 20:46:31 +0000272 virtual void globalRef(void* data=NULL);
273
reed@google.com93c5f9e2011-02-24 18:09:46 +0000274 /**
275 * Release a "global" ref on this object.
276 * The default implementation just calls unref(), but subclasses can override
277 * this method to implement additional behavior.
278 */
djsollen@google.com57f49692011-02-23 20:46:31 +0000279 virtual void globalUnref();
reed@google.com93c5f9e2011-02-24 18:09:46 +0000280#endif
djsollen@google.com57f49692011-02-23 20:46:31 +0000281
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000282 // Register a listener that may be called the next time our generation ID changes.
283 //
284 // We'll only call the listener if we're confident that we are the only SkPixelRef with this
285 // generation ID. If our generation ID changes and we decide not to call the listener, we'll
286 // never call it: you must add a new listener for each generation ID change. We also won't call
287 // the listener when we're certain no one knows what our generation ID is.
288 //
289 // This can be used to invalidate caches keyed by SkPixelRef generation ID.
290 struct GenIDChangeListener {
291 virtual ~GenIDChangeListener() {}
292 virtual void onChange() = 0;
293 };
294
295 // Takes ownership of listener.
296 void addGenIDChangeListener(GenIDChangeListener* listener);
297
reed@android.com8a1c16f2008-12-17 15:59:43 +0000298protected:
reed@google.comd0419b12014-01-06 17:08:27 +0000299 /**
300 * On success, returns true and fills out the LockRec for the pixels. On
301 * failure returns false and ignores the LockRec parameter.
302 *
303 * The caller will have already acquired a mutex for thread safety, so this
304 * method need not do that.
305 */
306 virtual bool onNewLockPixels(LockRec*) = 0;
skia.committer@gmail.com96f5fa02013-12-16 07:01:40 +0000307
reed@google.comc83a91f2013-12-13 13:41:14 +0000308 /**
reed@google.comd0419b12014-01-06 17:08:27 +0000309 * Balancing the previous successful call to onNewLockPixels. The locked
310 * pixel address will no longer be referenced, so the subclass is free to
311 * move or discard that memory.
reed@google.comc83a91f2013-12-13 13:41:14 +0000312 *
reed@google.comd0419b12014-01-06 17:08:27 +0000313 * The caller will have already acquired a mutex for thread safety, so this
314 * method need not do that.
reed@google.comc83a91f2013-12-13 13:41:14 +0000315 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000316 virtual void onUnlockPixels() = 0;
317
reed@google.com9c49bc32011-07-07 13:42:37 +0000318 /** Default impl returns true */
319 virtual bool onLockPixelsAreWritable() const;
320
reed@google.comcee9dcb2013-09-13 16:04:49 +0000321 // returns false;
322 virtual bool onImplementsDecodeInto();
323 // returns false;
324 virtual bool onDecodeInto(int pow2, SkBitmap* bitmap);
325
reed@google.com50dfa012011-04-01 19:05:36 +0000326 /**
327 * For pixelrefs that don't have access to their raw pixels, they may be
328 * able to make a copy of them (e.g. if the pixels are on the GPU).
329 *
330 * The base class implementation returns false;
331 */
332 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subsetOrNull);
333
reed@google.comeb776122012-12-06 14:26:02 +0000334 // default impl returns NULL.
335 virtual SkData* onRefEncodedData();
336
sugoi518d83d2014-07-21 11:37:39 -0700337 // default impl returns false.
rileyaabaef862014-09-12 17:45:58 -0700338 virtual bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
339 SkYUVColorSpace* colorSpace);
sugoi518d83d2014-07-21 11:37:39 -0700340
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000341 /**
342 * Returns the size (in bytes) of the internally allocated memory.
343 * This should be implemented in all serializable SkPixelRef derived classes.
344 * SkBitmap::fPixelRefOffset + SkBitmap::getSafeSize() should never overflow this value,
345 * otherwise the rendering code may attempt to read memory out of bounds.
346 *
347 * @return default impl returns 0.
348 */
349 virtual size_t getAllocatedSizeInBytes() const;
350
reed@android.com8a1c16f2008-12-17 15:59:43 +0000351 /** Return the mutex associated with this pixelref. This value is assigned
352 in the constructor, and cannot change during the lifetime of the object.
353 */
digit@google.com1771cbf2012-01-26 21:26:40 +0000354 SkBaseMutex* mutex() const { return fMutex; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000355
reed@google.comff0da4f2012-05-17 13:14:52 +0000356 // only call from constructor. Flags this to always be locked, removing
357 // the need to grab the mutex and call onLockPixels/onUnlockPixels.
358 // Performance tweak to avoid those calls (esp. in multi-thread use case).
reed@google.comd0419b12014-01-06 17:08:27 +0000359 void setPreLocked(void*, size_t rowBytes, SkColorTable*);
reed@google.comff0da4f2012-05-17 13:14:52 +0000360
reed@android.com8a1c16f2008-12-17 15:59:43 +0000361private:
digit@google.com1771cbf2012-01-26 21:26:40 +0000362 SkBaseMutex* fMutex; // must remain in scope for the life of this object
reed@google.com33cc9892014-01-02 18:07:46 +0000363
commit-bot@chromium.org0e8d0d62014-01-27 15:41:07 +0000364 // mostly const. fInfo.fAlpahType can be changed at runtime.
reed@google.com33cc9892014-01-02 18:07:46 +0000365 const SkImageInfo fInfo;
robertphillips@google.com0daa1ad2013-12-13 15:24:37 +0000366
reed@google.comd0419b12014-01-06 17:08:27 +0000367 // LockRec is only valid if we're in a locked state (isLocked())
368 LockRec fRec;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000369 int fLockCount;
reed@google.com93c5f9e2011-02-24 18:09:46 +0000370
mtklein0b544ae2014-07-08 19:37:47 -0700371 mutable SkTRacy<uint32_t> fGenerationID;
372 mutable SkTRacy<bool> fUniqueGenerationID;
scroggof3ca41c2014-11-25 13:42:12 -0800373#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
374 const uint32_t fStableID;
375#endif
reed@google.com93c5f9e2011-02-24 18:09:46 +0000376
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000377 SkTDArray<GenIDChangeListener*> fGenIDChangeListeners; // pointers are owned
scroggo@google.comd5764e82012-08-22 15:00:05 +0000378
reed@android.com8a1c16f2008-12-17 15:59:43 +0000379 SkString fURI;
380
381 // can go from false to true, but never from true to false
382 bool fIsImmutable;
reed@google.comff0da4f2012-05-17 13:14:52 +0000383 // only ever set in constructor, const after that
384 bool fPreLocked;
385
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000386 void needsNewGenID();
387 void callGenIDChangeListeners();
388
reed@google.comff0da4f2012-05-17 13:14:52 +0000389 void setMutex(SkBaseMutex* mutex);
caryclark@google.com9d0c6ec2011-12-20 20:26:56 +0000390
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000391 // When copying a bitmap to another with the same shape and config, we can safely
392 // clone the pixelref generation ID too, which makes them equivalent under caching.
393 friend class SkBitmap; // only for cloneGenID
394 void cloneGenID(const SkPixelRef&);
395
reeded458682014-07-14 09:21:31 -0700396 typedef SkRefCnt INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000397};
398
reed@google.com9ebcac52014-01-24 18:53:42 +0000399class SkPixelRefFactory : public SkRefCnt {
400public:
401 /**
402 * Allocate a new pixelref matching the specified ImageInfo, allocating
403 * the memory for the pixels. If the ImageInfo requires a ColorTable,
404 * the pixelref will ref() the colortable.
405 * On failure return NULL.
406 */
reedf0aed972014-07-01 12:48:11 -0700407 virtual SkPixelRef* create(const SkImageInfo&, size_t rowBytes, SkColorTable*) = 0;
reed@google.com9ebcac52014-01-24 18:53:42 +0000408};
409
reed@android.com8a1c16f2008-12-17 15:59:43 +0000410#endif