com.jfinal.template.activerecord.sql.SqlKit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enjoy-sql Show documentation
Show all versions of enjoy-sql Show documentation
the jfinal enjoy plugin for normal java program to use sql management function.
/**
* Copyright (c) 2011-2017, James Zhan 詹波 ([email protected]).
*
* 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.jfinal.template.activerecord.sql;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.jfinal.template.Engine;
import com.jfinal.template.Template;
import com.jfinal.template.activerecord.ParaInDirective;
import com.jfinal.template.activerecord.ParaLikeDirective;
import com.jfinal.template.activerecord.SqlPara;
import com.jfinal.template.kit.StrKit;
import com.jfinal.template.source.ISource;
/**
* SqlKit
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public class SqlKit {
static final String SQL_TEMPLATE_MAP_KEY = "_SQL_TEMPLATE_MAP_";
static final String SQL_PARA_KEY = "_SQL_PARA_";
static final String PARA_ARRAY_KEY = "_PARA_ARRAY_"; // 此参数保持不动,已被用于模板取值 _PARA_ARRAY_[n]
private String configName;
private boolean devMode;
private Engine engine;
private List sqlSourceList = new ArrayList();
private Map sqlTemplateMap;
public SqlKit(String configName, boolean devMode) {
this.configName = configName;
this.devMode = devMode;
engine = new Engine(configName);
engine.setDevMode(devMode);
engine.addDirective("namespace", NameSpaceDirective.class);
engine.addDirective("sql", SqlDirective.class);
engine.addDirective("para", ParaDirective.class);
engine.addDirective("p", ParaDirective.class); // 配置 #para 指令的别名指令 #p,不建议使用,在此仅为兼容 3.0 版本
}
public SqlKit(String configName) {
this(configName, false);
}
public Engine getEngine() {
return engine;
}
public void setDevMode(boolean devMode) {
this.devMode = devMode;
engine.setDevMode(devMode);
}
public void setBaseSqlTemplatePath(String baseSqlTemplatePath) {
engine.setBaseTemplatePath(baseSqlTemplatePath);
}
public void addSqlTemplate(String sqlTemplate) {
if (StrKit.isBlank(sqlTemplate)) {
throw new IllegalArgumentException("sqlTemplate can not be blank");
}
sqlSourceList.add(new SqlSource(sqlTemplate));
}
public void addSqlTemplate(ISource sqlTemplate) {
if (sqlTemplate == null) {
throw new IllegalArgumentException("sqlTemplate can not be null");
}
sqlSourceList.add(new SqlSource(sqlTemplate));
}
public synchronized void parseSqlTemplate() {
Map sqlTemplateMap = new HashMap();
for (SqlSource ss : sqlSourceList) {
Template template = ss.isFile() ? engine.getTemplate(ss.file) : engine.getTemplate(ss.source);
Map