#pragma once #include "ProjectionGenerator.h" #include "Import.h" class RustGenerator : public ProjectionGenerator { public: std::string generate(const ASTNode* node) override { return dispatchGenerate(this, node, "// Unknown concept: "); } std::string visitModule(const Module* module) override { std::ostringstream oss; auto imports = module->getChildren("imports"); for (const auto* impNode : imports) { if (impNode->conceptType != "Import") continue; oss << emitImport(static_cast(impNode)) << "\n"; } if (!imports.empty()) oss << "\n"; auto variables = module->getChildren("variables"); for (const auto* var : variables) { oss << visitVariable(static_cast(var)) << "\n"; } if (!variables.empty()) oss << "\n"; auto functions = module->getChildren("functions"); for (size_t i = 0; i < functions.size(); ++i) { if (i > 0) oss << "\n"; oss << visitFunction(static_cast(functions[i])); } return oss.str(); } std::string visitFunction(const Function* function) override { std::ostringstream oss; emitAnnotations(oss, function->getChildren("annotations"), ""); std::string name = function->name; std::string implReceiver; auto pos = name.find('.'); if (pos != std::string::npos && pos > 0 && pos + 1 < name.size()) { implReceiver = name.substr(0, pos); name = name.substr(pos + 1); } if (!implReceiver.empty()) { oss << "impl " << implReceiver << " {\n"; oss << " "; } oss << "fn " << name << "("; emitParameters(oss, function->getChildren("parameters")); oss << ")"; auto retType = function->getChild("returnType"); if (retType) { oss << " -> " << generate(retType); } oss << " {\n"; emitBody(oss, function->getChildren("body"), implReceiver.empty() ? " " : " "); oss << (implReceiver.empty() ? "}" : " }\n}") << "\n"; return oss.str(); } std::string visitVariable(const Variable* variable) override { std::ostringstream oss; emitAnnotations(oss, variable->getChildren("annotations"), ""); std::string typeStr; auto type = variable->getChild("type"); if (type) typeStr = generate(type); oss << "let " << variable->name; if (!typeStr.empty()) { oss << ": " << typeStr; } auto initializer = variable->getChild("initializer"); if (initializer) { oss << " = " << generate(initializer); } oss << ";"; return oss.str(); } std::string visitParameter(const Parameter* parameter) override { std::ostringstream oss; oss << parameter->name; auto type = parameter->getChild("type"); if (type) { oss << ": " << generate(type); } auto defaultValue = parameter->getChild("defaultValue"); if (defaultValue) { oss << " = " << generate(defaultValue); } return oss.str(); } std::string visitAssignment(const Assignment* assignment) override { std::ostringstream oss; auto target = assignment->getChild("target"); auto value = assignment->getChild("value"); if (target) { oss << generate(target); } else { oss << "/* missing target */"; } oss << " = "; if (value) { oss << generate(value); } else { oss << "()"; } oss << ";"; return oss.str(); } std::string visitReturn(const Return* ret) override { std::ostringstream oss; oss << "return"; auto value = ret->getChild("value"); if (value) { oss << " " << generate(value); } oss << ";"; return oss.str(); } std::string visitBinaryOperation(const BinaryOperation* binOp) override { std::ostringstream oss; auto left = binOp->getChild("left"); auto right = binOp->getChild("right"); if (left) { oss << generate(left); } else { oss << "/* missing left */"; } oss << " " << binOp->op << " "; if (right) { oss << generate(right); } else { oss << "/* missing right */"; } return oss.str(); } std::string visitVariableReference(const VariableReference* varRef) override { return varRef->variableName; } std::string visitIntegerLiteral(const IntegerLiteral* lit) override { return std::to_string(lit->value); } std::string visitFloatLiteral(const FloatLiteral* lit) override { return lit->value; } std::string visitStringLiteral(const StringLiteral* lit) override { if (isQuotedLiteral(lit->value)) return lit->value; return "\"" + lit->value + "\""; } std::string visitBooleanLiteral(const BooleanLiteral* lit) override { return lit->value ? "true" : "false"; } std::string visitNullLiteral(const NullLiteral*) override { return "()"; } std::string visitIfStatement(const IfStatement* stmt) override { std::ostringstream oss; auto condition = stmt->getChild("condition"); auto thenBranch = stmt->getChildren("thenBranch"); auto elseBranch = stmt->getChildren("elseBranch"); oss << "if "; if (condition) { oss << generate(condition); } else { oss << "true"; } oss << " {\n"; emitBody(oss, thenBranch, " "); oss << "}"; if (!elseBranch.empty()) { oss << " else {\n"; emitBody(oss, elseBranch, " "); oss << "}"; } return oss.str(); } std::string visitWhileLoop(const WhileLoop* loop) override { std::ostringstream oss; auto condition = loop->getChild("condition"); auto body = loop->getChildren("body"); oss << "while "; if (condition) { oss << generate(condition); } else { oss << "true"; } oss << " {\n"; emitBody(oss, body, " "); oss << "}"; return oss.str(); } std::string visitForLoop(const ForLoop* loop) override { std::ostringstream oss; auto iterable = loop->getChild("iterable"); auto body = loop->getChildren("body"); std::string iterName = loop->iteratorName.empty() ? "item" : loop->iteratorName; oss << "for " << iterName << " in "; if (iterable) { oss << generate(iterable); } else { oss << "std::iter::empty()"; } oss << " {\n"; emitBody(oss, body, " "); oss << "}"; return oss.str(); } std::string visitExpressionStatement(const ExpressionStatement* stmt) override { std::ostringstream oss; auto expr = stmt->getChild("expression"); if (expr) { oss << generate(expr); } oss << ";"; return oss.str(); } std::string visitUnaryOperation(const UnaryOperation* unOp) override { std::ostringstream oss; std::string op = unOp->op; bool wordOp = !op.empty() && std::isalpha(static_cast(op[0])); oss << op; if (wordOp) oss << " "; auto operand = unOp->getChild("operand"); if (operand) { oss << generate(operand); } else { oss << "()"; } return oss.str(); } std::string visitFunctionCall(const FunctionCall* call) override { std::ostringstream oss; oss << call->functionName << "("; auto arguments = call->getChildren("arguments"); for (size_t i = 0; i < arguments.size(); ++i) { if (i > 0) oss << ", "; oss << generate(arguments[i]); } oss << ")"; return oss.str(); } std::string visitBlock(const Block* block) override { std::ostringstream oss; auto statements = block->getChildren("statements"); oss << "{\n"; emitBody(oss, statements, " "); oss << "}"; return oss.str(); } std::string visitListLiteral(const ListLiteral* lit) override { std::ostringstream oss; oss << "vec!["; auto elements = lit->getChildren("elements"); for (size_t i = 0; i < elements.size(); ++i) { if (i > 0) oss << ", "; oss << generate(elements[i]); } oss << "]"; return oss.str(); } std::string visitIndexAccess(const IndexAccess* access) override { std::ostringstream oss; auto target = access->getChild("target"); auto index = access->getChild("index"); if (target) { oss << generate(target); } else { oss << "/* missing target */"; } oss << "["; if (index) { oss << generate(index); } else { oss << "0"; } oss << "]"; return oss.str(); } std::string visitMemberAccess(const MemberAccess* access) override { std::ostringstream oss; auto target = access->getChild("target"); if (target) { oss << generate(target); } else { oss << "/* missing target */"; } oss << "." << access->memberName; return oss.str(); } std::string visitPrimitiveType(const PrimitiveType* type) override { std::string kind = type->kind; if (kind == "int") return "i32"; if (kind == "long") return "i64"; if (kind == "short") return "i16"; if (kind == "byte") return "u8"; if (kind == "float") return "f32"; if (kind == "double") return "f64"; if (kind == "string") return "String"; if (kind == "bool") return "bool"; if (kind == "char") return "char"; if (kind == "void") return "()"; return kind; } std::string visitListType(const ListType* type) override { std::ostringstream oss; oss << "Vec<"; auto elementType = type->getChild("elementType"); if (elementType) { oss << generate(elementType); } else { oss << "()"; } oss << ">"; return oss.str(); } std::string visitSetType(const SetType* type) override { std::ostringstream oss; oss << "std::collections::HashSet<"; auto elementType = type->getChild("elementType"); if (elementType) { oss << generate(elementType); } else { oss << "()"; } oss << ">"; return oss.str(); } std::string visitMapType(const MapType* type) override { std::ostringstream oss; oss << "std::collections::HashMap<"; auto keyType = type->getChild("keyType"); auto valueType = type->getChild("valueType"); if (keyType) { oss << generate(keyType); } else { oss << "()"; } oss << ", "; if (valueType) { oss << generate(valueType); } else { oss << "()"; } oss << ">"; return oss.str(); } std::string visitTupleType(const TupleType* type) override { std::ostringstream oss; oss << "("; auto elementTypes = type->getChildren("elementTypes"); for (size_t i = 0; i < elementTypes.size(); ++i) { if (i > 0) oss << ", "; oss << generate(elementTypes[i]); } if (elementTypes.size() == 1) oss << ","; oss << ")"; return oss.str(); } std::string visitArrayType(const ArrayType* type) override { std::ostringstream oss; auto elementType = type->getChild("elementType"); oss << "["; if (elementType) { oss << generate(elementType); } else { oss << "()"; } oss << "; 0]"; return oss.str(); } std::string visitOptionalType(const OptionalType* type) override { std::ostringstream oss; oss << "Option<"; auto inner = type->getChild("innerType"); if (inner) { oss << generate(inner); } else { oss << "()"; } oss << ">"; return oss.str(); } std::string visitCustomType(const CustomType* type) override { return type->typeName; } std::string visitDerefStrategy(const DerefStrategy* annotation) override { return "// @deref(" + annotation->strategy + ")"; } std::string visitOptimizationLock(const OptimizationLock* annotation) override { return "// @lock(" + annotation->lockedBy + ") - " + annotation->lockReason; } std::string visitLangSpecific(const LangSpecific* annotation) override { return "// @lang_specific(" + annotation->language + ", " + annotation->idiomType + ")"; } std::string visitDeallocateAnnotation(const DeallocateAnnotation* annotation) override { return "// @dealloc(" + annotation->strategy + ")"; } std::string visitLifetimeAnnotation(const LifetimeAnnotation* annotation) override { if (annotation->strategy == "RAII") { return "// @lifetime(RAII) - Drop/RAII"; } return "// @lifetime(" + annotation->strategy + ")"; } std::string visitReclaimAnnotation(const ReclaimAnnotation* annotation) override { return "// @reclaim(" + annotation->strategy + ")"; } std::string visitOwnerAnnotation(const OwnerAnnotation* annotation) override { if (annotation->strategy == "Shared_ARC") { return "// @owner(Shared_ARC) - Arc"; } if (annotation->strategy == "Single") { return "// @owner(Single) - owned values"; } return "// @owner(" + annotation->strategy + ")"; } std::string visitAllocateAnnotation(const AllocateAnnotation* annotation) override { return "// @allocate(" + annotation->strategy + ")"; } std::string visitHotColdAnnotation(const HotColdAnnotation* annotation) override { return "// @" + annotation->hint; } std::string visitInlineAnnotation(const InlineAnnotation* annotation) override { return "// @inline(" + annotation->mode + ")"; } std::string visitPureAnnotation(const PureAnnotation*) override { return "// @pure"; } std::string visitConstExprAnnotation(const ConstExprAnnotation*) override { return "// @constexpr"; } private: static std::string emitImport(const Import* imp) { std::string moduleName = imp->moduleName.empty() ? "crate" : imp->moduleName; if (imp->importKind == "require") { return "// require " + moduleName; } return "use " + moduleName + ";"; } static void emitAnnotations(std::ostringstream& oss, const std::vector& annotations, const std::string& indent) { for (const auto* annotation : annotations) { std::string code; if (annotation) { RustGenerator gen; code = gen.generate(annotation); } if (!code.empty()) { oss << indent << code << "\n"; } } } void emitParameters(std::ostringstream& oss, const std::vector& params) { for (size_t i = 0; i < params.size(); ++i) { if (i > 0) oss << ", "; oss << visitParameter(static_cast(params[i])); } } void emitBody(std::ostringstream& oss, const std::vector& body, const std::string& indent) { if (body.empty()) { oss << indent << "// TODO: implement\n"; return; } for (const auto* stmt : body) { std::string stmtCode = generate(stmt); appendIndented(oss, stmtCode, indent); oss << "\n"; } } static void appendIndented(std::ostringstream& oss, const std::string& code, const std::string& indent) { size_t pos = 0; while (pos < code.length()) { size_t newlinePos = code.find('\n', pos); if (newlinePos == std::string::npos) { oss << indent << code.substr(pos); break; } oss << indent << code.substr(pos, newlinePos - pos) << "\n"; pos = newlinePos + 1; if (pos >= code.length()) break; } } static bool isQuotedLiteral(const std::string& text) { if (text.size() < 2) return false; char first = text.front(); char last = text.back(); if ((first == '\'' && last == '\'') || (first == '"' && last == '"')) { return true; } return false; } };