1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
|
/*
* $RCSfile$
*
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision$
* $Date$
* $State$
*/
/*
* Portions of this code were derived from work done by the Blackdown
* group (www.blackdown.org), who did the initial Linux implementation
* of the Java 3D API.
*/
#ifdef DEBUG
#define DPRINT(args) fprintf args
#else
#define DPRINT(args)
#endif /* DEBUG */
#include <jni.h>
#include <math.h>
#include <string.h>
#include "gldefs.h"
#ifdef WIN32
#include <windows.h>
#include <winbase.h>
#endif /* WIN32 */
#if defined(UNIX)
#include <unistd.h>
#ifdef SOLARIS
#include <thread.h>
#else
#include <pthread.h>
#endif
#include <dlfcn.h>
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#if defined(SOLARIS) && defined(__sparc)
#pragma weak glXInitThreadsSUN
#pragma weak glXDisableXineramaSUN
#pragma weak XPanoramiXQueryExtension
extern int glXInitThreadsSUN();
extern int glXDisableXineramaSUN(Display *dpy);
/*
* The following is currently an unsupported, undocumented function to query
* whether the X server is running with Xinerama support. This is an interim
* solution until it is made part of the X Window System standard or replaced
* with a fully supported API. It is currently available in the libXext
* shipped with Solaris 9 and patched versions of Solaris 7 and 8. dlsym() is
* used to check for its existence.
*/
extern Bool XPanoramiXQueryExtension(Display *dpy,
int *event_base, int *error_base);
#endif /* SOLARIS && __sparc */
#endif /* UNIX_ */
/* defined in Canvas3D.c */
extern int isExtensionSupported(const char *allExtensions,
const char *extension);
JNIEXPORT jboolean JNICALL
Java_javax_media_j3d_MasterControl_initializeJ3D(
JNIEnv *env, jobject obj, jboolean disableXinerama)
{
jboolean glIsMTSafe = JNI_TRUE;
/* Nothing to do for non-sparc-solaris platforms */
#if defined(SOLARIS) && defined(__sparc)
Display* dpy;
int event_base, error_base;
const char *glxExtStr = NULL;
glIsMTSafe = JNI_FALSE;
dpy = XOpenDisplay(NULL);
glxExtStr = glXGetClientString((Display*)dpy, GLX_EXTENSIONS);
#ifdef GLX_SUN_init_threads
if(isExtensionSupported(glxExtStr, "GLX_SUN_init_threads")) {
if (glXInitThreadsSUN()) {
glIsMTSafe = JNI_TRUE;
}
else {
DPRINT((stderr, "Failed initializing OpenGL for MT rendering.\n"));
DPRINT((stderr, "glXInitThreadsSUN returned false.\n"));
}
}
else {
DPRINT((stderr, "Failed to initialize OpenGL for MT rendering.\n"));
DPRINT((stderr, "GLX_SUN_init_threads not available.\n"));
}
#endif /* GLX_SUN_init_threads */
if (disableXinerama) {
DPRINT((stderr, "Property j3d.disableXinerama true "));
if ((! dlsym(RTLD_DEFAULT, "XPanoramiXQueryExtension")) ||
(! dlsym(RTLD_DEFAULT, "XDgaGetXineramaInfo"))) {
DPRINT((stderr, "but required API not available.\n"));
return glIsMTSafe;
}
if (XPanoramiXQueryExtension(dpy, &event_base, &error_base)) {
DPRINT((stderr, "and Xinerama is in use.\n"));
#ifdef GLX_SUN_disable_xinerama
if(isExtensionSupported(glxExtStr, "GLX_SUN_disable_xinerama")) {
if (glXDisableXineramaSUN((Display *)dpy)) {
jclass cls = (*env)->GetObjectClass(env, obj);
jfieldID disabledField =
(*env)->GetFieldID(env, cls, "xineramaDisabled", "Z");
(*env)->SetBooleanField(env, obj, disabledField, JNI_TRUE);
DPRINT((stderr, "Successfully disabled Xinerama.\n"));
}
else {
DPRINT((stderr, "Failed to disable Xinerama: "));
DPRINT((stderr, "glXDisableXineramaSUN returns false.\n"));
}
} else {
DPRINT((stderr, "Failed to disable Xinerama: "));
DPRINT((stderr, "GLX_SUN_disable_xinerama not available.\n"));
}
#endif /* GLX_SUN_disable_xinerama */
} else {
DPRINT((stderr, "but Xinerama is not in use.\n"));
}
}
#endif /* SOLARIS && __sparc */
return glIsMTSafe;
}
#ifdef WIN32
DWORD countBits(DWORD mask)
{
DWORD count = 0;
int i;
for (i=sizeof(DWORD)*8-1; i >=0 ; i--) {
if ((mask & 0x01) > 0) {
count++;
}
mask >>= 1;
}
return count;
}
#endif /* WIN32 */
/*
* Class: javax_media_j3d_MasterControl
* Method: getNumberOfProcessor
* Signature: ()I
*
* This function get the number of active processor in the system
*/
JNIEXPORT jint JNICALL Java_javax_media_j3d_MasterControl_getNumberOfProcessor
(JNIEnv *env, jobject obj)
{
#if defined(UNIX)
return sysconf(_SC_NPROCESSORS_ONLN);
#endif /* UNIX_ */
#ifdef WIN32
SYSTEM_INFO sysInfo;
GetSystemInfo(&sysInfo);
return countBits(sysInfo.dwActiveProcessorMask);
#endif /* WIN32 */
}
/*
* Class: javax_media_j3d_MasterControl
* Method: getThreadConcurrency
* Signature: ()I
*/
JNIEXPORT jint JNICALL
Java_javax_media_j3d_MasterControl_getThreadConcurrency(JNIEnv *env,
jobject obj)
{
/*
* Return the number of concurrent threads that can be run,
* -1 if unknown.
*/
#ifdef SOLARIS
return (jint) thr_getconcurrency();
#endif /* SOLARIS */
#ifdef LINUX
return -1;
#endif /* LINUX */
#ifdef WIN32
return -1;
#endif /* WIN32 */
}
/*
* Class: javax_media_j3d_MasterControl
* Method: setThreadConcurrency
* Signature: (I)V
*/
JNIEXPORT void JNICALL
Java_javax_media_j3d_MasterControl_setThreadConcurrency(JNIEnv *env,
jobject obj,
jint newLevel)
{
#ifdef SOLARIS
thr_setconcurrency((int)newLevel);
#endif /* SOLARIS */
#ifdef WIN32
/* No-op on windows */
#endif /* WIN32 */
#ifdef LINUX
/* No-op on linux */
#endif /* LINUX */
}
JNIEXPORT
jint JNICALL Java_javax_media_j3d_MasterControl_getMaximumLights(
JNIEnv *env,
jobject obj
) {
#ifdef SOLARIS
return 32;
#endif /* SOLARIS */
#ifdef WIN32
return 8;
#endif /* WIN32 */
#ifdef LINUX
return 8;
#endif /* LINUX */
}
/* ======================================================================= */
/*
* The following method implements a high-resolution timer (based on the
* native code in the J3DTimer class). It will no longer be needed once
* we drop support for JDK 1.4.2, at which time it will be replaced by
* a call to System.nanoTime().
*/
#define NSEC_PER_SEC ((jlong)1000000000)
#ifdef __linux__
#include <sys/time.h>
#include <time.h>
#include <unistd.h>
#endif
#ifdef SOLARIS
#include <time.h>
#include <sys/systeminfo.h>
#include <string.h>
#ifndef CLOCK_HIGHRES
#define CLOCK_HIGHRES 4 /* Solaris 7 does not define this */
#endif /* constant. When run on Solaris 7 */
#endif /* CLOCK_HIGHRES is not used. */
#ifdef WIN32
#include <Windows.h>
#include <math.h>
static double timerScale = -1.0;
#endif
/*
* Class: javax_media_j3d_MasterControl
* Method: getNativeTimerValue
* Signature: ()J
*/
JNIEXPORT jlong JNICALL
Java_javax_media_j3d_MasterControl_getNativeTimerValue(JNIEnv *env, jclass clazz)
{
jlong timerNsec;
#ifdef SOLARIS
/*
struct timespec tp;
clock_gettime( CLOCK_HIGHRES, &tp );
return (jlong)tp.tv_nsec + (jlong)tp.tv_sec * NSEC_PER_SEC;
*/
timerNsec = (jlong)gethrtime();
#endif /* SOLARIS */
#ifdef WIN32
LARGE_INTEGER time;
LARGE_INTEGER freq;
if (timerScale < 0.0) {
QueryPerformanceFrequency( &freq );
if (freq.QuadPart <= 0) {
timerScale = 0.0;
}
else {
timerScale = (double) NSEC_PER_SEC / (double)freq.QuadPart;
}
}
QueryPerformanceCounter(&time);
timerNsec = (jlong)((double)time.QuadPart * timerScale);
#endif /* WIN32 */
#ifdef __linux__
struct timeval t;
gettimeofday(&t, 0);
timerNsec = ((jlong)t.tv_sec) * NSEC_PER_SEC + ((jlong)t.tv_usec) * ((jlong)1000);
#endif /* __linux__ */
return timerNsec;
}
|