Files
alfresco-community-repo/source/java/org/alfresco/repo/transfer/LoggingTransferProgressMonitorImpl.java
Raluca Munteanu 6afb44e712 Merged 5.1.N (5.1.2) to 5.2.N (5.2.1)
125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
      125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125788 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2016-04-26 13:45:01 +00:00

198 lines
6.2 KiB
Java

/*
* #%L
* Alfresco Repository
* %%
* Copyright (C) 2005 - 2016 Alfresco Software Limited
* %%
* This file is part of the Alfresco software.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* 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/>.
* #L%
*/
package org.alfresco.repo.transfer;
import java.io.InputStream;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.transfer.TransferException;
import org.alfresco.service.cmr.transfer.TransferProgress;
import org.alfresco.service.cmr.transfer.TransferProgress.Status;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* @author brian
*/
public class LoggingTransferProgressMonitorImpl implements TransferProgressMonitor
{
private static final Log log = LogFactory.getLog(LoggingTransferProgressMonitorImpl.class);
private TransferProgressMonitor delegate;
/**
* @param delegate the delegate to set
*/
public void setDelegate(TransferProgressMonitor delegate)
{
this.delegate = delegate;
}
/**
* @param transferId String
* @return TransferProgress
* @throws TransferException
* @see org.alfresco.repo.transfer.TransferProgressMonitor#getProgress(java.lang.String)
*/
public TransferProgress getProgress(String transferId) throws TransferException
{
return delegate.getProgress(transferId);
}
/**
* @param transferId String
* @param obj Object
* @param ex Throwable
* @throws TransferException
* @see org.alfresco.repo.transfer.TransferProgressMonitor#logException(java.lang.String, java.lang.Object, java.lang.Throwable)
*/
public void logException(String transferId, Object obj, Throwable ex) throws TransferException
{
localLog(transferId, obj, ex);
delegate.logException(transferId, obj, ex);
}
/**
* @param transferId String
* @param obj Object
* @throws TransferException
* @see org.alfresco.repo.transfer.TransferProgressMonitor#logComment(java.lang.String, java.lang.Object)
*/
public void logComment(String transferId, Object obj) throws TransferException
{
localLog(transferId, obj, null);
delegate.logComment(transferId, obj);
}
@Override
public void logCreated(String transferId, NodeRef sourceNode,
NodeRef destNode, NodeRef parentNode, String parentPath, boolean orphan)
{
delegate.logCreated(transferId, sourceNode, destNode, parentNode, parentPath, orphan);
}
@Override
public void logUpdated(String transferId, NodeRef sourceNode,
NodeRef destNode, String parentPath)
{
delegate.logUpdated(transferId, sourceNode, destNode, parentPath);
}
@Override
public void logMoved(String transferId, NodeRef sourceNode,
NodeRef destNode, String oldPath, NodeRef parentNodeRef, String parentPath)
{
delegate.logMoved(transferId, sourceNode, destNode, oldPath, parentNodeRef, parentPath);
}
@Override
public void logDeleted(String transferId, NodeRef sourceNode,
NodeRef destNode, String parentPath)
{
delegate.logDeleted(transferId, sourceNode, destNode, parentPath);
}
/**
* @param transferId String
* @param currPos int
* @param endPos int
* @throws TransferException
* @see org.alfresco.repo.transfer.TransferProgressMonitor#updateProgress(java.lang.String, int, int)
*/
public void updateProgress(String transferId, int currPos, int endPos) throws TransferException
{
if (loggingEnabled())
{
localLog(transferId, "Progress update: " + currPos + " out of " + endPos, null);
}
delegate.updateProgress(transferId, currPos, endPos);
}
/**
* @param transferId String
* @param currPos int
* @throws TransferException
* @see org.alfresco.repo.transfer.TransferProgressMonitor#updateProgress(java.lang.String, int)
*/
public void updateProgress(String transferId, int currPos) throws TransferException
{
if (loggingEnabled())
{
localLog(transferId, "Progress update: current position = " + currPos, null);
}
delegate.updateProgress(transferId, currPos);
}
/**
* @param transferId String
* @param status Status
* @throws TransferException
* @see org.alfresco.repo.transfer.TransferProgressMonitor#updateStatus(java.lang.String, org.alfresco.service.cmr.transfer.TransferProgress.Status)
*/
public void updateStatus(String transferId, Status status) throws TransferException
{
if (loggingEnabled())
{
localLog(transferId, "Status update: " + status, null);
}
delegate.updateStatus(transferId, status);
}
private boolean loggingEnabled()
{
return log.isInfoEnabled();
}
private void localLog(String transferId, Object obj, Throwable ex)
{
if (loggingEnabled())
{
String message = "Transfer Log (" + transferId +"): " + obj.toString();
if (ex == null)
{
log.info(message);
}
else
{
log.info(message, ex);
}
}
}
public InputStream getLogInputStream(String transferId)
throws TransferException
{
return delegate.getLogInputStream(transferId);
}
}