VirtualBox

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

最後變更 在這個檔案從101898是 101898,由 vboxsync 提交於 15 月 前

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

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