blob: 6495530006607f726fe4dfb2345f339c0a30cf46 [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 SkEvent_DEFINED
9#define SkEvent_DEFINED
10
11#include "SkDOM.h"
12#include "SkMetaData.h"
13#include "SkString.h"
14
halcanary4dbbd042016-06-07 17:21:10 -070015#include "../private/SkLeanWindows.h"
16
reed@android.com8a1c16f2008-12-17 15:59:43 +000017/** Unique 32bit id used to identify an instance of SkEventSink. When events are
18 posted, they are posted to a specific sinkID. When it is time to dispatch the
19 event, the sinkID is used to find the specific SkEventSink object. If it is found,
20 its doEvent() method is called with the event.
21*/
22typedef uint32_t SkEventSinkID;
23
reed@google.com87fac4a2011-08-04 13:50:17 +000024/**
25 * \class SkEvent
26 *
27 * When an event is dispatched from the event queue, it is either sent to
28 * the eventsink matching the target ID (if not 0), or the target proc is
29 * called (if not NULL).
30 */
reed@android.com8a1c16f2008-12-17 15:59:43 +000031class SkEvent {
32public:
reed@google.com87fac4a2011-08-04 13:50:17 +000033 /**
34 * Function pointer that takes an event, returns true if it "handled" it.
35 */
36 typedef bool (*Proc)(const SkEvent& evt);
37
reed@android.com8a1c16f2008-12-17 15:59:43 +000038 SkEvent();
reed@google.com87fac4a2011-08-04 13:50:17 +000039 explicit SkEvent(const SkString& type, SkEventSinkID = 0);
40 explicit SkEvent(const char type[], SkEventSinkID = 0);
reed@android.com8a1c16f2008-12-17 15:59:43 +000041 SkEvent(const SkEvent& src);
42 ~SkEvent();
43
reed@android.com8a1c16f2008-12-17 15:59:43 +000044 /** Copy the event's type into the specified SkString parameter */
reed@google.com87fac4a2011-08-04 13:50:17 +000045 void getType(SkString* str) const;
46
reed@android.com8a1c16f2008-12-17 15:59:43 +000047 /** Returns true if the event's type matches exactly the specified type (case sensitive) */
reed@google.com87fac4a2011-08-04 13:50:17 +000048 bool isType(const SkString& str) const;
49
reed@android.com8a1c16f2008-12-17 15:59:43 +000050 /** Returns true if the event's type matches exactly the specified type (case sensitive) */
reed@google.com87fac4a2011-08-04 13:50:17 +000051 bool isType(const char type[], size_t len = 0) const;
52
53 /**
54 * Set the event's type to the specified string.
55 */
56 void setType(const SkString&);
57
58 /**
59 * Set the event's type to the specified string.
60 */
61 void setType(const char type[], size_t len = 0);
reed@android.com8a1c16f2008-12-17 15:59:43 +000062
reed@google.comc514dde2011-08-03 19:41:24 +000063 /**
64 * Return the target ID, or 0 if there is none.
reed@google.com87fac4a2011-08-04 13:50:17 +000065 *
66 * When an event is dispatched from the event queue, it is either sent to
67 * the eventsink matching the targetID (if not 0), or the target proc is
68 * called (if not NULL).
reed@google.comc514dde2011-08-03 19:41:24 +000069 */
70 SkEventSinkID getTargetID() const { return fTargetID; }
71
72 /**
reed@google.com87fac4a2011-08-04 13:50:17 +000073 * Set the target ID for this event. 0 means none. Calling this will
74 * automatically clear the targetProc to null.
75 *
76 * When an event is dispatched from the event queue, it is either sent to
77 * the eventsink matching the targetID (if not 0), or the target proc is
78 * called (if not NULL).
reed@google.comc514dde2011-08-03 19:41:24 +000079 */
reed@google.com87fac4a2011-08-04 13:50:17 +000080 SkEvent* setTargetID(SkEventSinkID targetID) {
81 fTargetProc = NULL;
82 fTargetID = targetID;
83 return this;
84 }
reed@google.comc514dde2011-08-03 19:41:24 +000085
reed@google.com87fac4a2011-08-04 13:50:17 +000086 /**
87 * Return the target proc, or NULL if it has none.
88 *
89 * When an event is dispatched from the event queue, it is either sent to
90 * the eventsink matching the targetID (if not 0), or the target proc is
91 * called (if not NULL).
92 */
93 Proc getTargetProc() const { return fTargetProc; }
94
95 /**
96 * Set the target ID for this event. NULL means none. Calling this will
97 * automatically clear the targetID to 0.
98 *
99 * When an event is dispatched from the event queue, it is either sent to
100 * the eventsink matching the targetID (if not 0), or the target proc is
101 * called (if not NULL).
102 */
103 SkEvent* setTargetProc(Proc proc) {
104 fTargetID = 0;
105 fTargetProc = proc;
106 return this;
107 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000108
reed@google.com87fac4a2011-08-04 13:50:17 +0000109 /**
110 * Return the event's unnamed 32bit field. Default value is 0
111 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000112 uint32_t getFast32() const { return f32; }
reed@google.com87fac4a2011-08-04 13:50:17 +0000113
114 /**
115 * Set the event's unnamed 32bit field.
116 */
117 void setFast32(uint32_t x) { f32 = x; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000118
119 /** Return true if the event contains the named 32bit field, and return the field
120 in value (if value is non-null). If there is no matching named field, return false
121 and ignore the value parameter.
122 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000123 bool findS32(const char name[], int32_t* value = NULL) const { return fMeta.findS32(name, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000124 /** Return true if the event contains the named SkScalar field, and return the field
125 in value (if value is non-null). If there is no matching named field, return false
126 and ignore the value parameter.
127 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000128 bool findScalar(const char name[], SkScalar* value = NULL) const { return fMeta.findScalar(name, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000129 /** Return true if the event contains the named SkScalar field, and return the fields
130 in value[] (if value is non-null), and return the number of SkScalars in count (if count is non-null).
131 If there is no matching named field, return false and ignore the value and count parameters.
132 */
133 const SkScalar* findScalars(const char name[], int* count, SkScalar values[] = NULL) const { return fMeta.findScalars(name, count, values); }
134 /** Return the value of the named string field, or if no matching named field exists, return null.
135 */
136 const char* findString(const char name[]) const { return fMeta.findString(name); }
137 /** Return true if the event contains the named pointer field, and return the field
138 in value (if value is non-null). If there is no matching named field, return false
139 and ignore the value parameter.
140 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000141 bool findPtr(const char name[], void** value) const { return fMeta.findPtr(name, value); }
142 bool findBool(const char name[], bool* value) const { return fMeta.findBool(name, value); }
reed@android.comf2b98d62010-12-20 18:26:13 +0000143 const void* findData(const char name[], size_t* byteCount = NULL) const {
144 return fMeta.findData(name, byteCount);
145 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000146
147 /** Returns true if ethe event contains the named 32bit field, and if it equals the specified value */
reed@google.com87fac4a2011-08-04 13:50:17 +0000148 bool hasS32(const char name[], int32_t value) const { return fMeta.hasS32(name, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000149 /** Returns true if ethe event contains the named SkScalar field, and if it equals the specified value */
reed@google.com87fac4a2011-08-04 13:50:17 +0000150 bool hasScalar(const char name[], SkScalar value) const { return fMeta.hasScalar(name, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000151 /** Returns true if ethe event contains the named string field, and if it equals (using strcmp) the specified value */
reed@google.com87fac4a2011-08-04 13:50:17 +0000152 bool hasString(const char name[], const char value[]) const { return fMeta.hasString(name, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000153 /** Returns true if ethe event contains the named pointer field, and if it equals the specified value */
reed@google.com87fac4a2011-08-04 13:50:17 +0000154 bool hasPtr(const char name[], void* value) const { return fMeta.hasPtr(name, value); }
155 bool hasBool(const char name[], bool value) const { return fMeta.hasBool(name, value); }
reed@android.comf2b98d62010-12-20 18:26:13 +0000156 bool hasData(const char name[], const void* data, size_t byteCount) const {
157 return fMeta.hasData(name, data, byteCount);
158 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000159
160 /** Add/replace the named 32bit field to the event. In XML use the subelement <data name=... s32=... /> */
reed@google.com87fac4a2011-08-04 13:50:17 +0000161 void setS32(const char name[], int32_t value) { fMeta.setS32(name, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000162 /** Add/replace the named SkScalar field to the event. In XML use the subelement <data name=... scalar=... /> */
reed@google.com87fac4a2011-08-04 13:50:17 +0000163 void setScalar(const char name[], SkScalar value) { fMeta.setScalar(name, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000164 /** Add/replace the named SkScalar[] field to the event. */
165 SkScalar* setScalars(const char name[], int count, const SkScalar values[] = NULL) { return fMeta.setScalars(name, count, values); }
166 /** Add/replace the named string field to the event. In XML use the subelement <data name=... string=... */
reed@google.com87fac4a2011-08-04 13:50:17 +0000167 void setString(const char name[], const SkString& value) { fMeta.setString(name, value.c_str()); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000168 /** Add/replace the named string field to the event. In XML use the subelement <data name=... string=... */
reed@google.com87fac4a2011-08-04 13:50:17 +0000169 void setString(const char name[], const char value[]) { fMeta.setString(name, value); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000170 /** Add/replace the named pointer field to the event. There is no XML equivalent for this call */
reed@google.com87fac4a2011-08-04 13:50:17 +0000171 void setPtr(const char name[], void* value) { fMeta.setPtr(name, value); }
172 void setBool(const char name[], bool value) { fMeta.setBool(name, value); }
reed@android.comf2b98d62010-12-20 18:26:13 +0000173 void setData(const char name[], const void* data, size_t byteCount) {
174 fMeta.setData(name, data, byteCount);
175 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000176
177 /** Return the underlying metadata object */
reed@google.com87fac4a2011-08-04 13:50:17 +0000178 SkMetaData& getMetaData() { return fMeta; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000179 /** Return the underlying metadata object */
reed@google.com87fac4a2011-08-04 13:50:17 +0000180 const SkMetaData& getMetaData() const { return fMeta; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000181
182 /** Call this to initialize the event from the specified XML node */
reed@google.com87fac4a2011-08-04 13:50:17 +0000183 void inflate(const SkDOM&, const SkDOM::Node*);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000184
185 SkDEBUGCODE(void dump(const char title[] = NULL);)
186
reed@google.com87fac4a2011-08-04 13:50:17 +0000187 ///////////////////////////////////////////////////////////////////////////
reed@android.com8a1c16f2008-12-17 15:59:43 +0000188
reed@google.comc514dde2011-08-03 19:41:24 +0000189 /**
reed@google.com87fac4a2011-08-04 13:50:17 +0000190 * Post to the event queue using the event's targetID or target-proc.
191 *
192 * The event must be dynamically allocated, as ownership is transferred to
193 * the event queue. It cannot be allocated on the stack or in a global.
reed@google.comc514dde2011-08-03 19:41:24 +0000194 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000195 void post() {
reed@google.comc514dde2011-08-03 19:41:24 +0000196 return this->postDelay(0);
197 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000198
reed@google.comc514dde2011-08-03 19:41:24 +0000199 /**
reed@google.com87fac4a2011-08-04 13:50:17 +0000200 * Post to the event queue using the event's targetID or target-proc and
201 * the specifed millisecond delay.
202 *
203 * The event must be dynamically allocated, as ownership is transferred to
204 * the event queue. It cannot be allocated on the stack or in a global.
reed@google.comc514dde2011-08-03 19:41:24 +0000205 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000206 void postDelay(SkMSec delay);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000207
reed@google.comc514dde2011-08-03 19:41:24 +0000208 /**
reed@google.com87fac4a2011-08-04 13:50:17 +0000209 * Post to the event queue using the event's targetID or target-proc.
210 * The event will be delivered no sooner than the specified millisecond
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700211 * time, as measured by GetMSecsSinceStartup().
reed@google.com87fac4a2011-08-04 13:50:17 +0000212 *
213 * The event must be dynamically allocated, as ownership is transferred to
214 * the event queue. It cannot be allocated on the stack or in a global.
reed@google.comc514dde2011-08-03 19:41:24 +0000215 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000216 void postTime(SkMSec time);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000217
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700218 /**
219 * Returns ~zero the first time it's called, then returns the number of
220 * milliseconds since the first call. Behavior is undefined if the program
221 * runs more than ~25 days.
222 */
223 static SkMSec GetMSecsSinceStartup();
224
reed@android.com8a1c16f2008-12-17 15:59:43 +0000225 ///////////////////////////////////////////////
226 /** Porting layer must call these functions **/
227 ///////////////////////////////////////////////
228
229 /** Global initialization function for the SkEvent system. Should be called exactly
230 once before any other event method is called, and should be called after the
231 call to SkGraphics::Init().
232 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000233 static void Init();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000234 /** Global cleanup function for the SkEvent system. Should be called exactly once after
mtkleinfe81e2d2015-09-09 07:35:42 -0700235 all event methods have been called.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000236 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000237 static void Term();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000238
239 /** Call this to process one event from the queue. If it returns true, there are more events
240 to process.
241 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000242 static bool ProcessEvent();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000243 /** Call this whenever the requested timer has expired (requested by a call to SetQueueTimer).
244 It will post any delayed events whose time as "expired" onto the event queue.
245 It may also call SignalQueueTimer() and SignalNonEmptyQueue().
246 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000247 static void ServiceQueueTimer();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000248
reed@android.comf2b98d62010-12-20 18:26:13 +0000249 /** Return the number of queued events. note that this value may be obsolete
250 upon return, since another thread may have called ProcessEvent() or
251 Post() after the count was made.
252 */
253 static int CountEventsOnQueue();
254
reed@android.com8a1c16f2008-12-17 15:59:43 +0000255 ////////////////////////////////////////////////////
256 /** Porting layer must implement these functions **/
257 ////////////////////////////////////////////////////
258
259 /** Called whenever an SkEvent is posted to an empty queue, so that the OS
260 can be told to later call Dequeue().
261 */
262 static void SignalNonEmptyQueue();
263 /** Called whenever the delay until the next delayed event changes. If zero is
264 passed, then there are no more queued delay events.
265 */
266 static void SignalQueueTimer(SkMSec delay);
267
tfarina@chromium.org887760f2012-10-01 16:14:21 +0000268#if defined(SK_BUILD_FOR_WIN)
reed@android.com8a1c16f2008-12-17 15:59:43 +0000269 static bool WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000270#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +0000271
272private:
273 SkMetaData fMeta;
274 mutable char* fType; // may be characters with low bit set to know that it is not a pointer
275 uint32_t f32;
reed@google.com87fac4a2011-08-04 13:50:17 +0000276
277 // 'there can be only one' (non-zero) between target-id and target-proc
reed@google.comc514dde2011-08-03 19:41:24 +0000278 SkEventSinkID fTargetID;
reed@google.com87fac4a2011-08-04 13:50:17 +0000279 Proc fTargetProc;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000280
281 // these are for our implementation of the event queue
reed@android.com8a1c16f2008-12-17 15:59:43 +0000282 SkMSec fTime;
283 SkEvent* fNextEvent; // either in the delay or normal event queue
reed@google.com87fac4a2011-08-04 13:50:17 +0000284
285 void initialize(const char* type, size_t typeLen, SkEventSinkID);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000286
287 static bool Enqueue(SkEvent* evt);
288 static SkMSec EnqueueTime(SkEvent* evt, SkMSec time);
reed@google.com87fac4a2011-08-04 13:50:17 +0000289 static SkEvent* Dequeue();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000290 static bool QHasEvents();
291};
292
293#endif