blob: 8cbd262036b956a70787cdd16408ea367825faf6 [file] [log] [blame]
/*
* 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.tools.analyser;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.apache.ivy.core.IvyPatternHelper;
import org.apache.ivy.core.module.id.ModuleRevisionId;
import org.apache.ivy.plugins.resolver.util.FileURLLister;
import org.apache.ivy.plugins.resolver.util.ResolverHelper;
import org.apache.ivy.plugins.resolver.util.URLLister;
import org.apache.ivy.util.Message;
public class JarModuleFinder {
private String pattern;
private String filePattern;
public JarModuleFinder(String pattern) {
this.pattern = "file:///" + pattern;
this.filePattern = pattern;
}
public JarModule[] findJarModules() {
List ret = new ArrayList();
URLLister lister = new FileURLLister();
try {
String[] orgs = ResolverHelper.listTokenValues(lister, pattern, "organisation");
for (int i = 0; i < orgs.length; i++) {
String orgPattern = IvyPatternHelper.substituteToken(pattern,
IvyPatternHelper.ORGANISATION_KEY, orgs[i]);
String[] modules = ResolverHelper.listTokenValues(lister, orgPattern, "module");
for (int j = 0; j < modules.length; j++) {
String modPattern = IvyPatternHelper.substituteToken(orgPattern,
IvyPatternHelper.MODULE_KEY, modules[j]);
String[] revs = ResolverHelper.listTokenValues(lister, modPattern, "revision");
for (int k = 0; k < revs.length; k++) {
File jar = new File(IvyPatternHelper.substitute(filePattern, orgs[i],
modules[j], revs[k], modules[j], "jar", "jar"));
if (jar.exists()) {
ret.add(new JarModule(ModuleRevisionId.newInstance(orgs[i], modules[j],
revs[k]), jar));
}
}
}
}
} catch (Exception e) {
Message.debug(e);
// TODO: handle exception
}
return (JarModule[]) ret.toArray(new JarModule[ret.size()]);
}
public static void main(String[] args) {
JarModule[] mods = new JarModuleFinder(
"D:/temp/test2/ivyrep/[organisation]/[module]/[revision]/[artifact].[ext]")
.findJarModules();
for (int i = 0; i < mods.length; i++) {
System.out.println(mods[i]);
}
}
}