summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio_quarti@ca.ibm.com>2012-06-22 23:08:47 -0400
committersteve <steve_northover@hotmail.com>2012-06-25 18:18:16 -0400
commitd6734efb26824878c6f9b89e50e87995fc540577 (patch)
treeb83e8aa957a1914be08ba5ff0e74811fa4c48ff2
parentd2bbe0af593cdec5f8615e936375cdcda0ff106f (diff)
downloadeclipse.platform.swt-d6734efb26824878c6f9b89e50e87995fc540577.tar.gz
eclipse.platform.swt-d6734efb26824878c6f9b89e50e87995fc540577.tar.xz
eclipse.platform.swt-d6734efb26824878c6f9b89e50e87995fc540577.zip
adding support to generate structs
-rw-r--r--bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java181
-rw-r--r--bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGeneratorUI.java20
2 files changed, 187 insertions, 14 deletions
diff --git a/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java b/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java
index 06be58d50b..f47fea20b2 100644
--- a/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java
+++ b/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java
@@ -26,6 +26,7 @@ public class MacGenerator {
PrintStream out;
public static boolean BUILD_C_SOURCE = true;
+ public static boolean GENERATE_ALLOC = true;
public MacGenerator() {
}
@@ -122,6 +123,11 @@ public void generate(ProgressMonitor progress) {
progress.setMessage("classes...");
}
generateClasses();
+ if (progress != null) {
+ progress.step();
+ progress.setMessage("structs...");
+ }
+ generateStructs();
if (BUILD_C_SOURCE) {
if (progress != null) {
progress.step();
@@ -184,11 +190,41 @@ String getParamName(Node param, int i) {
return paramName;
}
+void generateFields(String structName, ArrayList fields) {
+ for (Iterator iterator = fields.iterator(); iterator.hasNext();) {
+ Node field = (Node)iterator.next();
+ NamedNodeMap fieldAttributes = field.getAttributes();
+ String fieldName = fieldAttributes.getNamedItem("name").getNodeValue();
+ String type = getJavaType(field), type64 = getJavaType64(field);
+ out("\t");
+ out("public ");
+ out(type);
+ if (!type.equals(type64)) {
+ out(" /*");
+ out(type64);
+ out("*/");
+ }
+ out(" ");
+ out(fieldName);
+ if (isStruct(field)) {
+ out(" = new ");
+ String clazz = fieldAttributes.getNamedItem("declared_type").getNodeValue();
+ out (clazz);
+ out ("()");
+ }
+ out(";");
+ outln();
+ }
+}
+
void generateMethods(String className, ArrayList methods) {
for (Iterator iterator = methods.iterator(); iterator.hasNext();) {
Node method = (Node)iterator.next();
NamedNodeMap mthAttributes = method.getAttributes();
String sel = mthAttributes.getNamedItem("selector").getNodeValue();
+ if ("NSObject".equals(className)) {
+ if ("alloc".equals(sel) || "dealloc".equals(sel)) continue;
+ }
out("public ");
boolean isStatic = isStatic(method);
if (isStatic) out("static ");
@@ -333,6 +369,40 @@ void generateMethods(String className, ArrayList methods) {
}
}
+void generateExtraFields(String className) {
+ /* sizeof field */
+ out("\t");
+ out("public static int sizeof = OS." + className + "_sizeof();");
+ outln();
+ if ("CGSize".equals(className)) {
+ outln();
+ out("\tpublic String toString () {");
+ outln();
+ out("\t\treturn \"CGSize {\" + width + \" \" + height + \"}\";");
+ outln();
+ out("\t}");
+ outln();
+ }
+ if ("CGRect".equals(className)) {
+ outln();
+ out("\tpublic String toString () {");
+ outln();
+ out("\t\treturn \"CGRect {\" + origin.x + \" \" + origin.y + \" \" + size.width + \" \" + size.height + \"}\";");
+ outln();
+ out("\t}");
+ outln();
+ }
+ if ("CGPoint".equals(className)) {
+ outln();
+ out("\tpublic String toString () {");
+ outln();
+ out("\t\treturn \"CGPoint {\" + x + \" \" + y + \"}\";");
+ outln();
+ out("\t}");
+ outln();
+ }
+}
+
void generateExtraMethods(String className) {
/* Empty constructor */
out("public ");
@@ -366,15 +436,17 @@ void generateExtraMethods(String className) {
outln();
/* NSObject helpers */
if (className.equals("NSObject")) {
- out("public NSObject alloc() {");
- outln();
- out("\tthis.id = OS.objc_msgSend(objc_getClass(), OS.sel_alloc);");
- outln();
- out("\treturn this;");
- outln();
- out("}");
- outln();
- outln();
+ if (GENERATE_ALLOC) {
+ out("public NSObject alloc() {");
+ outln();
+ out("\tthis.id = OS.objc_msgSend(objc_getClass(), OS.sel_alloc);");
+ outln();
+ out("\treturn this;");
+ outln();
+ out("}");
+ outln();
+ outln();
+ }
}
/* NSString helpers */
if (className.equals("NSString")) {
@@ -447,6 +519,37 @@ TreeMap getGeneratedClasses() {
return classes;
}
+TreeMap getGeneratedStructs() {
+ TreeMap structs = new TreeMap();
+ for (int x = 0; x < xmls.length; x++) {
+ Document document = documents[x];
+ if (document == null) continue;
+ NodeList list = document.getDocumentElement().getChildNodes();
+ for (int i = 0; i < list.getLength(); i++) {
+ Node node = list.item(i);
+ if ("struct".equals(node.getNodeName()) && getGen(node)) {
+ ArrayList fields;
+ String name = node.getAttributes().getNamedItem("name").getNodeValue();
+ Object[] clazz = (Object[])structs.get(name);
+ if (clazz == null) {
+ fields = new ArrayList();
+ structs.put(name, new Object[]{node, fields});
+ } else {
+ fields = (ArrayList)clazz[1];
+ }
+ NodeList fieldList = node.getChildNodes();
+ for (int j = 0; j < fieldList.getLength(); j++) {
+ Node field = fieldList.item(j);
+ if ("field".equals(field.getNodeName()) && getGen(field)) {
+ fields.add(field);
+ }
+ }
+ }
+ }
+ }
+ return structs;
+}
+
void copyClassMethodsDown(final Map classes) {
ArrayList sortedClasses = Collections.list(Collections.enumeration(classes.values()));
Collections.sort(sortedClasses, new Comparator() {
@@ -540,6 +643,48 @@ void generateClasses() {
}
}
+void generateStructs() {
+ MetaData metaData = new MetaData(mainClassName);
+ TreeMap structs = getGeneratedStructs();
+
+ Set structNames = structs.keySet();
+ for (Iterator iterator = structNames.iterator(); iterator.hasNext();) {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ this.out = new PrintStream(out);
+
+ out(fixDelimiter(metaData.getCopyright()));
+
+ String className = (String) iterator.next();
+ Object[] clazz = (Object[])structs.get(className);
+ Node node = (Node)clazz[0];
+ ArrayList methods = (ArrayList)clazz[1];
+ out("package ");
+ String packageName = getPackageName(mainClassName);
+ out(packageName);
+ out(";");
+ outln();
+ outln();
+ out("public class ");
+ out(className);
+ out(" {");
+ outln();
+ generateFields(className, methods);
+ generateExtraFields(className);
+ out("}");
+ outln();
+
+ String fileName = outputDir + packageName.replace('.', '/') + "/" + className + ".java";
+ try {
+ out.flush();
+ if (out.size() > 0) JNIGenerator.output(out.toByteArray(), fileName);
+ } catch (Exception e) {
+ System.out.println("Problem");
+ e.printStackTrace(System.out);
+ }
+ out = null;
+ }
+}
+
void generateExtraAttributes() {
Document[] documents = getDocuments();
for (int x = 0; x < xmls.length; x++) {
@@ -688,6 +833,10 @@ void saveExtraAttributes(String xmlPath, Document document) {
}
}
+public String getOutputDir() {
+ return outputDir;
+}
+
public void setOutputDir(String dir) {
if (dir != null) {
if (!dir.endsWith("\\") && !dir.endsWith("/") ) {
@@ -739,6 +888,10 @@ Document getDocument(String xmlPath) {
public String[] getExtraAttributeNames(Node node) {
String name = node.getNodeName();
if (name.equals("method")) {
+ NamedNodeMap attribs = node.getAttributes();
+ if (attribs != null && attribs.getNamedItem("variadic") != null) {
+ return new String[]{"swt_gen_super_msgSend", "swt_gen_custom_callback", "swt_variadic_count","swt_variadic_java_types"};
+ }
return new String[]{"swt_gen_super_msgSend", "swt_gen_custom_callback"};
} else if (name.equals("function")) {
NamedNodeMap attribs = node.getAttributes();
@@ -1072,7 +1225,10 @@ void generateSelectorsConst() {
}
}
}
- if (set.size() > 0) set.add("alloc");
+ if (set.size() > 0) {
+ set.add("alloc");
+ set.add("dealloc");
+ }
for (Iterator iterator = set.iterator(); iterator.hasNext();) {
String sel = (String) iterator.next();
String selConst = getSelConst(sel);
@@ -1541,6 +1697,9 @@ String getType(String code, NamedNodeMap attributes, boolean is64) {
if (code.startsWith("{")) {
return attributes.getNamedItem("declared_type").getNodeValue();
}
+ if (code.startsWith("@?")) {
+ return is64 ? "long" : "int";
+ }
return "BAD " + code;
}
@@ -1566,6 +1725,7 @@ String getJNIType(Node node) {
if (code.equals("#")) return "I";
if (code.equals(":")) return "I";
if (code.startsWith("^")) return "I";
+ if (code.startsWith("@?")) return "I";
if (code.startsWith("[")) return "BAD " + code;
if (code.startsWith("{")) {
return "BAD " + code;
@@ -1629,6 +1789,7 @@ String getJavaType(String code, NamedNodeMap attributes, boolean is64) {
if (code.startsWith("{")) {
return attributes.getNamedItem("declared_type").getNodeValue().trim();
}
+ if (code.startsWith("@?")) return is64 ? "long" : "int";
return "BAD " + code;
}
diff --git a/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGeneratorUI.java b/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGeneratorUI.java
index ff491f361c..a6e4772472 100644
--- a/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGeneratorUI.java
+++ b/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGeneratorUI.java
@@ -28,6 +28,7 @@ import org.eclipse.swt.widgets.*;
public class MacGeneratorUI {
MacGenerator gen;
boolean actions = true;
+ public static boolean SHOW_SWT_PREFIX = true;
Tree nodesTree;
Table attribTable;
@@ -106,7 +107,7 @@ public class MacGeneratorUI {
if (!(item.getData() instanceof Node)) return false;
if (column == 0) return false;
String attribName = item.getText();
- return attribName.startsWith("swt_");
+ return attribName.startsWith("swt_") || item.getData("swt_") != null;
}
String getPrettyText(String text) {
@@ -279,6 +280,9 @@ public class MacGeneratorUI {
item.setText(column, value);
Element node = (Element)item.getData();
String name = item.getText();
+ if (!name.startsWith("swt_")) {
+ name = "swt_" + name;
+ }
if (value.length() != 0) {
node.setAttribute(name, value);
} else {
@@ -423,11 +427,14 @@ public class MacGeneratorUI {
}
}
Document[] documents = gen.getDocuments();
- if (node == null && documents.length > 0) node = gen.getDocuments()[0];
+ if (node == null && documents.length > 0) {
+ int index = 0;
+ while (index < documents.length && (node = documents[index]) == null) index++;
+ }
if (flatNodes == null) {
flatNodes = new ArrayList();
for (int i = 0; i < documents.length; i++) {
- addNodes(documents[i], flatNodes);
+ if (documents[i] != null) addNodes(documents[i], flatNodes);
}
}
int index = 0;
@@ -507,7 +514,12 @@ public class MacGeneratorUI {
String[] extraAttribs = gen.getExtraAttributeNames(node);
for (int i = 0; i < extraAttribs.length; i++) {
TableItem attribItem = new TableItem(attribTable, SWT.NONE);
- attribItem.setText(extraAttribs[i]);
+ String attribName = extraAttribs[i];
+ if (!SHOW_SWT_PREFIX && attribName.startsWith("swt_")) {
+ attribName = attribName.substring("swt_".length(), attribName.length());
+ attribItem.setData("swt_", "swt_");
+ }
+ attribItem.setText(attribName);
attribItem.setData(node);
attribItem.setForeground(item.getDisplay().getSystemColor(SWT.COLOR_BLUE));
Node attrib = attributes.getNamedItem(extraAttribs[i]);