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

org.yx.db.kit.SDBuilder 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.kit;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;

import org.yx.bean.Loader;
import org.yx.db.SDB;
import org.yx.exception.SumkException;
import org.yx.log.Logs;
import org.yx.util.S;

public final class SDBuilder {
	private String name;
	private Map param;

	public SDBuilder name(String name) {
		this.name = name;
		return this;
	}

	@SuppressWarnings("unchecked")
	public SDBuilder param(Object p) {
		if (p == null) {
			this.param = null;
			return this;
		}
		if (p instanceof Map) {
			this.param = (Map) p;
			return this;
		}
		this.param = S.bean().beanToMap(p, false);
		return this;
	}

	public  List list(Class clz) {
		List> list = SDB.list(name, param);
		if (list == null || list.isEmpty()) {
			return Collections.emptyList();
		}
		List retList = new ArrayList<>();
		for (Map ret : list) {
			retList.add(toBean(ret, clz));
		}
		return retList;
	}

	public  T queryOne(Class clz) {
		Map ret = SDB.queryOne(name, param);
		return toBean(ret, clz);
	}

	private  T toBean(Map ret, Class clz) {
		if (ret == null) {
			return null;
		}
		return S.bean().fillBeanIgnoreCaseAndUnderLine(ret, newInstance(clz));
	}

	private  T newInstance(Class clz) {
		try {
			return Loader.newInstance(clz);
		} catch (Exception e) {
			Logs.db().error(e.toString(), e);
			throw new SumkException(234125435, "创建" + clz.getName() + "的实例失败,可能是它没有无参的构造函数");
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy