package org.xnio.channels;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.FileChannel;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
import org.xnio.ChannelListener;
import org.xnio.ChannelListeners;
import org.xnio.Option;
import org.xnio.XnioExecutor;
import org.xnio.XnioIoThread;
import org.xnio.XnioWorker;
import static org.xnio.Bits.*;
public final class NullStreamSinkChannel implements StreamSinkChannel, WriteListenerSettable<NullStreamSinkChannel>, CloseListenerSettable<NullStreamSinkChannel> {
private final XnioIoThread thread;
@SuppressWarnings("unused")
private volatile int state;
private ChannelListener<? super NullStreamSinkChannel> writeListener;
private ChannelListener<? super NullStreamSinkChannel> closeListener;
private static final AtomicIntegerFieldUpdater<NullStreamSinkChannel> stateUpdater = AtomicIntegerFieldUpdater.newUpdater(NullStreamSinkChannel.class, "state");
private static final int FLAG_ENTERED = 1 << 0;
private static final int FLAG_CLOSED = 1 << 1;
private static final int FLAG_RESUMED = 1 << 2;
public NullStreamSinkChannel(final XnioIoThread thread) {
this.thread = thread;
}
public XnioWorker getWorker() {
return thread.getWorker();
}
public XnioIoThread getIoThread() {
return thread;
}
@Deprecated
public XnioExecutor getWriteThread() {
return thread;
}
public long transferFrom(final FileChannel src, final long position, final long count) throws IOException {
int val = enterWrite();
try {
return Math.min(src.size() - position, count);
} finally {
exitWrite(val);
}
}
public long transferFrom(final StreamSourceChannel source, final long count, final ByteBuffer throughBuffer) throws IOException {
int val = enterWrite();
try {
return Channels.drain(source, count);
} finally {
throughBuffer.limit(0);
exitWrite(val);
}
}
public void setWriteListener(final ChannelListener<? super NullStreamSinkChannel> writeListener) {
this.writeListener = writeListener;
}
public ChannelListener<? super NullStreamSinkChannel> getWriteListener() {
return writeListener;
}
public void setCloseListener(final ChannelListener<? super NullStreamSinkChannel> closeListener) {
this.closeListener = closeListener;
}
public ChannelListener<? super NullStreamSinkChannel> getCloseListener() {
return closeListener;
}
public ChannelListener.Setter<NullStreamSinkChannel> getWriteSetter() {
return new WriteListenerSettable.Setter<NullStreamSinkChannel>(this);
}
public ChannelListener.Setter<NullStreamSinkChannel> getCloseSetter() {
return new CloseListenerSettable.Setter<NullStreamSinkChannel>(this) ;
}
@Override
public int writeFinal(ByteBuffer src) throws IOException {
return Channels.writeFinalBasic(this, src);
}
@Override
public long writeFinal(ByteBuffer[] srcs, int offset, int length) throws IOException {
return Channels.writeFinalBasic(this, srcs, offset, length);
}
@Override
public long writeFinal(ByteBuffer[] srcs) throws IOException {
return Channels.writeFinalBasic(this, srcs, 0, srcs.length);
}
public int write(final ByteBuffer src) throws IOException {
int val = enterWrite();
try {
return src.remaining();
} finally {
src.position(src.limit());
exitWrite(val);
}
}
public long write(final ByteBuffer[] srcs) throws IOException {
return write(srcs, 0, srcs.length);
}
public long write(final ByteBuffer[] srcs, final int offset, final int length) throws IOException {
if (length == 0) {
return 0L;
}
int val = enterWrite();
try {
long t = 0L;
ByteBuffer src;
for (int i = 0; i < length; i ++) {
src = srcs[i];
t += src.remaining();
src.position(src.limit());
}
return t;
} finally {
exitWrite(val);
}
}
public void suspendWrites() {
int oldVal, newVal;
do {
oldVal = state;
if (allAreClear(oldVal, FLAG_RESUMED) || allAreSet(oldVal, FLAG_CLOSED)) {
return;
}
newVal = oldVal & ~FLAG_RESUMED;
} while (! stateUpdater.compareAndSet(this, oldVal, newVal));
}
public void resumeWrites() {
int oldVal, newVal;
do {
oldVal = state;
if (anyAreSet(oldVal, FLAG_RESUMED | FLAG_CLOSED)) {
return;
}
newVal = oldVal | FLAG_RESUMED;
} while (! stateUpdater.compareAndSet(this, oldVal, newVal));
thread.execute(ChannelListeners.getChannelListenerTask(this, writeListener));
}
public void wakeupWrites() {
resumeWrites();
}
public boolean isWriteResumed() {
final int state = this.state;
return allAreSet(state, FLAG_RESUMED) && allAreClear(state, FLAG_CLOSED);
}
public void shutdownWrites() throws IOException {
int oldVal, newVal;
do {
oldVal = state;
if (allAreSet(oldVal, FLAG_CLOSED)) {
return;
}
newVal = oldVal | FLAG_CLOSED;
} while (! stateUpdater.compareAndSet(this, oldVal, newVal));
writeListener = null;
ChannelListeners.invokeChannelListener(this, closeListener);
}
public void awaitWritable() throws IOException {
}
public void awaitWritable(final long time, final TimeUnit timeUnit) throws IOException {
}
public boolean flush() throws IOException {
return true;
}
public boolean isOpen() {
return allAreClear(state, FLAG_CLOSED);
}
public void close() throws IOException {
shutdownWrites();
}
public boolean supportsOption(final Option<?> option) {
return false;
}
public <T> T getOption(final Option<T> option) throws IOException {
return null;
}
public <T> T setOption(final Option<T> option, final T value) throws IllegalArgumentException, IOException {
return null;
}
private int enterWrite() throws ClosedChannelException {
int oldVal, newVal;
do {
oldVal = state;
if (allAreSet(oldVal, FLAG_ENTERED)) {
throw new ConcurrentStreamChannelAccessException();
}
if (allAreSet(oldVal, FLAG_CLOSED)) {
throw new ClosedChannelException();
}
newVal = oldVal | FLAG_ENTERED;
} while (! stateUpdater.compareAndSet(this, oldVal, newVal));
return newVal;
}
private void exitWrite(int oldVal) {
int newVal = oldVal & ~FLAG_ENTERED;
while (! stateUpdater.compareAndSet(this, oldVal, newVal)) {
oldVal = state;
newVal = oldVal & ~FLAG_ENTERED;
}
}
}