CarDaoBase.java

// license-header java merge-point
//
// Attention: Generated code! Do not modify by hand! hibernate4=true hibernateVersion=4.3.6.Final
// Generated by hibernate/SpringHibernateDaoBase.vsl in andromda-spring-cartridge on 08/18/2014 15:29:43-0400. Do not modify by hand!.
//
package org.andromda.samples.carrental.inventory;

import java.security.Principal;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.annotation.Resource;
import org.andromda.samples.carrental.PrincipalStore;
import org.andromda.samples.carrental.PropertySearch;
import org.andromda.samples.carrental.Search;
import org.andromda.spring.PaginationResult;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.Transformer;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.Criteria;
import org.hibernate.Query;
import org.hibernate.ScrollableResults;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.stereotype.Repository;

/**
 * <p>
 * Base Spring DAO Class: is able to create, update, remove, load, and find
 * objects of type <code>Car</code>.
 * </p>
 *
 * @see Car
 */
@Repository
public abstract class CarDaoBase
    implements CarDao
{
    /**
     * For backwards compatibility with HibernateDao method
     * @deprecated Use LogFactory.getLog on each subclass, for the correct class name
     * Apache commons logging logger used by all subclasses
     */
    @Deprecated
    protected Log logger = LogFactory.getLog(CarDaoBase.class);

    @Resource
    private SessionFactory sessionFactory;
    /**
     * @param sessionFactoryIn
     */
    public void setSessionFactory(SessionFactory sessionFactoryIn) {
        this.sessionFactory = sessionFactoryIn;
    }
    /**
     * @return SessionFactory
     */
    protected SessionFactory getSessionFactory() {
        return this.sessionFactory;
    }
    /**
     * @return currentSession
     */
    protected Session getSession() {
        return this.sessionFactory.getCurrentSession();
    }
    /**
     * For backwards compatibility with HibernateDao method
     * @deprecated Use this.sessionFactory.getCurrentSession() instead
     * @param ignore boolean - always create new session if needed
     * @return currentSession
     */
    @Deprecated
    protected Session getSession(boolean ignore) {
        return this.getSession();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object get(final int transform, final Long id)
    {
        if (id == null)
        {
            throw new IllegalArgumentException(
                "Car.get - 'id' can not be null");
        }
        final Object entity = this.sessionFactory.getCurrentSession().get(CarImpl.class, id);
        return transformEntity(transform, (Car)entity);
    }
    /**
     * {@inheritDoc}
     */
    @Override
    public Car get(Long id)
    {
        return (Car)this.get(TRANSFORM_NONE, id);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object load(final int transform, final Long id)
    {
        if (id == null)
        {
            throw new IllegalArgumentException(
                "Car.load - 'id' can not be null");
        }
        final Object entity = this.sessionFactory.getCurrentSession().get(CarImpl.class, id);
        return transformEntity(transform, (Car)entity);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Car load(Long id)
    {
        return (Car)this.load(TRANSFORM_NONE, id);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> loadAll()
    {
        return (Collection<Car>) this.loadAll(CarDao.TRANSFORM_NONE);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> loadAll(final int transform)
    {
        return this.loadAll(transform, -1, -1);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> loadAll(final int pageNumber, final int pageSize)
    {
        return this.loadAll(CarDao.TRANSFORM_NONE, pageNumber, pageSize);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> loadAll(final int transform, final int pageNumber, final int pageSize)
    {
        final Criteria criteria = this.sessionFactory.getCurrentSession().createCriteria(CarImpl.class);
        if (pageNumber > 0 && pageSize > 0)
        {
            criteria.setFirstResult(this.calculateFirstResult(pageNumber, pageSize));
            criteria.setMaxResults(pageSize);
        }
        final Collection<?> results = criteria.list();
        this.transformEntities(transform, results);
        return results;
    }

    /**
     * firstResult = (pageNumber - 1) * pageSize
     * @param pageNumber
     * @param pageSize
     * @return firstResult
     */
    protected int calculateFirstResult(int pageNumber, int pageSize)
    {
        int firstResult = 0;
        if (pageNumber > 0)
        {
            firstResult = (pageNumber - 1) * pageSize;
        }
        return firstResult;
    }

    /**
     * prePersist event - This method is called before creating the entity
     */
    protected void _prePersist(final Car car)
    {
    }
     
    /**
     * postPersist event - This method is called after creating the entity
     */
    protected void _postPersist(final Car car)
    {
    }
     
    /**
     * preUpdate event - This method is called before updating the entity
     */
    protected void _preUpdate(final Car car)
    {
    }
     
    /**
     * postUpdate event - This method is called after updating the entity
     */
    protected void _postUpdate(final Car car)
    {
    }
     
    /**
     * preRemove event - This method is called before deleting the entity
     */
    protected void _preRemove(final Car car)
    {
    }
     
    /**
     * postRemove event - This method is called after deleting the entity
     */
    protected void _postRemove(final Car car)
    {
    }
     
    /**
     * {@inheritDoc}
     */
    @Override
    public Car create(Car car)
    {
        return (Car)this.create(CarDao.TRANSFORM_NONE, car);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object create(final int transform, final Car car)
    {
        if (car == null)
        {
            throw new IllegalArgumentException(
                "Car.create - 'car' can not be null");
        }

        //prePersist event
        _prePersist(car);

        this.sessionFactory.getCurrentSession().save(car);

        //postPersist event
        _postPersist(car);

        return this.transformEntity(transform, car);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> create(final Collection<Car> entities)
    {
        return (Collection<Car>) create(CarDao.TRANSFORM_NONE, entities);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> create(final int transform, final Collection<Car> entities)
    {
        if (entities == null)
        {
            throw new IllegalArgumentException(
                "Car.create - 'entities' can not be null");
        }
        Collection<Object> transformed = new ArrayList<Object>();
        for (Car entity : entities)
        {
            transformed.add(create(transform, entity));
        }
        return transformed;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Car create(
        String registrationNo,
        String inventoryNo)
    {
        return (Car)this.create(CarDao.TRANSFORM_NONE, registrationNo, inventoryNo);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object create(
        final int transform,
        String registrationNo,
        String inventoryNo)
    {
        Car entity = new CarImpl();
        entity.setRegistrationNo(registrationNo);
        entity.setInventoryNo(inventoryNo);
        return this.create(transform, entity);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Car create(
        CarType carType,
        String inventoryNo,
        String registrationNo)
    {
        return (Car)this.create(CarDao.TRANSFORM_NONE, carType, inventoryNo, registrationNo);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object create(
        final int transform,
        CarType carType,
        String inventoryNo,
        String registrationNo)
    {
        Car entity = new CarImpl();
        entity.setCarType(carType);
        entity.setInventoryNo(inventoryNo);
        entity.setRegistrationNo(registrationNo);
        return this.create(transform, entity);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void update(Car car)
    {
        if (car == null)
        {
            throw new IllegalArgumentException(
                "Car.update - 'car' can not be null");
        }
        
        //preUpdate event
        _preUpdate(car);

        this.sessionFactory.getCurrentSession().update(car);

        //postUpdate event
        _postUpdate(car);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void update(final Collection<Car> entities)
    {
        if (entities == null)
        {
            throw new IllegalArgumentException(
                "Car.update - 'entities' can not be null");
        }
        for (Car entity : entities)
        {
            update(entity);
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void remove(Car car)
    {
        if (car == null)
        {
            throw new IllegalArgumentException(
                "Car.remove - 'car' can not be null");
        }
        //preRemove event
        _preRemove(car);
        
        this.sessionFactory.getCurrentSession().delete(car);

        //postRemove event
        _postRemove(car);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void remove(Long id)
    {
        if (id == null)
        {
            throw new IllegalArgumentException(
                "Car.remove - 'id' can not be null");
        }
        Car entity = this.get(id);
        if (entity != null)
        {
            this.remove(entity);
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void remove(Collection<Car> entities)
    {
        if (entities == null)
        {
            throw new IllegalArgumentException(
                "Car.remove - 'entities' can not be null");
        }
        for (Car entity : entities)
        {
            //preRemove event
            _preRemove(entity);

            this.sessionFactory.getCurrentSession().delete(entity);

            //postRemove event
            _postRemove(entity);
        }
    }
    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> findByComfortClass(String comfortClass)
    {
        return (Collection<Car>)this.findByComfortClass(CarDao.TRANSFORM_NONE, comfortClass);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> findByComfortClass(final int transform, final String comfortClass)
    {
        return this.findByComfortClass(transform, -1, -1, comfortClass);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> findByComfortClass(final String queryString, final String comfortClass)
    {
        return (Collection<Car>)this.findByComfortClass(CarDao.TRANSFORM_NONE, queryString, comfortClass);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> findByComfortClass(final int pageNumber, final int pageSize, final String comfortClass)
    {
        return (Collection<Car>) this.findByComfortClass(CarDao.TRANSFORM_NONE, pageNumber, pageSize, comfortClass);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> findByComfortClass(final String queryString, final int pageNumber, final int pageSize, final String comfortClass)
    {
        return (Collection<Car>) this.findByComfortClass(CarDao.TRANSFORM_NONE, queryString, pageNumber, pageSize, comfortClass);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> findByComfortClass(final int transform, final String queryString, final String comfortClass)
    {
        return this.findByComfortClass(transform, queryString, -1, -1, comfortClass);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> findByComfortClass(final int transform, final int pageNumber, final int pageSize, final String comfortClass)
    {
        return this.findByComfortClass(transform, "from CarImpl as car where car.comfortClass = :comfortClass", pageNumber, pageSize, comfortClass);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings("unchecked")
    public Collection<?> findByComfortClass(final int transform, final String queryString, int pageNumber, int pageSize, final String comfortClass)
    {
        Query queryObject = this.sessionFactory.getCurrentSession().createQuery(queryString);
            queryObject.setParameter("comfortClass", comfortClass);
            if (pageNumber > 0 && pageSize > 0)
            {
                queryObject.setFirstResult(this.calculateFirstResult(pageNumber, pageSize));
                queryObject.setMaxResults(pageSize);
            }
            List results = queryObject.list();
            transformEntities(transform, results);
            return results;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> findAll()
    {
        return (Collection<Car>)this.findAll(CarDao.TRANSFORM_NONE);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> findAll(final int transform)
    {
        return this.findAll(transform, -1, -1);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> findAll(final String queryString)
    {
        return (Collection<Car>)this.findAll(CarDao.TRANSFORM_NONE, queryString);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> findAll(final int pageNumber, final int pageSize)
    {
        return (Collection<Car>) this.findAll(CarDao.TRANSFORM_NONE, pageNumber, pageSize);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public Collection<Car> findAll(final String queryString, final int pageNumber, final int pageSize)
    {
        return (Collection<Car>) this.findAll(CarDao.TRANSFORM_NONE, queryString, pageNumber, pageSize);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> findAll(final int transform, final String queryString)
    {
        return this.findAll(transform, queryString, -1, -1);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> findAll(final int transform, final int pageNumber, final int pageSize)
    {
        return this.findAll(transform, "from CarImpl as car", pageNumber, pageSize);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings("unchecked")
    public Collection<?> findAll(final int transform, final String queryString, int pageNumber, int pageSize)
    {
        Query queryObject = this.sessionFactory.getCurrentSession().createQuery(queryString);
            if (pageNumber > 0 && pageSize > 0)
            {
                queryObject.setFirstResult(this.calculateFirstResult(pageNumber, pageSize));
                queryObject.setMaxResults(pageSize);
            }
            List results = queryObject.list();
            transformEntities(transform, results);
            return results;
    }

    /**
     * Allows transformation of entities into value objects
     * (or something else for that matter), when the <code>transform</code>
     * flag is set to one of the constants defined in <code>CarDao</code>, please note
     * that the {@link #TRANSFORM_NONE} constant denotes no transformation, so the entity itself
     * will be returned.
     *
     * If the integer argument value is unknown {@link #TRANSFORM_NONE} is assumed.
     *
     * @param transform one of the constants declared in {@link CarDao}
     * @param entity an entity that was found
     * @return the transformed entity (i.e. new value object, etc)
     * @see CarDao#transformEntity(int, Car)
     */
    @Override
    public Object transformEntity(final int transform, final Car entity)
    {
        Object target = null;
        if (entity != null)
        {
            switch (transform)
            {
                case CarDao.TRANSFORM_NONE : // fall-through
                default:
                    target = entity;
            }
        }
        return target;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void transformEntities(final int transform, final Collection<?> entities)
    {
        switch (transform)
        {
            case CarDao.TRANSFORM_NONE : // fall-through
                default:
                // do nothing;
        }
    }

    /**
     * @see CarDao#toEntities(Collection)
     */
    @Override
    public void toEntities(final Collection<?> results)
    {
        if (results != null)
        {
            CollectionUtils.transform(results, this.ENTITYTRANSFORMER);
        }
    }

    /**
     * This anonymous transformer is designed to transform report query results
     * (which result in an array of entities) to {@link Car}
     * using the Jakarta Commons-Collections Transformation API.
     */
    private Transformer ENTITYTRANSFORMER =
        new Transformer()
        {
            @Override
            public Object transform(Object input)
            {
                Object result = null;
                if (input instanceof Object[])
                {
                    final Object[] rows = (Object[])input; 
                    result = toEntity(rows);
                }
                else if (input instanceof Car)
                {
                    result = input;
                }
                return result;
            }
        };

    /**
     * @param row
     * @return Car
     */
    protected Car toEntity(Object[] row)
    {
        Car target = null;
        if (row != null)
        {
            final int numberOfObjects = row.length;
            for (int ctr = 0; ctr < numberOfObjects; ctr++)
            {
                final Object object = row[ctr];
                if (object instanceof Car)
                {
                    target = (Car)object;
                    break;
                }
            }
        }
        return target;
    }

    /**
     * Gets the current <code>principal</code> if one has been set,
     * otherwise returns <code>null</code>.
     *
     * @return the current principal
     */
    protected Principal getPrincipal()
    {
        return PrincipalStore.get();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({ "unchecked" })
    public PaginationResult search(final int transform, final int pageNumber, final int pageSize, final Search search)
    {
        search.setPageNumber(pageNumber);
        search.setPageSize(pageSize);
        final PropertySearch propertySearch = new PropertySearch(
            this.sessionFactory.getCurrentSession(), CarImpl.class, search);
        final List results = propertySearch.executeAsList();
        this.transformEntities(transform, results);
        return new PaginationResult(results.toArray(new Object[results.size()]), propertySearch.getTotalCount());
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public PaginationResult search(final int pageNumber, final int pageSize, final Search search)
    {
        return this.search(CarDao.TRANSFORM_NONE, pageNumber, pageSize, search);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> search(final int transform, final Search search)
    {
        final PropertySearch propertySearch = new PropertySearch(
            this.sessionFactory.getCurrentSession(), CarImpl.class, search);
        final Collection<?> results = propertySearch.executeAsList();
        this.transformEntities(transform, results);
        return results;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings("unchecked")
    public Collection<Car> search(final Search search)
    {
        return (Collection<Car>) this.search(CarDao.TRANSFORM_NONE, search);
    }

    /**
     * Executes and returns the given Hibernate queryObject as a {@link PaginationResult} instance.
     * @param queryObject
     * @param transform
     * @param pageNumber
     * @param pageSize
     * @return PaginationResult
     */
    @SuppressWarnings({ "unchecked" })
    protected PaginationResult getPaginationResult(
        final Query queryObject,
        final int transform, int pageNumber, int pageSize)
    {
        final ScrollableResults scrollableResults = queryObject.scroll();
        scrollableResults.last();
        int totalCount = scrollableResults.getRowNumber();
        totalCount = totalCount >= 0 ? totalCount + 1 : 0;
        if (pageNumber > 0 && pageSize > 0)
        {
            queryObject.setFirstResult(this.calculateFirstResult(pageNumber, pageSize));
            queryObject.setMaxResults(pageSize);
        }
        // Unchecked transformation because Set object is reused, cannot be strongly typed.
        @SuppressWarnings("rawtypes")
        Collection results = new ArrayList(queryObject.list());
        transformEntities(transform, results);
        return new PaginationResult(results.toArray(new Object[results.size()]), totalCount);
    }


    /**
     * Create or Update the <code>car</code> instance in the persistent store.
     * @param car
     */
    @Override
    public Car createOrUpdate(Car car)
    {
        if(car.getId() == null)
        {
            return (Car)this.create(TRANSFORM_NONE,car);
        }
        else
        {
            this.update(car);
            return car;
        }
    }
    
    // spring-hibernate-dao-base merge-point
}