/* * 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.ivy.ant; import java.io.File; import java.util.Iterator; import java.util.List; import org.apache.ivy.core.report.ArtifactDownloadReport; import org.apache.ivy.osgi.core.BundleInfo; import org.apache.ivy.osgi.core.ManifestParser; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Project; import org.apache.tools.ant.types.Path; /** * Creates an ant path consisting in all artifacts found during a resolve. */ public class IvyCachePath extends IvyCacheTask { private String pathid; private String id; private boolean osgi = false; public String getPathid() { return pathid; } public void setPathid(String id) { pathid = id; } public void setOsgi(boolean osgi) { this.osgi = osgi; } /** * @deprecated use setPathid instead * @param id */ @Deprecated public void setId(String id) { this.id = id; } public void doExecute() throws BuildException { prepareAndCheck(); if (pathid == null) { if (id != null) { pathid = id; log("ID IS DEPRECATED, PLEASE USE PATHID INSTEAD", Project.MSG_WARN); } else { throw new BuildException("pathid is required in ivy classpath"); } } try { Path path = new Path(getProject()); getProject().addReference(pathid, path); for (Iterator iter = getArtifactReports().iterator(); iter.hasNext();) { ArtifactDownloadReport a = (ArtifactDownloadReport) iter.next(); File f = a.getLocalFile(); if (a.getUnpackedLocalFile() != null) { f = a.getUnpackedLocalFile(); } addToPath(path, f); } } catch (Exception ex) { throw new BuildException("impossible to build ivy path: " + ex, ex); } } protected void addToPath(Path path, File f) throws Exception { if (!osgi || !f.isDirectory()) { path.createPathElement().setLocation(f); return; } File manifest = new File(f, "META-INF/MANIFEST.MF"); if (!manifest.exists()) { path.createPathElement().setLocation(f); return; } BundleInfo bundleInfo = ManifestParser.parseManifest(manifest); List/* */cp = bundleInfo.getClasspath(); if (cp == null) { path.createPathElement().setLocation(f); return; } for (int i = 0; i < cp.size(); i++) { String p = (String) cp.get(i); if (p.equals(".")) { path.createPathElement().setLocation(f); } else { path.createPathElement().setLocation(new File(f, p)); } } } }