mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@85530 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
428 lines
14 KiB
Java
428 lines
14 KiB
Java
package org.alfresco.filesys.repo;
|
|
|
|
import java.io.BufferedInputStream;
|
|
import java.io.FileInputStream;
|
|
import java.io.FileOutputStream;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.util.Collection;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.Map;
|
|
|
|
import org.alfresco.service.cmr.repository.ContentIOException;
|
|
import org.alfresco.service.cmr.repository.ContentReader;
|
|
import org.alfresco.util.EqualsHelper;
|
|
import org.alfresco.util.TempFileProvider;
|
|
import org.apache.commons.logging.Log;
|
|
import org.apache.commons.logging.LogFactory;
|
|
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
|
import org.apache.poi.hslf.HSLFSlideShow;
|
|
import org.apache.poi.poifs.filesystem.DirectoryEntry;
|
|
import org.apache.poi.poifs.filesystem.EntryUtils;
|
|
import org.apache.poi.poifs.filesystem.FilteringDirectoryNode;
|
|
import org.apache.poi.poifs.filesystem.NPOIFSFileSystem;
|
|
|
|
import java.io.File;
|
|
|
|
/**
|
|
* Compares content for to see if content is equal.
|
|
* <p>
|
|
* Most mimetypes can simply be binary compared but for some mimetypes
|
|
* there may be trivial differences so a binary compare is not sufficient.
|
|
* <p>
|
|
* In particular MS Project and MS Excel write to header fields without changing content.
|
|
*
|
|
* @author mrogers
|
|
*
|
|
*/
|
|
public class CIFSContentComparator implements ContentComparator
|
|
{
|
|
// TODO Externalize Map of mimetype to comparator
|
|
private Map<String, ContentComparator> customComparators = new HashMap<String, ContentComparator>();
|
|
|
|
private static final Log logger = LogFactory.getLog(CIFSContentComparator.class);
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public void init()
|
|
{
|
|
customComparators.put("application/vnd.ms-project", new MPPContentComparator());
|
|
customComparators.put("application/vnd.ms-excel", new XLSContentComparator());
|
|
customComparators.put("application/vnd.ms-powerpoint", new PPTContentComparator());
|
|
}
|
|
|
|
@Override
|
|
public boolean isContentEqual(ContentReader existingContent,
|
|
File newFile)
|
|
{
|
|
String mimetype = existingContent.getMimetype();
|
|
logger.debug("isContentEqual mimetype=" + mimetype);
|
|
|
|
long newSize = newFile.length();
|
|
|
|
ContentComparator custom = customComparators.get(mimetype);
|
|
|
|
if(custom == null)
|
|
{
|
|
// No custom comparator - check length then do a binary diff
|
|
if(existingContent.getSize() != newSize)
|
|
{
|
|
// Different size
|
|
logger.debug("generic comparision, size is different - not equal");
|
|
return false;
|
|
}
|
|
|
|
InputStream rightIs = null;
|
|
InputStream leftIs = null;
|
|
try
|
|
{
|
|
rightIs = new BufferedInputStream(new FileInputStream(newFile));
|
|
leftIs = existingContent.getContentInputStream();
|
|
boolean retVal = EqualsHelper.binaryStreamEquals(leftIs, rightIs);
|
|
rightIs = null;
|
|
leftIs = null;
|
|
|
|
if(logger.isDebugEnabled())
|
|
{
|
|
logger.debug("generic comparision, binary content comparison equal=" + retVal);
|
|
}
|
|
return retVal;
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
|
|
logger.debug("Unable to compare contents", e);
|
|
return false;
|
|
}
|
|
finally
|
|
{
|
|
if(leftIs != null)
|
|
{
|
|
try
|
|
{
|
|
leftIs.close();
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
// Do nothing this is cleanup code
|
|
}
|
|
}
|
|
if(rightIs != null)
|
|
{
|
|
try
|
|
{
|
|
rightIs.close();
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
// Do nothing this is cleanup code
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// there is a custom comparator for this mimetype
|
|
return custom.isContentEqual(existingContent, newFile);
|
|
}
|
|
}
|
|
|
|
private boolean isContentIdentical(NPOIFSFileSystem fs1, NPOIFSFileSystem fs2, Collection<String> excludes) throws IOException
|
|
{
|
|
DirectoryEntry de1 = fs1.getRoot();
|
|
DirectoryEntry de2 = fs2.getRoot();
|
|
|
|
FilteringDirectoryNode fs1Filtered = new FilteringDirectoryNode(de1, excludes);
|
|
FilteringDirectoryNode fs2Filtered = new FilteringDirectoryNode(de2, excludes);
|
|
|
|
boolean retVal = EntryUtils.areDirectoriesIdentical(fs1Filtered, fs2Filtered);
|
|
if(logger.isDebugEnabled())
|
|
{
|
|
logger.debug("returning equal="+ retVal);
|
|
}
|
|
return retVal;
|
|
}
|
|
|
|
// Comparator for MS Project
|
|
private class MPPContentComparator implements ContentComparator
|
|
{
|
|
|
|
@Override
|
|
public boolean isContentEqual(ContentReader existingContent,
|
|
File newFile)
|
|
{
|
|
long newSize = newFile.length();
|
|
|
|
if(logger.isDebugEnabled())
|
|
{
|
|
logger.debug("comparing two project files size:" + existingContent.getSize() + ", and " + newFile.length());
|
|
}
|
|
|
|
if(existingContent.getSize() != newSize)
|
|
{
|
|
logger.debug("project files are different size");
|
|
// Different size
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Use POI to compare the content of the MPP file, exluding certain properties
|
|
*/
|
|
InputStream leftIs = null;
|
|
try
|
|
{
|
|
Collection<String> excludes = new HashSet<String>();
|
|
excludes.add("Props");
|
|
excludes.add("Props12");
|
|
excludes.add("Props9");
|
|
|
|
leftIs = existingContent.getContentInputStream();
|
|
NPOIFSFileSystem fs1 = new NPOIFSFileSystem(leftIs);
|
|
NPOIFSFileSystem fs2 = new NPOIFSFileSystem(newFile);
|
|
|
|
return isContentIdentical(fs1, fs2, excludes);
|
|
}
|
|
catch (ContentIOException ce)
|
|
{
|
|
logger.debug("Unable to compare contents", ce);
|
|
return false;
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
logger.debug("Unable to compare contents", e);
|
|
return false;
|
|
}
|
|
finally
|
|
{
|
|
if(leftIs != null)
|
|
{
|
|
try
|
|
{
|
|
leftIs.close();
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
// Ignore
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Comparator for MS Excel
|
|
private class XLSContentComparator implements ContentComparator
|
|
{
|
|
|
|
@Override
|
|
public boolean isContentEqual(ContentReader existingContent,
|
|
File newFile)
|
|
{
|
|
long newSize = newFile.length();
|
|
|
|
if(logger.isDebugEnabled())
|
|
{
|
|
logger.debug("comparing two excel files size:" + existingContent.getSize() + ", and " + newFile.length());
|
|
}
|
|
|
|
if(existingContent.getSize() != newSize)
|
|
{
|
|
logger.debug("excel files are different size");
|
|
// Different size
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Use POI to compare the content of the XLS file, exluding certain properties
|
|
*/
|
|
File tpm1 = null;
|
|
File tpm2 = null;
|
|
InputStream leftIs = null;
|
|
try
|
|
{
|
|
Collection<String> excludes = new HashSet<String>();
|
|
|
|
tpm1 = TempFileProvider.createTempFile("CIFSContentComparator1", "xls");
|
|
tpm2 = TempFileProvider.createTempFile("CIFSContentComparator2", "xls");
|
|
|
|
leftIs = existingContent.getContentInputStream();
|
|
HSSFWorkbook wb1 = new HSSFWorkbook(leftIs);
|
|
HSSFWorkbook wb2 = new HSSFWorkbook(new FileInputStream(newFile));
|
|
wb1.writeProtectWorkbook("", "CIFSContentComparator");
|
|
wb2.writeProtectWorkbook("", "CIFSContentComparator");
|
|
|
|
wb1.write(new FileOutputStream(tpm1));
|
|
wb2.write(new FileOutputStream(tpm2));
|
|
|
|
NPOIFSFileSystem fs1 = new NPOIFSFileSystem(tpm1);
|
|
NPOIFSFileSystem fs2 = new NPOIFSFileSystem(tpm2);
|
|
|
|
return isContentIdentical(fs1, fs2, excludes);
|
|
}
|
|
catch (ContentIOException ce)
|
|
{
|
|
logger.debug("Unable to compare contents", ce);
|
|
return false;
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
logger.debug("Unable to compare contents", e);
|
|
return false;
|
|
}
|
|
finally
|
|
{
|
|
if(tpm1 != null)
|
|
{
|
|
try
|
|
{
|
|
tpm1.delete();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
// ignore
|
|
}
|
|
}
|
|
if(tpm2 != null)
|
|
{
|
|
try
|
|
{
|
|
tpm2.delete();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
// ignore
|
|
}
|
|
}
|
|
if(leftIs != null)
|
|
{
|
|
try
|
|
{
|
|
leftIs.close();
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
// Ignore
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Comparator for MS PowerPoint
|
|
private class PPTContentComparator implements ContentComparator
|
|
{
|
|
|
|
@Override
|
|
public boolean isContentEqual(ContentReader existingContent, File newFile)
|
|
{
|
|
long fileSizesDifference = newFile.length() - existingContent.getSize();
|
|
|
|
if(logger.isDebugEnabled())
|
|
{
|
|
logger.debug("comparing two powerpoint files size:" + existingContent.getSize() + ", and " + newFile.length());
|
|
}
|
|
|
|
File tpm1 = null;
|
|
File tpm2 = null;
|
|
InputStream leftIs = null;
|
|
try
|
|
{
|
|
if(fileSizesDifference != 0)
|
|
{
|
|
// ALF-18793
|
|
// Experience has shown that the size of opened/closed file increases to 3072 bytes.
|
|
// (That occurs only in case if the file has been created on one MS PowerPoint instance and opened/closed on another
|
|
// due to change of lastEditUsername property (if they are different)).
|
|
if (fileSizesDifference > 3072 && fileSizesDifference < 0)
|
|
{
|
|
logger.debug("powerpoint files are different size");
|
|
// Different size
|
|
return false;
|
|
}
|
|
|
|
Collection<String> excludes = new HashSet<String>();
|
|
|
|
leftIs = existingContent.getContentInputStream();
|
|
HSLFSlideShow slideShow1 = new HSLFSlideShow(leftIs);
|
|
HSLFSlideShow slideShow2 = new HSLFSlideShow(new FileInputStream(newFile));
|
|
|
|
String lastEditUsername1 = slideShow1.getCurrentUserAtom().getLastEditUsername();
|
|
String lastEditUsername2 = slideShow2.getCurrentUserAtom().getLastEditUsername();
|
|
|
|
if (lastEditUsername1.equals(lastEditUsername2))
|
|
{
|
|
logger.debug("powerpoint files are different size");
|
|
// Different size
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
//make sure that nothing has been changed except lastEditUsername
|
|
|
|
tpm1 = TempFileProvider.createTempFile("CIFSContentComparator1", "ppt");
|
|
tpm2 = TempFileProvider.createTempFile("CIFSContentComparator2", "ppt");
|
|
|
|
slideShow1.write(new FileOutputStream(tpm1));
|
|
slideShow1.write(new FileOutputStream(tpm2));
|
|
|
|
NPOIFSFileSystem fs1 = new NPOIFSFileSystem(tpm1);
|
|
NPOIFSFileSystem fs2 = new NPOIFSFileSystem(tpm2);
|
|
|
|
return isContentIdentical(fs1, fs2, excludes);
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
}
|
|
catch (ContentIOException ce)
|
|
{
|
|
logger.debug("Unable to compare contents", ce);
|
|
return false;
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
logger.debug("Unable to compare contents", e);
|
|
return false;
|
|
}
|
|
finally
|
|
{
|
|
if(tpm1 != null)
|
|
{
|
|
try
|
|
{
|
|
tpm1.delete();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
// ignore
|
|
}
|
|
}
|
|
if(tpm2 != null)
|
|
{
|
|
try
|
|
{
|
|
tpm2.delete();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
// ignore
|
|
}
|
|
}
|
|
if(leftIs != null)
|
|
{
|
|
try
|
|
{
|
|
leftIs.close();
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
// Ignore
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|