我正在为类似于Java的自定义语言创建一个Eclipse插件。目前我制作了一个编译器插件(与eclipse.jdt.core相同),我从中创建了jar文件。我还为我的项目创建了用该语言编写的自定义属性。有没有办法像Java项目一样自动构建这个项目?我想以某种方式将我的编译器插件与我的项目类型相关联。
通过添加此编译器插件,我实现了代码完成,语法突出显示,我可以编译项目,但我似乎无法找到使其自动编译的选项。通过自动编译我的意思是每当文件被更改时,它会将其重新编译为bin目录中的.class文件。
答案 0 :(得分:1)
使用org.eclipse.core.resources.builders
扩展点定义增量构建器。当Eclipse认为需要构建项目时,例如当资源发生变化时,将调用构建器。这是JDT构建器声明:
<extension
point="org.eclipse.core.resources.builders"
id="javabuilder"
name="%javaBuilderName">
<builder>
<run class="org.eclipse.jdt.internal.core.builder.JavaBuilder">
</run>
<dynamicReference class="org.eclipse.jdt.internal.core.DynamicProjectReferences"/>
</builder>
</extension>
构建器代码扩展IncrementalProjectBuilder
,大致如下:
public class BuilderExample extends IncrementalProjectBuilder
{
IProject[] build(int kind, Map args, IProgressMonitor monitor)
throws CoreException
{
// add your build logic here
return null;
}
protected void startupOnInitialize()
{
// add builder init logic here
}
protected void clean(IProgressMonitor monitor)
{
// add builder clean logic here
}
}
每个项目都有一个与之关联的构建器列表(存储在.project
文件中)。您可以使用IProjectDescription
setBuildSpec
调用添加构建器。这通常在向项目添加性质时完成。类似的东西:
String builderID = ... your builder id
IProject project = ... project
IProjectDescription description = project.getDescription();
ICommand[] oldBuildSpec = description.getBuildSpec();
// TODO check not already present
ICommand newCommand = description.newCommand();
newCommand.setBuilderName(builderID);
// Add a API build spec after all existing builders
ICommand[] newCommands = new ICommand[length + 1];
System.arraycopy(oldBuildSpec, 0, newCommands, 0, length);
newCommands[length] = newCommand;
// Commit the spec change into the project
description.setBuildSpec(newCommands);
project.setDescription(description, null);
另请参阅Eclipse帮助中的Incremental Builder。