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
|
#include "GLCallbackHelperJNI.h"
#include "jnitools.h"
#ifdef _WIN32_
#include "wgltool.h"
#else
#ifdef _MAC_OS9_
#include <agl.h>
#include <string.h>
#else
#include "glxtool.h"
#endif
#endif
/*
#define DEBUG
*/
static CallbackNode * pCallbackNodeRoot = 0;
void LIBAPIENTRY PrintCallbackEntry(const char *title, CallbackEntry * cbe)
{
if(cbe==NULL)
{
printf("%s> NULL cbe/cbn entry\n", title);
return;
}
printf("%s> cbe entry 4 glu-obj=%ld, glx:=%ld (env=%ld, jobj=%ld)\n",
title, (long)(cbe->cb_obj), (long)(cbe->glx),
(long)(cbe->env), (long)(cbe->jobj));
printf(" which, method, argNumber, signature\n");
printf(" %d %s %d: %s\n",
cbe->which,
cbe->methodName,
cbe->argListNumber,
cbe->signature);
printf(" array element number\n");
printf(" %d %d %d %d %d\n",
cbe->arrayLen1,
cbe->arrayLen2,
cbe->arrayLen3,
cbe->arrayLen4,
cbe->arrayLen5);
fflush(NULL);
}
void LIBAPIENTRY PrintCallbackNode(const char *title, CallbackNode * cbn)
{
CallbackEntry * cbe=NULL;
if(cbn!=NULL) cbe=cbn->this;
PrintCallbackEntry(title, cbe);
}
#ifdef DEBUG
#define DBG_PRINT_CBE(a,b) PrintCallbackEntry(a,b)
#define DBG_PRINT_CBN(a,b) PrintCallbackNode(a,b)
#else
#define DBG_PRINT_CBE(a,b)
#define DBG_PRINT_CBN(a,b)
#endif
static void CleanCallbackEntry(CallbackEntry * cbe)
{
DBG_PRINT_CBE("CleanCallbackEntry", cbe);
if(cbe==NULL) return;
(*(cbe->env))->DeleteGlobalRef(cbe->env, cbe->jobj);
cbe->jobj=0;
if(cbe->methodName!=NULL)
{
free(cbe->methodName);
cbe->methodName=NULL;
}
if(cbe->signature!=NULL)
{
free(cbe->signature);
cbe->signature=NULL;
}
cbe->argListNumber=0;
cbe->arrayLen1=0;
cbe->arrayLen2=0;
cbe->arrayLen3=0;
cbe->arrayLen4=0;
cbe->arrayLen5=0;
cbe->cb_obj=NULL;
cbe->which=0;
cbe->glx=0;
cbe->env=NULL;
}
CallbackNode * LIBAPIENTRY LastCallbackNode()
{
CallbackNode * cbn = pCallbackNodeRoot;
if(cbn==NULL) return NULL;
while(cbn->next!=NULL)
cbn=cbn->next;
return cbn;
}
CallbackNode * LIBAPIENTRY FindNextCallbackNodeOfCbObj(void *cb_obj)
{
CallbackNode * cbn = pCallbackNodeRoot;
while(cbn!=NULL && cbn->this->cb_obj!=cb_obj)
{
cbn=cbn->next;
}
return cbn;
}
CallbackNode * LIBAPIENTRY FindCallbackNode(GLenum which, jlong glx)
{
CallbackNode * cbn = pCallbackNodeRoot;
#ifdef DEBUG
CallbackEntry * cbe = NULL;
printf("FindCallbackNode> which:=%d, glx:=%ld\n",
which, (long)glx);
while(cbn!=NULL)
{
cbe=cbn->this;
printf(" test cbe(%s %s): which:=%d, glx:=%ld\n",
cbe->methodName, cbe->signature,
cbe->which, (long)(cbe->glx));
if(cbe->which==which && cbe->glx==glx)
break;
cbn=cbn->next;
}
#else
while(cbn!=NULL &&
(cbn->this->which!=which || cbn->this->glx!=glx)
)
cbn=cbn->next;
#endif
return cbn;
}
CallbackEntry * LIBAPIENTRY FindCallbackEntry(GLenum which, jlong glx)
{
CallbackNode * cbn = FindCallbackNode(which, glx);
if(cbn==NULL) return NULL;
return cbn->this;
}
void LIBAPIENTRY AddCallbackNode(JNIEnv * env, jobject jobj,
const char *methodName, const char *signature,
int arrayLen1, int arrayLen2, int arrayLen3,
int arrayLen4, int arrayLen5,
void *cb_obj, GLenum which, jlong glx)
{
CallbackNode * cbn = NULL;
CallbackNode * last_cbn = NULL;
CallbackEntry * cbe = NULL;
cbn = FindCallbackNode (which, glx);
if(cbn != NULL)
{
cbe = cbn->this;
CleanCallbackEntry(cbe);
} else {
cbe = calloc(1, sizeof(CallbackEntry));
}
cbe->env=env;
cbe->jobj= (*env)->NewGlobalRef(env, jobj);
if(methodName!=NULL)
{
cbe->methodName=calloc(strlen(methodName)+1, 1);
strcpy(cbe->methodName, methodName);
}
if(signature!=NULL)
{
cbe->signature=calloc(strlen(signature)+1, 1);
strcpy(cbe->signature, signature);
}
cbe->argListNumber= jnitoolsGetArgNumber(env, signature, cbe->methodName);
cbe->arrayLen1=arrayLen1;
cbe->arrayLen2=arrayLen2;
cbe->arrayLen3=arrayLen3;
cbe->arrayLen4=arrayLen4;
cbe->arrayLen5=arrayLen5;
cbe->cb_obj=cb_obj;
cbe->which=which;
cbe->glx=glx;
if(cbn == NULL)
{
cbn = calloc(1, sizeof(CallbackNode));
cbn->this = cbe;
last_cbn = LastCallbackNode();
if(last_cbn==NULL)
pCallbackNodeRoot=cbn;
else {
last_cbn->next=cbn;
cbn->prev=last_cbn;
}
}
DBG_PRINT_CBN("AddCallbackNode", cbn);
}
void LIBAPIENTRY RemoveCallbackNodes(void *cb_obj)
{
CallbackNode * cbn = NULL;
while ( (cbn = FindNextCallbackNodeOfCbObj(cb_obj) ) != NULL )
{
DBG_PRINT_CBN("RemoveCallbackNodes", cbn);
if(cbn->prev!=NULL)
cbn->prev->next=cbn->next;
else
pCallbackNodeRoot=cbn->next;
if(cbn->next!=NULL)
cbn->next->prev=cbn->prev;
CleanCallbackEntry(cbn->this);
free(cbn->this);
free(cbn);
}
}
jlong LIBAPIENTRY GetCurrentGLContext()
{
#ifdef _WIN32_
return (jlong) disp__wglGetCurrentContext();
#else
#ifdef _MAC_OS9_
return (jlong) aglGetCurrentContext();
#else
return (jlong) ((PointerHolder)disp__glXGetCurrentContext());
#endif
#endif
}
|