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
|
package com.sun.gluegen;
import com.sun.gluegen.runtime.BufferFactory;
import com.sun.gluegen.runtime.PointerBuffer;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.URISyntaxException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.tools.ant.DefaultLogger;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.ProjectHelper;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import static java.lang.System.*;
/**
* @author Michael Bien
*/
public class GlueGenTest {
private static final Project project = new Project();
private static String gluegenRoot;
private static String path;
private static String output;
@BeforeClass
public static void setUpTest() throws Exception {
out.println("System info: ");
out.println("OS: " + System.getProperty("os.name"));
out.println("VM: " + System.getProperty("java.vm.name"));
// setup paths
try {
File executionRoot = new File(GlueGenTest.class.getProtectionDomain().getCodeSource().getLocation().toURI());
System.out.println("execution root: " + executionRoot);
gluegenRoot = executionRoot.getParentFile().getParentFile().getParentFile().getParentFile().toString();
System.out.println("gluegen project root: " + gluegenRoot);
} catch (URISyntaxException ex) {
Logger.getLogger(GlueGenTest.class.getName()).log(Level.SEVERE, "can not determine gluegen root", ex);
Assert.fail();
}
path = gluegenRoot + "/test/junit/com/sun/gluegen";
output = gluegenRoot + "/build/test";
//setup ant build file
project.setBaseDir(new File(gluegenRoot));
DefaultLogger logger = new DefaultLogger();
logger.setErrorPrintStream(err);
logger.setOutputPrintStream(out);
logger.setMessageOutputLevel(Project.MSG_INFO);
project.addBuildListener(logger);
project.init();
File buildFile = new File(path, "build.xml");
ProjectHelper.configureProject(project, buildFile);
}
@Test
public void generateBindingTest() {
out.println("path: "+path);
out.println("output: "+output);
String name = "test";
GlueGen.main(
new String[] {
"-I"+path,
"-O"+output+"/gensrc",
// "-Ecom.sun.gluegen.DebugEmitter",
"-C"+path+"/"+name+".cfg",
path+"/"+name+".h"
}
);
}
/* yeah, java 6 has even a compiler api...
@Test
public void compileJavaTest() throws IOException {
out.println("compiling generated files...");
String source = output+"/gensrc/java/test/BindingTest.java";
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
DiagnosticCollector<JavaFileObject> collector = new DiagnosticCollector<JavaFileObject>();
StandardJavaFileManager fileManager = compiler.getStandardFileManager(collector, null, null);
Iterable<? extends JavaFileObject> fileObj = fileManager.getJavaFileObjects(source);
compiler.getTask( new OutputStreamWriter(out),
fileManager,
collector,
Arrays.asList("-d",output+"/build/java","-verbose"),
null,
fileObj ).call();
List<Diagnostic<? extends JavaFileObject>> list = collector.getDiagnostics();
if(!list.isEmpty()) {
for (Diagnostic<? extends JavaFileObject> d : list) {
out.println("Error on line "+ d.getLineNumber());
out.println("Compiler Message:\n"+d.getMessage(Locale.ENGLISH));
}
Assert.fail("compilation test failed");
}
fileManager.close();
out.println("done");
}
*/
/*
* fails when ant script fails (which is a good thing).
* executeTarget throws RuntimeException on failure
*/
@Test
public void compileJavaTest() {
project.executeTarget("compile.java");
}
/*
* fails when ant script fails (which is a good thing)
* executeTarget throws RuntimeException on failure
*/
@Test
public void compileNativesTest() {
project.executeTarget("compile.native");
}
@Test
public void bindingTest() throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, ClassNotFoundException, InstantiationException {
String nativesPath = output + "/build/natives";
System.load(nativesPath + "/libgluegen-rt.so");
System.load(nativesPath + "/librofl.so");
Object bindingTest = Class.forName("test.BindingTest").newInstance();
// test values
ByteBuffer dbb = BufferFactory.newDirectByteBuffer(32);
ByteBuffer bb = ByteBuffer.allocate(32).order(ByteOrder.nativeOrder());
PointerBuffer dpb = PointerBuffer.allocateDirect(32);
PointerBuffer pb = PointerBuffer.allocate(32);
long[] array = new long[] {1,2,3,4,5,6,7,8,9};
int offset = 0;
long id = 42;
// invoke everything public
Method[] methods = bindingTest.getClass().getDeclaredMethods();
for (Method method : methods) {
// prepare method parameters
Class<?>[] paramTypes = method.getParameterTypes();
Object[] paramInstances = new Object[paramTypes.length];
for (int i = 0; i < paramTypes.length; i++) {
Class<?> paramType = paramTypes[i];
if(paramType.isInstance(dbb)) {
paramInstances[i] = dbb;
}else if(paramType.isInstance(bb)) {
paramInstances[i] = bb;
}else if(paramType.isInstance(dpb)) {
paramInstances[i] = dpb;
}else if(paramType.isInstance(pb)) {
paramInstances[i] = pb;
}else if(paramType.isPrimitive()) { // TODO primitive types
paramInstances[i] = offset;
}else if(paramType.isArray()) { // TODO array types
paramInstances[i] = array;
}
}
out.println("invoking: "+method);
out.println("with params: ");
for (Object param : paramInstances)
out.print(param+", ");
out.println();
// TODO fix Exception: ...Caused by: java.lang.UnsatisfiedLinkError: test.BindingTest.arrayTest0(JLjava/lang/Object;I)I
Object result = method.invoke(bindingTest, paramInstances);
out.println("result: "+result);
out.println("success");
}
}
}
|