Package org.jasig.portal.events.aggr.portlets

Source Code of org.jasig.portal.events.aggr.portlets.JpaAggregatedPortletLookupDao

/**
* Licensed to Jasig under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Jasig licenses this file to you 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.jasig.portal.events.aggr.portlets;

import java.util.LinkedHashSet;
import java.util.Set;

import javax.persistence.FlushModeType;
import javax.persistence.TypedQuery;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;

import org.jasig.portal.jpa.BaseAggrEventsJpaDao;
import org.jasig.portal.jpa.OpenEntityManager;
import org.jasig.portal.jpa.cache.EntityManagerCache;
import org.jasig.portal.portlet.dao.IPortletDefinitionDao;
import org.jasig.portal.portlet.om.IPortletDefinition;
import org.jasig.portal.utils.cache.CacheKey;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.TransactionStatus;
import org.springframework.transaction.support.TransactionCallback;

import com.google.common.base.Function;

/**
* JPA dao to manage aggregated tab mappings
*
* @author Eric Dalquist
* @version $Revision$
*/
@Repository
public class JpaAggregatedPortletLookupDao extends BaseAggrEventsJpaDao implements AggregatedPortletLookupDao {
    private CriteriaQuery<AggregatedPortletMappingImpl> findAllPortletMappingsQuery;

    private EntityManagerCache entityManagerCache;
    private IPortletDefinitionDao portletDefinitionDao;
   
    @Autowired
    public void setPortletDefinitionDao(IPortletDefinitionDao portletDefinitionDao) {
        this.portletDefinitionDao = portletDefinitionDao;
    }

    @Autowired
    public void setEntityManagerCache(EntityManagerCache entityManagerCache) {
        this.entityManagerCache = entityManagerCache;
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        this.findAllPortletMappingsQuery = this.createCriteriaQuery(new Function<CriteriaBuilder, CriteriaQuery<AggregatedPortletMappingImpl>>() {
            @Override
            public CriteriaQuery<AggregatedPortletMappingImpl> apply(CriteriaBuilder cb) {
                final CriteriaQuery<AggregatedPortletMappingImpl> criteriaQuery = cb.createQuery(AggregatedPortletMappingImpl.class);
                criteriaQuery.from(AggregatedPortletMappingImpl.class);
                return criteriaQuery;
            }
        });
    }
   
    @OpenEntityManager(unitName = PERSISTENCE_UNIT_NAME)
    @Override
    public AggregatedPortletMapping getMappedPortletForFname(final String fname) {
        final CacheKey key = CacheKey.build(this.getClass().getName(), fname);
       
        AggregatedPortletMapping portletMapping = this.entityManagerCache.get(PERSISTENCE_UNIT_NAME, key);
        if (portletMapping != null) {
            return portletMapping;
        }
       
        final NaturalIdQuery<AggregatedPortletMappingImpl> query = this.createNaturalIdQuery(AggregatedPortletMappingImpl.class);
        query.using(AggregatedPortletMappingImpl_.fname, fname);
        portletMapping = query.load();
        if (portletMapping != null) {
            this.entityManagerCache.put(PERSISTENCE_UNIT_NAME, key, portletMapping);
            return portletMapping;
        }
       
        return this.getTransactionOperations().execute(new TransactionCallback<AggregatedPortletMapping>() {
            @Override
            public AggregatedPortletMapping doInTransaction(TransactionStatus status) {
                final IPortletDefinition portletDefinition = portletDefinitionDao.getPortletDefinitionByFname(fname);
                final String name;
                if (portletDefinition != null) {
                    name = portletDefinition.getName();
                }
                else {
                    name = fname;
                }
               
                final AggregatedPortletMappingImpl aggregatedGroupMapping = new AggregatedPortletMappingImpl(name, fname);
                getEntityManager().persist(aggregatedGroupMapping);
               
                logger.debug("Created {}", aggregatedGroupMapping);
                entityManagerCache.put(PERSISTENCE_UNIT_NAME, key, aggregatedGroupMapping);
               
                return aggregatedGroupMapping;
            }
        });
    }

    @Override
    public Set<AggregatedPortletMapping> getPortletMappings() {
        final TypedQuery<AggregatedPortletMappingImpl> cachedQuery = this.createCachedQuery(this.findAllPortletMappingsQuery);
        cachedQuery.setFlushMode(FlushModeType.COMMIT);
       
        return new LinkedHashSet<AggregatedPortletMapping>(cachedQuery.getResultList());
    }
}
TOP

Related Classes of org.jasig.portal.events.aggr.portlets.JpaAggregatedPortletLookupDao

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.