gpt4 book ai didi

java - 引用xText中Java项目的源代码

转载 作者:行者123 更新时间:2023-12-02 05:51:57 25 4
gpt4 key购买 nike

我正在 xText 中创建 DSL,用于对应用程序的功能行为进行建模。我的目标是将资源需求(例如 CPU 周期数、硬盘上的写入操作)与我想要使用 DSL 建模的功能行为结合起来。 DSL 是使用 Eclipse IDE 用 xText 编写的。包含注释的 DSL 语法可以在下面找到。

目前,它是一个非常简单的 DSL 来建模功能行为;组合 if/else 和 for 语句并向其中添加库函数。后一个术语是我自己想出来的;它用于指代功能行为的基本步骤的操作(例如登录、加密、显示;您可以将它们视为编程语言中的方法)。现在我想通过能够引用 Java 项目源代码的选项来扩展我的 DSL。我创建了一个小型 Java 程序,它类似于带有登录屏幕和创建帐户屏幕的基本程序(请参见下面的类图)。为了使用 DSL 对该程序的功能行为进行建模,我希望能够引用 Java 程序源代码的某些细节,以便我可以直接从源代码中提取这些细节并在 DSL 中使用它。例如;假设我想引用Java程序中使用的某些方法。现在,我的 DSL 中有简单的枚举“libraryFunctionsEnum”,但如果我能以某种方式直接引用 Java 程序源代码中使用的方法,那就太好了(这样当我编译 DSL 并使用它时,xText编辑器自动提供我可以引用的可用方法列表)。

我尝试使用ecore模型来转换我的Java项目的类图并将它们集成到xText中,但我感觉我有点不知道该怎么做。我还研究了 xBase 和 xTend(两种旨在使 xText 与 Java 更具互操作性的语言),但到目前为止我发现它们更专注于从 xText 模型自动生成 Java 源代码。我想以相反的方式来做(引用外部项目的 Java 源代码,以便我可以在我的 DSL 中使用这些引用)。我不知道我上面提到的方法(ecore、xBase、xTend)是否是实现我想要的正确方法。如果您有更好的想法或解释,那么我很高兴听到!

顺便说一句,我对 xText 和 DSL 建模/DSL 开发还是新手。我可能忘记了一些重要的细节/解释。如果您错过了什么,请告诉我。

grammar org.xtext.example.mydsl.FinalDsl with org.eclipse.xtext.common.Terminals

generate finalDsl "http://www.xtext.org/example/mydsl/FinalDsl"

Model:
'functionName' name = STRING
functions += FunctionElements*
;

// Function elements of which the model exists. The model can contain
// library functions, for loops, and if/else statements.
FunctionElements:
(
functions += libraryFunctionsEnum |
forLoops += ForLoops |
ifElseStatements += IfElseStatements
)
;

// IfElse Statements requiring if statements and optionally followed by
// one else statement.
IfElseStatements:
ifStatements += IfStatements
(elseStatement = ElseStatement)?
;

// If statements requiring conditions and optionally followed by
// library functions or for loops.
IfStatements:
'if'
conditions = Conditions
(ifFunctions += libraryFunctionsEnum | forLoops += ForLoops)
;

// Else statement requiring one or multiple library functions.
ElseStatement:
'else' elseFunctions += libraryFunctionsEnum
;

// For loops requiring one condition and followed by zero or more
// library functions
ForLoops:
'for'
conditions = Conditions
libraryFunctions += libraryFunctionsEnum*

;

//*Eventually filled with details from class diagram, but for now we manually fill it for the sake of testing.
enum libraryFunctionsEnum:
createAccount='createInstance'|
login='login'|
hasCode= 'encrypt'|
display='display'
;



Conditions:
STRING
operator=logicalOperators
STRING
;

enum logicalOperators:
greaterThan='>'|
smallerThan='<'|
greaterOrEqualThan='=>'|
smallerOrEqualThan='<='|
equalTo='=='
;

Java类图:

Java Class Diagram

最佳答案

我认为你想要实现的目标并不容易。尽管如此,还是有一些想法:

  • 您的“libraryFunctions”可以链接到通过 Java Reflection API 获取的 Java 元素。我想您会以某种方式导入一些“.java”或“.class”文件,并通过反射引用其方法或类对象。
  • 相反,也许有可能,但我真的不确定,引用 Eclipse JDT 工具提供的元素,这样您就可以引用 Java 源文件中的元素并轻松链接到它(例如,在按住 ctrl + 左键单击即可)。或者您可能必须了解如何从通过 Reflection API 检索的元素中链接到 Java 源代码(如果可能的话)。

关于java - 引用xText中Java项目的源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56041573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com