Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MNG-6665] toolchain.xml file should support environment variables #251

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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();


MartinKanters marked this conversation as resolved.
Show resolved Hide resolved
@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;" );
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rscholte
Do we have any library for doing this xml escape ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line of code is pretty straight forward, at least not worth introducing a new library. Maybe one of the existing libraries has one.
Actually, looking at it I wonder the performance penalty here since we loop over the whole file 3 times. But that kind of optimization deserves a new issue.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rfscholte
Sure. In fact I think it is not worth to add a library for this.
If I understand correctly this code is meant to run only really few times, so there is no need for aggressive optimizations

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This logic is taken from the DefaultSettingsBuilder, if it already exists in one of the libraries I can change both places.

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;
}