/* * Copyright (C) 2005-2009 Alfresco Software Limited. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * As a special exception to the terms and conditions of version 2.0 of * the GPL, you may redistribute this Program in connection with Free/Libre * and Open Source Software ("FLOSS") applications as described in Alfresco's * FLOSS exception. You should have recieved a copy of the text describing * the FLOSS exception, and it is also available here: * http://www.alfresco.com/legal/licensing" */ package org.alfresco.repo.domain.contentdata; import java.io.Serializable; import java.util.Locale; import org.alfresco.repo.cache.SimpleCache; import org.alfresco.repo.content.cleanup.EagerContentStoreCleaner; import org.alfresco.repo.domain.LocaleDAO; import org.alfresco.repo.domain.encoding.EncodingDAO; import org.alfresco.repo.domain.mimetype.MimetypeDAO; import org.alfresco.service.cmr.repository.ContentData; import org.alfresco.util.Pair; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.dao.ConcurrencyFailureException; /** * Abstract implementation for ContentData DAO. *

* This provides basic services such as caching, but defers to the underlying implementation * for CRUD operations. *

* The DAO deals in {@link ContentData} instances. The cache is primarily present to decode * IDs into ContentData instances. * * @author Derek Hulley * @since 3.2 */ public abstract class AbstractContentDataDAOImpl implements ContentDataDAO { private static Log logger = LogFactory.getLog(AbstractContentDataDAOImpl.class); private static final Long CACHE_NULL_LONG = Long.MIN_VALUE; private MimetypeDAO mimetypeDAO; private EncodingDAO encodingDAO; private LocaleDAO localeDAO; private EagerContentStoreCleaner contentStoreCleaner; private SimpleCache contentDataCache; public void setMimetypeDAO(MimetypeDAO mimetypeDAO) { this.mimetypeDAO = mimetypeDAO; } public void setEncodingDAO(EncodingDAO encodingDAO) { this.encodingDAO = encodingDAO; } public void setLocaleDAO(LocaleDAO localeDAO) { this.localeDAO = localeDAO; } /** * Set this property to enable eager cleanup of orphaned content. * * @param contentStoreCleaner an eager cleaner (may be null) */ public void setContentStoreCleaner(EagerContentStoreCleaner contentStoreCleaner) { this.contentStoreCleaner = contentStoreCleaner; } /** * @param contentDataCache the cache of IDs to ContentData and vice versa */ public void setContentDataCache(SimpleCache contentDataCache) { this.contentDataCache = contentDataCache; } /** * Register new content for post-rollback handling */ protected void registerNewContentUrl(String contentUrl) { if (contentStoreCleaner != null) { contentStoreCleaner.registerNewContentUrl(contentUrl); } } /** * Register orphaned content for post-commit handling */ protected void registerOrphanedContentUrl(String contentUrl) { if (contentStoreCleaner != null) { contentStoreCleaner.registerOrphanedContentUrl(contentUrl); } } /** * {@inheritDoc} */ public Pair createContentData(ContentData contentData) { /* * TODO: Cache */ ContentDataEntity contentDataEntity = createContentDataEntity(contentData); // Done return new Pair(contentDataEntity.getId(), contentData); } /** * {@inheritDoc} */ public Pair getContentData(Long id) { /* * TODO: Cache */ ContentDataEntity contentDataEntity = getContentDataEntity(id); if (contentDataEntity == null) { return null; } // Convert back to ContentData ContentData contentData = makeContentData(contentDataEntity); // Done return new Pair(id, contentData); } /** * {@inheritDoc} */ public void deleteContentData(Long id) { int deleted = deleteContentDataEntity(id); if (deleted < 1) { throw new ConcurrencyFailureException("ContetntData with ID " + id + " no longer exists"); } return; } /** * Translates this instance into an externally-usable ContentData instance. */ private ContentData makeContentData(ContentDataEntity contentDataEntity) { // Decode content URL String contentUrl = contentDataEntity.getContentUrl(); long size = contentDataEntity.getSize() == null ? 0L : contentDataEntity.getSize().longValue(); // Decode mimetype Long mimetypeId = contentDataEntity.getMimetypeId(); String mimetype = null; if (mimetypeId != null) { mimetype = mimetypeDAO.getMimetype(mimetypeId).getSecond(); } // Decode encoding Long encodingId = contentDataEntity.getEncodingId(); String encoding = null; if (encodingId != null) { encoding = encodingDAO.getEncoding(encodingId).getSecond(); } // Decode locale Long localeId = contentDataEntity.getLocaleId(); Locale locale = null; if (localeId != null) { locale = localeDAO.getLocalePair(localeId).getSecond(); } // Build the ContentData ContentData contentData = new ContentData(contentUrl, mimetype, size, encoding, locale); // Done return contentData; } /** * Translates the {@link ContentData} into persistable values using the helper DAOs */ private ContentDataEntity createContentDataEntity(ContentData contentData) { // Resolve the content URL Long contentUrlId = null; String contentUrl = contentData.getContentUrl(); long size = contentData.getSize(); if (contentUrl != null) { // We must find or create the ContentUrlEntity contentUrlId = getOrCreateContentUrlEntity(contentUrl, size).getId(); } // Resolve the mimetype Long mimetypeId = null; String mimetype = contentData.getMimetype(); if (mimetype != null) { mimetypeId = mimetypeDAO.getOrCreateMimetype(mimetype).getFirst(); } // Resolve the encoding Long encodingId = null; String encoding = contentData.getEncoding(); if (encoding != null) { encodingId = encodingDAO.getOrCreateEncoding(encoding).getFirst(); } // Resolve the locale Long localeId = null; Locale locale = contentData.getLocale(); if (locale != null) { localeId = localeDAO.getOrCreateLocalePair(locale).getFirst(); } // Create ContentDataEntity ContentDataEntity contentDataEntity = createContentDataEntity(contentUrlId, mimetypeId, encodingId, localeId); // Done return contentDataEntity; } /** * Caching method that creates an entity for content_url_entity. */ private ContentUrlEntity getOrCreateContentUrlEntity(String contentUrl, long size) { /* * TODO: Check for cache requirements */ // Create the content URL entity ContentUrlEntity contentUrlEntity = getContentUrlEntity(contentUrl); // If it exists, then we can just re-use it, but check that the size is consistent if (contentUrlEntity != null) { // Reuse it long existingSize = contentUrlEntity.getSize(); if (size != existingSize) { logger.warn( "Re-using Content URL, but size is mismatched: \n" + " Inbound: " + contentUrl + "\n" + " Existing: " + contentUrlEntity); } } else { // Create it contentUrlEntity = createContentUrlEntity(contentUrl, size); } // Done return contentUrlEntity; } /** * @param contentUrl the content URL to create or search for */ protected abstract ContentUrlEntity createContentUrlEntity(String contentUrl, long size); /** * @param id the ID of the content url entity * @return Return the entity or null if it doesn't exist */ protected abstract ContentUrlEntity getContentUrlEntity(Long id); /** * @param contentUrl the URL of the content url entity * @return Return the entity or null if it doesn't exist */ protected abstract ContentUrlEntity getContentUrlEntity(String contentUrl); /** * Delete the entity with the given ID * @return Returns the number of rows deleted */ protected abstract int deleteContentUrlEntity(Long id); /** * Create the row for the alf_content_data */ protected abstract ContentDataEntity createContentDataEntity( Long contentUrlId, Long mimetypeId, Long encodingId, Long localeId); /** * @param id the entity ID * @return Returns the entity or null if it doesn't exist */ protected abstract ContentDataEntity getContentDataEntity(Long id); /** * Delete the entity with the given ID * * @return Returns the number of rows deleted */ protected abstract int deleteContentDataEntity(Long id); }