Skip to content

Commit

Permalink
[MNG-6665] toolchain.xml file should support environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKanters authored and rfscholte committed Jun 8, 2019
1 parent 01405a2 commit aed5130
Show file tree
Hide file tree
Showing 5 changed files with 324 additions and 39 deletions.
Expand Up @@ -19,24 +19,30 @@
* under the License.
*/

import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.Map;

import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Singleton;

import org.apache.maven.building.Problem;
import org.apache.maven.building.ProblemCollector;
import org.apache.maven.building.ProblemCollectorFactory;
import org.apache.maven.building.Source;
import org.apache.maven.toolchain.io.ToolchainsParseException;
import org.apache.maven.toolchain.io.ToolchainsReader;
import org.apache.maven.toolchain.io.ToolchainsWriter;
import org.apache.maven.toolchain.merge.MavenToolchainMerger;
import org.apache.maven.toolchain.model.PersistedToolchains;
import org.apache.maven.toolchain.model.TrackableBase;
import org.codehaus.plexus.interpolation.EnvarBasedValueSource;
import org.codehaus.plexus.interpolation.InterpolationException;
import org.codehaus.plexus.interpolation.InterpolationPostProcessor;
import org.codehaus.plexus.interpolation.RegexBasedInterpolator;

import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Singleton;
import java.io.IOException;
import java.io.StringReader;
import java.io.StringWriter;
import java.util.Collections;
import java.util.List;
import java.util.Map;

/**
*
Expand All @@ -49,7 +55,10 @@ public class DefaultToolchainsBuilder
implements ToolchainsBuilder
{
private MavenToolchainMerger toolchainsMerger = new MavenToolchainMerger();


@Inject
private ToolchainsWriter toolchainsWriter;

@Inject
private ToolchainsReader toolchainsReader;

Expand All @@ -66,16 +75,86 @@ public ToolchainsBuildingResult build( ToolchainsBuildingRequest request )
toolchainsMerger.merge( userToolchains, globalToolchains, TrackableBase.GLOBAL_LEVEL );

problems.setSource( "" );


userToolchains = interpolate( userToolchains, problems );

if ( hasErrors( problems.getProblems() ) )
{
throw new ToolchainsBuildingException( problems.getProblems() );
}


return new DefaultToolchainsBuildingResult( userToolchains, problems.getProblems() );
}

private PersistedToolchains interpolate( PersistedToolchains toolchains, ProblemCollector problems )
{

StringWriter stringWriter = new StringWriter( 1024 * 4 );
try
{
toolchainsWriter.write( stringWriter, null, toolchains );
}
catch ( IOException e )
{
throw new IllegalStateException( "Failed to serialize toolchains to memory", e );
}

String serializedToolchains = stringWriter.toString();

RegexBasedInterpolator interpolator = new RegexBasedInterpolator();

try
{
interpolator.addValueSource( new EnvarBasedValueSource() );
}
catch ( IOException e )
{
problems.add( Problem.Severity.WARNING, "Failed to use environment variables for interpolation: "
+ e.getMessage(), -1, -1, e );
}

interpolator.addPostProcessor( new InterpolationPostProcessor()
{
@Override
public Object execute( String expression, Object value )
{
if ( value != null )
{
// we're going to parse this back in as XML so we need to escape XML markup
value = value.toString().replace( "&", "&amp;" ).replace( "<", "&lt;" ).replace( ">", "&gt;" );
return value;
}
return null;
}
} );

try
{
serializedToolchains = interpolator.interpolate( serializedToolchains );
}
catch ( InterpolationException e )
{
problems.add( Problem.Severity.ERROR, "Failed to interpolate toolchains: " + e.getMessage(), -1, -1, e );
return toolchains;
}

PersistedToolchains result;
try
{
Map<String, ?> options = Collections.singletonMap( ToolchainsReader.IS_STRICT, Boolean.FALSE );

result = toolchainsReader.read( new StringReader( serializedToolchains ), options );
}
catch ( IOException e )
{
problems.add( Problem.Severity.ERROR, "Failed to interpolate toolchains: " + e.getMessage(), -1, -1, e );
return toolchains;
}

return result;
}

private PersistedToolchains readToolchains( Source toolchainsSource, ToolchainsBuildingRequest request,
ProblemCollector problems )
{
Expand Down
@@ -0,0 +1,54 @@
package org.apache.maven.toolchain.io;

/*
* 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.
*/

import org.apache.maven.toolchain.model.PersistedToolchains;
import org.apache.maven.toolchain.model.io.xpp3.MavenToolchainsXpp3Writer;

import javax.inject.Named;
import javax.inject.Singleton;
import java.io.IOException;
import java.io.Writer;
import java.util.Map;
import java.util.Objects;

/**
* Handles serialization of toolchains into the default textual format.
*
* @author Mike Mol
* @author Martin Kanters
*/
@Named
@Singleton
public class DefaultToolchainsWriter implements ToolchainsWriter
{

@Override
public void write( Writer output, Map<String, Object> options, PersistedToolchains toolchains ) throws IOException
{
Objects.requireNonNull( output, "output cannot be null" );
Objects.requireNonNull( toolchains, "toolchains cannot be null" );

try ( final Writer out = output )
{
new MavenToolchainsXpp3Writer().write( out, toolchains );
}
}
}
@@ -0,0 +1,48 @@
package org.apache.maven.toolchain.io;

/*
* 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.
*/

import org.apache.maven.toolchain.model.PersistedToolchains;

import java.io.IOException;
import java.io.Writer;
import java.util.Map;

/**
* Handles serialization of toolchains into some kind of textual format like XML.
*
* @author Mike Mol
* @author Martin Kanters
*/
public interface ToolchainsWriter
{

/**
* Writes the supplied toolchains to the specified character writer. The writer will be automatically closed before
* the method returns.
*
* @param output The writer to serialize the toolchains to, must not be {@code null}.
* @param options The options to use for serialization, may be {@code null} to use the default values.
* @param toolchains The toolchains to serialize, must not be {@code null}.
* @throws IOException If the toolchains could not be serialized.
*/
void write( Writer output, Map<String, Object> options, PersistedToolchains toolchains )
throws IOException;
}

0 comments on commit aed5130

Please sign in to comment.