/* * 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 org.apache.ivyde.internal.eclipse.revdepexplorer; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import org.apache.ivy.core.module.descriptor.DependencyDescriptor; import org.apache.ivy.core.module.descriptor.ModuleDescriptor; import org.apache.ivyde.eclipse.cp.IvyClasspathContainerHelper; import org.apache.ivyde.internal.eclipse.cpcontainer.IvyClasspathContainerImpl; import org.eclipse.core.resources.IProject; public final class IvyUtil { private IvyUtil() { // utility class } public static MultiRevDependencyDescriptor[] getDependencyDescriptorsByProjects( IProject[] projects) { // a temporary cache of multi-revision dependency descriptors Map/* <ModuleId, MultiRevisionDependencyDescriptor> */mdMap = new HashMap(); for (int i = 0; i < projects.length; i++) { List containers = IvyClasspathContainerHelper.getContainers(projects[i]); Iterator containerIter = containers.iterator(); while (containerIter.hasNext()) { IvyClasspathContainerImpl container = (IvyClasspathContainerImpl) containerIter.next(); ModuleDescriptor md = container.getState().getCachedModuleDescriptor(); if (md == null) { continue; } DependencyDescriptor[] descriptors = md.getDependencies(); for (int j = 0; j < descriptors.length; j++) { DependencyDescriptor descriptor = descriptors[j]; MultiRevDependencyDescriptor syncabledd = (MultiRevDependencyDescriptor) mdMap .get(descriptor.getDependencyId()); if (syncabledd == null) { syncabledd = new MultiRevDependencyDescriptor( descriptor.getDependencyId()); mdMap.put(descriptor.getDependencyId(), syncabledd); } syncabledd.addDependencyDescriptor(container, descriptor); } } } List/* <MultiRevisionDependencyDescriptor> */sorted = new ArrayList(mdMap .values()); Collections.sort(sorted, new Comparator/* <MultiRevisionDependencyDescriptor> */() { public int compare(Object o1, Object o2) { MultiRevDependencyDescriptor desc1 = (MultiRevDependencyDescriptor) o1; MultiRevDependencyDescriptor desc2 = (MultiRevDependencyDescriptor) o2; int equal = desc1.getOrganization().compareTo(desc2.getOrganization()); if (equal == 0) { equal = desc1.getModule().compareTo(desc2.getModule()); } return equal; } }); return (MultiRevDependencyDescriptor[]) sorted .toArray(new MultiRevDependencyDescriptor[sorted.size()]); } /** * This returns a list of multi-revision dependency descriptors which is a grouping of the * revisions under and organization and module <br> * * @return multi-revision dependency descriptors */ public static MultiRevDependencyDescriptor[] getAllDependencyDescriptorsInWorkspace() { return getDependencyDescriptorsByProjects(IvyClasspathContainerHelper.getIvyProjectsInWorkspace()); } }