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

com.amazonaws.codegen.emitters.GeneratorPathProvider Maven / Gradle / Ivy

/*
 * Copyright 2011-2024 Amazon.com, Inc. or its affiliates. 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.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file 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.amazonaws.codegen.emitters;

import com.amazonaws.codegen.model.intermediate.IntermediateModel;

import static com.amazonaws.codegen.internal.Constants.AUTH_POLICY_ENUM_CLASS_DIR;
import static com.amazonaws.codegen.internal.Constants.PACKAGE_NAME_CUSTOM_AUTH_SUFFIX;
import static com.amazonaws.codegen.internal.Constants.PACKAGE_NAME_ENDPOINT_DISCOVERY_SUFFIX;
import static com.amazonaws.codegen.internal.Constants.PACKAGE_NAME_MODEL_SUFFIX;
import static com.amazonaws.codegen.internal.Constants.PACKAGE_NAME_WAITERS_SUFFIX;
import static com.amazonaws.codegen.internal.Constants.SMOKE_TESTS_DIR_NAME;

/**
 * Common paths used by generator tasks.
 */
public class GeneratorPathProvider {

    private final IntermediateModel model;
    private final String outputDirectory;
    private final String sourceDirectory;

    public GeneratorPathProvider(IntermediateModel model,
                          String outputDirectory,
                          String sourceDirectory) {
        this.model = model;
        this.outputDirectory = outputDirectory;
        this.sourceDirectory = sourceDirectory;
    }

    public String getModelDirectory() {
        return getBasePackageDirectory() + "/" + PACKAGE_NAME_MODEL_SUFFIX;
    }

    public String getTransformDirectory() {
        return getModelDirectory() + "/" + model.getCustomizationConfig().getTransformDirectory();
    }

    public String getBasePackageDirectory() {
        return sourceDirectory + "/" + getPackagePath();
    }

    public String getOutputDirectory() {
        return outputDirectory;
    }

    public String getSmokeTestDirectory() {
        return String.format("%s/../%s/%s/%s",
                             getOutputDirectory(),
                             SMOKE_TESTS_DIR_NAME,
                             getPackagePath(),
                             SMOKE_TESTS_DIR_NAME);
    }

    public String getWaitersDirectory() {
        return getBasePackageDirectory() + "/" + PACKAGE_NAME_WAITERS_SUFFIX;
    }

    public String getPolicyEnumDirectory() {
        return getOutputDirectory() + "/" + AUTH_POLICY_ENUM_CLASS_DIR;
    }

    public String getAuthorizerDirectory() {
        return getBasePackageDirectory() + "/" + PACKAGE_NAME_CUSTOM_AUTH_SUFFIX;
    }

    public String getEndpointDiscoveryDirectory() {
        return getBasePackageDirectory() + "/" + PACKAGE_NAME_ENDPOINT_DISCOVERY_SUFFIX;
    }

    private String getPackagePath() {
        return model.getMetadata().getPackagePath();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy