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

net.hasor.db.jdbc.paramer.MapSqlParameterSource Maven / Gradle / Ivy

There is a newer version: 4.2.5
Show newest version
/*
 * Copyright 2008-2009 the original author or authors.
 *
 * 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 net.hasor.db.jdbc.paramer;
import net.hasor.db.jdbc.SqlParameterSource;
import net.hasor.db.jdbc.core.ParameterDisposer;

import java.util.Map;
import java.util.function.Supplier;

/**
 * 一个 Map 到 SqlParameterSource 的桥,同时支持自动识别 Supplier 接口以获取具体参数。
 * @version : 2014-3-31
 * @author 赵永春 ([email protected])
 */
public class MapSqlParameterSource implements SqlParameterSource, ParameterDisposer {
    private final Map values;

    public MapSqlParameterSource(final Map values) {
        this.values = values;
    }

    @Override
    public boolean hasValue(final String paramName) {
        return this.values.containsKey(paramName);
    }

    @Override
    public Object getValue(final String paramName) throws IllegalArgumentException {
        Object object = this.values.get(paramName);
        if (object instanceof Supplier) {
            object = ((Supplier) object).get();
        }
        return object;
    }

    @Override
    public String[] getParameterNames() {
        return this.values.keySet().toArray(new String[0]);
    }

    @Override
    public void cleanupParameters() {
        for (Object val : this.values.values()) {
            if (val instanceof ParameterDisposer) {
                ((ParameterDisposer) val).cleanupParameters();
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy