org.jpmml.translator.JClassInitializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmml-transpiler Show documentation
Show all versions of pmml-transpiler Show documentation
JPMML class model transpiler
/*
* Copyright (c) 2019 Villu Ruusmann
*
* This file is part of JPMML-Transpiler
*
* JPMML-Transpiler is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JPMML-Transpiler 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with JPMML-Transpiler. If not, see .
*/
package org.jpmml.translator;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import com.sun.codemodel.JClass;
import com.sun.codemodel.JDefinedClass;
import com.sun.codemodel.JFieldVar;
import com.sun.codemodel.JMethod;
import com.sun.codemodel.JStatement;
import org.jpmml.evaluator.JavaExpression;
import org.jpmml.evaluator.java.JavaModel;
abstract
class JClassInitializer {
private TranslationContext context = null;
JClassInitializer(TranslationContext context){
setContext(context);
}
abstract
public void add(JStatement statement);
public TranslationContext getContext(){
return this.context;
}
private void setContext(TranslationContext context){
this.context = context;
}
static
protected JMethod createMethod(String name, TranslationContext context){
JDefinedClass owner = getOwner(context);
JMethod method = owner.method(Modifiers.PRIVATE_STATIC_FINAL, void.class, "init" + (name.substring(0, 1)).toUpperCase() + name.substring(1));
return method;
}
static
protected JFieldVar createListConstant(String name, JClass type, TranslationContext context){
JDefinedClass owner = getOwner(context);
JFieldVar constant = owner.field(Modifiers.PRIVATE_STATIC_FINAL, context.genericRef(List.class, type), name, context._new(ArrayList.class));
return constant;
}
static
protected JFieldVar createMapConstant(String name, JClass keyType, JClass valueType, TranslationContext context){
JDefinedClass owner = getOwner(context);
JFieldVar constant = owner.field(Modifiers.PRIVATE_STATIC_FINAL, context.genericRef(Map.class, keyType, valueType), name, context._new(LinkedHashMap.class));
return constant;
}
static
private JDefinedClass getOwner(TranslationContext context){
try {
return context.getOwner(JavaExpression.class);
} catch(IllegalArgumentException iae){
return context.getOwner(JavaModel.class);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy