All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.speedment.plugins.spring.internal.GeneratedControllerTranslator Maven / Gradle / Ivy

/**
 *
 * Copyright (c) 2006-2017, Speedment, Inc. All Rights Reserved.
 *
 * 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.speedment.plugins.spring.internal;

import com.speedment.common.codegen.constant.SimpleType;
import com.speedment.common.codegen.model.*;
import com.speedment.common.codegen.model.Class;
import com.speedment.common.injector.Injector;
import com.speedment.common.injector.annotation.Inject;
import com.speedment.generator.translator.AbstractJavaClassTranslator;
import com.speedment.generator.translator.TranslatorSupport;
import com.speedment.runtime.config.Project;
import com.speedment.runtime.config.Table;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;

import java.lang.reflect.Type;
import java.util.stream.Collectors;

import static com.speedment.common.codegen.constant.DefaultType.list;

/**
 *
 * @author Emil Forslund
 * @since  1.0.0
 */
public final class GeneratedControllerTranslator extends AbstractJavaClassTranslator {

    private @Inject Injector injector;
    
    public GeneratedControllerTranslator(Table document) {
        super(document, Class::of);
    }
    
    @Override
    protected Class makeCodeGenModel(File file) {
        return newBuilder(file, getClassOrInterfaceName())
            .forEveryTable((clazz, table) -> {
                
                final Project project = getSupport().projectOrThrow();
                final TranslatorSupport projectSupport = new TranslatorSupport<>(injector, project);
                
                final Type appType = SimpleType.create(
                    projectSupport.basePackageName() + "." +
                    projectSupport.typeName() + "Application"
                );
                
                clazz.public_().abstract_();
                
                clazz.add(Field.of("app", appType)
                    .protected_()
                    .add(AnnotationUsage.of(Autowired.class))
                );
                
                clazz.add(Field.of("manager", getSupport().managerType())
                    .protected_()
                    .add(AnnotationUsage.of(Autowired.class))
                );
                
                file.add(Import.of(RequestMethod.class).static_().setStaticMember("GET"));
                file.add(Import.of(Collectors.class).static_().setStaticMember("toList"));
                
                clazz.add(Method.of("get", list(getSupport().entityType()))
                    .public_()
                    .add(AnnotationUsage.of(RequestMapping.class)
                        .put("value", Value.ofText("/" + getSupport().variableName()))
                        .put("method", Value.ofReference("GET"))
                    )
                    .add(Field.of("start", long.class)
                        .add(AnnotationUsage.of(RequestParam.class)
                            .put("value", Value.ofText("start"))
                            .put("defaultValue", Value.ofText("0"))
                        )
                    )
                    .add(Field.of("limit", long.class)
                        .add(AnnotationUsage.of(RequestParam.class)
                            .put("value", Value.ofText("limit"))
                            .put("defaultValue", Value.ofText("25"))
                        )
                    )
                    .add(
                        "return manager.stream()",
                        "    .skip(start)",
                        "    .limit(limit)",
                        "    .collect(toList());"
                    )
                );
            }).build();
    }
    
    @Override
    protected String getClassOrInterfaceName() {
        return "Generated" + getSupport().typeName() + "Controller";
    }
    
    @Override
    protected String getJavadocRepresentText() {
        return "The default REST controller logic";
    }

    @Override
    public boolean isInGeneratedPackage() {
        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy