![JAR search and dependency download from the Maven repository](/logo.png)
org.codehaus.mojo.javacc.JJTreeMojo Maven / Gradle / Ivy
package org.codehaus.mojo.javacc;
/*
* Copyright 2001-2005 The Codehaus.
*
* Licensed 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 java.io.File;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.compiler.util.scan.InclusionScanException;
import org.codehaus.plexus.compiler.util.scan.SourceInclusionScanner;
import org.codehaus.plexus.compiler.util.scan.StaleSourceScanner;
import org.codehaus.plexus.compiler.util.scan.mapping.SuffixMapping;
import org.codehaus.plexus.util.FileUtils;
import org.javacc.jjtree.JJTree;
/**
* @goal jjtree
* @phase generate-sources
* @description Goal which parse a JJ file and transform it to Java Source Files.
* @author jesse
* @version $Id: JJTreeMojo.java 893 2005-11-21 20:18:03Z jesse $
*/
public class JJTreeMojo
extends AbstractMojo
{
/**
* @parameter expression="${buildNodeFiles}"
*/
private Boolean buildNodeFiles;
/**
* @parameter expression="${multi}"
*/
private Boolean multi;
/**
* @parameter expression="${nodeDefaultVoid}"
*/
private Boolean nodeDefaultVoid;
/**
* @parameter expression="${nodeFactory}"
*/
private Boolean nodeFactory;
/**
* @parameter expression="${nodeScopeHook}"
*/
private Boolean nodeScopeHook;
/**
* @parameter expression="${nodeUsesParser}"
*/
private Boolean nodeUsesParser;
/**
* @parameter expression="${staticOption}"
*/
private Boolean staticOption;
/**
* @parameter expression="${visitor}"
*/
private Boolean visitor;
/**
* @parameter expression="${nodePackage}"
*/
private String nodePackage;
/**
* @parameter expression="${visitorException}"
*/
private String visitorException;
/**
* @parameter expression="${nodePrefix}"
*/
private String nodePrefix;
/**
* Directory where the JJT file(s) are located.
* @parameter expression="${basedir}/src/main/jjtree"
* @required
*/
private String sourceDirectory;
/**
* Directory where the output Java Files will be located.
* @parameter expression="${project.build.directory}/generated-sources/jjtree"
* @required
*/
private String outputDirectory;
/**
* the directory to store the processed .jjt files
*
* @parameter expression="${basedir}/target"
*/
private String timestampDirectory;
/**
* The granularity in milliseconds of the last modification
* date for testing whether a source needs recompilation
*
* @parameter expression="${lastModGranularityMs}" default-value="0"
*/
private int staleMillis;
/**
* @parameter expression="${project}"
* @required
*/
private MavenProject project;
public void execute()
throws MojoExecutionException
{
if ( !FileUtils.fileExists( outputDirectory ) )
{
FileUtils.mkdir( outputDirectory );
}
if ( !FileUtils.fileExists( timestampDirectory ) )
{
FileUtils.mkdir( timestampDirectory );
}
Set staleGrammars = computeStaleGrammars();
if ( staleGrammars.isEmpty() )
{
getLog().info( "Nothing to process - all grammars are up to date" );
if ( project != null )
{
project.addCompileSourceRoot( outputDirectory );
}
return;
}
for ( Iterator i = staleGrammars.iterator(); i.hasNext(); )
{
File jjTreeFile = (File) i.next();
try
{
JJTree jjtree = new JJTree();
jjtree.main( generateArgumentList( jjTreeFile.getAbsolutePath()) );
FileUtils.copyFileToDirectory(jjTreeFile, new File(timestampDirectory));
}
catch ( Exception e )
{
throw new MojoExecutionException( "JJTree execution failed", e );
}
}
if ( project != null )
{
project.addCompileSourceRoot( outputDirectory );
}
}
private String[] generateArgumentList(String jjTreeFilename) {
ArrayList argsList = new ArrayList();
if ( buildNodeFiles != null )
{
argsList.add("-BUILD_NODE_FILES=" + buildNodeFiles.toString());
}
if ( multi != null )
{
argsList.add("-MULTI=" + multi);
}
if ( nodeDefaultVoid != null )
{
argsList.add( "-NODE_DEFAULT_VOID=" + nodeDefaultVoid );
}
if ( nodeFactory != null )
{
argsList.add( "-NODE_FACTORY=" + nodeFactory);
}
if ( nodePackage != null )
{
argsList.add( "-NODE_PACKAGE=" + nodePackage );
}
if ( nodePrefix != null )
{
argsList.add( "-NODE_PREFIX=" + nodePrefix );
}
if ( nodeScopeHook != null )
{
argsList.add( "-NODE_SCOPE_HOOK=" + nodeScopeHook );
}
if ( nodeUsesParser != null )
{
argsList.add ( "-NODE_USES_PARSER=" + nodeUsesParser );
}
if ( visitor != null )
{
argsList.add ( "-VISITOR=" + visitor);
}
if ( staticOption != null )
{
argsList.add( "-STATIC=" + staticOption);
}
if (visitorException != null )
{
argsList.add ( "-VISITOR_EXCEPTION=\'" + visitorException + "\'");
}
argsList.add( "-OUTPUT_DIRECTORY=" + outputDirectory);
argsList.add( jjTreeFilename );
getLog().debug("argslist: " + argsList.toString());
return (String[])argsList.toArray(new String[argsList.size()]);
}
private Set computeStaleGrammars() throws MojoExecutionException
{
SuffixMapping mapping = new SuffixMapping( ".jjt", ".jjt" );
SuffixMapping mappingCAP = new SuffixMapping( ".JJT", ".JJT" );
SourceInclusionScanner scanner = new StaleSourceScanner( staleMillis );
scanner.addSourceMapping( mapping );
scanner.addSourceMapping( mappingCAP);
File outDir = new File( timestampDirectory );
Set staleSources = new HashSet();
File sourceDir = new File( sourceDirectory );
try
{
staleSources.addAll( scanner.getIncludedSources( sourceDir, outDir ) );
}
catch ( InclusionScanException e )
{
throw new MojoExecutionException( "Error scanning source root: \'" + sourceDir + "\' for stale grammars to reprocess.", e );
}
return staleSources;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy