/* Copyright (c) 2007 Jython Developers */
package org.python.core.io;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
import org.python.core.Py;
/**
* Raw I/O implementation for sockets.
*
* @author Philip Jenvey
*/
public class SocketIO extends SocketIOBase<SocketChannel> {
/**
* Construct a SocketIO for the given SocketChannel.
*
* @param socketChannel a SocketChannel to wrap
* @param mode a raw io socket mode String
*/
public SocketIO(SocketChannel socketChannel, String mode) {
super(socketChannel, mode);
}
@Override
public int readinto(ByteBuffer buf) {
checkClosed();
checkReadable();
try {
return socketChannel.read(buf);
} catch (IOException ioe) {
throw Py.IOError(ioe);
}
}
/**
* Read bytes into each of the specified ByteBuffers via scatter
* i/o.
*
* @param bufs {@inheritDoc}
* @return {@inheritDoc}
*/
@Override
public long readinto(ByteBuffer[] bufs) {
checkClosed();
checkReadable();
try {
return socketChannel.read(bufs);
} catch (IOException ioe) {
throw Py.IOError(ioe);
}
}
@Override
public int write(ByteBuffer buf) {
checkClosed();
checkWritable();
try {
return socketChannel.write(buf);
} catch (IOException ioe) {
throw Py.IOError(ioe);
}
}
/**
* Writes bytes from each of the specified ByteBuffers via gather
* i/o.
*
* @param bufs {@inheritDoc}
* @return {@inheritDoc}
*/
@Override
public long write(ByteBuffer[] bufs) {
checkClosed();
checkWritable();
try {
return socketChannel.write(bufs);
} catch (IOException ioe) {
throw Py.IOError(ioe);
}
}
}