ALF-9613: caching content store. Various improvements and bug fixes. Including:

ALF-10097: disk-persistent cache settings in ehcache
ALF-10098: clean up  process should remove empty parent directories from content cache disk directory
ALF-10126: timeToIdle ehcache property was not affecting cache cleaner job
ALF-10127: externally deleted cached content files were not re-cached until after the items expired from ehcache

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@30171 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Matt Ward
2011-09-02 09:03:49 +00:00
parent 1b2e8c53ec
commit ac8b3ce1fc
11 changed files with 409 additions and 71 deletions

View File

@@ -362,14 +362,4 @@
statistics="false" statistics="false"
timeToLiveSeconds="60" timeToLiveSeconds="60"
/> />
<!-- Caching Content Store -->
<cache
name="org.alfresco.cache.cachingContentStoreCache"
maxElementsInMemory="10000"
eternal="false"
timeToLiveSeconds="86400"
overflowToDisk="false"
statistics="false"
/>
</ehcache> </ehcache>

View File

@@ -18,7 +18,7 @@
<bean id="cachingContentStore" class="org.alfresco.repo.content.caching.CachingContentStore"> <bean id="cachingContentStore" class="org.alfresco.repo.content.caching.CachingContentStore">
<property name="backingStore" ref="backingStore"/> <property name="backingStore" ref="backingStore"/>
<property name="cache" ref="contentCache"/> <property name="cache" ref="contentCache"/>
<property name="cacheOnInbound" value="true"/> <property name="cacheOnInbound" value="${system.content.caching.cacheOnInbound}"/>
</bean> </bean>
@@ -51,6 +51,13 @@
<property name="cacheName"> <property name="cacheName">
<value>org.alfresco.cache.cachingContentStoreCache</value> <value>org.alfresco.cache.cachingContentStoreCache</value>
</property> </property>
<property name="eternal" value="false"/>
<property name="timeToLive" value="${system.content.caching.timeToLiveSeconds}"/>
<property name="timeToIdle" value="${system.content.caching.timeToIdleSeconds}"/>
<property name="maxElementsInMemory" value="${system.content.caching.maxElementsInMemory}"/>
<property name="maxElementsOnDisk" value="${system.content.caching.maxElementsOnDisk}"/>
<property name="overflowToDisk" value="true"/>
<property name="diskPersistent" value="true"/>
</bean> </bean>
</property> </property>
</bean> </bean>
@@ -70,7 +77,7 @@
</bean> </bean>
<bean id="cachedContentCleaner" class="org.alfresco.repo.content.caching.cleanup.CachedContentCleaner"> <bean id="cachedContentCleaner" class="org.alfresco.repo.content.caching.cleanup.CachedContentCleaner">
<property name="maxDeleteWatchCount" value="1"/> <property name="maxDeleteWatchCount" value="${system.content.caching.maxDeleteWatchCount}"/>
<property name="cache" ref="contentCache"/> <property name="cache" ref="contentCache"/>
</bean> </bean>
@@ -83,7 +90,7 @@
<ref bean="schedulerFactory" /> <ref bean="schedulerFactory" />
</property> </property>
<property name="cronExpression"> <property name="cronExpression">
<value>${system.content.cachedContentCleanup.cronExpression}</value> <value>${system.content.caching.contentCleanup.cronExpression}</value>
</property> </property>
</bean> </bean>

View File

@@ -747,3 +747,16 @@ publishing.root=${publishing.root.path}/${spaces.publishing.root.childname}
urlshortening.bitly.username=brianalfresco urlshortening.bitly.username=brianalfresco
urlshortening.bitly.api.key=R_ca15c6c89e9b25ccd170bafd209a0d4f urlshortening.bitly.api.key=R_ca15c6c89e9b25ccd170bafd209a0d4f
urlshortening.bitly.url.length=20 urlshortening.bitly.url.length=20
#
# Caching Content Store
#
system.content.caching.cacheOnInbound=true
system.content.caching.maxDeleteWatchCount=1
# Clean up every day at 3 am
system.content.caching.contentCleanup.cronExpression=0 0 3 * * ?
system.content.caching.timeToLiveSeconds=0
system.content.caching.timeToIdleSeconds=86400
system.content.caching.maxElementsInMemory=5000
system.content.caching.maxElementsOnDisk=10000

View File

@@ -51,6 +51,7 @@ public class CachingContentStore implements ContentStore
private ContentStore backingStore; private ContentStore backingStore;
private ContentCache cache; private ContentCache cache;
private boolean cacheOnInbound; private boolean cacheOnInbound;
private int maxCacheTries = 2;
static static
{ {
@@ -175,30 +176,23 @@ public class CachingContentStore implements ContentStore
return cacheAndRead(contentUrl); return cacheAndRead(contentUrl);
} }
private ContentReader cacheAndRead(String url) private ContentReader cacheAndRead(String url)
{ {
WriteLock writeLock = readWriteLock(url).writeLock(); WriteLock writeLock = readWriteLock(url).writeLock();
writeLock.lock(); writeLock.lock();
try try
{ {
if (!cache.contains(url)) for (int i = 0; i < maxCacheTries; i++)
{ {
if (cache.put(url, backingStore.getReader(url))) ContentReader reader = attemptCacheAndRead(url);
if (reader != null)
{ {
return cache.getReader(url); return reader;
}
else
{
return backingStore.getReader(url);
} }
} }
else // Have tried multiple times to cache the item and read it back from the cache
{ // but there is a recurring problem - give up and return the item from the backing store.
return cache.getReader(url);
}
}
catch(CacheMissException e)
{
return backingStore.getReader(url); return backingStore.getReader(url);
} }
finally finally
@@ -207,6 +201,31 @@ public class CachingContentStore implements ContentStore
} }
} }
private ContentReader attemptCacheAndRead(String url)
{
ContentReader reader = null;
try
{
if (!cache.contains(url))
{
if (cache.put(url, backingStore.getReader(url)))
{
reader = cache.getReader(url);
}
}
else
{
reader = cache.getReader(url);
}
}
catch(CacheMissException e)
{
cache.remove(url);
}
return reader;
}
/* /*
* @see org.alfresco.repo.content.ContentStore#getWriter(org.alfresco.repo.content.ContentContext) * @see org.alfresco.repo.content.ContentStore#getWriter(org.alfresco.repo.content.ContentContext)
*/ */
@@ -279,10 +298,40 @@ public class CachingContentStore implements ContentStore
@Override @Override
public boolean delete(String contentUrl) public boolean delete(String contentUrl)
{ {
if (cache.contains(contentUrl)) ReentrantReadWriteLock readWriteLock = readWriteLock(contentUrl);
cache.remove(contentUrl); ReadLock readLock = readWriteLock.readLock();
readLock.lock();
try
{
if (!cache.contains(contentUrl))
{
// The item isn't in the cache, so simply delete from the backing store
return backingStore.delete(contentUrl);
}
}
finally
{
readLock.unlock();
}
return backingStore.delete(contentUrl); WriteLock writeLock = readWriteLock.writeLock();
writeLock.lock();
try
{
// Double check the content still exists in the cache
if (cache.contains(contentUrl))
{
// The item is in the cache, so remove.
cache.remove(contentUrl);
}
// Whether the item was in the cache or not, it must still be deleted from the backing store.
return backingStore.delete(contentUrl);
}
finally
{
writeLock.unlock();
}
} }
/** /**

View File

@@ -23,7 +23,9 @@ import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertSame; import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyString; import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never; import static org.mockito.Mockito.never;
import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verify;
@@ -45,6 +47,7 @@ import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.mockito.ArgumentCaptor; import org.mockito.ArgumentCaptor;
import org.mockito.Mock; import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.runners.MockitoJUnitRunner; import org.mockito.runners.MockitoJUnitRunner;
/** /**
@@ -85,16 +88,40 @@ public class CachingContentStoreTest
@Test @Test
public void getReaderForItemMissingFromCache() public void getReaderForItemMissingFromCacheWillGiveUpAfterRetrying()
{ {
ContentReader sourceContent = mock(ContentReader.class); ContentReader sourceContent = mock(ContentReader.class);
when(cache.getReader("url")).thenThrow(new CacheMissException("url")); when(cache.getReader("url")).thenThrow(new CacheMissException("url"));
when(backingStore.getReader("url")).thenReturn(sourceContent); when(backingStore.getReader("url")).thenReturn(sourceContent);
when(cache.put("url", sourceContent)).thenReturn(true); when(cache.put("url", sourceContent)).thenReturn(true);
cachingStore.getReader("url"); ContentReader returnedReader = cachingStore.getReader("url");
// Upon failure, item is removed from cache
verify(cache, Mockito.atLeastOnce()).remove("url");
// The content comes direct from the backing store
assertSame(returnedReader, sourceContent);
} }
@Test
public void getReaderForItemMissingFromCacheWillRetryAndCanSucceed()
{
ContentReader sourceContent = mock(ContentReader.class);
ContentReader cachedContent = mock(ContentReader.class);
when(cache.getReader("url")).
thenThrow(new CacheMissException("url")).
thenReturn(cachedContent);
when(backingStore.getReader("url")).thenReturn(sourceContent);
when(cache.put("url", sourceContent)).thenReturn(true);
ContentReader returnedReader = cachingStore.getReader("url");
assertSame(returnedReader, cachedContent);
}
@Test @Test
public void getReaderForItemMissingFromCacheButNoContentToCache() public void getReaderForItemMissingFromCacheButNoContentToCache()
{ {
@@ -144,7 +171,35 @@ public class CachingContentStoreTest
verify(backingStore).getWriter(ctx); verify(backingStore).getWriter(ctx);
} }
@Test(expected=RuntimeException.class)
// Check that exceptions raised by the backing store's putContent(ContentReader)
// aren't swallowed and can therefore cause the transaction to fail.
public void exceptionRaisedWhenCopyingTempToBackingStoreIsPropogatedCorrectly()
throws ContentIOException, IOException
{
cachingStore = new CachingContentStore(backingStore, cache, true);
ContentContext ctx = ContentContext.NULL_CONTEXT;
ContentWriter bsWriter = mock(ContentWriter.class);
when(backingStore.getWriter(ctx)).thenReturn(bsWriter);
when(bsWriter.getContentUrl()).thenReturn("url");
ContentWriter cacheWriter = mock(ContentWriter.class);
when(cache.getWriter("url")).thenReturn(cacheWriter);
ContentReader readerFromCacheWriter = mock(ContentReader.class);
when(cacheWriter.getReader()).thenReturn(readerFromCacheWriter);
doThrow(new RuntimeException()).when(bsWriter).putContent(any(ContentReader.class));
cachingStore.getWriter(ctx);
// Get the stream listener and trigger it
ArgumentCaptor<ContentStreamListener> arg = ArgumentCaptor.forClass(ContentStreamListener.class);
verify(cacheWriter).addListener(arg.capture());
// Simulate a stream close
arg.getValue().contentStreamClosed();
}
@Test @Test
public void encodingAttrsCopiedToBackingStoreWriter() public void encodingAttrsCopiedToBackingStoreWriter()

View File

@@ -107,6 +107,12 @@ public class ContentCacheImpl implements ContentCache
if (memoryStore.contains(url)) if (memoryStore.contains(url))
{ {
String path = memoryStore.get(url); String path = memoryStore.get(url);
// Getting the path for a URL from the memoryStore will reset the timeToIdle for
// that URL. It is important to perform a reverse lookup as well to ensure that the
// cache file path to URL mapping is also kept in the cache.
memoryStore.get(Key.forCacheFile(path));
File cacheFile = new File(path); File cacheFile = new File(path);
if (cacheFile.exists()) if (cacheFile.exists())
{ {

View File

@@ -0,0 +1,228 @@
/*
* Copyright (C) 2005-2011 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.repo.content.caching;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.io.File;
import org.alfresco.repo.cache.SimpleCache;
import org.alfresco.repo.content.filestore.FileContentReader;
import org.alfresco.repo.content.filestore.FileContentWriter;
import org.alfresco.service.cmr.repository.ContentReader;
import org.alfresco.util.TempFileProvider;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.ArgumentCaptor;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.runners.MockitoJUnitRunner;
/**
* Tests for the ContentCacheImpl class.
*
* @author Matt Ward
*/
@RunWith(MockitoJUnitRunner.class)
public class ContentCacheImplTest
{
private ContentCacheImpl contentCache;
private @Mock SimpleCache<Key, String> lookupTable;
@Before
public void setUp() throws Exception
{
contentCache = new ContentCacheImpl();
contentCache.setMemoryStore(lookupTable);
contentCache.setCacheRoot(TempFileProvider.getTempDir());
}
@Test
public void canGetReaderForItemInCacheHavingLiveFile()
{
final String url = "store://content/url.bin";
Mockito.when(lookupTable.contains(Key.forUrl(url))).thenReturn(true);
final String path = tempfile().getAbsolutePath();
Mockito.when(lookupTable.get(Key.forUrl(url))).thenReturn(path);
FileContentReader reader = (FileContentReader) contentCache.getReader(url);
assertEquals("Reader should have correct URL", url, reader.getContentUrl());
assertEquals("Reader should be for correct cached content file", path, reader.getFile().getAbsolutePath());
// Important the get(path) was called, so that the timeToIdle is reset
// for the 'reverse lookup' as well as the URL to path mapping.
Mockito.verify(lookupTable).get(Key.forCacheFile(path));
}
@Test(expected=CacheMissException.class)
public void getReaderForItemInCacheButMissingContentFile()
{
final String url = "store://content/url.bin";
Mockito.when(lookupTable.contains(Key.forUrl(url))).thenReturn(true);
final String path = "/no/content/file/at/this/path.bin";
Mockito.when(lookupTable.get(Key.forUrl(url))).thenReturn(path);
try
{
contentCache.getReader(url);
}
finally
{
// Important the get(path) was called, so that the timeToIdle is reset
// for the 'reverse lookup' as well as the URL to path mapping.
Mockito.verify(lookupTable).get(Key.forCacheFile(path));
}
}
private File tempfile()
{
File file = TempFileProvider.createTempFile("cached-content", ".bin");
file.deleteOnExit();
return file;
}
@Test(expected=CacheMissException.class)
public void getReaderWhenItemNotInCache()
{
final String url = "store://content/url.bin";
Mockito.when(lookupTable.contains(Key.forUrl(url))).thenReturn(false);
contentCache.getReader(url);
}
@Test
public void contains()
{
final String url = "store://content/url.bin";
Mockito.when(lookupTable.contains(Key.forUrl(url))).thenReturn(true);
assertTrue(contentCache.contains(Key.forUrl(url)));
assertTrue(contentCache.contains(url));
Mockito.when(lookupTable.contains(Key.forUrl(url))).thenReturn(false);
assertFalse(contentCache.contains(Key.forUrl(url)));
assertFalse(contentCache.contains(url));
}
@Test
public void putIntoLookup()
{
final Key key = Key.forUrl("store://some/url");
final String value = "/some/path";
contentCache.putIntoLookup(key, value);
Mockito.verify(lookupTable).put(key, value);
}
@Test
public void getCacheFilePath()
{
final String url = "store://some/url.bin";
final String expectedPath = "/some/cache/file/path";
Mockito.when(lookupTable.get(Key.forUrl(url))).thenReturn(expectedPath);
String path = contentCache.getCacheFilePath(url);
assertEquals("Paths must match", expectedPath, path);
}
@Test
public void getContentUrl()
{
final File cacheFile = new File("/some/path");
final String expectedUrl = "store://some/url";
Mockito.when(lookupTable.get(Key.forCacheFile(cacheFile))).thenReturn(expectedUrl);
String url = contentCache.getContentUrl(cacheFile);
assertEquals("Content URLs should match", expectedUrl, url);
}
@Test
public void putForZeroLengthFile()
{
ContentReader contentReader = Mockito.mock(ContentReader.class);
Mockito.when(contentReader.getSize()).thenReturn(0L);
boolean putResult = contentCache.put("", contentReader);
assertFalse("Zero length files should not be cached", putResult);
}
@Test
public void putForNonEmptyFile()
{
ContentReader contentReader = Mockito.mock(ContentReader.class);
Mockito.when(contentReader.getSize()).thenReturn(999000L);
final String url = "store://some/url.bin";
boolean putResult = contentCache.put(url, contentReader);
assertTrue("Non-empty files should be cached", putResult);
ArgumentCaptor<File> cacheFileArg = ArgumentCaptor.forClass(File.class);
Mockito.verify(contentReader).getContent(cacheFileArg.capture());
// Check cached item is recorded properly in ehcache
Mockito.verify(lookupTable).put(Key.forUrl(url), cacheFileArg.getValue().getAbsolutePath());
Mockito.verify(lookupTable).put(Key.forCacheFile(cacheFileArg.getValue().getAbsolutePath()), url);
}
@Test
public void remove()
{
final String url = "store://some/url.bin";
final String path = "/some/path";
Mockito.when(lookupTable.get(Key.forUrl(url))).thenReturn(path);
contentCache.remove(url);
Mockito.verify(lookupTable).remove(Key.forUrl(url));
Mockito.verify(lookupTable).remove(Key.forCacheFile(path));
}
@Test
public void getWriter()
{
final String url = "store://some/url.bin";
FileContentWriter writer = (FileContentWriter) contentCache.getWriter(url);
writer.putContent("Some test content for " + getClass().getName());
assertEquals(url, writer.getContentUrl());
// Check cached item is recorded properly in ehcache
Mockito.verify(lookupTable).put(Key.forUrl(url), writer.getFile().getAbsolutePath());
Mockito.verify(lookupTable).put(Key.forCacheFile(writer.getFile().getAbsolutePath()), url);
}
}

View File

@@ -23,6 +23,7 @@ import java.io.File;
import org.alfresco.repo.content.caching.CacheFileProps; import org.alfresco.repo.content.caching.CacheFileProps;
import org.alfresco.repo.content.caching.ContentCacheImpl; import org.alfresco.repo.content.caching.ContentCacheImpl;
import org.alfresco.repo.content.caching.FileHandler; import org.alfresco.repo.content.caching.FileHandler;
import org.alfresco.util.Deleter;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Required; import org.springframework.beans.factory.annotation.Required;
@@ -130,8 +131,11 @@ public class CachedContentCleaner implements FileHandler
CacheFileProps props = new CacheFileProps(cacheFile); CacheFileProps props = new CacheFileProps(cacheFile);
props.delete(); props.delete();
cacheFile.delete(); cacheFile.delete();
Deleter.deleteEmptyParents(cacheFile, cache.getCacheRoot());
} }
@Required @Required
public void setCache(ContentCacheImpl cache) public void setCache(ContentCacheImpl cache)
{ {

View File

@@ -24,6 +24,7 @@ import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
import java.io.File; import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintWriter; import java.io.PrintWriter;
import org.alfresco.repo.content.caching.CacheFileProps; import org.alfresco.repo.content.caching.CacheFileProps;
@@ -93,6 +94,21 @@ public class CachedContentCleanupJobTest
} }
} }
@Test
public void emptyParentDirectoriesAreDeleted() throws FileNotFoundException
{
cleaner.setMaxDeleteWatchCount(0);
File file = new File(cacheRoot, "243235984/a/b/c/d.bin");
file.getParentFile().mkdirs();
PrintWriter writer = new PrintWriter(file);
writer.println("Content for emptyParentDirectoriesAreDeleted");
writer.close();
assertTrue("Directory should exist", new File(cacheRoot, "243235984/a/b/c").exists());
cleaner.handle(file);
assertFalse("Directory should have been deleted", new File(cacheRoot, "243235984").exists());
}
@Test @Test
public void markedFilesHaveDeletionDeferredUntilCorrectPassOfCleaner() public void markedFilesHaveDeletionDeferredUntilCorrectPassOfCleaner()

View File

@@ -59,7 +59,7 @@ public class SlowContentStoreTest
TimedStoreReader storeReader = new TimedStoreReader(); TimedStoreReader storeReader = new TimedStoreReader();
storeReader.execute(); storeReader.execute();
assertTrue("First read should take a while", storeReader.timeTakenMillis() > 1000); assertTrue("First read should take a while", storeReader.timeTakenMillis() > 1000);
logger.info(String.format("First read took %ds", storeReader.timeTakenMillis())); logger.debug(String.format("First read took %ds", storeReader.timeTakenMillis()));
// The content came from the slow backing store... // The content came from the slow backing store...
assertEquals("This is the content for my slow ReadableByteChannel", storeReader.content); assertEquals("This is the content for my slow ReadableByteChannel", storeReader.content);
@@ -69,7 +69,7 @@ public class SlowContentStoreTest
storeReader = new TimedStoreReader(); storeReader = new TimedStoreReader();
storeReader.execute(); storeReader.execute();
assertTrue("Subsequent reads should be fast", storeReader.timeTakenMillis() < 100); assertTrue("Subsequent reads should be fast", storeReader.timeTakenMillis() < 100);
logger.info(String.format("Cache read took %ds", storeReader.timeTakenMillis())); logger.debug(String.format("Cache read took %ds", storeReader.timeTakenMillis()));
// The content came from the slow backing store, but was cached... // The content came from the slow backing store, but was cached...
assertEquals("This is the content for my slow ReadableByteChannel", storeReader.content); assertEquals("This is the content for my slow ReadableByteChannel", storeReader.content);
} }
@@ -89,7 +89,7 @@ public class SlowContentStoreTest
TimedStoreReader storeReader = new TimedStoreReader(); TimedStoreReader storeReader = new TimedStoreReader();
storeReader.execute(); storeReader.execute();
assertTrue("First read should be fast", storeReader.timeTakenMillis() < 100); assertTrue("First read should be fast", storeReader.timeTakenMillis() < 100);
logger.info(String.format("First read took %ds", storeReader.timeTakenMillis())); logger.debug(String.format("First read took %ds", storeReader.timeTakenMillis()));
assertEquals("Content written from " + getClass().getSimpleName(), storeReader.content); assertEquals("Content written from " + getClass().getSimpleName(), storeReader.content);
// Subsequent reads will also hit the cache // Subsequent reads will also hit the cache
@@ -98,7 +98,7 @@ public class SlowContentStoreTest
storeReader = new TimedStoreReader(); storeReader = new TimedStoreReader();
storeReader.execute(); storeReader.execute();
assertTrue("Subsequent reads should be fast", storeReader.timeTakenMillis() < 100); assertTrue("Subsequent reads should be fast", storeReader.timeTakenMillis() < 100);
logger.info(String.format("Cache read took %ds", storeReader.timeTakenMillis())); logger.debug(String.format("Cache read took %ds", storeReader.timeTakenMillis()));
// The original cached content, still cached... // The original cached content, still cached...
assertEquals("Content written from " + getClass().getSimpleName(), storeReader.content); assertEquals("Content written from " + getClass().getSimpleName(), storeReader.content);
} }
@@ -113,7 +113,7 @@ public class SlowContentStoreTest
protected void doExecute() protected void doExecute()
{ {
content = cachingStore.getReader("any-url").getContentString(); content = cachingStore.getReader("any-url").getContentString();
logger.info("Read content: " + content); logger.debug("Read content: " + content);
} }
} }

View File

@@ -34,6 +34,7 @@ import org.alfresco.repo.content.UnsupportedContentUrlException;
import org.alfresco.service.cmr.repository.ContentIOException; import org.alfresco.service.cmr.repository.ContentIOException;
import org.alfresco.service.cmr.repository.ContentReader; import org.alfresco.service.cmr.repository.ContentReader;
import org.alfresco.service.cmr.repository.ContentWriter; import org.alfresco.service.cmr.repository.ContentWriter;
import org.alfresco.util.Deleter;
import org.alfresco.util.GUID; import org.alfresco.util.GUID;
import org.alfresco.util.Pair; import org.alfresco.util.Pair;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
@@ -613,7 +614,7 @@ public class FileContentStore
// Delete empty parents regardless of whether the file was ignore above. // Delete empty parents regardless of whether the file was ignore above.
if (deleteEmptyDirs && deleted) if (deleteEmptyDirs && deleted)
{ {
deleteEmptyParents(file); Deleter.deleteEmptyParents(file, getRootLocation());
} }
// done // done
@@ -626,38 +627,7 @@ public class FileContentStore
return deleted; return deleted;
} }
/**
* Deletes the parents of the specified file. The file itself must have been
* deleted before calling this method - since only empty directories can be deleted.
*
* @param file
*/
private void deleteEmptyParents(File file)
{
String root = getRootLocation();
File parent = file.getParentFile();
boolean deleted = false;
do
{
try
{
if (parent.isDirectory() && !parent.getCanonicalPath().equals(root))
{
// Only an empty directory will successfully be deleted.
deleted = parent.delete();
}
}
catch (IOException error)
{
logger.error("Unable to construct canonical path for " + parent.getAbsolutePath());
break;
}
parent = parent.getParentFile();
}
while(deleted);
}
/** /**
* Creates a new content URL. This must be supported by all * Creates a new content URL. This must be supported by all