alfresco-community-repo/source/java/org/alfresco/filesys/repo/CacheLookupSearchContext.java
Gary Spencer f4e057c0af Merge 3.2 to HEAD:
16691: Merge 3.1 to 3.2
        15827: Fixed bug in delete node event processing
    16695: Merge 3.1 to 3.2
        16163: Added timestamp tracking via file state cache, added support for . and .. pseudo entries in wildcard folder search


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16976 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2009-10-16 09:04:28 +00:00

230 lines
6.6 KiB
Java

/*
* Copyright (C) 2006-2009 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program 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 General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
package org.alfresco.filesys.repo;
import java.util.List;
import org.alfresco.filesys.state.FileState;
import org.alfresco.filesys.state.FileStateTable;
import org.alfresco.jlan.server.filesys.FileInfo;
import org.alfresco.jlan.server.filesys.pseudo.PseudoFileList;
import org.alfresco.service.cmr.repository.NodeRef;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* Cache Lookup Search Context Class
*
* <p>Use the file state cache to check for current timestamp values for file information being returned in
* the current search.
*
* @author gkspencer
*/
public class CacheLookupSearchContext extends ContentSearchContext {
// Debug logging
private static final Log logger = LogFactory.getLog(CacheLookupSearchContext.class);
// File state cache
private FileStateTable m_stateCache;
// File information for the '.' and '..' pseduo entries, returned during a wildcard search
private FileInfo m_dotInfo;
private FileInfo m_dotDotInfo;
/**
* Class constructor
*
* @param cifsHelper Filesystem helper class
* @param results List of file/folder nodes that match the search pattern
* @param searchStr Search path
* @param pseudoList List of pseudo files to be blended into the returned list of files
* @param relPath Relative path being searched
* @param stateCache File state cache
*/
protected CacheLookupSearchContext(
CifsHelper cifsHelper,
List<NodeRef> results,
String searchStr,
PseudoFileList pseudoList,
String relPath,
FileStateTable stateCache)
{
super(cifsHelper, results, searchStr, pseudoList, relPath);
super.setSearchString(searchStr);
m_stateCache = stateCache;
}
/**
* Return file information for the next file in the active search. Returns false if the search
* is complete.
*
* @param info FileInfo to return the file information.
* @return true if the file information is valid, else false
*/
public boolean nextFileInfo(FileInfo info)
{
// Get the file information for the next file
if ( super.nextFileInfo( info) == false)
return false;
else if ( returningPseudoFiles() == true || m_stateCache == null)
return true;
// We have a real file entry, check if there is a cache entry
StringBuilder relPath = new StringBuilder( getRelativePath());
relPath.append( info.getFileName());
FileState fstate = m_stateCache.findFileState( relPath.toString());
if ( fstate != null)
{
// Check if there are current timestamps that can be used to override the database values
if ( fstate.hasAccessDateTime())
info.setAccessDateTime( fstate.getAccessDateTime());
if ( fstate.hasModifyDateTime())
info.setModifyDateTime( fstate.getModifyDateTime());
// DEBUG
if ( logger.isDebugEnabled())
logger.debug("Search timestamps from cache, path=" + info.getFileName());
}
// Indicate that the file information is valid
return true;
}
/**
* Check if the '.' and '..' pseudo file entries are available
*
* @return boolean
*/
public boolean hasDotFiles() {
return (m_dotInfo != null && m_dotDotInfo != null) ? true : false;
}
/**
* Return the '.' pseudo file entry details
*
* @param finfo FileInfo
* @return boolean
*/
public boolean getDotInfo(FileInfo finfo) {
// Check if the '.' file information is valid
if ( m_dotInfo != null) {
finfo.copyFrom( m_dotInfo);
return true;
}
// File information not valid
return false;
}
/**
* Return the '..' pseudo file entry details
*
* @param finfo FileInfo
* @return boolean
*/
public boolean getDotDotInfo(FileInfo finfo) {
// Check if the '..' file information is valid
if ( m_dotDotInfo != null) {
finfo.copyFrom( m_dotDotInfo);
return true;
}
// File information not valid
return false;
}
/**
* Set the '.' pseudo file entry details
*
* @param finfo FileInfo
*/
protected void setDotInfo(FileInfo finfo) {
m_dotInfo = finfo;
if ( m_dotInfo != null)
m_dotInfo.setFileName( ".");
}
/**
* Set the '..' pseudo file entry details
*
* @param finfo FileInfo
*/
protected void setDotDotInfo(FileInfo finfo) {
m_dotDotInfo = finfo;
if ( m_dotDotInfo != null)
m_dotDotInfo.setFileName( ".");
}
/**
* Return the search as a string
*
* @return String
*/
public String toString()
{
StringBuilder sb = new StringBuilder(60);
sb.append("[CacheLookupSearchContext searchStr=");
sb.append(getSearchString());
sb.append(", resultCount=");
sb.append(getResultsSize());
sb.append(", pseudoList=");
if ( getPseudoListSize() != 0)
sb.append( getPseudoListSize());
else
sb.append("NULL");
sb.append(",cache=");
sb.append(m_stateCache);
if ( m_dotInfo != null)
sb.append(",Dot");
if ( m_dotDotInfo != null)
sb.append(",DotDot");
sb.append("]");
return sb.toString();
}
}