0
0
mirror of https://github.com/DMaroo/GhidRust.git synced 2025-06-15 13:55:57 +02:00

Update the comment

This commit is contained in:
Dhruv Maroo
2023-06-26 21:58:57 +08:00
parent 54611042f1
commit c98c95b89a

@ -1,18 +1,32 @@
package ghidrust.decompiler.codegen.rust;
import ghidra.app.decompiler.ClangNode;
import ghidra.app.decompiler.ClangToken;
import ghidra.app.decompiler.ClangBreak;
import ghidra.app.decompiler.ClangCommentToken;
import ghidra.app.decompiler.ClangFieldToken;
import ghidra.app.decompiler.ClangFuncNameToken;
import ghidra.app.decompiler.ClangLabelToken;
public class RustVisitor {
public String visit(ClangNode cn) {
/* This part is very ugly, but we don't have open classes
* do we can't define new virtual methods, hence the only
* way to dispatch is to check the node's type dynamically
*/
/* This part is very ugly, but we don't have open classes so we can't
* define new virtual methods in the tokens, hence the only reasonable
* way to dispatch is to check the node's type dynamically */
if (cn instanceof ClangBreak) {
return "break;";
} else {
if (cn instanceof ClangToken) {
ClangToken ct = (ClangToken) cn;
if (cn instanceof ClangBreak) {
return ClangBreakVisitor((ClangBreak) ct);
} else if (cn instanceof ClangCommentToken) {
return ClangCommentTokenVisitor((ClangCommentToken) ct);
} else if (ct instanceof ClangLabelToken) {
return ClangLabelTokenVisitor((ClangLabelToken) ct);
}
else {
return DummyVisitor(ct);
}
} else {
/* Unimplemented */
StringBuilder sb = new StringBuilder("unimplemented {");
for (int i = 0; i < cn.numChildren(); i++) {
@ -20,6 +34,22 @@ public class RustVisitor {
}
sb.append(" }");
return sb.toString();
}
}
}
private String ClangLabelTokenVisitor(ClangLabelToken clt) {
}
private String DummyVisitor(ClangToken cn) {
return cn.getText();
}
private String ClangBreakVisitor(ClangBreak cb) {
return "break;";
}
private String ClangCommentTokenVisitor(ClangCommentToken cct) {
return "/* " + cct.getText() + " */";
}
}