Search in sources :

Example 16 with ProjectJdkTable

use of com.intellij.openapi.projectRoots.ProjectJdkTable in project intellij-plugins by JetBrains.

the class FlexSdkUtils method doCreateSdk.

private static Sdk doCreateSdk(final SdkType sdkType, @NotNull final String sdkHomePath) {
    return WriteAction.compute(() -> {
        final ProjectJdkTable projectJdkTable = ProjectJdkTable.getInstance();
        final String sdkName = SdkConfigurationUtil.createUniqueSdkName(sdkType, sdkHomePath, projectJdkTable.getSdksOfType(sdkType));
        final Sdk sdk = new ProjectJdkImpl(sdkName, sdkType, sdkHomePath, "");
        sdkType.setupSdkPaths(sdk);
        projectJdkTable.addJdk(sdk);
        return sdk;
    });
}
Also used : ProjectJdkTable(com.intellij.openapi.projectRoots.ProjectJdkTable) ProjectJdkImpl(com.intellij.openapi.projectRoots.impl.ProjectJdkImpl) Sdk(com.intellij.openapi.projectRoots.Sdk)

Example 17 with ProjectJdkTable

use of com.intellij.openapi.projectRoots.ProjectJdkTable in project intellij-plugins by JetBrains.

the class BndProjectImporter method addEntry.

private void addEntry(ModifiableModuleModel moduleModel, LibraryTable.ModifiableModel libraryModel, ModifiableRootModel rootModel, Container dependency, DependencyScope scope) throws IllegalArgumentException {
    File file = dependency.getFile();
    String bsn = dependency.getBundleSymbolicName();
    String version = dependency.getVersion();
    String path = file.getPath();
    if (path.contains(": ")) {
        throw new IllegalArgumentException("Cannot resolve " + bsn + ":" + version + ": " + path);
    }
    if (JDK_DEPENDENCY.equals(bsn)) {
        String name = BND_LIB_PREFIX + bsn + ":" + version;
        if (FileUtil.isAncestor(myWorkspace.getBase(), file, true)) {
            name += "-" + myProject.getName();
        }
        ProjectJdkTable jdkTable = ProjectJdkTable.getInstance();
        Sdk jdk = jdkTable.findJdk(name);
        if (jdk == null) {
            jdk = jdkTable.createSdk(name, JavaSdk.getInstance());
            SdkModificator jdkModel = jdk.getSdkModificator();
            jdkModel.setHomePath(file.getParent());
            jdkModel.setVersionString(version);
            VirtualFile root = VirtualFileManager.getInstance().findFileByUrl(url(file));
            assert root != null : file + " " + file.exists();
            jdkModel.addRoot(root, OrderRootType.CLASSES);
            VirtualFile srcRoot = VirtualFileManager.getInstance().findFileByUrl(url(file) + SRC_ROOT);
            if (srcRoot != null)
                jdkModel.addRoot(srcRoot, OrderRootType.SOURCES);
            jdkModel.commitChanges();
            jdkTable.addJdk(jdk);
        }
        rootModel.setSdk(jdk);
        return;
    }
    ExportableOrderEntry entry;
    switch(dependency.getType()) {
        case PROJECT:
            {
                String name = dependency.getProject().getName();
                Module module = moduleModel.findModuleByName(name);
                if (module == null) {
                    throw new IllegalArgumentException("Unknown module '" + name + "'");
                }
                entry = (ModuleOrderEntry) ContainerUtil.find(rootModel.getOrderEntries(), e -> e instanceof ModuleOrderEntry && ((ModuleOrderEntry) e).getModule() == module);
                if (entry == null) {
                    entry = rootModel.addModuleOrderEntry(module);
                }
                break;
            }
        case REPO:
            {
                String name = BND_LIB_PREFIX + bsn + ":" + version;
                Library library = libraryModel.getLibraryByName(name);
                if (library == null) {
                    library = libraryModel.createLibrary(name);
                }
                Library.ModifiableModel model = library.getModifiableModel();
                for (String url : model.getUrls(OrderRootType.CLASSES)) model.removeRoot(url, OrderRootType.CLASSES);
                for (String url : model.getUrls(OrderRootType.SOURCES)) model.removeRoot(url, OrderRootType.SOURCES);
                model.addRoot(url(file), OrderRootType.CLASSES);
                String srcRoot = mySourcesMap.get(path);
                if (srcRoot != null) {
                    model.addRoot(url(file) + srcRoot, OrderRootType.SOURCES);
                }
                model.commit();
                entry = rootModel.addLibraryEntry(library);
                break;
            }
        case EXTERNAL:
            {
                Library library = rootModel.getModuleLibraryTable().createLibrary(file.getName());
                Library.ModifiableModel model = library.getModifiableModel();
                model.addRoot(url(file), OrderRootType.CLASSES);
                String srcRoot = mySourcesMap.get(path);
                if (srcRoot != null) {
                    model.addRoot(url(file) + srcRoot, OrderRootType.SOURCES);
                }
                model.commit();
                entry = rootModel.findLibraryOrderEntry(library);
                assert entry != null : library;
                break;
            }
        default:
            throw new IllegalArgumentException("Unknown dependency '" + dependency + "' of type " + dependency.getType());
    }
    entry.setScope(scope);
}
Also used : VirtualFile(com.intellij.openapi.vfs.VirtualFile) FileUtilRt(com.intellij.openapi.util.io.FileUtilRt) OsmorcFacetType(org.osmorc.facet.OsmorcFacetType) CompilerConfiguration(com.intellij.compiler.CompilerConfiguration) VirtualFile(com.intellij.openapi.vfs.VirtualFile) ProjectLibraryTable(com.intellij.openapi.roots.impl.libraries.ProjectLibraryTable) FacetUtil(com.intellij.facet.impl.FacetUtil) Refreshable(aQute.bnd.service.Refreshable) JavaSdk(com.intellij.openapi.projectRoots.JavaSdk) VirtualFileManager(com.intellij.openapi.vfs.VirtualFileManager) Library(com.intellij.openapi.roots.libraries.Library) Task(com.intellij.openapi.progress.Task) OsmorcFacet(org.osmorc.facet.OsmorcFacet) ZipFile(java.util.zip.ZipFile) FileUtil(com.intellij.openapi.util.io.FileUtil) Logger(com.intellij.openapi.diagnostic.Logger) Module(com.intellij.openapi.module.Module) ZipEntry(java.util.zip.ZipEntry) RepositoryPlugin(aQute.bnd.service.RepositoryPlugin) JpsJavaCompilerOptions(org.jetbrains.jps.model.java.compiler.JpsJavaCompilerOptions) LanguageLevel(com.intellij.pom.java.LanguageLevel) StdModuleTypes(com.intellij.openapi.module.StdModuleTypes) ModifiableModelCommitter(com.intellij.openapi.roots.impl.ModifiableModelCommitter) ModifiableModuleModel(com.intellij.openapi.module.ModifiableModuleModel) OutputPathType(org.jetbrains.osgi.jps.model.OutputPathType) NotificationType(com.intellij.notification.NotificationType) Nullable(org.jetbrains.annotations.Nullable) ProgressIndicator(com.intellij.openapi.progress.ProgressIndicator) ProjectJdkTable(com.intellij.openapi.projectRoots.ProjectJdkTable) ApplicationManager(com.intellij.openapi.application.ApplicationManager) NotNull(org.jetbrains.annotations.NotNull) NotificationDisplayType(com.intellij.notification.NotificationDisplayType) java.util(java.util) OsmorcFacetConfiguration(org.osmorc.facet.OsmorcFacetConfiguration) ModuleManager(com.intellij.openapi.module.ModuleManager) ContainerUtil(com.intellij.util.containers.ContainerUtil) Container(aQute.bnd.build.Container) com.intellij.openapi.roots(com.intellij.openapi.roots) Workspace(aQute.bnd.build.Workspace) NotificationGroup(com.intellij.notification.NotificationGroup) ManifestGenerationMode(org.jetbrains.osgi.jps.model.ManifestGenerationMode) OsmorcBundle.message(org.osmorc.i18n.OsmorcBundle.message) Project(aQute.bnd.build.Project) StringUtil(com.intellij.openapi.util.text.StringUtil) JavacConfiguration(com.intellij.compiler.impl.javaCompiler.javac.JavacConfiguration) Key(com.intellij.openapi.util.Key) IOException(java.io.IOException) Sdk(com.intellij.openapi.projectRoots.Sdk) File(java.io.File) Attrs(aQute.bnd.header.Attrs) SdkModificator(com.intellij.openapi.projectRoots.SdkModificator) LibraryTable(com.intellij.openapi.roots.libraries.LibraryTable) VfsUtil(com.intellij.openapi.vfs.VfsUtil) ObjectUtils(com.intellij.util.ObjectUtils) PathUtil(com.intellij.util.PathUtil) ModuleFileType(com.intellij.ide.highlighter.ModuleFileType) Condition(com.intellij.openapi.util.Condition) SdkModificator(com.intellij.openapi.projectRoots.SdkModificator) ProjectJdkTable(com.intellij.openapi.projectRoots.ProjectJdkTable) JavaSdk(com.intellij.openapi.projectRoots.JavaSdk) Sdk(com.intellij.openapi.projectRoots.Sdk) Library(com.intellij.openapi.roots.libraries.Library) Module(com.intellij.openapi.module.Module) VirtualFile(com.intellij.openapi.vfs.VirtualFile) ZipFile(java.util.zip.ZipFile) File(java.io.File)

Aggregations

ProjectJdkTable (com.intellij.openapi.projectRoots.ProjectJdkTable)17 Sdk (com.intellij.openapi.projectRoots.Sdk)17 ProjectJdkImpl (com.intellij.openapi.projectRoots.impl.ProjectJdkImpl)5 Nullable (org.jetbrains.annotations.Nullable)5 SdkModificator (com.intellij.openapi.projectRoots.SdkModificator)4 FlexSdkType2 (com.intellij.lang.javascript.flex.sdk.FlexSdkType2)3 BuildConfigurationNature (com.intellij.flex.model.bc.BuildConfigurationNature)2 Disposable (com.intellij.openapi.Disposable)2 VirtualFile (com.intellij.openapi.vfs.VirtualFile)2 Container (aQute.bnd.build.Container)1 Project (aQute.bnd.build.Project)1 Workspace (aQute.bnd.build.Workspace)1 Attrs (aQute.bnd.header.Attrs)1 Refreshable (aQute.bnd.service.Refreshable)1 RepositoryPlugin (aQute.bnd.service.RepositoryPlugin)1 GoSdkType (com.goide.sdk.GoSdkType)1 CompilerConfiguration (com.intellij.compiler.CompilerConfiguration)1 JavacConfiguration (com.intellij.compiler.impl.javaCompiler.javac.JavacConfiguration)1 FacetUtil (com.intellij.facet.impl.FacetUtil)1 ModuleFileType (com.intellij.ide.highlighter.ModuleFileType)1