VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/xpcom/threads/plevent.h@ 103140

最後變更 在這個檔案從103140是 102459,由 vboxsync 提交於 14 月 前

libs/xpcom: Convert the sole user of prclist.h to IPRT's RTList* API and remove it, bugref:10545

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 18.7 KB
 
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
9 *
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
14 *
15 * The Original Code is mozilla.org Code.
16 *
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s):
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38/**********************************************************************
39NSPL Events
40
41Defining Events
42---------------
43
44Events are essentially structures that represent argument lists for a
45function that will run on another thread. All event structures you
46define must include a PLEvent struct as their first field:
47
48 typedef struct MyEventType {
49 PLEvent e;
50 // arguments follow...
51 int x;
52 char* y;
53 } MyEventType;
54
55It is also essential that you establish a model of ownership for each
56argument passed in an event record, i.e. whether particular arguments
57will be deleted by the event destruction callback, or whether they
58only loaned to the event handler callback, and guaranteed to persist
59until the time at which the handler is called.
60
61Sending Events
62--------------
63
64Events are initialized by PL_InitEvent and can be sent via
65PL_PostEvent or PL_PostSynchronousEvent. Events can also have an
66owner. The owner of an event can revoke all the events in a given
67event-queue by calling PL_RevokeEvents. An owner might want
68to do this if, for instance, it is being destroyed, and handling the
69events after the owner's destruction would cause an error (e.g. an
70MWContext).
71
72Since the act of initializing and posting an event must be coordinated
73with it's possible revocation, it is essential that the event-queue's
74monitor be entered surrounding the code that constructs, initializes
75and posts the event:
76
77 void postMyEvent(MyOwner* owner, int x, char* y)
78 {
79 MyEventType* event;
80
81 PL_ENTER_EVENT_QUEUE_MONITOR(myQueue);
82
83 // construct
84 event = PR_NEW(MyEventType);
85 if (event == NULL) goto done;
86
87 // initialize
88 PL_InitEvent(event, owner,
89 (PLHandleEventProc)handleMyEvent,
90 (PLDestroyEventProc)destroyMyEvent);
91 event->x = x;
92 event->y = strdup(y);
93
94 // post
95 PL_PostEvent(myQueue, &event->e);
96
97 done:
98 PL_EXIT_EVENT_QUEUE_MONITOR(myQueue);
99 }
100
101If you don't call PL_InitEvent and PL_PostEvent within the
102event-queue's monitor, you'll get a big red assert.
103
104Handling Events
105---------------
106
107To handle an event you must write a callback that is passed the event
108record you defined containing the event's arguments:
109
110 void* handleMyEvent(MyEventType* event)
111 {
112 doit(event->x, event->y);
113 return NULL; // you could return a value for a sync event
114 }
115
116Similarly for the destruction callback:
117
118 void destroyMyEvent(MyEventType* event)
119 {
120 free(event->y); // created by strdup
121 free(event);
122 }
123
124Processing Events in Your Event Loop
125------------------------------------
126
127If your main loop only processes events delivered to the event queue,
128things are rather simple. You just get the next event (which may
129block), and then handle it:
130
131 while (1) {
132 event = PL_GetEvent(myQueue);
133 PL_HandleEvent(event);
134 }
135
136However, if other things must be waited on, you'll need to obtain a
137file-descriptor that represents your event queue, and hand it to select:
138
139 fd = PL_GetEventQueueSelectFD(myQueue);
140 ...add fd to select set...
141 while (select(...)) {
142 if (...fd...) {
143 PL_ProcessPendingEvents(myQueue);
144 }
145 ...
146 }
147
148Of course, with Motif and Windows it's more complicated than that, and
149on Mac it's completely different, but you get the picture.
150
151Revoking Events
152---------------
153If at any time an owner of events is about to be destroyed, you must
154take steps to ensure that no one tries to use the event queue after
155the owner is gone (or a crash may result). You can do this by either
156processing all the events in the queue before destroying the owner:
157
158 {
159 ...
160 PL_ENTER_EVENT_QUEUE_MONITOR(myQueue);
161 PL_ProcessPendingEvents(myQueue);
162 DestroyMyOwner(owner);
163 PL_EXIT_EVENT_QUEUE_MONITOR(myQueue);
164 ...
165 }
166
167or by revoking the events that are in the queue for that owner. This
168removes them from the queue and calls their destruction callback:
169
170 {
171 ...
172 PL_ENTER_EVENT_QUEUE_MONITOR(myQueue);
173 PL_RevokeEvents(myQueue, owner);
174 DestroyMyOwner(owner);
175 PL_EXIT_EVENT_QUEUE_MONITOR(myQueue);
176 ...
177 }
178
179In either case it is essential that you be in the event-queue's monitor
180to ensure that all events are removed from the queue for that owner,
181and to ensure that no more events will be delivered for that owner.
182**********************************************************************/
183
184#ifndef plevent_h___
185#define plevent_h___
186
187#include "prtypes.h"
188#include "prmon.h"
189
190#include <iprt/critsect.h>
191#include <iprt/list.h>
192#include <iprt/semaphore.h>
193#include <iprt/thread.h>
194
195#ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
196#define PL_DestroyEvent VBoxNsplPL_DestroyEvent
197#define PL_HandleEvent VBoxNsplPL_HandleEvent
198#define PL_InitEvent VBoxNsplPL_InitEvent
199#define PL_CreateEventQueue VBoxNsplPL_CreateEventQueue
200#define PL_CreateMonitoredEventQueue VBoxNsplPL_CreateMonitoredEventQueue
201#define PL_CreateNativeEventQueue VBoxNsplPL_CreateNativeEventQueue
202#define PL_DequeueEvent VBoxNsplPL_DequeueEvent
203#define PL_DestroyEventQueue VBoxNsplPL_DestroyEventQueue
204#define PL_EventAvailable VBoxNsplPL_EventAvailable
205#define PL_EventLoop VBoxNsplPL_EventLoop
206#define PL_GetEvent VBoxNsplPL_GetEvent
207#define PL_GetEventOwner VBoxNsplPL_GetEventOwner
208#define PL_GetEventQueueMonitor VBoxNsplPL_GetEventQueueMonitor
209#define PL_GetEventQueueSelectFD VBoxNsplPL_GetEventQueueSelectFD
210#define PL_MapEvents VBoxNsplPL_MapEvents
211#define PL_PostEvent VBoxNsplPL_PostEvent
212#define PL_PostSynchronousEvent VBoxNsplPL_PostSynchronousEvent
213#define PL_ProcessEventsBeforeID VBoxNsplPL_ProcessEventsBeforeID
214#define PL_ProcessPendingEvents VBoxNsplPL_ProcessPendingEvents
215#define PL_RegisterEventIDFunc VBoxNsplPL_RegisterEventIDFunc
216#define PL_RevokeEvents VBoxNsplPL_RevokeEvents
217#define PL_UnregisterEventIDFunc VBoxNsplPL_UnregisterEventIDFunc
218#define PL_WaitForEvent VBoxNsplPL_WaitForEvent
219#define PL_IsQueueNative VBoxNsplPL_IsQueueNative
220#define PL_IsQueueOnCurrentThread VBoxNsplPL_IsQueueOnCurrentThread
221#define PL_FavorPerformanceHint VBoxNsplPL_FavorPerformanceHint
222#endif /* VBOX_WITH_XPCOM_NAMESPACE_CLEANUP */
223
224PR_BEGIN_EXTERN_C
225
226/* Typedefs */
227
228typedef struct PLEvent PLEvent;
229typedef struct PLEventQueue PLEventQueue;
230
231/*******************************************************************************
232 * Event Queue Operations
233 ******************************************************************************/
234
235/*
236** Creates a new event queue. Returns NULL on failure.
237*/
238PR_EXTERN(PLEventQueue*)
239PL_CreateEventQueue(const char* name, RTTHREAD handlerThread);
240
241
242/* -----------------------------------------------------------------------
243** FUNCTION: PL_CreateNativeEventQueue()
244**
245** DESCRIPTION:
246** PL_CreateNativeEventQueue() creates an event queue that
247** uses platform specific notify mechanisms.
248**
249** For Unix, the platform specific notify mechanism provides
250** an FD that may be extracted using the function
251** PL_GetEventQueueSelectFD(). The FD returned may be used in
252** a select() function call.
253**
254** For Windows, the platform specific notify mechanism
255** provides an event receiver window that is called by
256** Windows to process the event using the windows message
257** pump engine.
258**
259** INPUTS:
260** name: A name, as a diagnostic aid.
261**
262** handlerThread: A pointer to the IPRT thread structure for
263** the thread that will "handle" events posted to this event
264** queue.
265**
266** RETURNS:
267** A pointer to a PLEventQueue structure or NULL.
268**
269*/
270PR_EXTERN(PLEventQueue *)
271 PL_CreateNativeEventQueue(
272 const char *name,
273 RTTHREAD handlerThread
274 );
275
276/* -----------------------------------------------------------------------
277** FUNCTION: PL_CreateMonitoredEventQueue()
278**
279** DESCRIPTION:
280** PL_CreateMonitoredEventQueue() creates an event queue. No
281** platform specific notify mechanism is created with the
282** event queue.
283**
284** Users of this type of event queue must explicitly poll the
285** event queue to retreive and process events.
286**
287**
288** INPUTS:
289** name: A name, as a diagnostic aid.
290**
291** handlerThread: A pointer to the IPRT thread structure for
292** the thread that will "handle" events posted to this event
293** queue.
294**
295** RETURNS:
296** A pointer to a PLEventQueue structure or NULL.
297**
298*/
299PR_EXTERN(PLEventQueue *)
300 PL_CreateMonitoredEventQueue(
301 const char *name,
302 RTTHREAD handlerThread
303 );
304
305/*
306** Destroys an event queue.
307*/
308PR_EXTERN(void)
309PL_DestroyEventQueue(PLEventQueue* self);
310
311/*
312** Returns the monitor associated with an event queue. This monitor is
313** selectable. The monitor should be entered to protect against anyone
314** calling PL_RevokeEvents while the event is trying to be constructed
315** and delivered.
316*/
317PR_EXTERN(PRMonitor*)
318PL_GetEventQueueMonitor(PLEventQueue* self);
319
320#define PL_ENTER_EVENT_QUEUE_MONITOR(queue) \
321 PR_EnterMonitor(PL_GetEventQueueMonitor(queue))
322
323#define PL_EXIT_EVENT_QUEUE_MONITOR(queue) \
324 PR_ExitMonitor(PL_GetEventQueueMonitor(queue))
325
326/*
327** Posts an event to an event queue, waking up any threads waiting for an
328** event. If event is NULL, notification still occurs, but no event will
329** be available.
330**
331** Any events delivered by this routine will be destroyed by PL_HandleEvent
332** when it is called (by the event-handling thread).
333*/
334PR_EXTERN(PRStatus)
335PL_PostEvent(PLEventQueue* self, PLEvent* event);
336
337/*
338** Like PL_PostEvent, this routine posts an event to the event handling
339** thread, but does so synchronously, waiting for the result. The result
340** which is the value of the handler routine is returned.
341**
342** Any events delivered by this routine will be not be destroyed by
343** PL_HandleEvent, but instead will be destroyed just before the result is
344** returned (by the current thread).
345*/
346PR_EXTERN(void*)
347PL_PostSynchronousEvent(PLEventQueue* self, PLEvent* event);
348
349/*
350** Gets an event from an event queue. Returns NULL if no event is
351** available.
352*/
353PR_EXTERN(PLEvent*)
354PL_GetEvent(PLEventQueue* self);
355
356/*
357** Returns true if there is an event available for PL_GetEvent.
358*/
359PR_EXTERN(PRBool)
360PL_EventAvailable(PLEventQueue* self);
361
362/*
363** This is the type of the function that must be passed to PL_MapEvents
364** (see description below).
365*/
366typedef void
367(PR_CALLBACK *PLEventFunProc)(PLEvent* event, void* data, PLEventQueue* queue);
368
369/*
370** Applies a function to every event in the event queue. This can be used
371** to selectively handle, filter, or remove events. The data pointer is
372** passed to each invocation of the function fun.
373*/
374PR_EXTERN(void)
375PL_MapEvents(PLEventQueue* self, PLEventFunProc fun, void* data);
376
377/*
378** This routine walks an event queue and destroys any event whose owner is
379** the owner specified. The == operation is used to compare owners.
380*/
381PR_EXTERN(void)
382PL_RevokeEvents(PLEventQueue* self, void* owner);
383
384/*
385** This routine processes all pending events in the event queue. It can be
386** called from the thread's main event-processing loop whenever the event
387** queue's selectFD is ready (returned by PL_GetEventQueueSelectFD).
388*/
389PR_EXTERN(void)
390PL_ProcessPendingEvents(PLEventQueue* self);
391
392/*******************************************************************************
393 * Pure Event Queues
394 *
395 * For when you're only processing PLEvents and there is no native
396 * select, thread messages, or AppleEvents.
397 ******************************************************************************/
398
399/*
400** Blocks until an event can be returned from the event queue. This routine
401** may return NULL if the current thread is interrupted.
402*/
403PR_EXTERN(PLEvent*)
404PL_WaitForEvent(PLEventQueue* self);
405
406/*
407** One stop shopping if all you're going to do is process PLEvents. Just
408** call this and it loops forever processing events as they arrive. It will
409** terminate when your thread is interrupted or dies.
410*/
411PR_EXTERN(void)
412PL_EventLoop(PLEventQueue* self);
413
414/*******************************************************************************
415 * Native Event Queues
416 *
417 * For when you need to call select, or WaitNextEvent, and yet also want
418 * to handle PLEvents.
419 ******************************************************************************/
420
421/*
422** This routine allows you to grab the file descriptor associated with an
423** event queue and use it in the readFD set of select. Useful for platforms
424** that support select, and must wait on other things besides just PLEvents.
425*/
426PR_EXTERN(PRInt32)
427PL_GetEventQueueSelectFD(PLEventQueue* self);
428
429/*
430** This routine will allow you to check to see if the given eventQueue in
431** on the current thread. It will return PR_TRUE if so, else it will return
432** PR_FALSE
433*/
434PR_EXTERN(PRBool)
435 PL_IsQueueOnCurrentThread( PLEventQueue *queue );
436
437/*
438** Returns whether the queue is native (true) or monitored (false)
439*/
440PR_EXTERN(PRBool)
441PL_IsQueueNative(PLEventQueue *queue);
442
443/*******************************************************************************
444 * Event Operations
445 ******************************************************************************/
446
447/*
448** The type of an event handler function. This function is passed as an
449** initialization argument to PL_InitEvent, and called by
450** PL_HandleEvent. If the event is called synchronously, a void* result
451** may be returned (otherwise any result will be ignored).
452*/
453typedef void*
454(PR_CALLBACK *PLHandleEventProc)(PLEvent* self);
455
456/*
457** The type of an event destructor function. This function is passed as
458** an initialization argument to PL_InitEvent, and called by
459** PL_DestroyEvent.
460*/
461typedef void
462(PR_CALLBACK *PLDestroyEventProc)(PLEvent* self);
463
464/*
465** Initializes an event. Usually events are embedded in a larger event
466** structure which holds event-specific data, so this is an initializer
467** for that embedded part of the structure.
468*/
469PR_EXTERN(void)
470PL_InitEvent(PLEvent* self, void* owner,
471 PLHandleEventProc handler,
472 PLDestroyEventProc destructor);
473
474/*
475** Returns the owner of an event.
476*/
477PR_EXTERN(void*)
478PL_GetEventOwner(PLEvent* self);
479
480/*
481** Handles an event, calling the event's handler routine.
482*/
483PR_EXTERN(void)
484PL_HandleEvent(PLEvent* self);
485
486/*
487** Destroys an event, calling the event's destructor.
488*/
489PR_EXTERN(void)
490PL_DestroyEvent(PLEvent* self);
491
492/*
493** Removes an event from an event queue.
494*/
495PR_EXTERN(void)
496PL_DequeueEvent(PLEvent* self, PLEventQueue* queue);
497
498
499/*
500 * Give hint to native PL_Event notification mechanism. If the native
501 * platform needs to tradeoff performance vs. native event starvation
502 * this hint tells the native dispatch code which to favor.
503 * The default is to prevent event starvation.
504 *
505 * Calls to this function may be nested. When the number of calls that
506 * pass PR_TRUE is subtracted from the number of calls that pass PR_FALSE
507 * is greater than 0, performance is given precedence over preventing
508 * event starvation.
509 *
510 * The starvationDelay arg is only used when
511 * favorPerformanceOverEventStarvation is PR_FALSE. It is the
512 * amount of time in milliseconds to wait before the PR_FALSE actually
513 * takes effect.
514 */
515PR_EXTERN(void)
516PL_FavorPerformanceHint(PRBool favorPerformanceOverEventStarvation, PRUint32 starvationDelay);
517
518
519/*******************************************************************************
520 * Private Stuff
521 ******************************************************************************/
522
523struct PLEvent {
524 RTLISTNODE link;
525 PLHandleEventProc handler;
526 PLDestroyEventProc destructor;
527 void* owner;
528 void* synchronousResult;
529 RTCRITSECT lock;
530 RTSEMEVENT condVar;
531 PRBool handled;
532#ifdef XP_UNIX
533 unsigned long id;
534#endif /* XP_UNIX */
535 /* other fields follow... */
536};
537
538/******************************************************************************/
539
540#ifdef XP_UNIX
541/* -----------------------------------------------------------------------
542** FUNCTION: PL_ProcessEventsBeforeID()
543**
544** DESCRIPTION:
545**
546** PL_ProcessEventsBeforeID() will process events in a native event
547** queue that have an id that is older than the ID passed in.
548**
549** INPUTS:
550** PLEventQueue *aSelf
551** unsigned long aID
552**
553** RETURNS:
554** PRInt32 number of requests processed, -1 on error.
555**
556** RESTRICTIONS: Unix only (well, X based unix only)
557*/
558PR_EXTERN(PRInt32)
559PL_ProcessEventsBeforeID(PLEventQueue *aSelf, unsigned long aID);
560
561/* This prototype is a function that can be called when an event is
562 posted to stick an ID on it. */
563
564typedef unsigned long
565(PR_CALLBACK *PLGetEventIDFunc)(void *aClosure);
566
567
568/* -----------------------------------------------------------------------
569** FUNCTION: PL_RegisterEventIDFunc()
570**
571** DESCRIPTION:
572**
573** This function registers a function for getting the ID on unix for
574** this event queue.
575**
576** INPUTS:
577** PLEventQueue *aSelf
578** PLGetEventIDFunc func
579** void *aClosure
580**
581** RETURNS:
582** void
583**
584** RESTRICTIONS: Unix only (well, X based unix only) */
585PR_EXTERN(void)
586PL_RegisterEventIDFunc(PLEventQueue *aSelf, PLGetEventIDFunc aFunc,
587 void *aClosure);
588
589/* -----------------------------------------------------------------------
590** FUNCTION: PL_RegisterEventIDFunc()
591**
592** DESCRIPTION:
593**
594** This function unregisters a function for getting the ID on unix for
595** this event queue.
596**
597** INPUTS:
598** PLEventQueue *aSelf
599**
600** RETURNS:
601** void
602**
603** RESTRICTIONS: Unix only (well, X based unix only) */
604PR_EXTERN(void)
605PL_UnregisterEventIDFunc(PLEventQueue *aSelf);
606
607#endif /* XP_UNIX */
608
609
610/* ----------------------------------------------------------------------- */
611
612PR_END_EXTERN_C
613
614#endif /* plevent_h___ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette