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

org.yx.db.sql.MapedSqlBuilder Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/**
 * Copyright (C) 2016 - 2030 youtongluan.
 *
 * 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 org.yx.db.sql;

import java.util.Map;
import java.util.function.Function;

import org.yx.db.sql.token.MapValueHandler;
import org.yx.db.sql.token.MapedSqlTokenParser;
import org.yx.db.sql.token.ReplaceTokenHandler;
import org.yx.db.sql.token.StringTokenParser;
import org.yx.db.sql.token.VariableTokenHandler;

public class MapedSqlBuilder implements SqlBuilder {
	private final String _sql;
	private final Function valueHandler;

	public MapedSqlBuilder(String sql, Map map) {
		this._sql = sql;
		this.valueHandler = new MapValueHandler(map);
	}

	public MapedSqlBuilder(String sql, Function valueHandler) {
		this._sql = sql;
		this.valueHandler = valueHandler;
	}

	@Override
	public MapedSql toMapedSql() throws Exception {
		String sql = _sql;
		if (sql.contains("${")) {
			sql = new StringTokenParser("${", "}", ReplaceTokenHandler.create(valueHandler)).parse(sql);
		}
		return new MapedSqlTokenParser("#{", "}", VariableTokenHandler.create(valueHandler)).parse(sql);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy