AVMSyncService.update() now snapshots all destination stores on completion.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3893 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-09-22 16:21:43 +00:00
parent 4fb2dd6ebc
commit 0ad0ad5641

View File

@@ -19,8 +19,10 @@ package org.alfresco.repo.avm;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.alfresco.service.cmr.avm.AVMBadArgumentException;
import org.alfresco.service.cmr.avm.AVMNodeDescriptor;
@@ -282,6 +284,7 @@ public class AVMSyncServiceImpl implements AVMSyncService
boolean overrideConflicts, boolean overrideOlder)
{
Map<String, Integer> storeVersions = new HashMap<String, Integer>();
Set<String> destStores = new HashSet<String>();
for (AVMDifference diff : diffList)
{
if (!diff.isValid())
@@ -328,6 +331,10 @@ public class AVMSyncServiceImpl implements AVMSyncService
{
diffCode = compareOne(srcDesc, dstDesc);
}
// Keep track of stores updated so that they can all be snapshotted
// at end of update.
String dstPath = diff.getDestinationPath();
destStores.add(dstPath.substring(0, dstPath.indexOf(':')));
// Dispatch.
switch (diffCode)
{
@@ -386,10 +393,14 @@ public class AVMSyncServiceImpl implements AVMSyncService
}
default :
{
throw new AVMSyncException("Invalid Differenc Code: Internal Error.");
throw new AVMSyncException("Invalid Difference Code: Internal Error.");
}
}
}
for (String storeName : destStores)
{
fAVMService.createSnapshot(storeName);
}
}
/**