com.netflix.hollow.api.codegen.perfapi.HollowPerformanceAPIClassGenerator Maven / Gradle / Ivy
/*
* Copyright 2021 Netflix, Inc.
*
* 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.
*
*/
package com.netflix.hollow.api.codegen.perfapi;
import com.netflix.hollow.core.HollowDataset;
import com.netflix.hollow.core.schema.HollowSchema;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
class HollowPerformanceAPIClassGenerator {
private final HollowDataset dataset;
private final String apiClassName;
private final String packageName;
public HollowPerformanceAPIClassGenerator(HollowDataset dataset, String apiClassName, String packageName) {
this.dataset = dataset;
this.apiClassName = apiClassName;
this.packageName = packageName;
}
public String generate() {
StringBuilder builder = new StringBuilder();
builder.append("package " + packageName + ";\n\n");
builder.append("import com.netflix.hollow.api.perfapi.HollowListTypePerfAPI;\n" +
"import com.netflix.hollow.api.perfapi.HollowMapTypePerfAPI;\n" +
"import com.netflix.hollow.api.perfapi.HollowPerformanceAPI;\n" +
"import com.netflix.hollow.api.perfapi.HollowSetTypePerfAPI;\n" +
"import com.netflix.hollow.core.read.dataaccess.HollowDataAccess;\n" +
"import com.netflix.hollow.core.read.dataaccess.HollowListTypeDataAccess;\n" +
"import com.netflix.hollow.core.read.dataaccess.HollowMapTypeDataAccess;\n" +
"import com.netflix.hollow.core.read.dataaccess.HollowObjectTypeDataAccess;\n" +
"import com.netflix.hollow.core.read.dataaccess.HollowSetTypeDataAccess;\n" +
"import com.netflix.hollow.core.read.dataaccess.HollowTypeDataAccess;\n" +
"import java.util.Set;\n" +
"\n");
builder.append("\n@SuppressWarnings(\"all\")\n");
builder.append("public class " + apiClassName + " extends HollowPerformanceAPI {\n\n");
List schemas = new ArrayList<>(dataset.getSchemas());
schemas.sort(Comparator.comparing(HollowSchema::getName));
for(HollowSchema schema : schemas) {
String schemaName = schema.getName();
switch(schema.getSchemaType()) {
case OBJECT:
builder.append(" public final " + schemaName + "PerfAPI " + schemaName + ";\n");
break;
case LIST:
builder.append(" public final HollowListTypePerfAPI " + schemaName + ";\n");
break;
case SET:
builder.append(" public final HollowSetTypePerfAPI " + schemaName + ";\n");
break;
case MAP:
builder.append(" public final HollowMapTypePerfAPI " + schemaName + ";\n");
break;
}
}
builder.append("\n");
builder.append(" public " + apiClassName + "(HollowDataAccess dataAccess) {\n");
builder.append(" super(dataAccess);\n\n");
for(HollowSchema schema : schemas) {
String schemaName = schema.getName();
switch (schema.getSchemaType()) {
case OBJECT:
builder.append(" this." + schemaName + " = new " + schemaName + "PerfAPI(dataAccess, \"" + schemaName + "\", this);\n");
break;
case LIST:
builder.append(" this." + schemaName + " = new HollowListTypePerfAPI(dataAccess, \"" + schemaName + "\", this);\n");
break;
case MAP:
builder.append(" this." + schemaName + " = new HollowMapTypePerfAPI(dataAccess, \"" + schemaName + "\", this);\n");
break;
case SET:
builder.append(" this." + schemaName + " = new HollowSetTypePerfAPI(dataAccess, \"" + schemaName + "\", this);\n");
break;
}
}
builder.append(" }\n");
builder.append("}");
return builder.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy