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

org.rapidoid.jpa.DAO Maven / Gradle / Ivy

/*-
 * #%L
 * rapidoid-jpa
 * %%
 * Copyright (C) 2014 - 2018 Nikolche Mihajlovski and contributors
 * %%
 * 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.
 * #L%
 */

package org.rapidoid.jpa;

import org.rapidoid.RapidoidThing;
import org.rapidoid.u.U;

import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.List;


/**
 * @author Nikolche Mihajlovski
 * @since 2.0.0
 */
public abstract class DAO extends RapidoidThing {

	private final Class clazz;

	/**
	 * e.g. IF PersonService extends DAO<Person> THEN entity == Person
	 */
	private static Class inferEntityType(Class> daoClass) {

		U.must(daoClass.getSuperclass() == DAO.class, "Expected DAO to be superclass of %s, but found: %s!", daoClass,
			daoClass.getSuperclass());

		Type type = daoClass.getGenericSuperclass();
		ParameterizedType genericDao = (type instanceof ParameterizedType) ? ((ParameterizedType) type) : null;

		U.must(genericDao != null && genericDao.getActualTypeArguments().length > 0,
			"Cannot infer entity type for: %s", daoClass);

		Type arg = genericDao.getActualTypeArguments()[0];

		return arg instanceof Class ? (Class) arg : Object.class;
	}

	@SuppressWarnings("unchecked")
	public DAO() {
		this.clazz = (Class) inferEntityType((Class>) getClass());
	}

	public DAO(Class clazz) {
		this.clazz = clazz;
	}

	public Class getEntityType() {
		return clazz;
	}

	public Object insert(E record) {
		return JPA.insert(record);
	}

	public void update(E record) {
		JPA.update(record);
	}

	public void deleteById(Object id) {
		JPA.delete(clazz, id);
	}

	public void delete(E record) {
		JPA.delete(record);
	}

	public E get(Object id) {
		return JPA.get(clazz, id);
	}

	public List all() {
		return JPA.of(clazz).all();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy