package dao;
// Generated Oct 23, 2017 4:32:37 PM by Hibernate Tools 3.5.0.Final

import java.util.List;
import javax.naming.InitialContext;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.LockMode;
import org.hibernate.SessionFactory;

import model.Projection;

import static org.hibernate.criterion.Example.create;

/**
 * Home object for domain model class Projection.
 * @see dao.Projection
 * @author Hibernate Tools
 */
public class ProjectionHome {

	private static final Log log = LogFactory.getLog(ProjectionHome.class);

	private final SessionFactory sessionFactory = getSessionFactory();

	protected SessionFactory getSessionFactory() {
		try {
			return (SessionFactory) new InitialContext().lookup("SessionFactory");
		} catch (Exception e) {
			log.error("Could not locate SessionFactory in JNDI", e);
			throw new IllegalStateException("Could not locate SessionFactory in JNDI");
		}
	}

	public void persist(Projection transientInstance) {
		log.debug("persisting Projection instance");
		try {
			sessionFactory.getCurrentSession().persist(transientInstance);
			log.debug("persist successful");
		} catch (RuntimeException re) {
			log.error("persist failed", re);
			throw re;
		}
	}

	public void attachDirty(Projection instance) {
		log.debug("attaching dirty Projection instance");
		try {
			sessionFactory.getCurrentSession().saveOrUpdate(instance);
			log.debug("attach successful");
		} catch (RuntimeException re) {
			log.error("attach failed", re);
			throw re;
		}
	}

	public void attachClean(Projection instance) {
		log.debug("attaching clean Projection instance");
		try {
			sessionFactory.getCurrentSession().lock(instance, LockMode.NONE);
			log.debug("attach successful");
		} catch (RuntimeException re) {
			log.error("attach failed", re);
			throw re;
		}
	}

	public void delete(Projection persistentInstance) {
		log.debug("deleting Projection instance");
		try {
			sessionFactory.getCurrentSession().delete(persistentInstance);
			log.debug("delete successful");
		} catch (RuntimeException re) {
			log.error("delete failed", re);
			throw re;
		}
	}

	public Projection merge(Projection detachedInstance) {
		log.debug("merging Projection instance");
		try {
			Projection result = (Projection) sessionFactory.getCurrentSession().merge(detachedInstance);
			log.debug("merge successful");
			return result;
		} catch (RuntimeException re) {
			log.error("merge failed", re);
			throw re;
		}
	}

	public Projection findById(dao.ProjectionId id) {
		log.debug("getting Projection instance with id: " + id);
		try {
			Projection instance = (Projection) sessionFactory.getCurrentSession().get("dao.Projection", id);
			if (instance == null) {
				log.debug("get successful, no instance found");
			} else {
				log.debug("get successful, instance found");
			}
			return instance;
		} catch (RuntimeException re) {
			log.error("get failed", re);
			throw re;
		}
	}

	public List<Projection> findByExample(Projection instance) {
		log.debug("finding Projection instance by example");
		try {
			List<Projection> results = (List<Projection>) sessionFactory.getCurrentSession()
					.createCriteria("dao.Projection").add(create(instance)).list();
			log.debug("find by example successful, result size: " + results.size());
			return results;
		} catch (RuntimeException re) {
			log.error("find by example failed", re);
			throw re;
		}
	}
}
