org.apache.karaf.main.util.SimpleMavenResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.karaf.main
Show all versions of org.apache.karaf.main
This bundle is the main Karaf launcher. It's responsible of the Karaf startup including
the console, branding, etc bootstrap.
/*
* 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.karaf.main.util;
import java.io.File;
import java.net.URI;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Resolves local maven artifacts and raw file paths
*/
public class SimpleMavenResolver implements ArtifactResolver {
private static final Pattern mvnPattern = Pattern.compile("mvn:([^/ ]+)/([^/ ]+)/([^/ ]*)(/([^/ ]+)(/([^/ ]+))?)?");
private final List mavenRepos;
/**
*
* @param mavenRepos list of base dirs of maven repos that should be used when resolving maven artifacts
*/
public SimpleMavenResolver(List mavenRepos) {
this.mavenRepos = mavenRepos;
}
/**
* Resolve from pax-url format for maven URIs to the file that is referenced by the URI
* The URI format is:
* mvn:////
*
* If artifactUri does not match the Syntax the local file that corresponds to the path is returned
*
* @param artifactUri Maven artifact URI
* @return resolved URI
*/
public URI resolve(URI artifactUri) {
for (File bundleDir : mavenRepos) {
File file = findFile(bundleDir, artifactUri);
if (file != null) {
return file.toURI();
}
}
throw new RuntimeException("Could not resolve " + artifactUri);
}
private static File findFile(File dir, URI mvnUri) {
String path = fromMaven(mvnUri);
if (path.startsWith("file:")) {
path = path.substring(5);
}
File theFile = new File(dir, path);
if (theFile.exists() && !theFile.isDirectory()) {
return theFile;
}
return null;
}
/**
* Returns a path for an srtifact.
* Input: path (no ':') returns path
* Input: converts to default repo location path
* type and classifier are optional.
*
*
* @param name input artifact info
* @return path as supplied or a default maven repo path
*/
static String fromMaven(URI name) {
Matcher m = mvnPattern.matcher(name.toString());
if (!m.matches()) {
return name.toString();
}
StringBuilder path = new StringBuilder();
path.append(m.group(1).replace(".", "/"));
path.append("/");//groupId
String artifactId = m.group(2);
String version = m.group(3);
String extension = m.group(5);
String classifier = m.group(7);
path.append(artifactId).append("/");//artifactId
path.append(version).append("/");//version
path.append(artifactId).append("-").append(version);
if (present(classifier)) {
path.append("-").append(classifier);
}
if (present(extension)) {
path.append(".").append(extension);
} else {
path.append(".jar");
}
return path.toString();
}
private static boolean present(String part) {
return part != null && !part.isEmpty();
}
}