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

org.quickperf.sql.execution.MaxJdbcQueryExecutionVerifier Maven / Gradle / Ivy

/*
 * 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.
 *
 * Copyright 2019-2021 the original author or authors.
 */

package org.quickperf.sql.execution;

import org.quickperf.issue.PerfIssue;
import org.quickperf.issue.VerifiablePerformanceIssue;
import org.quickperf.sql.annotation.ExpectMaxJdbcQueryExecution;
import org.quickperf.sql.select.analysis.SelectAnalysis;
import org.quickperf.unit.Count;

public class MaxJdbcQueryExecutionVerifier implements VerifiablePerformanceIssue  {

    public static final MaxJdbcQueryExecutionVerifier INSTANCE = new MaxJdbcQueryExecutionVerifier();

    private MaxJdbcQueryExecutionVerifier() { }

    @Override
    public PerfIssue verifyPerfIssue(ExpectMaxJdbcQueryExecution annotation, SqlAnalysis sqlAnalysis) {

        Count expectedExpectJdbcQueryExecution = new Count(annotation.value());
        Count jdbcQueryExecution = sqlAnalysis.getJdbcQueryExecutionNumber();

        if(jdbcQueryExecution.isGreaterThan(expectedExpectJdbcQueryExecution)) {
            String description = buildBaseDescription(jdbcQueryExecution, expectedExpectJdbcQueryExecution)
                               + buildPotentialSuggestionToFix(sqlAnalysis, jdbcQueryExecution
                                                             , expectedExpectJdbcQueryExecution);
            return new PerfIssue(description);
        }

        return PerfIssue.NONE;

    }

    private String buildBaseDescription(Count executionNumber, Count expectedExecutionNumber) {
        boolean severalExpectedExecutions = expectedExecutionNumber.getValue() > 1;
        boolean severalExecutions = executionNumber.getValue() > 1;
        return    "You may think that there " + (severalExpectedExecutions ? "were" : "was")
                + " at most <" + expectedExecutionNumber.getValue() + ">"
                + " JDBC query execution" + (severalExpectedExecutions ? "s" : "" ) + " (execute, executeQuery, executeBatch, ...)"
                + System.lineSeparator()
                + "       " + "But there " + (severalExecutions ? "are" : "is") + " <" + executionNumber.getValue() + ">...";
    }

    private String buildPotentialSuggestionToFix(SqlAnalysis sqlAnalysis, Count executionNumber, Count expectedExecutionNumber) {
        SelectAnalysis selectAnalysis = sqlAnalysis.getSelectAnalysis();
        SelectAnalysis.SameSelectTypesWithDifferentParamValues sameSelectTypesWithDifferentParamValues =
                selectAnalysis.getSameSelectTypesWithDifferentParamValues();
        if(   executionNumber.isGreaterThan(expectedExecutionNumber)
                && sameSelectTypesWithDifferentParamValues.evaluate()
        ) {
            return sameSelectTypesWithDifferentParamValues.getSuggestionToFixIt();
        }
        return "";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy