blob: e11c1573d20fd90345a34d821a3a6f01e832f01d [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkEvent_DEFINED
11#define SkEvent_DEFINED
12
13#include "SkDOM.h"
14#include "SkMetaData.h"
15#include "SkString.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
211 * time, as measured by SkTime::GetMSecs().
212 *
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
218 ///////////////////////////////////////////////
219 /** Porting layer must call these functions **/
220 ///////////////////////////////////////////////
221
222 /** Global initialization function for the SkEvent system. Should be called exactly
223 once before any other event method is called, and should be called after the
224 call to SkGraphics::Init().
225 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000226 static void Init();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000227 /** Global cleanup function for the SkEvent system. Should be called exactly once after
228 all event methods have been called, and should be called before calling SkGraphics::Term().
229 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000230 static void Term();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000231
232 /** Call this to process one event from the queue. If it returns true, there are more events
233 to process.
234 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000235 static bool ProcessEvent();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000236 /** Call this whenever the requested timer has expired (requested by a call to SetQueueTimer).
237 It will post any delayed events whose time as "expired" onto the event queue.
238 It may also call SignalQueueTimer() and SignalNonEmptyQueue().
239 */
reed@google.com87fac4a2011-08-04 13:50:17 +0000240 static void ServiceQueueTimer();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000241
reed@android.comf2b98d62010-12-20 18:26:13 +0000242 /** Return the number of queued events. note that this value may be obsolete
243 upon return, since another thread may have called ProcessEvent() or
244 Post() after the count was made.
245 */
246 static int CountEventsOnQueue();
247
reed@android.com8a1c16f2008-12-17 15:59:43 +0000248 ////////////////////////////////////////////////////
249 /** Porting layer must implement these functions **/
250 ////////////////////////////////////////////////////
251
252 /** Called whenever an SkEvent is posted to an empty queue, so that the OS
253 can be told to later call Dequeue().
254 */
255 static void SignalNonEmptyQueue();
256 /** Called whenever the delay until the next delayed event changes. If zero is
257 passed, then there are no more queued delay events.
258 */
259 static void SignalQueueTimer(SkMSec delay);
260
261#ifndef SK_USE_WXWIDGETS
262#ifdef SK_BUILD_FOR_WIN
263 static bool WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
264#elif defined(SK_BUILD_FOR_UNIXx)
265 static uint32_t HandleTimer(uint32_t, void*);
266 static bool WndProc(Display*, Window, XEvent&);
267#endif
268#else
269 // Don't know yet what this will be
270 //static bool CustomEvent();
271#endif
272
273private:
274 SkMetaData fMeta;
275 mutable char* fType; // may be characters with low bit set to know that it is not a pointer
276 uint32_t f32;
reed@google.com87fac4a2011-08-04 13:50:17 +0000277
278 // 'there can be only one' (non-zero) between target-id and target-proc
reed@google.comc514dde2011-08-03 19:41:24 +0000279 SkEventSinkID fTargetID;
reed@google.com87fac4a2011-08-04 13:50:17 +0000280 Proc fTargetProc;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000281
282 // these are for our implementation of the event queue
reed@android.com8a1c16f2008-12-17 15:59:43 +0000283 SkMSec fTime;
284 SkEvent* fNextEvent; // either in the delay or normal event queue
reed@google.com87fac4a2011-08-04 13:50:17 +0000285
286 void initialize(const char* type, size_t typeLen, SkEventSinkID);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000287
288 static bool Enqueue(SkEvent* evt);
289 static SkMSec EnqueueTime(SkEvent* evt, SkMSec time);
reed@google.com87fac4a2011-08-04 13:50:17 +0000290 static SkEvent* Dequeue();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000291 static bool QHasEvents();
292};
293
294#endif
295