1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: VBoxSDL (simple frontend based on SDL):
|
---|
4 | * Miscellaneous helpers
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
19 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
20 | * additional information or have any questions.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #define LOG_GROUP LOG_GROUP_GUI
|
---|
24 | #include <VBox/err.h>
|
---|
25 | #include <VBox/log.h>
|
---|
26 | #include <iprt/asm.h>
|
---|
27 | #include <iprt/assert.h>
|
---|
28 | #include <iprt/thread.h>
|
---|
29 | #include <iprt/semaphore.h>
|
---|
30 | #include "VBoxSDL.h"
|
---|
31 | #include "Helper.h"
|
---|
32 |
|
---|
33 |
|
---|
34 | /**
|
---|
35 | * Globals
|
---|
36 | */
|
---|
37 |
|
---|
38 |
|
---|
39 | #ifdef USE_XPCOM_QUEUE_THREAD
|
---|
40 |
|
---|
41 | /** global flag indicating that the event queue thread should terminate */
|
---|
42 | static bool volatile g_fTerminateXPCOMQueueThread = false;
|
---|
43 |
|
---|
44 | /** How many XPCOM user events are on air. Only allow one pending event to
|
---|
45 | * prevent an overflow of the SDL event queue. */
|
---|
46 | static volatile int32_t g_s32XPCOMEventsPending;
|
---|
47 |
|
---|
48 | /** Semaphore the XPCOM event thread will sleep on while it waits for the main thread to process pending requests. */
|
---|
49 | RTSEMEVENT g_EventSemXPCOMQueueThread = NULL;
|
---|
50 |
|
---|
51 | /**
|
---|
52 | * Thread method to wait for XPCOM events and notify the SDL thread.
|
---|
53 | *
|
---|
54 | * @returns Error code
|
---|
55 | * @param thread Thread ID
|
---|
56 | * @param pvUser User specific parameter, the file descriptor
|
---|
57 | * of the event queue socket
|
---|
58 | */
|
---|
59 | DECLCALLBACK(int) xpcomEventThread(RTTHREAD thread, void *pvUser)
|
---|
60 | {
|
---|
61 | int eqFD = (intptr_t)pvUser;
|
---|
62 | unsigned cErrors = 0;
|
---|
63 | int rc;
|
---|
64 |
|
---|
65 | /* Wait with the processing till the main thread needs it. */
|
---|
66 | RTSemEventWait(g_EventSemXPCOMQueueThread, 2500);
|
---|
67 |
|
---|
68 | do
|
---|
69 | {
|
---|
70 | fd_set fdset;
|
---|
71 | FD_ZERO(&fdset);
|
---|
72 | FD_SET(eqFD, &fdset);
|
---|
73 | int n = select(eqFD + 1, &fdset, NULL, NULL, NULL);
|
---|
74 |
|
---|
75 | /* are there any events to process? */
|
---|
76 | if ((n > 0) && !g_fTerminateXPCOMQueueThread)
|
---|
77 | {
|
---|
78 | /*
|
---|
79 | * Wait until all XPCOM events are processed. 1s just for sanity.
|
---|
80 | */
|
---|
81 | int iWait = 1000;
|
---|
82 | /*
|
---|
83 | * Don't post an event if there is a pending XPCOM event to prevent an
|
---|
84 | * overflow of the SDL event queue.
|
---|
85 | */
|
---|
86 | if (g_s32XPCOMEventsPending < 1)
|
---|
87 | {
|
---|
88 | /*
|
---|
89 | * Post the event and wait for it to be processed. If we don't wait,
|
---|
90 | * we'll flood the queue on SMP systems and when the main thread is busy.
|
---|
91 | * In the event of a push error, we'll yield the timeslice and retry.
|
---|
92 | */
|
---|
93 | SDL_Event event = {0};
|
---|
94 | event.type = SDL_USEREVENT;
|
---|
95 | event.user.type = SDL_USER_EVENT_XPCOM_EVENTQUEUE;
|
---|
96 | rc = SDL_PushEvent(&event);
|
---|
97 | if (!rc)
|
---|
98 | {
|
---|
99 | /* success */
|
---|
100 | ASMAtomicIncS32(&g_s32XPCOMEventsPending);
|
---|
101 | cErrors = 0;
|
---|
102 | }
|
---|
103 | else
|
---|
104 | {
|
---|
105 | /* failure */
|
---|
106 | cErrors++;
|
---|
107 | if (!RTThreadYield())
|
---|
108 | RTThreadSleep(2);
|
---|
109 | iWait = (cErrors >= 10) ? RT_MIN(cErrors - 8, 50) : 0;
|
---|
110 | }
|
---|
111 | }
|
---|
112 | else
|
---|
113 | Log2(("not enqueueing SDL XPCOM event (%d)\n", g_s32XPCOMEventsPending));
|
---|
114 |
|
---|
115 | if (iWait)
|
---|
116 | RTSemEventWait(g_EventSemXPCOMQueueThread, iWait);
|
---|
117 | }
|
---|
118 | } while (!g_fTerminateXPCOMQueueThread);
|
---|
119 | return VINF_SUCCESS;
|
---|
120 | }
|
---|
121 |
|
---|
122 | /**
|
---|
123 | * Creates the XPCOM event thread
|
---|
124 | *
|
---|
125 | * @returns VBOX status code
|
---|
126 | * @param eqFD XPCOM event queue file descriptor
|
---|
127 | */
|
---|
128 | int startXPCOMEventQueueThread(int eqFD)
|
---|
129 | {
|
---|
130 | int rc = RTSemEventCreate(&g_EventSemXPCOMQueueThread);
|
---|
131 | if (RT_SUCCESS(rc))
|
---|
132 | {
|
---|
133 | RTTHREAD Thread;
|
---|
134 | rc = RTThreadCreate(&Thread, xpcomEventThread, (void *)eqFD, 0, RTTHREADTYPE_MSG_PUMP, 0, "XPCOMEvent");
|
---|
135 | }
|
---|
136 | AssertRC(rc);
|
---|
137 | return rc;
|
---|
138 | }
|
---|
139 |
|
---|
140 | /**
|
---|
141 | * Notify the XPCOM thread that we consumed an XPCOM event.
|
---|
142 | */
|
---|
143 | void consumedXPCOMUserEvent(void)
|
---|
144 | {
|
---|
145 | ASMAtomicDecS32(&g_s32XPCOMEventsPending);
|
---|
146 | }
|
---|
147 |
|
---|
148 | /**
|
---|
149 | * Signal to the XPCOM even queue thread that it should select for more events.
|
---|
150 | */
|
---|
151 | void signalXPCOMEventQueueThread(void)
|
---|
152 | {
|
---|
153 | int rc = RTSemEventSignal(g_EventSemXPCOMQueueThread);
|
---|
154 | AssertRC(rc);
|
---|
155 | }
|
---|
156 |
|
---|
157 | /**
|
---|
158 | * Indicates to the XPCOM thread that it should terminate now.
|
---|
159 | */
|
---|
160 | void terminateXPCOMQueueThread(void)
|
---|
161 | {
|
---|
162 | g_fTerminateXPCOMQueueThread = true;
|
---|
163 | if (g_EventSemXPCOMQueueThread)
|
---|
164 | {
|
---|
165 | RTSemEventSignal(g_EventSemXPCOMQueueThread);
|
---|
166 | RTThreadYield();
|
---|
167 | }
|
---|
168 | }
|
---|
169 |
|
---|
170 | #endif /* USE_XPCOM_QUEUE_THREAD */
|
---|