org.neo4j.codegen.source.SourceCodeGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-codegen Show documentation
Show all versions of neo4j-codegen Show documentation
Simple library for generating code.
/*
* Copyright (c) 2002-2017 "Neo Technology,"
* Network Engine for Objects in Lund AB [http://neotechnology.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.codegen.source;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.tools.JavaFileObject;
import org.neo4j.codegen.ByteCodes;
import org.neo4j.codegen.ClassEmitter;
import org.neo4j.codegen.CodeGenerator;
import org.neo4j.codegen.CompilationFailureException;
import org.neo4j.codegen.TypeReference;
class SourceCodeGenerator extends CodeGenerator
{
private final Configuration configuration;
private final Map classes = new HashMap<>();
private final SourceCompiler compiler;
SourceCodeGenerator( ClassLoader parentClassLoader, Configuration configuration, SourceCompiler compiler )
{
super( parentClassLoader );
this.configuration = configuration;
this.compiler = compiler;
}
@Override
protected ClassEmitter generate( TypeReference type, TypeReference base, TypeReference[] interfaces )
{
StringBuilder target = new StringBuilder();
synchronized ( this )
{
StringBuilder old = classes.put( type, target );
if ( old != null )
{
classes.put( type, old );
throw new IllegalStateException( "Trying to generate class twice: " + type );
}
}
ClassSourceWriter writer = new ClassSourceWriter( target, configuration );
writer.declarePackage( type );
writer.javadoc( "Generated by " + getClass().getName() );
writer.publicClass( type );
writer.extendClass( base );
writer.implement( interfaces );
writer.begin();
return writer;
}
protected Iterable extends ByteCodes> compile( ClassLoader classpathLoader ) throws CompilationFailureException
{
return compiler.compile( sourceFiles(), classpathLoader );
}
private synchronized List sourceFiles()
{
List sourceFiles = new ArrayList<>( classes.size() );
for ( Map.Entry entry : classes.entrySet() )
{
TypeReference reference = entry.getKey();
StringBuilder source = entry.getValue();
configuration.visit( reference, source );
sourceFiles.add( new JavaSourceFile( configuration.sourceBase().uri(
reference.packageName(), reference.name(), JavaFileObject.Kind.SOURCE ), source ) );
}
return sourceFiles;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy