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

com.livk.commons.util.SqlParserUtils Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2021-2024 spring-boot-extension 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
 *
 *       https://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.livk.commons.util;

import lombok.SneakyThrows;
import lombok.experimental.UtilityClass;
import net.sf.jsqlparser.parser.CCJSqlParserUtil;
import net.sf.jsqlparser.schema.Column;
import net.sf.jsqlparser.statement.Statement;
import net.sf.jsqlparser.statement.insert.Insert;
import net.sf.jsqlparser.statement.select.Select;
import net.sf.jsqlparser.statement.update.Update;
import net.sf.jsqlparser.util.TablesNamesFinder;

import java.util.Collections;
import java.util.List;
import java.util.Set;

/**
 * SqlParser相关工具类
 *
 * @author livk
 * @see CCJSqlParserUtil
 */
@UtilityClass
public class SqlParserUtils {

	/**
	 * 解析一个SQL,获取到所有的表
	 * @param sql sql
	 * @return table list
	 */
	@SneakyThrows
	public Set parseTable(String sql) {
		Statement statement = CCJSqlParserUtil.parse(sql);
		TablesNamesFinder namesFinder = new TablesNamesFinder<>();
		return namesFinder.getTables(statement);
	}

	/**
	 * 获取一个SQL的所有param
	 * @param sql sql
	 * @return params
	 */
	@SneakyThrows
	public List getParams(String sql) {
		Statement statement = CCJSqlParserUtil.parse(sql);
		if (statement instanceof Select select) {
			return select.getPlainSelect().getSelectItems().stream().map(Object::toString).toList();
		}
		else if (statement instanceof Update update) {
			return update.getUpdateSets()
				.stream()
				.flatMap(updateSet -> updateSet.getColumns().stream())
				.map(Column::getColumnName)
				.toList();
		}
		else if (statement instanceof Insert insert) {
			return insert.getColumns().stream().map(Column::getColumnName).toList();
		}
		return Collections.emptyList();
	}

	/**
	 * 格式化SQL
	 * @param sql sql
	 * @return format sql
	 */
	@SneakyThrows
	public String formatSql(String sql) {
		return CCJSqlParserUtil.parse(sql).toString();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy