blob: f92836c578b9ba87c78d8b73faeccc0e322d7959 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2013 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.tools.internal;
import java.lang.reflect.Modifier;
public class ConstantsGenerator extends JNIGenerator {
@Override
public void generate(JNIClass clazz) {
JNIField[] fields = clazz.getDeclaredFields();
generate(fields);
}
public void generate(JNIField[] fields) {
sort(fields);
outputln("int main() {");
for (JNIField field : fields) {
if ((field.getModifiers() & Modifier.FINAL) == 0) continue;
generate(field);
}
outputln("}");
}
public void generate(JNIField field) {
JNIType type = field.getType();
output("\tprintf(\"public static final ");
output(field.getType().getTypeSignature3());
output(" ");
output(field.getName());
output(" = ");
if (type.isType("java.lang.String") || type.isType("[B")) output("\"%s\"");
else output("0x%x");
output(";\\n\", ");
output(field.getName());
outputln(");");
}
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Usage: java ConstantsGenerator <className1> <className2>");
return;
}
try {
ConstantsGenerator gen = new ConstantsGenerator();
for (String clazzName : args) {
Class<?> clazz = Class.forName(clazzName);
gen.generate(new ReflectClass(clazz));
}
} catch (Exception e) {
System.out.println("Problem");
e.printStackTrace(System.out);
}
}
}