com.wavemaker.runtime.data.dao.util.ParametersConfigurator Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (C) 2022-2023 WaveMaker, 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.wavemaker.runtime.data.dao.util;
import java.util.Collection;
import java.util.Map;
import java.util.Optional;
import org.apache.commons.lang3.tuple.Pair;
import org.hibernate.query.Query;
import org.hibernate.type.Type;
import com.wavemaker.runtime.commons.variable.VariableType;
import com.wavemaker.runtime.commons.variable.VariableTypeHelper;
import com.wavemaker.runtime.data.dao.query.types.HqlParameterTypeResolver;
import com.wavemaker.runtime.data.dao.query.types.ParameterTypeResolver;
/**
* @author Dilip Kumar
* @since 21/7/17
*/
// TODO Redundant class, remove
public class ParametersConfigurator {
private ParametersConfigurator() {
}
public static Query configure(Query query, Map parameters) {
return configure(query, parameters, new HqlParameterTypeResolver());
}
public static Query configure(
Query query, Map parameters, ParameterTypeResolver resolver) {
query.getParameterMetadata().getNamedParameterNames().forEach(parameterName -> {
final Object value = getValue(parameters, parameterName);
final Optional typeOptional = resolver.resolveType(parameterName);
boolean listType = Collection.class.isInstance(value);
if (typeOptional.isPresent()) {
if (listType) {
query.setParameterList(parameterName, (Collection) value, typeOptional.get());
} else {
query.setParameter(parameterName, value, typeOptional.get());
}
} else {
if (listType) {
query.setParameterList(parameterName, (Collection) value);
} else {
query.setParameter(parameterName, value);
}
}
});
return query;
}
private static Object getValue(final Map parameters, final String parameterName) {
Object value = parameters.get(parameterName);
// looking for system variables, only for null values.
if (value == null) {
final Pair variableInfo = VariableTypeHelper.fromVariableName(parameterName);
VariableType variableType = variableInfo.getLeft();
if (variableType.isVariable()) {
String variableName = variableInfo.getRight();
value = variableType.getValue(variableName);
}
}
return value;
}
}