blob: 3b9925c201ba68650da35c44e237246c5c15b82a [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed 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.intellij.lang.ant.config.impl;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.util.config.AbstractProperty;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
public class AntInstallationClassLoaderHolder extends ClassLoaderHolder {
private static final Logger LOG = Logger.getInstance("#com.intellij.lang.ant.config.impl.AntInstallationClassLoaderHolder");
public AntInstallationClassLoaderHolder(AbstractProperty.AbstractPropertyContainer options) {
super(options);
}
protected ClassLoader buildClasspath() {
final ArrayList<File> files = new ArrayList<File>();
// ant installation jars
final List<AntClasspathEntry> cp = AntInstallation.CLASS_PATH.get(myOptions);
for (final AntClasspathEntry entry : cp) {
entry.addFilesTo(files);
}
// jars from user home
files.addAll(AntBuildFileImpl.getUserHomeLibraries());
final List<URL> urls = new ArrayList<URL>(files.size());
for (File file : files) {
try {
urls.add(file.toURI().toURL());
}
catch (MalformedURLException e) {
LOG.debug(e);
}
}
return new AntResourcesClassLoader(urls, null, true, false);
}
}