/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.redhat.ceylon.eclipse.core.classpath; import java.io.File; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.regex.Pattern; import net.lingala.zip4j.core.ZipFile; import net.lingala.zip4j.exception.ZipException; import net.lingala.zip4j.model.FileHeader; import net.lingala.zip4j.model.ZipParameters; import org.eclipse.core.runtime.IPath; import org.eclipse.jdt.core.IClasspathAttribute; import org.eclipse.jdt.core.IClasspathContainer; import org.eclipse.jdt.core.IClasspathEntry; import org.eclipse.jdt.core.IJavaProject; import org.eclipse.jdt.core.JavaCore; import org.eclipse.jdt.core.JavaModelException; import org.eclipse.jdt.internal.ui.packageview.ClassPathContainer; import org.eclipse.jface.viewers.IStructuredSelection; import com.redhat.ceylon.common.FileUtil; import com.redhat.ceylon.eclipse.ui.CeylonPlugin; public final class CeylonClasspathUtil { private CeylonClasspathUtil() { // utility class } /** * Get the Ceylon classpath container from the selection in the Java package view * * @param selection * the selection * @return * @throws JavaModelException */ public static CeylonProjectModulesContainer getCeylonClasspathContainer(IStructuredSelection selection) { if (selection == null) { return null; } for (@SuppressWarnings("rawtypes") Iterator it = selection.iterator(); it.hasNext();) { Object element = it.next(); CeylonProjectModulesContainer cp = (CeylonProjectModulesContainer) CeylonPlugin.adapt(element, CeylonProjectModulesContainer.class); if (cp != null) { return cp; } if (element instanceof ClassPathContainer) { // FIXME: we shouldn't check against internal JDT API but there are not adaptable to // useful class return jdt2CeylonCPC((ClassPathContainer) element); } } return null; } /** * Work around the non adaptability of ClassPathContainer * * @param cpc * the container to transform into an CeylonApplicationModulesContainer * @return the CeylonApplicationModulesContainer is such, null, if not */ public static CeylonProjectModulesContainer jdt2CeylonCPC(ClassPathContainer cpc) { IClasspathEntry entry = cpc.getClasspathEntry(); try { IClasspathContainer icp = JavaCore.getClasspathContainer(entry.getPath(), cpc .getJavaProject()); if (icp instanceof CeylonProjectModulesContainer) { return (CeylonProjectModulesContainer) icp; } } catch (JavaModelException e) { // unless there are issues with the JDT, this should never happen e.printStackTrace(); } return null; } public static boolean isCeylonClasspathContainer(IPath containerPath) { return isLanguageModuleClasspathContainer(containerPath) || isProjectModulesClasspathContainer(containerPath); } public static boolean isLanguageModuleClasspathContainer(IPath containerPath) { int size = containerPath.segmentCount(); if (size > 0) { return (containerPath.segment(0).equals(CeylonLanguageModuleContainer.CONTAINER_ID)); } return false; } public static boolean isProjectModulesClasspathContainer(IPath containerPath) { int size = containerPath.segmentCount(); if (size > 0) { return (containerPath.segment(0).equals(CeylonProjectModulesContainer.CONTAINER_ID)); } return false; } /** * Search the Ceylon classpath containers within the specified Java project * * @param javaProject * the project to search into * @return the Ceylon classpath container if found */ public static List <IClasspathContainer> getCeylonClasspathContainers( IJavaProject javaProject) { List<IClasspathContainer> containers = new ArrayList<IClasspathContainer>(); if (FakeProjectManager.isFake(javaProject) || !javaProject.exists()) { return containers; } try { IClasspathEntry[] entries = javaProject.getRawClasspath(); for (int i = 0; i < entries.length; i++) { IClasspathEntry entry = entries[i]; if (entry != null && entry.getEntryKind() == IClasspathEntry.CPE_CONTAINER) { IPath path = entry.getPath(); if (isCeylonClasspathContainer(path)) { IClasspathContainer cp = JavaCore.getClasspathContainer(path, javaProject); if (cp instanceof CeylonProjectModulesContainer || cp instanceof CeylonLanguageModuleContainer) { containers.add(cp); } } } } } catch (JavaModelException e) { // unless there are issues with the JDT, this should never happen e.printStackTrace(); } return containers; } public static CeylonProjectModulesContainer getCeylonProjectModulesClasspathContainer( IJavaProject javaProject) { try { IClasspathEntry[] entries = javaProject.getRawClasspath(); for (int i = 0; i < entries.length; i++) { IClasspathEntry entry = entries[i]; if (entry != null && entry.getEntryKind() == IClasspathEntry.CPE_CONTAINER) { IPath path = entry.getPath(); if (isProjectModulesClasspathContainer(path)) { IClasspathContainer cp = JavaCore.getClasspathContainer(path, javaProject); if (cp instanceof CeylonProjectModulesContainer) { return (CeylonProjectModulesContainer) cp; } } } } } catch (JavaModelException e) { // unless there are issues with the JDT, this should never happen e.printStackTrace(); } return null; } public static List<String> split(String str) { String[] terms = str.split(","); List<String> ret = new ArrayList<String>(); for (int i = 0; i < terms.length; i++) { String t = terms[i].trim(); if (t.length() > 0) { ret.add(t); } } return ret; } public static String concat(Collection<String> list) { if (list == null) { return ""; } StringBuffer b = new StringBuffer(); Iterator<String> it = list.iterator(); while (it.hasNext()) { b.append(it.next()); if (it.hasNext()) { b.append(","); } } return b.toString(); } /** * Just a verbatim copy of the internal Eclipse function: * org.eclipse.jdt.internal.corext.javadoc * .JavaDocLocations#getLibraryJavadocLocation(IClasspathEntry) * * @param entry * @return */ public static URL getLibraryJavadocLocation(IClasspathEntry entry) { if (entry == null) { throw new IllegalArgumentException("Entry must not be null"); //$NON-NLS-1$ } int kind = entry.getEntryKind(); if (kind != IClasspathEntry.CPE_LIBRARY && kind != IClasspathEntry.CPE_VARIABLE) { throw new IllegalArgumentException( "Entry must be of kind CPE_LIBRARY or " + "CPE_VARIABLE"); //$NON-NLS-1$ } IClasspathAttribute[] extraAttributes = entry.getExtraAttributes(); for (int i = 0; i < extraAttributes.length; i++) { IClasspathAttribute attrib = extraAttributes[i]; if (IClasspathAttribute.JAVADOC_LOCATION_ATTRIBUTE_NAME.equals(attrib.getName())) { try { return new URL(attrib.getValue()); } catch (MalformedURLException e) { return null; } } } return null; } /** * Search the Ceylon classpath entry within the specified Java project with the specific path * * @param containerPath * the path of the container * @param javaProject * the project to search into * @return the Ceylon classpath container if found, otherwise return <code>null</code> */ public static IClasspathEntry getCeylonClasspathEntry(IPath containerPath, IJavaProject javaProject) { if (FakeProjectManager.isFake(javaProject) || !javaProject.exists()) { return null; } try { IClasspathEntry[] entries = javaProject.getRawClasspath(); for (int i = 0; i < entries.length; i++) { IClasspathEntry entry = entries[i]; if (entry != null && entry.getEntryKind() == IClasspathEntry.CPE_CONTAINER) { if (containerPath.equals(entry.getPath())) { return entry; } } } } catch (JavaModelException e) { // unless there are issues with the JDT, this should never happen e.printStackTrace(); } return null; } private static String javaSourceArchivePath(String moduleName, String moduleVersion, File ceylonSourceArchive) { String fullPath = ceylonSourceArchive.getAbsolutePath(); String pathSegmentsToRemove = moduleName.replace('.', File.separatorChar) + File.separator + moduleVersion + File.separator; String[] splitFullPath = fullPath.split(Pattern.quote(pathSegmentsToRemove)); String name = ceylonSourceArchive.getName(); int dotIndex = name.lastIndexOf("."); if (dotIndex > 0) { name = name.substring(0, dotIndex) + ".javaSources.zip"; } if (splitFullPath.length == 2) { return splitFullPath[0].replace(':', '_') + name; } return null; } @SuppressWarnings("unchecked") public static File ceylonSourceArchiveToJavaSourceArchive(String moduleName, String moduleVersion, File ceylonSourceArchive) { if (ceylonSourceArchive == null) { return null; } File cacheDirectory = CeylonPlugin.getInstance().getJavaSourceArchiveCacheDirectory(); if (cacheDirectory != null) { if (!cacheDirectory.exists()) { cacheDirectory.mkdirs(); } String sourceArchivePath = javaSourceArchivePath(moduleName, moduleVersion, ceylonSourceArchive); if (sourceArchivePath != null) { File cachedJavaArchive = new File(cacheDirectory, sourceArchivePath); if (cachedJavaArchive.exists()) { if (cachedJavaArchive.lastModified() > ceylonSourceArchive.lastModified()) { return cachedJavaArchive; } else { FileUtil.deleteQuietly(cachedJavaArchive); } } try { ZipFile oldzipFile = new ZipFile(ceylonSourceArchive); cachedJavaArchive.getParentFile().mkdirs(); ZipFile newzipFile = new ZipFile(cachedJavaArchive); File temp = new File(cacheDirectory, "void"); try { temp.createNewFile(); } catch(IOException e) { e.printStackTrace(); } ZipParameters zipParams = new ZipParameters(); newzipFile.createZipFile(temp, zipParams); for (FileHeader header : (List<FileHeader>) oldzipFile.getFileHeaders()) { String sourceFile = header.getFileName(); if (!header.isDirectory()) { if (sourceFile != null && ! sourceFile.endsWith(".java")) { continue; } } ZipParameters parameters = new ZipParameters(); parameters.setFileNameInZip(header.getFileName()); parameters.setSourceExternalStream(true); newzipFile.addStream(oldzipFile.getInputStream(header), parameters); } return cachedJavaArchive; } catch (ZipException e) { e.printStackTrace(); FileUtil.deleteQuietly(cachedJavaArchive); return null; } } } return null; } }