/* * 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.client.subsystem.sftp; import java.io.IOException; import java.util.Collection; import java.util.Objects; import org.apache.sshd.client.subsystem.sftp.SftpClient.CloseableHandle; import org.apache.sshd.client.subsystem.sftp.SftpClient.OpenMode; import org.apache.sshd.common.util.io.OutputStreamWithChannel; /** * Implements an output stream for a given remote file * * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a> */ public class SftpOutputStreamWithChannel extends OutputStreamWithChannel { private final SftpClient client; private final String path; private final byte[] bb = new byte[1]; private final byte[] buffer; private int index; private CloseableHandle handle; private long offset; public SftpOutputStreamWithChannel(SftpClient client, int bufferSize, String path, Collection<OpenMode> mode) throws IOException { this.client = Objects.requireNonNull(client, "No SFTP client instance"); this.path = path; buffer = new byte[bufferSize]; handle = client.open(path, mode); } /** * The client instance * * @return {@link SftpClient} instance used to access the remote file */ public final SftpClient getClient() { return client; } /** * The remotely accessed file path * * @return Remote file path */ public final String getPath() { return path; } @Override public boolean isOpen() { return (handle != null) && handle.isOpen(); } @Override public void write(int b) throws IOException { bb[0] = (byte) b; write(bb, 0, 1); } @Override public void write(byte[] b, int off, int len) throws IOException { if (!isOpen()) { throw new IOException("write(" + getPath() + ")[len=" + len + "] stream is closed"); } do { int nb = Math.min(len, buffer.length - index); System.arraycopy(b, off, buffer, index, nb); index += nb; if (index == buffer.length) { flush(); } off += nb; len -= nb; } while (len > 0); } @Override public void flush() throws IOException { if (!isOpen()) { throw new IOException("flush(" + getPath() + ") stream is closed"); } client.write(handle, offset, buffer, 0, index); offset += index; index = 0; } @Override public void close() throws IOException { if (isOpen()) { try { try { if (index > 0) { flush(); } } finally { handle.close(); } } finally { handle = null; } } } }