blob: 6273dfdc380334949e956a3fd2b22d9c08558800 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.sshd.common.scp;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.attribute.PosixFilePermission;
import java.util.Set;
import org.apache.sshd.common.util.logging.AbstractLoggingBean;
/**
* A no-op implementation of {@link ScpTransferEventListener} for those who wish to
* implement only a small number of methods. By default, all non-overridden methods
* simply log at TRACE level their invocation parameters
* @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a>
*/
public abstract class AbstractScpTransferEventListenerAdapter
extends AbstractLoggingBean
implements ScpTransferEventListener {
protected AbstractScpTransferEventListenerAdapter() {
super();
}
@Override
public void startFileEvent(FileOperation op, Path file, long length, Set<PosixFilePermission> perms)
throws IOException {
if (log.isTraceEnabled()) {
log.trace("startFileEvent(op=" + op + ", file=" + file + ", length=" + length + ", permissions=" + perms + ")");
}
}
@Override
public void endFileEvent(FileOperation op, Path file, long length, Set<PosixFilePermission> perms, Throwable thrown)
throws IOException {
if (log.isTraceEnabled()) {
log.trace("endFileEvent(op=" + op + ", file=" + file + ", length=" + length + ", permissions=" + perms + ")"
+ ((thrown == null) ? "" : (": " + thrown.getClass().getSimpleName() + ": " + thrown.getMessage())));
}
}
@Override
public void startFolderEvent(FileOperation op, Path file, Set<PosixFilePermission> perms) throws IOException {
if (log.isTraceEnabled()) {
log.trace("startFolderEvent(op=" + op + ", file=" + file + ", permissions=" + perms + ")");
}
}
@Override
public void endFolderEvent(FileOperation op, Path file, Set<PosixFilePermission> perms, Throwable thrown)
throws IOException {
if (log.isTraceEnabled()) {
log.trace("endFolderEvent(op=" + op + ", file=" + file + ", permissions=" + perms + ")"
+ ((thrown == null) ? "" : (": " + thrown.getClass().getSimpleName() + ": " + thrown.getMessage())));
}
}
}