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

com.github.nalukit.nalu.processor.scanner.ApplicationAnnotationScanner Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2018 - Frank Hossfeld
 *
 *  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.github.nalukit.nalu.processor.scanner;

import com.github.nalukit.nalu.client.application.annotation.Application;
import com.github.nalukit.nalu.client.context.IsModuleContext;
import com.github.nalukit.nalu.processor.ProcessorException;
import com.github.nalukit.nalu.processor.ProcessorUtils;
import com.github.nalukit.nalu.processor.model.MetaModel;
import com.github.nalukit.nalu.processor.model.intern.ClassNameModel;

import javax.annotation.processing.ProcessingEnvironment;
import javax.lang.model.element.Element;
import javax.lang.model.element.TypeElement;
import javax.lang.model.type.MirroredTypeException;

import static java.util.Objects.isNull;

public class ApplicationAnnotationScanner {

  private ProcessorUtils processorUtils;

  private final ProcessingEnvironment processingEnvironment;

  private final MetaModel metaModel;

  private final Element applicationElement;

  @SuppressWarnings("unused")
  private ApplicationAnnotationScanner(Builder builder) {
    super();
    this.processingEnvironment = builder.processingEnvironment;
    this.metaModel             = builder.metaModel;
    this.applicationElement    = builder.applicationElement;
    setUp();
  }

  public static Builder builder() {
    return new Builder();
  }

  private void setUp() {
    this.processorUtils = ProcessorUtils.builder()
                                        .processingEnvironment(this.processingEnvironment)
                                        .build();
  }

  public void scan()
      throws ProcessorException {
    Application applicationAnnotation = applicationElement.getAnnotation(Application.class);
    if (!isNull(applicationAnnotation)) {
      TypeElement loaderTypeElement                 = this.getLoaderTypeElement(applicationAnnotation);
      TypeElement postLoaderTypeElement             = this.getPostLoaderTypeElement(applicationAnnotation);
      TypeElement contextTypeElement                = this.getContextTypeElement(applicationAnnotation);
      TypeElement customAlertPresenterTypeElement   = this.getCustomAlertPresenterTypeElement(applicationAnnotation);
      TypeElement customConfirmPresenterTypeElement = this.getCustomConfirmPresenterTypeElement(applicationAnnotation);
      metaModel.setGenerateToPackage(this.processorUtils.getPackageAsString(applicationElement));
      metaModel.setApplication(new ClassNameModel(applicationElement.toString()));
      metaModel.setLoader(new ClassNameModel(isNull(loaderTypeElement) ? "" : loaderTypeElement.toString()));
      metaModel.setPostLoader(new ClassNameModel(isNull(postLoaderTypeElement) ? "" : postLoaderTypeElement.toString()));
      if (isNull(contextTypeElement)) {
        throw new ProcessorException("Nalu-Processor: context in application annotation is null!");
      } else {
        metaModel.setContext(new ClassNameModel(contextTypeElement.toString()));
      }
      metaModel.setStartRoute(applicationAnnotation.startRoute());
      metaModel.setIllegalRouteTarget(applicationAnnotation.illegalRouteTarget());
      metaModel.setRemoveUrlParameterAtStart(applicationAnnotation.removeUrlParameterAtStart());
      metaModel.setUsingHash(applicationAnnotation.useHash());
      metaModel.setUsingColonForParametersInUrl(applicationAnnotation.useColonForParametersInUrl());
      metaModel.setStayOnSide(applicationAnnotation.stayOnSite());
      metaModel.setHistory(applicationAnnotation.history());
      metaModel.setCustomAlertPresenter(new ClassNameModel(isNull(customAlertPresenterTypeElement) ? "" : customAlertPresenterTypeElement.toString()));
      metaModel.setCustomConfirmPresenter(new ClassNameModel(isNull(customConfirmPresenterTypeElement) ? "" : customConfirmPresenterTypeElement.toString()));
      metaModel.setExtendingIsModuleContext(this.processorUtils.extendsClassOrInterface(this.processingEnvironment.getTypeUtils(),
                                                                                        contextTypeElement.asType(),
                                                                                        this.processingEnvironment.getElementUtils()
                                                                                                                  .getTypeElement(IsModuleContext.class.getCanonicalName())
                                                                                                                  .asType()));
    }
  }

  private TypeElement getLoaderTypeElement(Application applicationAnnotation) {
    try {
      applicationAnnotation.loader();
    } catch (MirroredTypeException exception) {
      return (TypeElement) this.processingEnvironment.getTypeUtils()
                                                     .asElement(exception.getTypeMirror());
    }
    return null;
  }

  private TypeElement getPostLoaderTypeElement(Application applicationAnnotation) {
    try {
      applicationAnnotation.postLoader();
    } catch (MirroredTypeException exception) {
      return (TypeElement) this.processingEnvironment.getTypeUtils()
                                                     .asElement(exception.getTypeMirror());
    }
    return null;
  }

  private TypeElement getContextTypeElement(Application applicationAnnotation) {
    try {
      applicationAnnotation.context();
    } catch (MirroredTypeException exception) {
      return (TypeElement) this.processingEnvironment.getTypeUtils()
                                                     .asElement(exception.getTypeMirror());
    }
    return null;
  }

  private TypeElement getCustomAlertPresenterTypeElement(Application applicationAnnotation) {
    try {
      applicationAnnotation.alertPresenter();
    } catch (MirroredTypeException exception) {
      return (TypeElement) this.processingEnvironment.getTypeUtils()
                                                     .asElement(exception.getTypeMirror());
    }
    return null;
  }

  private TypeElement getCustomConfirmPresenterTypeElement(Application applicationAnnotation) {
    try {
      applicationAnnotation.confirmPresenter();
    } catch (MirroredTypeException exception) {
      return (TypeElement) this.processingEnvironment.getTypeUtils()
                                                     .asElement(exception.getTypeMirror());
    }
    return null;
  }

  public static class Builder {

    ProcessingEnvironment processingEnvironment;

    MetaModel metaModel;

    Element applicationElement;

    public Builder processingEnvironment(ProcessingEnvironment processingEnvironment) {
      this.processingEnvironment = processingEnvironment;
      return this;
    }

    public Builder metaModel(MetaModel metaModel) {
      this.metaModel = metaModel;
      return this;
    }

    public Builder applicationElement(Element applicationElement) {
      this.applicationElement = applicationElement;
      return this;
    }

    public ApplicationAnnotationScanner build() {
      return new ApplicationAnnotationScanner(this);
    }

  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy