mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125603 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125781 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
119 lines
4.6 KiB
Java
119 lines
4.6 KiB
Java
package org.alfresco.filesys.repo.rules;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import org.alfresco.filesys.repo.TempNetworkFile;
|
|
import org.alfresco.filesys.repo.rules.ScenarioInstance.Ranking;
|
|
import org.alfresco.filesys.repo.rules.commands.CloseFileCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.CompoundCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.CopyContentCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.CreateFileCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.DoNothingCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.MoveFileCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.DeleteFileCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.OpenFileCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.ReduceQuotaCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.RemoveNoContentFileOnError;
|
|
import org.alfresco.filesys.repo.rules.commands.RemoveTempFileCommand;
|
|
import org.alfresco.filesys.repo.rules.commands.RenameFileCommand;
|
|
import org.alfresco.filesys.repo.rules.operations.CloseFileOperation;
|
|
import org.alfresco.filesys.repo.rules.operations.CreateFileOperation;
|
|
import org.alfresco.filesys.repo.rules.operations.DeleteFileOperation;
|
|
import org.alfresco.filesys.repo.rules.operations.MoveFileOperation;
|
|
import org.alfresco.filesys.repo.rules.operations.OpenFileOperation;
|
|
import org.alfresco.filesys.repo.rules.operations.RenameFileOperation;
|
|
import org.alfresco.jlan.server.filesys.NetworkFile;
|
|
|
|
/**
|
|
* The Simple Standard Scenario is what will be done if no other
|
|
* scenario intervenes.
|
|
*/
|
|
public class ScenarioSimpleNonBufferedInstance implements ScenarioInstance
|
|
{
|
|
private Ranking ranking = Ranking.LOW;
|
|
|
|
@Override
|
|
public Command evaluate(Operation operation)
|
|
{
|
|
if(operation instanceof CreateFileOperation)
|
|
{
|
|
CreateFileOperation c = (CreateFileOperation)operation;
|
|
return new CreateFileCommand(c.getName(), c.getRootNodeRef(), c.getPath(), c.getAllocationSize(), c.isHidden());
|
|
}
|
|
else if(operation instanceof DeleteFileOperation)
|
|
{
|
|
DeleteFileOperation d = (DeleteFileOperation)operation;
|
|
return new DeleteFileCommand(d.getName(), d.getRootNodeRef(), d.getPath());
|
|
}
|
|
else if(operation instanceof RenameFileOperation)
|
|
{
|
|
RenameFileOperation r = (RenameFileOperation)operation;
|
|
return new RenameFileCommand(r.getFrom(), r.getTo(), r.getRootNodeRef(), r.getFromPath(), r.getToPath());
|
|
}
|
|
else if(operation instanceof MoveFileOperation)
|
|
{
|
|
MoveFileOperation m = (MoveFileOperation)operation;
|
|
return new MoveFileCommand(m.getFrom(), m.getTo(), m.getRootNodeRef(), m.getFromPath(), m.getToPath());
|
|
}
|
|
else if(operation instanceof OpenFileOperation)
|
|
{
|
|
OpenFileOperation o = (OpenFileOperation)operation;
|
|
return new OpenFileCommand(o.getName(), o.getMode(), o.isTruncate(), o.getRootNodeRef(), o.getPath());
|
|
}
|
|
else if(operation instanceof CloseFileOperation)
|
|
{
|
|
CloseFileOperation c = (CloseFileOperation)operation;
|
|
|
|
NetworkFile file = c.getNetworkFile();
|
|
|
|
ArrayList<Command> commands = new ArrayList<Command>();
|
|
ArrayList<Command> postCommitCommands = new ArrayList<Command>();
|
|
ArrayList<Command> postErrorCommands = new ArrayList<Command>();
|
|
|
|
commands.add(new CloseFileCommand(c.getName(), file, c.getRootNodeRef(), c.getPath()));
|
|
|
|
// postErrorCommands.add(new RemoveNoContentFileOnError(c.getName(), c.getRootNodeRef(), c.getPath()));
|
|
|
|
if(c.isDeleteOnClose())
|
|
{
|
|
postCommitCommands.add(new ReduceQuotaCommand(c.getName(), file, c.getRootNodeRef(), c.getPath()));
|
|
}
|
|
|
|
if (file instanceof TempNetworkFile)
|
|
{
|
|
postCommitCommands.add(new RemoveTempFileCommand((TempNetworkFile)file));
|
|
}
|
|
|
|
return new CompoundCommand(commands, postCommitCommands, postErrorCommands);
|
|
|
|
}
|
|
else return new DoNothingCommand();
|
|
}
|
|
|
|
@Override
|
|
public boolean isComplete()
|
|
{
|
|
/**
|
|
* This instance is always complete
|
|
*/
|
|
return true;
|
|
}
|
|
|
|
|
|
@Override
|
|
public Ranking getRanking()
|
|
{
|
|
return ranking;
|
|
}
|
|
|
|
public void setRanking(Ranking ranking)
|
|
{
|
|
this.ranking = ranking;
|
|
}
|
|
|
|
public String toString()
|
|
{
|
|
return "ScenarioSimpleNonBuffered default instance";
|
|
}
|
|
}
|