com.algoTrader.entity.WatchListItemDaoBase.java Source code

Java tutorial

Introduction

Here is the source code for com.algoTrader.entity.WatchListItemDaoBase.java

Source

// license-header java merge-point
//
// Attention: Generated code! Do not modify by hand!
// Generated by: hibernate/SpringHibernateDaoBase.vsl in andromda-spring-cartridge.
//
package com.algoTrader.entity;

import com.algoTrader.PrincipalStore;
import com.algoTrader.PropertySearch;
import com.algoTrader.Search;
import com.algoTrader.entity.security.Security;
import java.security.Principal;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.andromda.spring.PaginationResult;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.Transformer;
import org.hibernate.Criteria;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.ScrollableResults;
import org.hibernate.Session;
import org.springframework.dao.InvalidDataAccessResourceUsageException;
import org.springframework.orm.hibernate3.HibernateCallback;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;

/**
 * <p>
 * Base Spring DAO Class: is able to create, update, remove, load, and find
 * objects of type <code>WatchListItem</code>.
 * </p>
 *
 * @see WatchListItem
 */
public abstract class WatchListItemDaoBase extends HibernateDaoSupport implements WatchListItemDao {
    /**
     * {@inheritDoc}
     */
    @Override
    public Object get(final int transform, final int id) {
        final Object entity = this.getHibernateTemplate().get(WatchListItemImpl.class, new Integer(id));
        return transformEntity(transform, (WatchListItem) entity);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public WatchListItem get(int id) {
        return (WatchListItem) this.get(TRANSFORM_NONE, id);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object load(final int transform, final int id) {
        final Object entity = this.getHibernateTemplate().get(WatchListItemImpl.class, new Integer(id));
        return transformEntity(transform, (WatchListItem) entity);
    }

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

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({ "unchecked" })
    public Collection<WatchListItem> loadAll() {
        return (Collection<WatchListItem>) this.loadAll(WatchListItemDao.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(WatchListItemDao.TRANSFORM_NONE, pageNumber, pageSize);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> loadAll(final int transform, final int pageNumber, final int pageSize) {
        try {
            final Criteria criteria = this.getSession(false).createCriteria(WatchListItemImpl.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;
        } catch (HibernateException ex) {
            throw super.convertHibernateAccessException(ex);
        }
    }

    /**
     * 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;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public WatchListItem create(WatchListItem watchListItem) {
        return (WatchListItem) this.create(WatchListItemDao.TRANSFORM_NONE, watchListItem);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object create(final int transform, final WatchListItem watchListItem) {
        if (watchListItem == null) {
            throw new IllegalArgumentException("WatchListItem.create - 'watchListItem' can not be null");
        }
        this.getHibernateTemplate().save(watchListItem);
        return this.transformEntity(transform, watchListItem);
    }

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

    /**
     * {@inheritDoc}
     */
    @Override
    public Collection<?> create(final int transform, final Collection<WatchListItem> entities) {
        if (entities == null) {
            throw new IllegalArgumentException("WatchListItem.create - 'entities' can not be null");
        }
        this.getHibernateTemplate().executeWithNativeSession(new HibernateCallback() {
            public Object doInHibernate(Session session) throws HibernateException {
                for (WatchListItem entity : entities) {
                    create(transform, entity);
                }
                return null;
            }
        });
        return entities;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public WatchListItem create(boolean persistent) {
        return (WatchListItem) this.create(WatchListItemDao.TRANSFORM_NONE, persistent);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object create(final int transform, boolean persistent) {
        WatchListItem entity = new WatchListItemImpl();
        entity.setPersistent(persistent);
        return this.create(transform, entity);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public WatchListItem create(boolean persistent, Security security, Strategy strategy) {
        return (WatchListItem) this.create(WatchListItemDao.TRANSFORM_NONE, persistent, security, strategy);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object create(final int transform, boolean persistent, Security security, Strategy strategy) {
        WatchListItem entity = new WatchListItemImpl();
        entity.setPersistent(persistent);
        entity.setSecurity(security);
        entity.setStrategy(strategy);
        return this.create(transform, entity);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void update(WatchListItem watchListItem) {
        if (watchListItem == null) {
            throw new IllegalArgumentException("WatchListItem.update - 'watchListItem' can not be null");
        }
        this.getHibernateTemplate().update(watchListItem);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void update(final Collection<WatchListItem> entities) {
        if (entities == null) {
            throw new IllegalArgumentException("WatchListItem.update - 'entities' can not be null");
        }
        this.getHibernateTemplate().executeWithNativeSession(new HibernateCallback() {
            public Object doInHibernate(Session session) throws HibernateException {
                for (WatchListItem entity : entities) {
                    update(entity);
                }
                return null;
            }
        });
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void remove(WatchListItem watchListItem) {
        if (watchListItem == null) {
            throw new IllegalArgumentException("WatchListItem.remove - 'watchListItem' can not be null");
        }
        this.getHibernateTemplate().delete(watchListItem);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void remove(int id) {
        WatchListItem entity = this.get(id);
        if (entity != null) {
            this.remove(entity);
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void remove(Collection<WatchListItem> entities) {
        if (entities == null) {
            throw new IllegalArgumentException("WatchListItem.remove - 'entities' can not be null");
        }
        this.getHibernateTemplate().deleteAll(entities);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings({ "unchecked" })
    public WatchListItem findByStrategyAndSecurity(String strategyName, int securityId) {
        return (WatchListItem) this.findByStrategyAndSecurity(WatchListItemDao.TRANSFORM_NONE, strategyName,
                securityId);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Object findByStrategyAndSecurity(final int transform, final String strategyName, final int securityId) {
        return this.findByStrategyAndSecurity(transform,
                "from WatchListItemImpl where strategy.name = :strategyName and security.id = :securityId",
                strategyName, securityId);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public WatchListItem findByStrategyAndSecurity(final String queryString, final String strategyName,
            final int securityId) {
        return (WatchListItem) this.findByStrategyAndSecurity(WatchListItemDao.TRANSFORM_NONE, queryString,
                strategyName, securityId);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings("unchecked")
    public Object findByStrategyAndSecurity(final int transform, final String queryString,
            final String strategyName, final int securityId) {
        try {
            Query queryObject = super.getSession(false).createQuery(queryString);
            queryObject.setCacheable(true);
            queryObject.setParameter("strategyName", strategyName);
            queryObject.setParameter("securityId", new Integer(securityId));
            Set results = new LinkedHashSet(queryObject.list());
            Object result = null;
            if (results.size() > 1) {
                throw new InvalidDataAccessResourceUsageException(
                        "More than one instance of 'com.algoTrader.entity.WatchListItem"
                                + "' was found when executing query --> '" + queryString + "'");
            } else if (results.size() == 1) {
                result = results.iterator().next();
            }
            if (transform != TRANSFORM_NONE) {
                result = transformEntity(transform, (WatchListItem) result);
            }
            return result;
        } catch (HibernateException ex) {
            throw super.convertHibernateAccessException(ex);
        }
    }

    /**
     * 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>WatchListItemDao</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 WatchListItemDao}
     * @param entity an entity that was found
     * @return the transformed entity (i.e. new value object, etc)
     * @see WatchListItemDao#transformEntity(int, WatchListItem)
     */
    public Object transformEntity(final int transform, final WatchListItem entity) {
        Object target = null;
        if (entity != null) {
            switch (transform) {
            case WatchListItemDao.TRANSFORM_NONE: // fall-through
            default:
                target = entity;
            }
        }
        return target;
    }

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

    /**
     * @see WatchListItemDao#toEntities(Collection)
     */
    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 WatchListItem}
     * using the Jakarta Commons-Collections Transformation API.
     */
    private Transformer ENTITYTRANSFORMER = new Transformer() {
        public Object transform(Object input) {
            Object result = null;
            if (input instanceof Object[]) {
                result = toEntity((Object[]) input);
            } else if (input instanceof WatchListItem) {
                result = input;
            }
            return result;
        }
    };

    /**
     * @param row
     * @return WatchListItem
     */
    protected WatchListItem toEntity(Object[] row) {
        WatchListItem 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 WatchListItem) {
                    target = (WatchListItem) 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) {
        try {
            search.setPageNumber(pageNumber);
            search.setPageSize(pageSize);
            final PropertySearch propertySearch = new PropertySearch(this.getSession(false),
                    WatchListItemImpl.class, search);
            final List results = propertySearch.executeAsList();
            this.transformEntities(transform, results);
            return new PaginationResult(results.toArray(new Object[results.size()]),
                    propertySearch.getTotalCount());
        } catch (HibernateException ex) {
            throw super.convertHibernateAccessException(ex);
        }
    }

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

    /**
     * {@inheritDoc}
     */
    @Override
    public Set<?> search(final int transform, final Search search) {
        try {
            final PropertySearch propertySearch = new PropertySearch(this.getSession(false),
                    WatchListItemImpl.class, search);
            final Set<?> results = propertySearch.executeAsSet();
            this.transformEntities(transform, results);
            return results;
        } catch (HibernateException ex) {
            throw super.convertHibernateAccessException(ex);
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    @SuppressWarnings("unchecked")
    public Set<WatchListItem> search(final Search search) {
        return (Set<WatchListItem>) this.search(WatchListItemDao.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) {
        try {
            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.
            Set results = new LinkedHashSet(queryObject.list());
            transformEntities(transform, results);
            return new PaginationResult(results.toArray(new Object[results.size()]), totalCount);
        } catch (HibernateException ex) {
            throw super.convertHibernateAccessException(ex);
        }
    }

    // spring-hibernate-dao-base merge-point
}