blob: 4511adce6823523a69e25d3fd25233285dff66d6 [file] [log] [blame]
bsalomon95740982014-09-04 13:12:37 -07001/*
2 * Copyright 2014 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
bsalomonf96ba022014-09-17 08:05:40 -07008#ifndef GrGpuResourceRef_DEFINED
9#define GrGpuResourceRef_DEFINED
bsalomon95740982014-09-04 13:12:37 -070010
bsalomon45725db2014-09-19 11:48:02 -070011#include "GrGpuResource.h"
bsalomon37dd3312014-11-03 08:47:23 -080012#include "GrRenderTarget.h"
13#include "GrTexture.h"
bsalomon95740982014-09-04 13:12:37 -070014#include "SkRefCnt.h"
15
bsalomon95740982014-09-04 13:12:37 -070016/**
bsalomonb3e3a952014-09-19 11:10:40 -070017 * This class is intended only for internal use in core Gr code.
18 *
bsalomon95740982014-09-04 13:12:37 -070019 * Class that wraps a resource referenced by a GrProgramElement or GrDrawState. It manages
bsalomonb3e3a952014-09-19 11:10:40 -070020 * converting refs to pending IO operations. It allows a resource ownership to be in three
21 * states:
22 * 1. Owns a single ref
23 * 2. Owns a single ref and a pending IO operation (read, write, or read-write)
24 * 3. Owns a single pending IO operation.
25 *
26 * It is legal to destroy the GrGpuResourceRef in any of these states. It starts in state
27 * 1. Calling markPendingIO() converts it from state 1 to state 2. Calling removeRef() goes from
28 * state 2 to state 3. Calling pendingIOComplete() moves from state 2 to state 1. There is no
29 * valid way of going from state 3 back to 2 or 1.
30 *
31 * Like SkAutoTUnref, its constructor and setter adopt a ref from their caller.
32 *
33 * TODO: Once GrDODrawState no longer exists and therefore GrDrawState and GrOptDrawState no
34 * longer share an instance of this class, attempt to make the resource owned by GrGpuResourceRef
35 * only settable via the constructor.
bsalomon95740982014-09-04 13:12:37 -070036 */
bsalomonf96ba022014-09-17 08:05:40 -070037class GrGpuResourceRef : SkNoncopyable {
bsalomon95740982014-09-04 13:12:37 -070038public:
bsalomonf96ba022014-09-17 08:05:40 -070039 ~GrGpuResourceRef();
bsalomon95740982014-09-04 13:12:37 -070040
41 GrGpuResource* getResource() const { return fResource; }
42
bsalomon95740982014-09-04 13:12:37 -070043 /** Does this object own a pending read or write on the resource it is wrapping. */
44 bool ownsPendingIO() const { return fPendingIO; }
45
46 /** Shortcut for calling setResource() with NULL. It cannot be called after markingPendingIO
47 is called. */
48 void reset();
49
bsalomonc4923342014-09-16 13:54:53 -070050protected:
bsalomonf96ba022014-09-17 08:05:40 -070051 GrGpuResourceRef();
bsalomonc4923342014-09-16 13:54:53 -070052
53 /** Adopts a ref from the caller. ioType expresses what type of IO operations will be marked as
54 pending on the resource when markPendingIO is called. */
bsalomonbcf0a522014-10-08 08:40:09 -070055 GrGpuResourceRef(GrGpuResource*, GrIOType);
bsalomonc4923342014-09-16 13:54:53 -070056
57 /** Adopts a ref from the caller. ioType expresses what type of IO operations will be marked as
58 pending on the resource when markPendingIO is called. */
bsalomonbcf0a522014-10-08 08:40:09 -070059 void setResource(GrGpuResource*, GrIOType);
bsalomonc4923342014-09-16 13:54:53 -070060
bsalomon95740982014-09-04 13:12:37 -070061private:
62 /** Called by owning GrProgramElement when the program element is first scheduled for
bsalomonb3e3a952014-09-19 11:10:40 -070063 execution. It can only be called once. */
bsalomon95740982014-09-04 13:12:37 -070064 void markPendingIO() const;
65
66 /** Called when the program element/draw state is no longer owned by GrDrawTarget-client code.
67 This lets the cache know that the drawing code will no longer schedule additional reads or
bsalomonb3e3a952014-09-19 11:10:40 -070068 writes to the resource using the program element or draw state. It can only be called once.
69 */
bsalomon95740982014-09-04 13:12:37 -070070 void removeRef() const;
71
bsalomonac8d6192014-09-04 14:13:44 -070072 /** Called to indicate that the previous pending IO is complete. Useful when the owning object
bsalomonf96ba022014-09-17 08:05:40 -070073 still has refs, so it is not about to destroy this GrGpuResourceRef, but its previously
bsalomonb3e3a952014-09-19 11:10:40 -070074 pending executions have been complete. Can only be called if removeRef() was not previously
75 called. */
bsalomonac8d6192014-09-04 14:13:44 -070076 void pendingIOComplete() const;
77
bsalomon95740982014-09-04 13:12:37 -070078 friend class GrProgramElement;
79
bsalomonbcf0a522014-10-08 08:40:09 -070080 GrGpuResource* fResource;
81 mutable bool fOwnRef;
82 mutable bool fPendingIO;
83 GrIOType fIOType;
bsalomon95740982014-09-04 13:12:37 -070084
85 typedef SkNoncopyable INHERITED;
86};
87
mtklein6f076652015-01-13 08:22:43 -080088/**
bsalomonb3e3a952014-09-19 11:10:40 -070089 * Templated version of GrGpuResourceRef to enforce type safety.
90 */
bsalomonf96ba022014-09-17 08:05:40 -070091template <typename T> class GrTGpuResourceRef : public GrGpuResourceRef {
bsalomonc4923342014-09-16 13:54:53 -070092public:
bsalomonf96ba022014-09-17 08:05:40 -070093 GrTGpuResourceRef() {}
bsalomonc4923342014-09-16 13:54:53 -070094
95 /** Adopts a ref from the caller. ioType expresses what type of IO operations will be marked as
96 pending on the resource when markPendingIO is called. */
bsalomon37dd3312014-11-03 08:47:23 -080097 GrTGpuResourceRef(T* resource, GrIOType ioType) : INHERITED(resource, ioType) { }
bsalomonc4923342014-09-16 13:54:53 -070098
99 T* get() const { return static_cast<T*>(this->getResource()); }
100
101 /** Adopts a ref from the caller. ioType expresses what type of IO operations will be marked as
102 pending on the resource when markPendingIO is called. */
bsalomonbcf0a522014-10-08 08:40:09 -0700103 void set(T* resource, GrIOType ioType) { this->setResource(resource, ioType); }
bsalomonf96ba022014-09-17 08:05:40 -0700104
105private:
106 typedef GrGpuResourceRef INHERITED;
bsalomonc4923342014-09-16 13:54:53 -0700107};
108
bsalomon37dd3312014-11-03 08:47:23 -0800109// Specializations for GrTexture and GrRenderTarget because they use virtual inheritance.
110template<> class GrTGpuResourceRef<GrTexture> : public GrGpuResourceRef {
111public:
112 GrTGpuResourceRef() {}
113
114 GrTGpuResourceRef(GrTexture* texture, GrIOType ioType) : INHERITED(texture, ioType) { }
115
116 GrTexture* get() const {
117 GrSurface* surface = static_cast<GrSurface*>(this->getResource());
118 if (surface) {
119 return surface->asTexture();
120 } else {
121 return NULL;
122 }
123 }
124
125 void set(GrTexture* texture, GrIOType ioType) { this->setResource(texture, ioType); }
126
127private:
128 typedef GrGpuResourceRef INHERITED;
129};
130
131template<> class GrTGpuResourceRef<GrRenderTarget> : public GrGpuResourceRef {
132public:
133 GrTGpuResourceRef() {}
134
135 GrTGpuResourceRef(GrRenderTarget* rt, GrIOType ioType) : INHERITED(rt, ioType) { }
136
137 GrRenderTarget* get() const {
138 GrSurface* surface = static_cast<GrSurface*>(this->getResource());
139 if (surface) {
140 return surface->asRenderTarget();
141 } else {
142 return NULL;
143 }
144 }
145
146 void set(GrRenderTarget* rt, GrIOType ioType) { this->setResource(rt, ioType); }
147
148private:
149 typedef GrGpuResourceRef INHERITED;
150};
151
bsalomonb3e3a952014-09-19 11:10:40 -0700152/**
153 * This is similar to GrTGpuResourceRef but can only be in the pending IO state. It never owns a
154 * ref.
155 */
bsalomonbcf0a522014-10-08 08:40:09 -0700156template <typename T, GrIOType IO_TYPE> class GrPendingIOResource : SkNoncopyable {
bsalomonb3e3a952014-09-19 11:10:40 -0700157public:
joshualitt7eb8c7b2014-11-18 14:24:27 -0800158 GrPendingIOResource(T* resource = NULL) : fResource(NULL) {
159 this->reset(resource);
160 }
161
162 void reset(T* resource) {
163 if (resource) {
bsalomon45725db2014-09-19 11:48:02 -0700164 switch (IO_TYPE) {
bsalomonbcf0a522014-10-08 08:40:09 -0700165 case kRead_GrIOType:
joshualitt7eb8c7b2014-11-18 14:24:27 -0800166 resource->addPendingRead();
bsalomonb3e3a952014-09-19 11:10:40 -0700167 break;
bsalomonbcf0a522014-10-08 08:40:09 -0700168 case kWrite_GrIOType:
joshualitt7eb8c7b2014-11-18 14:24:27 -0800169 resource->addPendingWrite();
bsalomonb3e3a952014-09-19 11:10:40 -0700170 break;
bsalomonbcf0a522014-10-08 08:40:09 -0700171 case kRW_GrIOType:
joshualitt7eb8c7b2014-11-18 14:24:27 -0800172 resource->addPendingRead();
173 resource->addPendingWrite();
bsalomonb3e3a952014-09-19 11:10:40 -0700174 break;
175 }
176 }
joshualitt7eb8c7b2014-11-18 14:24:27 -0800177 this->release();
178 fResource = resource;
bsalomonb3e3a952014-09-19 11:10:40 -0700179 }
bsalomonc4923342014-09-16 13:54:53 -0700180
bsalomonb3e3a952014-09-19 11:10:40 -0700181 ~GrPendingIOResource() {
joshualitt7eb8c7b2014-11-18 14:24:27 -0800182 this->release();
bsalomonb3e3a952014-09-19 11:10:40 -0700183 }
184
reedd9ffaed2015-11-10 04:55:08 -0800185 explicit operator bool() const { return SkToBool(fResource); }
186
187 bool operator==(const GrPendingIOResource& other) const {
188 return fResource == other.fResource;
189 }
bsalomonb03c4a32014-11-20 09:56:11 -0800190
bsalomonb3e3a952014-09-19 11:10:40 -0700191 T* get() const { return fResource; }
192
193private:
joshualitt7eb8c7b2014-11-18 14:24:27 -0800194 void release() {
195 if (fResource) {
196 switch (IO_TYPE) {
197 case kRead_GrIOType:
198 fResource->completedRead();
199 break;
200 case kWrite_GrIOType:
201 fResource->completedWrite();
202 break;
203 case kRW_GrIOType:
204 fResource->completedRead();
205 fResource->completedWrite();
206 break;
207 }
208 }
209 }
210
bsalomonbcf0a522014-10-08 08:40:09 -0700211 T* fResource;
bsalomonb3e3a952014-09-19 11:10:40 -0700212};
bsalomon95740982014-09-04 13:12:37 -0700213#endif