org.apache.maven.cli.ExtensionConfigurationModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-embedder Show documentation
Show all versions of maven-embedder Show documentation
Maven embeddable component, with CLI and logging support.
/*
* 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.maven.cli;
import java.util.Arrays;
import com.google.inject.Binder;
import com.google.inject.Module;
import com.google.inject.name.Names;
import org.apache.maven.api.xml.XmlNode;
import org.apache.maven.extension.internal.CoreExtensionEntry;
import org.apache.maven.internal.xml.XmlNodeImpl;
import org.apache.maven.internal.xml.XmlPlexusConfiguration;
import org.apache.maven.model.v4.MavenTransformer;
import org.codehaus.plexus.configuration.PlexusConfiguration;
import org.codehaus.plexus.interpolation.InterpolationException;
import org.codehaus.plexus.interpolation.StringSearchInterpolator;
import org.codehaus.plexus.interpolation.ValueSource;
public class ExtensionConfigurationModule implements Module {
private final CoreExtensionEntry extension;
private final Iterable valueSources;
public ExtensionConfigurationModule(CoreExtensionEntry extension, ValueSource... valueSources) {
this.extension = extension;
this.valueSources = Arrays.asList(valueSources);
}
@Override
public void configure(Binder binder) {
if (extension.getKey() != null) {
XmlNode configuration = extension.getConfiguration();
if (configuration == null) {
configuration = new XmlNodeImpl("configuration");
}
configuration = new Interpolator().transform(configuration);
binder.bind(XmlNode.class)
.annotatedWith(Names.named(extension.getKey()))
.toInstance(configuration);
binder.bind(PlexusConfiguration.class)
.annotatedWith(Names.named(extension.getKey()))
.toInstance(XmlPlexusConfiguration.toPlexusConfiguration(configuration));
}
}
class Interpolator extends MavenTransformer {
final StringSearchInterpolator interpolator;
Interpolator() {
super(null);
interpolator = new StringSearchInterpolator();
interpolator.setCacheAnswers(true);
valueSources.forEach(interpolator::addValueSource);
}
public XmlNode transform(XmlNode node) {
return super.transform(node);
}
protected String transform(String str) {
try {
return interpolator.interpolate(str);
} catch (InterpolationException e) {
throw new RuntimeException(e);
}
}
}
}