alfresco-community-repo/source/java/org/alfresco/filesys/repo/rules/ScenarioDoubleRenameShuffleInstance.java

222 lines
7.2 KiB
Java

/*
* Copyright (C) 2005-2010 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.filesys.repo.rules;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import org.alfresco.filesys.repo.OpenFileMode;
import org.alfresco.filesys.repo.rules.commands.CompoundCommand;
import org.alfresco.filesys.repo.rules.commands.CopyContentCommand;
import org.alfresco.filesys.repo.rules.commands.RenameFileCommand;
import org.alfresco.filesys.repo.rules.operations.CreateFileOperation;
import org.alfresco.filesys.repo.rules.operations.DeleteFileOperation;
import org.alfresco.filesys.repo.rules.operations.OpenFileOperation;
import org.alfresco.filesys.repo.rules.operations.RenameFileOperation;
import org.alfresco.jlan.server.filesys.FileName;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* This is an instance of a "double rename shuffle" triggered by rename of a file to a special pattern
* file matching a specified pattern. (*.backup.fm)
*
* a) Existing file moved out of the way. X.fm to X.backup.fm
* b) New file moved into place. X.fm.C29 X.fm
* <p>
* If this filter is active then this is what happens.
* a) Existing file moved out of the way (Y to Z). Raname tracked.
* b) New file moved into place (X to Y). Scenario kicks in to change commands.
*/
public class ScenarioDoubleRenameShuffleInstance implements ScenarioInstance
{
private static Log logger = LogFactory.getLog(ScenarioDoubleRenameShuffleInstance.class);
enum InternalState
{
NONE,
RENAME1,
RENAME2
}
InternalState internalState = InternalState.NONE;
private Date startTime = new Date();
private String fileMiddle;
private String fileFrom;
private String fileEnd;
private Ranking ranking;
/**
* Timeout in ms. Default 30 seconds.
*/
private long timeout = 30000;
private boolean isComplete;
/**
* Keep track of re-names
*/
private Map<String, String>renames = new HashMap<String, String>();
/**
* Evaluate the next operation
* @param operation
*/
public Command evaluate(Operation operation)
{
/**
* Anti-pattern : timeout
*/
Date now = new Date();
if(now.getTime() > startTime.getTime() + getTimeout())
{
if(logger.isDebugEnabled())
{
logger.debug("Instance timed out");
}
}
switch (internalState)
{
case NONE:
/**
* Looking for first rename Y(middle) to Z(end)
*/
if(operation instanceof RenameFileOperation)
{
if(logger.isDebugEnabled())
{
logger.debug("Got first rename - tracking rename: " + operation);
}
RenameFileOperation r = (RenameFileOperation)operation;
fileMiddle = r.getFrom();
fileEnd = r.getTo();
internalState = InternalState.RENAME1;
}
else
{
// anything else bomb out
if(logger.isDebugEnabled())
{
logger.debug("State error, expected a RENAME");
}
isComplete = true;
}
case RENAME1:
/**
* Looking for the seconf of two renames X(createName) to Y(middle) to Z(end)
*/
if(operation instanceof RenameFileOperation)
{
if(logger.isDebugEnabled())
{
logger.debug("Tracking rename: " + operation);
}
RenameFileOperation r = (RenameFileOperation)operation;
// Now see if this rename makes a pair
if(fileMiddle.equalsIgnoreCase(r.getTo()))
{
if(logger.isDebugEnabled())
{
logger.debug("Got second rename" );
}
fileFrom = r.getFrom();
/**
* This shuffle reverses the rename out of the way and then copies the
* content only. Finally it moves the temp file into place for the subsequent
* delete.
* a) Rename Z to Y (Reverse previous move)
* b) Copy Content from X to Y
* c) Rename X to Z (move temp file out to old location)
*/
if(logger.isDebugEnabled())
{
logger.debug("Go and shuffle! fromName:" + fileFrom + " middle: " + fileMiddle + " end: " + fileEnd);
}
String[] paths = FileName.splitPath(r.getFromPath());
String oldFolder = paths[0];
ArrayList<Command> commands = new ArrayList<Command>();
RenameFileCommand r1 = new RenameFileCommand(fileEnd, fileMiddle, r.getRootNodeRef(), oldFolder + "\\" + fileEnd, oldFolder + "\\" + fileMiddle);
CopyContentCommand copyContent = new CopyContentCommand(fileFrom, fileMiddle, r.getRootNodeRef(), oldFolder + "\\" + fileFrom, oldFolder + "\\" + fileMiddle);
RenameFileCommand r2 = new RenameFileCommand(fileFrom, fileEnd, r.getRootNodeRef(), oldFolder + "\\" + fileFrom, oldFolder + "\\" + fileEnd);
commands.add(r1);
commands.add(copyContent);
commands.add(r2);
isComplete = true;
return new CompoundCommand(commands);
}
}
break;
}
return null;
}
@Override
public boolean isComplete()
{
return isComplete;
}
@Override
public Ranking getRanking()
{
return ranking;
}
public void setRanking(Ranking ranking)
{
this.ranking = ranking;
}
public String toString()
{
return "ScenarioDoubleRename:" + fileMiddle;
}
public void setTimeout(long timeout)
{
this.timeout = timeout;
}
public long getTimeout()
{
return timeout;
}
}