VirtualBox

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

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

libs/xpcom: Convert plevent.{c,h} to IPRT critical sections and event semaphores, 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 "prclist.h"
189#include "prthread.h"
190#include "prcvar.h"
191#include "prmon.h"
192
193#include <iprt/critsect.h>
194#include <iprt/semaphore.h>
195
196#ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
197#define PL_DestroyEvent VBoxNsplPL_DestroyEvent
198#define PL_HandleEvent VBoxNsplPL_HandleEvent
199#define PL_InitEvent VBoxNsplPL_InitEvent
200#define PL_CreateEventQueue VBoxNsplPL_CreateEventQueue
201#define PL_CreateMonitoredEventQueue VBoxNsplPL_CreateMonitoredEventQueue
202#define PL_CreateNativeEventQueue VBoxNsplPL_CreateNativeEventQueue
203#define PL_DequeueEvent VBoxNsplPL_DequeueEvent
204#define PL_DestroyEventQueue VBoxNsplPL_DestroyEventQueue
205#define PL_EventAvailable VBoxNsplPL_EventAvailable
206#define PL_EventLoop VBoxNsplPL_EventLoop
207#define PL_GetEvent VBoxNsplPL_GetEvent
208#define PL_GetEventOwner VBoxNsplPL_GetEventOwner
209#define PL_GetEventQueueMonitor VBoxNsplPL_GetEventQueueMonitor
210#define PL_GetEventQueueSelectFD VBoxNsplPL_GetEventQueueSelectFD
211#define PL_MapEvents VBoxNsplPL_MapEvents
212#define PL_PostEvent VBoxNsplPL_PostEvent
213#define PL_PostSynchronousEvent VBoxNsplPL_PostSynchronousEvent
214#define PL_ProcessEventsBeforeID VBoxNsplPL_ProcessEventsBeforeID
215#define PL_ProcessPendingEvents VBoxNsplPL_ProcessPendingEvents
216#define PL_RegisterEventIDFunc VBoxNsplPL_RegisterEventIDFunc
217#define PL_RevokeEvents VBoxNsplPL_RevokeEvents
218#define PL_UnregisterEventIDFunc VBoxNsplPL_UnregisterEventIDFunc
219#define PL_WaitForEvent VBoxNsplPL_WaitForEvent
220#define PL_IsQueueNative VBoxNsplPL_IsQueueNative
221#define PL_IsQueueOnCurrentThread VBoxNsplPL_IsQueueOnCurrentThread
222#define PL_FavorPerformanceHint VBoxNsplPL_FavorPerformanceHint
223#endif /* VBOX_WITH_XPCOM_NAMESPACE_CLEANUP */
224
225PR_BEGIN_EXTERN_C
226
227/* Typedefs */
228
229typedef struct PLEvent PLEvent;
230typedef struct PLEventQueue PLEventQueue;
231
232/*******************************************************************************
233 * Event Queue Operations
234 ******************************************************************************/
235
236/*
237** Creates a new event queue. Returns NULL on failure.
238*/
239PR_EXTERN(PLEventQueue*)
240PL_CreateEventQueue(const char* name, PRThread* handlerThread);
241
242
243/* -----------------------------------------------------------------------
244** FUNCTION: PL_CreateNativeEventQueue()
245**
246** DESCRIPTION:
247** PL_CreateNativeEventQueue() creates an event queue that
248** uses platform specific notify mechanisms.
249**
250** For Unix, the platform specific notify mechanism provides
251** an FD that may be extracted using the function
252** PL_GetEventQueueSelectFD(). The FD returned may be used in
253** a select() function call.
254**
255** For Windows, the platform specific notify mechanism
256** provides an event receiver window that is called by
257** Windows to process the event using the windows message
258** pump engine.
259**
260** INPUTS:
261** name: A name, as a diagnostic aid.
262**
263** handlerThread: A pointer to the PRThread structure for
264** the thread that will "handle" events posted to this event
265** queue.
266**
267** RETURNS:
268** A pointer to a PLEventQueue structure or NULL.
269**
270*/
271PR_EXTERN(PLEventQueue *)
272 PL_CreateNativeEventQueue(
273 const char *name,
274 PRThread *handlerThread
275 );
276
277/* -----------------------------------------------------------------------
278** FUNCTION: PL_CreateMonitoredEventQueue()
279**
280** DESCRIPTION:
281** PL_CreateMonitoredEventQueue() creates an event queue. No
282** platform specific notify mechanism is created with the
283** event queue.
284**
285** Users of this type of event queue must explicitly poll the
286** event queue to retreive and process events.
287**
288**
289** INPUTS:
290** name: A name, as a diagnostic aid.
291**
292** handlerThread: A pointer to the PRThread structure for
293** the thread that will "handle" events posted to this event
294** queue.
295**
296** RETURNS:
297** A pointer to a PLEventQueue structure or NULL.
298**
299*/
300PR_EXTERN(PLEventQueue *)
301 PL_CreateMonitoredEventQueue(
302 const char *name,
303 PRThread *handlerThread
304 );
305
306/*
307** Destroys an event queue.
308*/
309PR_EXTERN(void)
310PL_DestroyEventQueue(PLEventQueue* self);
311
312/*
313** Returns the monitor associated with an event queue. This monitor is
314** selectable. The monitor should be entered to protect against anyone
315** calling PL_RevokeEvents while the event is trying to be constructed
316** and delivered.
317*/
318PR_EXTERN(PRMonitor*)
319PL_GetEventQueueMonitor(PLEventQueue* self);
320
321#define PL_ENTER_EVENT_QUEUE_MONITOR(queue) \
322 PR_EnterMonitor(PL_GetEventQueueMonitor(queue))
323
324#define PL_EXIT_EVENT_QUEUE_MONITOR(queue) \
325 PR_ExitMonitor(PL_GetEventQueueMonitor(queue))
326
327/*
328** Posts an event to an event queue, waking up any threads waiting for an
329** event. If event is NULL, notification still occurs, but no event will
330** be available.
331**
332** Any events delivered by this routine will be destroyed by PL_HandleEvent
333** when it is called (by the event-handling thread).
334*/
335PR_EXTERN(PRStatus)
336PL_PostEvent(PLEventQueue* self, PLEvent* event);
337
338/*
339** Like PL_PostEvent, this routine posts an event to the event handling
340** thread, but does so synchronously, waiting for the result. The result
341** which is the value of the handler routine is returned.
342**
343** Any events delivered by this routine will be not be destroyed by
344** PL_HandleEvent, but instead will be destroyed just before the result is
345** returned (by the current thread).
346*/
347PR_EXTERN(void*)
348PL_PostSynchronousEvent(PLEventQueue* self, PLEvent* event);
349
350/*
351** Gets an event from an event queue. Returns NULL if no event is
352** available.
353*/
354PR_EXTERN(PLEvent*)
355PL_GetEvent(PLEventQueue* self);
356
357/*
358** Returns true if there is an event available for PL_GetEvent.
359*/
360PR_EXTERN(PRBool)
361PL_EventAvailable(PLEventQueue* self);
362
363/*
364** This is the type of the function that must be passed to PL_MapEvents
365** (see description below).
366*/
367typedef void
368(PR_CALLBACK *PLEventFunProc)(PLEvent* event, void* data, PLEventQueue* queue);
369
370/*
371** Applies a function to every event in the event queue. This can be used
372** to selectively handle, filter, or remove events. The data pointer is
373** passed to each invocation of the function fun.
374*/
375PR_EXTERN(void)
376PL_MapEvents(PLEventQueue* self, PLEventFunProc fun, void* data);
377
378/*
379** This routine walks an event queue and destroys any event whose owner is
380** the owner specified. The == operation is used to compare owners.
381*/
382PR_EXTERN(void)
383PL_RevokeEvents(PLEventQueue* self, void* owner);
384
385/*
386** This routine processes all pending events in the event queue. It can be
387** called from the thread's main event-processing loop whenever the event
388** queue's selectFD is ready (returned by PL_GetEventQueueSelectFD).
389*/
390PR_EXTERN(void)
391PL_ProcessPendingEvents(PLEventQueue* self);
392
393/*******************************************************************************
394 * Pure Event Queues
395 *
396 * For when you're only processing PLEvents and there is no native
397 * select, thread messages, or AppleEvents.
398 ******************************************************************************/
399
400/*
401** Blocks until an event can be returned from the event queue. This routine
402** may return NULL if the current thread is interrupted.
403*/
404PR_EXTERN(PLEvent*)
405PL_WaitForEvent(PLEventQueue* self);
406
407/*
408** One stop shopping if all you're going to do is process PLEvents. Just
409** call this and it loops forever processing events as they arrive. It will
410** terminate when your thread is interrupted or dies.
411*/
412PR_EXTERN(void)
413PL_EventLoop(PLEventQueue* self);
414
415/*******************************************************************************
416 * Native Event Queues
417 *
418 * For when you need to call select, or WaitNextEvent, and yet also want
419 * to handle PLEvents.
420 ******************************************************************************/
421
422/*
423** This routine allows you to grab the file descriptor associated with an
424** event queue and use it in the readFD set of select. Useful for platforms
425** that support select, and must wait on other things besides just PLEvents.
426*/
427PR_EXTERN(PRInt32)
428PL_GetEventQueueSelectFD(PLEventQueue* self);
429
430/*
431** This routine will allow you to check to see if the given eventQueue in
432** on the current thread. It will return PR_TRUE if so, else it will return
433** PR_FALSE
434*/
435PR_EXTERN(PRBool)
436 PL_IsQueueOnCurrentThread( PLEventQueue *queue );
437
438/*
439** Returns whether the queue is native (true) or monitored (false)
440*/
441PR_EXTERN(PRBool)
442PL_IsQueueNative(PLEventQueue *queue);
443
444/*******************************************************************************
445 * Event Operations
446 ******************************************************************************/
447
448/*
449** The type of an event handler function. This function is passed as an
450** initialization argument to PL_InitEvent, and called by
451** PL_HandleEvent. If the event is called synchronously, a void* result
452** may be returned (otherwise any result will be ignored).
453*/
454typedef void*
455(PR_CALLBACK *PLHandleEventProc)(PLEvent* self);
456
457/*
458** The type of an event destructor function. This function is passed as
459** an initialization argument to PL_InitEvent, and called by
460** PL_DestroyEvent.
461*/
462typedef void
463(PR_CALLBACK *PLDestroyEventProc)(PLEvent* self);
464
465/*
466** Initializes an event. Usually events are embedded in a larger event
467** structure which holds event-specific data, so this is an initializer
468** for that embedded part of the structure.
469*/
470PR_EXTERN(void)
471PL_InitEvent(PLEvent* self, void* owner,
472 PLHandleEventProc handler,
473 PLDestroyEventProc destructor);
474
475/*
476** Returns the owner of an event.
477*/
478PR_EXTERN(void*)
479PL_GetEventOwner(PLEvent* self);
480
481/*
482** Handles an event, calling the event's handler routine.
483*/
484PR_EXTERN(void)
485PL_HandleEvent(PLEvent* self);
486
487/*
488** Destroys an event, calling the event's destructor.
489*/
490PR_EXTERN(void)
491PL_DestroyEvent(PLEvent* self);
492
493/*
494** Removes an event from an event queue.
495*/
496PR_EXTERN(void)
497PL_DequeueEvent(PLEvent* self, PLEventQueue* queue);
498
499
500/*
501 * Give hint to native PL_Event notification mechanism. If the native
502 * platform needs to tradeoff performance vs. native event starvation
503 * this hint tells the native dispatch code which to favor.
504 * The default is to prevent event starvation.
505 *
506 * Calls to this function may be nested. When the number of calls that
507 * pass PR_TRUE is subtracted from the number of calls that pass PR_FALSE
508 * is greater than 0, performance is given precedence over preventing
509 * event starvation.
510 *
511 * The starvationDelay arg is only used when
512 * favorPerformanceOverEventStarvation is PR_FALSE. It is the
513 * amount of time in milliseconds to wait before the PR_FALSE actually
514 * takes effect.
515 */
516PR_EXTERN(void)
517PL_FavorPerformanceHint(PRBool favorPerformanceOverEventStarvation, PRUint32 starvationDelay);
518
519
520/*******************************************************************************
521 * Private Stuff
522 ******************************************************************************/
523
524struct PLEvent {
525 PRCList link;
526 PLHandleEventProc handler;
527 PLDestroyEventProc destructor;
528 void* owner;
529 void* synchronousResult;
530 RTCRITSECT lock;
531 RTSEMEVENT condVar;
532 PRBool handled;
533#ifdef XP_UNIX
534 unsigned long id;
535#endif /* XP_UNIX */
536 /* other fields follow... */
537};
538
539/******************************************************************************/
540
541#ifdef XP_UNIX
542/* -----------------------------------------------------------------------
543** FUNCTION: PL_ProcessEventsBeforeID()
544**
545** DESCRIPTION:
546**
547** PL_ProcessEventsBeforeID() will process events in a native event
548** queue that have an id that is older than the ID passed in.
549**
550** INPUTS:
551** PLEventQueue *aSelf
552** unsigned long aID
553**
554** RETURNS:
555** PRInt32 number of requests processed, -1 on error.
556**
557** RESTRICTIONS: Unix only (well, X based unix only)
558*/
559PR_EXTERN(PRInt32)
560PL_ProcessEventsBeforeID(PLEventQueue *aSelf, unsigned long aID);
561
562/* This prototype is a function that can be called when an event is
563 posted to stick an ID on it. */
564
565typedef unsigned long
566(PR_CALLBACK *PLGetEventIDFunc)(void *aClosure);
567
568
569/* -----------------------------------------------------------------------
570** FUNCTION: PL_RegisterEventIDFunc()
571**
572** DESCRIPTION:
573**
574** This function registers a function for getting the ID on unix for
575** this event queue.
576**
577** INPUTS:
578** PLEventQueue *aSelf
579** PLGetEventIDFunc func
580** void *aClosure
581**
582** RETURNS:
583** void
584**
585** RESTRICTIONS: Unix only (well, X based unix only) */
586PR_EXTERN(void)
587PL_RegisterEventIDFunc(PLEventQueue *aSelf, PLGetEventIDFunc aFunc,
588 void *aClosure);
589
590/* -----------------------------------------------------------------------
591** FUNCTION: PL_RegisterEventIDFunc()
592**
593** DESCRIPTION:
594**
595** This function unregisters a function for getting the ID on unix for
596** this event queue.
597**
598** INPUTS:
599** PLEventQueue *aSelf
600**
601** RETURNS:
602** void
603**
604** RESTRICTIONS: Unix only (well, X based unix only) */
605PR_EXTERN(void)
606PL_UnregisterEventIDFunc(PLEventQueue *aSelf);
607
608#endif /* XP_UNIX */
609
610
611/* ----------------------------------------------------------------------- */
612
613PR_END_EXTERN_C
614
615#endif /* plevent_h___ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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