Search in sources :

Example 1 with Library

use of org.gradle.plugins.ide.eclipse.model.Library in project gradle by gradle.

the class EclipseDependenciesCreator method createLibraryEntry.

private static AbstractLibrary createLibraryEntry(File binary, File source, File javadoc, EclipseClasspath classpath, ModuleVersionIdentifier id) {
    FileReferenceFactory referenceFactory = classpath.getFileReferenceFactory();
    FileReference binaryRef = referenceFactory.fromFile(binary);
    FileReference sourceRef = referenceFactory.fromFile(source);
    FileReference javadocRef = referenceFactory.fromFile(javadoc);
    final AbstractLibrary out = binaryRef.isRelativeToPathVariable() ? new Variable(binaryRef) : new Library(binaryRef);
    out.setJavadocPath(javadocRef);
    out.setSourcePath(sourceRef);
    out.setExported(false);
    out.setModuleVersion(id);
    return out;
}
Also used : Variable(org.gradle.plugins.ide.eclipse.model.Variable) AbstractLibrary(org.gradle.plugins.ide.eclipse.model.AbstractLibrary) Library(org.gradle.plugins.ide.eclipse.model.Library) AbstractLibrary(org.gradle.plugins.ide.eclipse.model.AbstractLibrary) FileReference(org.gradle.plugins.ide.eclipse.model.FileReference)

Example 2 with Library

use of org.gradle.plugins.ide.eclipse.model.Library in project gradle by gradle.

the class ClassFoldersCreator method create.

public List<Library> create(EclipseClasspath classpath) {
    List<Library> out = new LinkedList<Library>();
    FileReferenceFactory fileReferenceFactory = classpath.getFileReferenceFactory();
    if (classpath.getClassFolders() != null) {
        for (File folder : classpath.getClassFolders()) {
            Library library = new Library(fileReferenceFactory.fromFile(folder));
            library.setExported(true);
            out.add(library);
        }
    }
    return out;
}
Also used : Library(org.gradle.plugins.ide.eclipse.model.Library) File(java.io.File) LinkedList(java.util.LinkedList)

Example 3 with Library

use of org.gradle.plugins.ide.eclipse.model.Library in project gradle by gradle.

the class EclipseModelBuilder method gatherClasspathElements.

public static ClasspathElements gatherClasspathElements(Map<String, Boolean> projectOpenStatus, EclipseClasspath eclipseClasspath, boolean projectDependenciesOnly) {
    ClasspathElements classpathElements = new ClasspathElements();
    eclipseClasspath.setProjectDependenciesOnly(projectDependenciesOnly);
    List<ClasspathEntry> classpathEntries;
    if (eclipseClasspath.getFile() == null) {
        classpathEntries = eclipseClasspath.resolveDependencies();
    } else {
        Classpath classpath = new Classpath(eclipseClasspath.getFileReferenceFactory());
        eclipseClasspath.mergeXmlClasspath(classpath);
        classpathEntries = classpath.getEntries();
    }
    final Map<String, DefaultEclipseProjectDependency> projectDependencyMap = new HashMap<>();
    for (ClasspathEntry entry : classpathEntries) {
        // and it would probably push us to add support in the tooling api to retrieve the variable mappings.
        if (entry instanceof Library) {
            AbstractLibrary library = (AbstractLibrary) entry;
            final File file = library.getLibrary().getFile();
            final File source = library.getSourcePath() == null ? null : library.getSourcePath().getFile();
            final File javadoc = library.getJavadocPath() == null ? null : library.getJavadocPath().getFile();
            DefaultEclipseExternalDependency dependency;
            if (entry instanceof UnresolvedLibrary) {
                UnresolvedLibrary unresolvedLibrary = (UnresolvedLibrary) entry;
                dependency = DefaultEclipseExternalDependency.createUnresolved(file, javadoc, source, library.getModuleVersion(), library.isExported(), createAttributes(library), createAccessRules(library), unresolvedLibrary.getAttemptedSelector().getDisplayName());
            } else {
                dependency = DefaultEclipseExternalDependency.createResolved(file, javadoc, source, library.getModuleVersion(), library.isExported(), createAttributes(library), createAccessRules(library));
            }
            classpathElements.getExternalDependencies().add(dependency);
        } else if (entry instanceof ProjectDependency) {
            final ProjectDependency projectDependency = (ProjectDependency) entry;
            // By removing the leading "/", this is no longer a "path" as defined by Eclipse
            final String path = StringUtils.removeStart(projectDependency.getPath(), "/");
            boolean isProjectOpen = projectOpenStatus.getOrDefault(path, true);
            if (!isProjectOpen) {
                final File source = projectDependency.getPublicationSourcePath() == null ? null : projectDependency.getPublicationSourcePath().getFile();
                final File javadoc = projectDependency.getPublicationJavadocPath() == null ? null : projectDependency.getPublicationJavadocPath().getFile();
                classpathElements.getExternalDependencies().add(DefaultEclipseExternalDependency.createResolved(projectDependency.getPublication().getFile(), javadoc, source, null, projectDependency.isExported(), createAttributes(projectDependency), createAccessRules(projectDependency)));
                classpathElements.getBuildDependencies().add(projectDependency.getBuildDependencies());
            } else {
                projectDependencyMap.put(path, new DefaultEclipseProjectDependency(path, projectDependency.isExported(), createAttributes(projectDependency), createAccessRules(projectDependency)));
            }
        } else if (entry instanceof SourceFolder) {
            final SourceFolder sourceFolder = (SourceFolder) entry;
            String path = sourceFolder.getPath();
            List<String> excludes = sourceFolder.getExcludes();
            List<String> includes = sourceFolder.getIncludes();
            String output = sourceFolder.getOutput();
            classpathElements.getSourceDirectories().add(new DefaultEclipseSourceDirectory(path, sourceFolder.getDir(), excludes, includes, output, createAttributes(sourceFolder), createAccessRules(sourceFolder)));
        } else if (entry instanceof Container) {
            final Container container = (Container) entry;
            classpathElements.getClasspathContainers().add(new DefaultEclipseClasspathContainer(container.getPath(), container.isExported(), createAttributes(container), createAccessRules(container)));
        } else if (entry instanceof Output) {
            classpathElements.setEclipseOutputLocation(new DefaultEclipseOutputLocation(((Output) entry).getPath()));
        }
    }
    classpathElements.getProjectDependencies().addAll(projectDependencyMap.values());
    return classpathElements;
}
Also used : HashMap(java.util.HashMap) DefaultEclipseProjectDependency(org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseProjectDependency) ProjectDependency(org.gradle.plugins.ide.eclipse.model.ProjectDependency) DefaultEclipseClasspathContainer(org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseClasspathContainer) DefaultEclipseSourceDirectory(org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseSourceDirectory) SourceFolder(org.gradle.plugins.ide.eclipse.model.SourceFolder) DefaultEclipseProjectDependency(org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseProjectDependency) UnresolvedLibrary(org.gradle.plugins.ide.eclipse.model.UnresolvedLibrary) Container(org.gradle.plugins.ide.eclipse.model.Container) DefaultEclipseClasspathContainer(org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseClasspathContainer) DefaultEclipseOutputLocation(org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseOutputLocation) EclipseClasspath(org.gradle.plugins.ide.eclipse.model.EclipseClasspath) Classpath(org.gradle.plugins.ide.eclipse.model.Classpath) Output(org.gradle.plugins.ide.eclipse.model.Output) AbstractLibrary(org.gradle.plugins.ide.eclipse.model.AbstractLibrary) Library(org.gradle.plugins.ide.eclipse.model.Library) AbstractLibrary(org.gradle.plugins.ide.eclipse.model.AbstractLibrary) UnresolvedLibrary(org.gradle.plugins.ide.eclipse.model.UnresolvedLibrary) AbstractClasspathEntry(org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry) ClasspathEntry(org.gradle.plugins.ide.eclipse.model.ClasspathEntry) File(java.io.File) DefaultEclipseExternalDependency(org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseExternalDependency)

Aggregations

Library (org.gradle.plugins.ide.eclipse.model.Library)3 File (java.io.File)2 AbstractLibrary (org.gradle.plugins.ide.eclipse.model.AbstractLibrary)2 HashMap (java.util.HashMap)1 LinkedList (java.util.LinkedList)1 AbstractClasspathEntry (org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry)1 Classpath (org.gradle.plugins.ide.eclipse.model.Classpath)1 ClasspathEntry (org.gradle.plugins.ide.eclipse.model.ClasspathEntry)1 Container (org.gradle.plugins.ide.eclipse.model.Container)1 EclipseClasspath (org.gradle.plugins.ide.eclipse.model.EclipseClasspath)1 FileReference (org.gradle.plugins.ide.eclipse.model.FileReference)1 Output (org.gradle.plugins.ide.eclipse.model.Output)1 ProjectDependency (org.gradle.plugins.ide.eclipse.model.ProjectDependency)1 SourceFolder (org.gradle.plugins.ide.eclipse.model.SourceFolder)1 UnresolvedLibrary (org.gradle.plugins.ide.eclipse.model.UnresolvedLibrary)1 Variable (org.gradle.plugins.ide.eclipse.model.Variable)1 DefaultEclipseClasspathContainer (org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseClasspathContainer)1 DefaultEclipseExternalDependency (org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseExternalDependency)1 DefaultEclipseOutputLocation (org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseOutputLocation)1 DefaultEclipseProjectDependency (org.gradle.plugins.ide.internal.tooling.eclipse.DefaultEclipseProjectDependency)1