VirtualBox

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

Last change on this file since 549 was 1, checked in by vboxsync, 55 years ago

import

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

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