org.jboss.xnio.channels.BlockingWritableByteChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xnio-api Show documentation
Show all versions of xnio-api Show documentation
The API JAR of the XNIO project
/*
* JBoss, Home of Professional Open Source
* Copyright 2009, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This 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 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.xnio.channels;
import java.nio.channels.GatheringByteChannel;
import java.nio.ByteBuffer;
import java.io.IOException;
import java.io.Flushable;
import java.util.concurrent.TimeUnit;
import org.jboss.xnio.Buffers;
/**
* A blocking wrapper for a {@code StreamChannel}. Write operations will block until some data may be transferred.
* Once any amount of data is written, the operation will return.
*/
public class BlockingWritableByteChannel implements GatheringByteChannel, Flushable {
private final StreamSinkChannel delegate;
private volatile long writeTimeout;
/**
* Construct a new instance.
*
* @param delegate the channel to forward I/O operations to
*/
public BlockingWritableByteChannel(final StreamSinkChannel delegate) {
this.delegate = delegate;
}
/**
* Construct a new instance.
*
* @param delegate the channel to forward I/O operations to
* @param writeTimeout the write timeout
* @param writeTimeoutUnit the write timeout unit
*/
public BlockingWritableByteChannel(final StreamSinkChannel delegate, final long writeTimeout, final TimeUnit writeTimeoutUnit) {
if (writeTimeout < 0L) {
throw new IllegalArgumentException("Negative write timeout");
}
this.delegate = delegate;
final long calcTimeout = writeTimeoutUnit.toMillis(writeTimeout);
this.writeTimeout = writeTimeout == 0L ? 0L : calcTimeout < 1L ? 1L : calcTimeout;
}
/**
* Set the write timeout.
*
* @param writeTimeout the write timeout
* @param writeTimeoutUnit the write timeout unit
*/
public void setWriteTimeout(long writeTimeout, TimeUnit writeTimeoutUnit) {
if (writeTimeout < 0L) {
throw new IllegalArgumentException("Negative write timeout");
}
final long calcTimeout = writeTimeoutUnit.toMillis(writeTimeout);
this.writeTimeout = writeTimeout == 0L ? 0L : calcTimeout < 1L ? 1L : calcTimeout;
}
/**
* Perform a blocking, gathering write operation.
*
* @param srcs the source buffers
* @param offset the offset into the destination buffer array
* @param length the number of buffers to write from
* @return the number of bytes actually written (will be greater than zero)
* @throws IOException if an I/O error occurs
*/
public long write(final ByteBuffer[] srcs, final int offset, final int length) throws IOException {
final StreamSinkChannel delegate = this.delegate;
long res;
final long writeTimeout = this.writeTimeout;
if (writeTimeout == 0L) {
while ((res = delegate.write(srcs, offset, length)) == 0L && Buffers.hasRemaining(srcs, offset, length)) {
delegate.awaitWritable();
}
} else {
long now = System.currentTimeMillis();
final long deadline = now + writeTimeout;
while ((res = delegate.write(srcs, offset, length)) == 0L && Buffers.hasRemaining(srcs, offset, length)) {
if (now >= deadline) {
throw new WriteTimeoutException("Write timed out");
}
delegate.awaitWritable(deadline - now, TimeUnit.MILLISECONDS);
}
}
return res;
}
/**
* Perform a blocking, gathering write operation.
*
* @param srcs the source buffers
* @return the number of bytes actually written (will be greater than zero)
* @throws IOException if an I/O error occurs
*/
public long write(final ByteBuffer[] srcs) throws IOException {
return write(srcs, 0, srcs.length);
}
/**
* Perform a blocking write operation.
*
* @param src the source buffer
* @return the number of bytes actually written (will be greater than zero)
* @throws IOException if an I/O error occurs
*/
public int write(final ByteBuffer src) throws IOException {
final StreamSinkChannel delegate = this.delegate;
int res;
final long writeTimeout = this.writeTimeout;
if (writeTimeout == 0L) {
while ((res = delegate.write(src)) == 0 && src.hasRemaining()) {
delegate.awaitWritable();
}
} else {
long now = System.currentTimeMillis();
final long deadline = now + writeTimeout;
while ((res = delegate.write(src)) == 0 && src.hasRemaining()) {
if (now >= deadline) {
throw new WriteTimeoutException("Write timed out");
}
delegate.awaitWritable(deadline - now, TimeUnit.MILLISECONDS);
}
}
return res;
}
/** {@inheritDoc} */
public boolean isOpen() {
return delegate.isOpen();
}
/** {@inheritDoc} */
public void flush() throws IOException {
final StreamSinkChannel delegate = this.delegate;
final long writeTimeout = this.writeTimeout;
if (writeTimeout == 0L) {
Channels.flushBlocking(delegate);
} else {
long now = System.currentTimeMillis();
final long deadline = now + writeTimeout;
while (! delegate.flush()) {
if (now >= deadline) {
throw new WriteTimeoutException("Flush timed out");
}
delegate.awaitWritable(deadline - now, TimeUnit.MILLISECONDS);
}
}
}
/** {@inheritDoc} */
public void close() throws IOException {
delegate.close();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy