org.teamapps.dto.generate.adapter.ReferencableEntityModelAdaptor Maven / Gradle / Ivy
/*-
* ========================LICENSE_START=================================
* TeamApps
* ---
* Copyright (C) 2014 - 2024 TeamApps.org
* ---
* 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.
* =========================LICENSE_END==================================
*/
package org.teamapps.dto.generate.adapter;
import org.antlr.v4.runtime.ParserRuleContext;
import org.stringtemplate.v4.Interpreter;
import org.stringtemplate.v4.ST;
import org.stringtemplate.v4.misc.STNoSuchPropertyException;
import org.teamapps.dto.generate.TeamAppsDtoModel;
import org.teamapps.dto.TeamAppsDtoParser;
public abstract class ReferencableEntityModelAdaptor extends PojoModelAdaptor {
@Override
public Object getProperty(Interpreter interpreter, ST self, Object o, Object property, String propertyName) throws STNoSuchPropertyException {
N node = (N) o;
if ("declaringTypeScriptFileBaseName".equals(propertyName)) {
return getDeclaringTypeScriptFileBaseName(node);
} else if ("typeScriptIdentifier".equals(propertyName)) {
return getTypeScriptIdentifier(node);
} else if ("_type".equals(propertyName)) {
return getJsonIdentifier(node);
} else if ("javaClassName".equals(propertyName)) {
return getJavaClassName(node);
} else if ("isInterface".equals(propertyName)) {
return o instanceof TeamAppsDtoParser.InterfaceDeclarationContext;
} else if ("isClass".equals(propertyName)) {
return o instanceof TeamAppsDtoParser.ClassDeclarationContext;
} else if ("isEnum".equals(propertyName)) {
return o instanceof TeamAppsDtoParser.EnumDeclarationContext;
} else {
return super.getProperty(interpreter, self, o, property, propertyName);
}
}
protected String getDeclaringTypeScriptFileBaseName(N node) {
if (node instanceof TeamAppsDtoParser.EnumDeclarationContext) {
return ((TeamAppsDtoParser.EnumDeclarationContext) node).Identifier().getText();
} else {
return TeamAppsDtoModel.getDeclaringClassOrInterfaceName(node) + "Config";
}
}
protected abstract String getTypeScriptIdentifier(N node);
protected abstract String getJsonIdentifier(N node);
protected abstract String getJavaClassName(N node);
}