-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Auto create Quarkus run config while importing project
Fixes #1233 Signed-off-by: azerr <[email protected]>
- Loading branch information
1 parent
95f8798
commit 5a3d283
Showing
3 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
...va/com/redhat/devtools/intellij/quarkus/run/AutoCreateQuarkusRunConfigurationManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2023 Red Hat Inc. and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 | ||
* which is available at https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 | ||
* | ||
* Contributors: | ||
* Red Hat Inc. - initial API and implementation | ||
*******************************************************************************/ | ||
package com.redhat.devtools.intellij.quarkus.run; | ||
|
||
import com.intellij.execution.RunManager; | ||
import com.intellij.execution.RunnerAndConfigurationSettings; | ||
import com.intellij.openapi.Disposable; | ||
import com.intellij.openapi.components.ServiceManager; | ||
import com.intellij.openapi.module.Module; | ||
import com.intellij.openapi.project.Project; | ||
import com.intellij.util.messages.MessageBusConnection; | ||
import com.redhat.devtools.intellij.lsp4mp4ij.classpath.ClasspathResourceChangedManager; | ||
import com.redhat.microprofile.psi.quarkus.PsiQuarkusUtils; | ||
import org.jetbrains.annotations.NotNull; | ||
import org.jetbrains.idea.maven.project.MavenImportListener; | ||
import org.jetbrains.idea.maven.project.MavenProject; | ||
|
||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
public class AutoCreateQuarkusRunConfigurationManager implements Disposable { | ||
|
||
public static AutoCreateQuarkusRunConfigurationManager getInstance(Project project) { | ||
return ServiceManager.getService(project, AutoCreateQuarkusRunConfigurationManager.class); | ||
} | ||
|
||
private final Project project; | ||
private final MessageBusConnection projectConnection; | ||
|
||
public AutoCreateQuarkusRunConfigurationManager(Project project) { | ||
this.project = project; | ||
projectConnection = project.getMessageBus().connect(); | ||
projectConnection.subscribe(MavenImportListener.TOPIC, new MavenImportListener() { | ||
@Override | ||
public void importFinished(@NotNull Collection<MavenProject> importedProjects, @NotNull List<Module> newModules) { | ||
// TODO manage a settings to auto create Quarkus run config | ||
for (Module module : newModules) { | ||
if (PsiQuarkusUtils.isQuarkusProject(module)) { | ||
Project project = module.getProject(); | ||
// Find existing Quarkus run configuration | ||
RunnerAndConfigurationSettings quarkusSettings = null; | ||
List<RunnerAndConfigurationSettings> list = RunManager.getInstance(project).getConfigurationSettingsList(QuarkusRunConfigurationType.class); | ||
if (!list.isEmpty()) { | ||
for (RunnerAndConfigurationSettings settings : list) { | ||
QuarkusRunConfiguration configuration = (QuarkusRunConfiguration) settings.getConfiguration(); | ||
if (module.equals(configuration.getModule())) { | ||
quarkusSettings = settings; | ||
break; | ||
} | ||
} | ||
} | ||
if (quarkusSettings == null) { | ||
// No Quarkus run configuration for the module, create it and save it in the .idea/workspace.xml file | ||
quarkusSettings = RunManager.getInstance(project).createConfiguration(module.getName(), QuarkusRunConfigurationType.class); | ||
((QuarkusRunConfiguration) quarkusSettings.getConfiguration()).setModule(module); | ||
quarkusSettings.storeInLocalWorkspace(); | ||
} | ||
} | ||
} | ||
} | ||
}); | ||
} | ||
|
||
@Override | ||
public void dispose() { | ||
projectConnection.disconnect(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters