mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	107541: Merged 5.0.N (5.0.3) to HEAD-BUG-FIX (5.1/Cloud) (PARTIAL MERGE)
      107413: Merged DEV to 5.0.N (5.0.3)
         106858 : MNT-13545: JavaDoc : Inconsistencies between the Java doc and the actual code
            - Cleaning of Javadoc,
   107565: MNT-13545 Fix compilation after merge of Javadoc
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@107633 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
		
	
		
			
				
	
	
		
			292 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			292 lines
		
	
	
		
			9.6 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.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.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 "classic shuffle" triggered by a create of a 
 | |
|  * file matching a specified pattern.
 | |
|  * <p>
 | |
|  * a) New file created.   Typically with an obscure name.
 | |
|  * b) Existing file moved out of the way
 | |
|  * c) New file moved into place.
 | |
|  * d) Old file deleted.
 | |
|  * 
 | |
|  * <p>
 | |
|  * If this filter is active then this is what happens.
 | |
|  * a) New file created.   New file created (X).
 | |
|  * b) Existing file moved out of the way (Y to Z).   Raname tracked.
 | |
|  * c) New file moved into place (X to Y).   Scenario kicks in to change commands.
 | |
|  * d) Old file deleted.
 | |
|  */
 | |
| public class ScenarioCreateShuffleInstance implements ScenarioInstance
 | |
| {
 | |
|     private static Log logger = LogFactory.getLog(ScenarioCreateShuffleInstance.class);
 | |
|     
 | |
|     enum InternalState 
 | |
|     {
 | |
|         NONE,
 | |
|         RENAME,
 | |
|         DELETE
 | |
|     }
 | |
|        
 | |
|     InternalState internalState = InternalState.NONE;
 | |
|     
 | |
|     private Date startTime = new Date();
 | |
|     
 | |
|     private String createName;
 | |
|     private String move1;
 | |
|     private String move2;
 | |
|     private Ranking ranking;
 | |
|     
 | |
|     /**
 | |
|      * Timeout in ms.  Default 30 seconds.
 | |
|      */
 | |
|     private long timeout = 60000;
 | |
|     
 | |
|     private boolean isComplete;
 | |
|     
 | |
|     /**
 | |
|      * Keep track of re-names
 | |
|      */
 | |
|     private Map<String, String>renames = new HashMap<String, String>();
 | |
|     
 | |
|     /**
 | |
|      * Evaluate the next operation
 | |
|      * @param operation 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 createName:" + createName);
 | |
|                 isComplete = true;
 | |
|                 return null;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /**
 | |
|          * Anti-pattern for all states - delete the file we are 
 | |
|          * shuffling
 | |
|          */
 | |
|         if(createName != null)
 | |
|         {
 | |
|             if(operation instanceof DeleteFileOperation)
 | |
|             {
 | |
|                 DeleteFileOperation d = (DeleteFileOperation)operation;
 | |
|                 if(d.getName().equals(createName))
 | |
|                 {
 | |
|                     if(logger.isDebugEnabled())
 | |
|                     {
 | |
|                         logger.debug("Anti-pattern : Shuffle file deleted createName:" + createName);
 | |
|                     }
 | |
|                     isComplete = true;
 | |
|                     return null;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         switch (internalState)
 | |
|         {
 | |
|         case NONE:
 | |
|             // Looking for a create transition
 | |
|             if(operation instanceof CreateFileOperation)
 | |
|             {
 | |
|                 CreateFileOperation c = (CreateFileOperation)operation;
 | |
|                 this.createName = c.getName();
 | |
|                 if(logger.isDebugEnabled())
 | |
|                 {
 | |
|                     logger.debug("entering RENAME state: " + createName);
 | |
|                 }
 | |
|                 internalState = InternalState.RENAME;
 | |
|                 return null;
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 // anything else bomb out
 | |
|                 if(logger.isDebugEnabled())
 | |
|                 {
 | |
|                     logger.debug("State error, expected a CREATE");
 | |
|                 }
 | |
|                 isComplete = true;
 | |
|             }
 | |
|             break;
 | |
|         
 | |
|         case RENAME:
 | |
|             
 | |
|             /**
 | |
|              * Looking for 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;
 | |
|                 renames.put(r.getFrom(), r.getTo());
 | |
|             
 | |
|                 // Now see if this rename makes a pair.
 | |
|                 String middle = renames.get(createName);
 | |
|                 if(middle != null)
 | |
|                 {
 | |
|                     if(logger.isDebugEnabled())
 | |
|                     {
 | |
|                         logger.debug("Got second rename" );
 | |
|                     }
 | |
|                 
 | |
|                     String end = renames.get(middle);
 | |
|                 
 | |
|                     if(end != null)
 | |
|                     {
 | |
|                         if(logger.isDebugEnabled())
 | |
|                         {
 | |
|                             logger.debug("Got two renames " );
 | |
|                         }
 | |
|                         this.move1 = middle;
 | |
|                         this.move2 = end;
 | |
|                     
 | |
|                        
 | |
|                         if(logger.isDebugEnabled())
 | |
|                         {
 | |
|                             logger.debug("entering DELETE state");
 | |
|                         }
 | |
|                     
 | |
|                         internalState = InternalState.DELETE;
 | |
|                     
 | |
|                         /**
 | |
|                          * 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! createName:" + createName + " move1 " + move1 + " move2 " + move2);
 | |
|                         }
 | |
|                         
 | |
|                         String[] paths = FileName.splitPath(r.getFromPath());
 | |
|                         String oldFolder = paths[0];
 | |
|                         // String oldFile = paths[1];
 | |
|            
 | |
|                         ArrayList<Command> commands = new ArrayList<Command>();
 | |
|                         RenameFileCommand r1 = new RenameFileCommand(end, middle, r.getRootNodeRef(), oldFolder + "\\" + end, oldFolder + "\\" + middle);
 | |
|                         CopyContentCommand copyContent = new CopyContentCommand(createName, move1, r.getRootNodeRef(), oldFolder + "\\" + createName, oldFolder + "\\" + middle);
 | |
|                         RenameFileCommand r2 = new RenameFileCommand(createName, end, r.getRootNodeRef(), oldFolder + "\\" + createName, oldFolder + "\\" + end); 
 | |
|                         
 | |
|                         commands.add(r1);
 | |
|                         commands.add(copyContent);
 | |
|                         commands.add(r2);
 | |
|                     
 | |
|                         return new CompoundCommand(commands);
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             break;
 | |
|             
 | |
|         case DELETE:
 | |
|            
 | |
|             /**
 | |
|              * Looking for a delete of the destination
 | |
|              */
 | |
|             
 | |
|             if(operation instanceof DeleteFileOperation)
 | |
|             {
 | |
|                 DeleteFileOperation d = (DeleteFileOperation)operation;
 | |
|                 if(d.getName().equals(move2))
 | |
|                 {
 | |
|                     if(logger.isDebugEnabled())
 | |
|                     {
 | |
|                         logger.debug("Scenario complete createName:" + createName);
 | |
|                     }
 | |
|                     isComplete = true;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             /**
 | |
|              * Todo consider create shuffle with backup file which will never 
 | |
|              * calls delete - do we need to pattern match on "Backup*".  
 | |
|              * At the moment the delete state does nothing - hence 
 | |
|              * we can simply set complete here for all situations.
 | |
|              */
 | |
|             isComplete = true;
 | |
|             
 | |
|             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 "ScenarioShuffleInstance: createName:" + createName;
 | |
|     }
 | |
| 
 | |
|     public void setTimeout(long timeout)
 | |
|     {
 | |
|         this.timeout = timeout;
 | |
|     }
 | |
| 
 | |
|     public long getTimeout()
 | |
|     {
 | |
|         return timeout;
 | |
|     }
 | |
| }
 |