All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xsocket.connection.IBlockingConnection Maven / Gradle / Ivy

There is a newer version: 2.8.15
Show newest version
/*
 *  Copyright (c) xsocket.org, 2006 - 2008. All rights reserved.
 *
 *  This library 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 library 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 library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Please refer to the LGPL license at: http://www.gnu.org/copyleft/lesser.txt
 * The latest copy of this software may be found on http://www.xsocket.org/
 */
package org.xsocket.connection;

import java.io.Flushable;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.SocketTimeoutException;
import java.nio.BufferOverflowException;
import java.nio.BufferUnderflowException;
import java.nio.ByteBuffer;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.FileChannel;
import java.nio.channels.GatheringByteChannel;
import java.nio.channels.ReadableByteChannel;
import java.nio.channels.WritableByteChannel;

import org.xsocket.IDataSink;
import org.xsocket.IDataSource;
import org.xsocket.MaxReadSizeExceededException;


/**
 * A connection which accesses the underlying channel in a non-blocking manner. Every read I/O operation
 * will block until it completes. The blocking behavior of write operations will be controlled by the 
 * flush configuration.   
 *
 * @author [email protected]
 */
public interface IBlockingConnection extends IConnection, IDataSource, IDataSink, GatheringByteChannel, ReadableByteChannel, WritableByteChannel, Flushable {

	public static final int DEFAULT_RECEIVE_TIMEOUT = Integer.MAX_VALUE;

	

	
	/**
	 * set autoflush. If autoflush is activated, each write call
	 * will cause a flush. 

* * By default the autoflush is deactivated * * @param autoflush true if autoflush should be activated */ public void setAutoflush(boolean autoflush); /** * get autoflush * * @return true, if autoflush is activated */ public boolean isAutoflush(); /** * flush the send buffer. The method call will block until * the outgoing data has been flushed into the underlying * os-specific send buffer. * * @throws IOException If some other I/O error occurs * @throws SocketTimeoutException If the timeout has been reached * @throws ClosedChannelException if the underlying channel is closed */ public void flush() throws ClosedChannelException, IOException, SocketTimeoutException; /** * set the flush mode

By setting the flush mode with ASYNC (default is SYNC) * the data will be transferred to the underlying connection in a asynchronous way. * In most cases there are high performance improvements. If the {@link IReadWriteableConnection#write(ByteBuffer)} * or {@link IReadWriteableConnection#write(ByteBuffer[])} method will be used, the flush mode * {@link FlushMode#ASYNC} could have side-effects. Because the buffer will be * written asynchronous, it could occur, that the passed-over buffers are not already * written by returning from the write call. * * @param flushMode {@link FlushMode#ASYNC} if flush should be performed asynchronous, * {@link FlushMode#SYNC} if flush should be perform synchronous */ public void setFlushmode(FlushMode flushMode); /** * return the flush mode * @return the flush mode */ public FlushMode getFlushmode(); /** * ad hoc activation of a secured mode (SSL). By performing of this * method all remaining data to send will be flushed. * After this all data will be sent and received in the secured mode * * @throws IOException If some other I/O error occurs */ public void activateSecuredMode() throws IOException; /** * returns the size of the data which have already been written, but not * yet transferred to the underlying socket. * * @return the size of the pending data to write */ public int getPendingWriteDataSize(); /** * set the timeout for calling read methods in millis * * @param timeout the timeout in millis * @throws IOException If some other I/O error occurs */ public void setReceiveTimeoutMillis(int timeout) throws IOException; /** * get the timeout for calling read methods in millis * * @return the timeout in millis * @throws IOException If some other I/O error occurs */ public int getReceiveTimeoutMillis() throws IOException; /** * suspend reading data from the underlying subsystem * * @throws IOException If some other I/O error occurs */ public void suspendRead() throws IOException; /** * resume reading data from the underlying subsystem * * @throws IOException If some other I/O error occurs */ public void resumeRead() throws IOException; /** * Resets to the marked write position. If the connection has been marked, * then attempt to reposition it at the mark. * * @return true, if reset was successful */ public boolean resetToWriteMark(); /** * Resets to the marked read position. If the connection has been marked, * then attempt to reposition it at the mark. * * @return true, if reset was successful */ public boolean resetToReadMark(); /** * Marks the write position in the connection. */ public void markWritePosition(); /** * Marks the read position in the connection. Subsequent calls to resetToReadMark() will attempt * to reposition the connection to this point. * */ public void markReadPosition(); /** * remove the read mark */ public void removeReadMark(); /** * remove the write mark */ public void removeWriteMark(); /** * gets the encoding (used by string related methods like write(String) ...) * * @return the encoding */ public String getEncoding(); /** * sets the encoding (used by string related methods like write(String) ...) * * @param encoding the encoding */ public void setEncoding(String encoding); /** * write a message * * @param message the message to write * @param encoding the encoding which should be used th encode the chars into byte (e.g. `US-ASCII` or `UTF-8`) * @return the number of written bytes * @throws BufferOverflowException If the no enough space is available * @throws IOException If some other I/O error occurs */ public int write(String message, String encoding) throws IOException, BufferOverflowException; /** * read a ByteBuffer by using a delimiter. The default encoding will be used to decode the delimiter * * For performance reasons, the ByteBuffer readByteBuffer method is * generally preferable to get bytes * * @param delimiter the delimiter * @param encoding the encoding to use * @return the ByteBuffer * @throws BufferUnderflowException If not enough data is available * @throws IOException If some other I/O error occurs */ public ByteBuffer[] readByteBufferByDelimiter(String delimiter, String encoding) throws IOException, BufferUnderflowException; /** * read a ByteBuffer by using a delimiter * * For performance reasons, the ByteBuffer readByteBuffer method is * generally preferable to get bytes * * @param delimiter the delimiter * @param encoding the encoding of the delimiter * @param maxLength the max length of bytes that should be read. If the limit is exceeded a MaxReadSizeExceededException will been thrown * @return the ByteBuffer * @throws BufferUnderflowException If not enough data is available * @throws MaxReadSizeExceededException If the max read length has been exceeded and the delimiter hasn?t been found * @throws IOException If some other I/O error occurs */ public ByteBuffer[] readByteBufferByDelimiter(String delimiter, String encoding, int maxLength) throws IOException, BufferUnderflowException, MaxReadSizeExceededException; /** * read a byte array by using a delimiter * * For performance reasons, the ByteBuffer readByteBuffer method is * generally preferable to get bytes * * @param delimiter the delimiter * @param encoding the encoding to use * @return the read bytes * @throws BufferUnderflowException If not enough data is available * @throws IOException If some other I/O error occurs */ public byte[] readBytesByDelimiter(String delimiter, String encoding) throws IOException, BufferUnderflowException; /** * read a byte array by using a delimiter * * For performance reasons, the ByteBuffer readByteBuffer method is * generally preferable to get bytes * * @param delimiter the delimiter * @param encoding the encoding to use * @param maxLength the max length of bytes that should be read. If the limit is exceeded a MaxReadSizeExceededException will been thrown * @return the read bytes * @throws BufferUnderflowException If not enough data is available * @throws MaxReadSizeExceededException If the max read length has been exceeded and the delimiter hasn?t been found * @throws ClosedConnectionException If the underlying socket is already closed * @throws IOException If some other I/O error occurs */ public byte[] readBytesByDelimiter(String delimiter, String encoding, int maxLength) throws IOException, BufferUnderflowException, MaxReadSizeExceededException; /** * read a string by using a delimiter * * @param delimiter the delimiter * @param encoding the encoding to use * @return the string * @throws MaxReadSizeExceededException If the max read length has been exceeded and the delimiter hasn?t been found * @throws IOException If some other I/O error occurs * @throws BufferUnderflowException If not enough data is available * @throws UnsupportedEncodingException if the given encoding is not supported */ public String readStringByDelimiter(String delimiter, String encoding) throws IOException, BufferUnderflowException, UnsupportedEncodingException, MaxReadSizeExceededException; /** * read a string by using a delimiter * * @param delimiter the delimiter * @param encoding the encoding to use * @param maxLength the max length of bytes that should be read. If the limit is exceeded a MaxReadSizeExceededException will been thrown * @return the string * @throws BufferUnderflowException If not enough data is available * @throws MaxReadSizeExceededException If the max read length has been exceeded and the delimiter hasn?t been found * @throws ClosedConnectionException If the underlying socket is already closed * @throws IOException If some other I/O error occurs * @throws UnsupportedEncodingException If the given encoding is not supported */ public String readStringByDelimiter(String delimiter, String encoding, int maxLength) throws IOException, BufferUnderflowException, UnsupportedEncodingException, MaxReadSizeExceededException; /** * read a string by using a length definition * * @param length the amount of bytes to read. * @param encoding the encoding to use * @return the string * @throws IOException If some other I/O error occurs * @throws BufferUnderflowException If not enough data is available * @throws UnsupportedEncodingException if the given encoding is not supported * @throws IllegalArgumentException, if the length parameter is negative */ public String readStringByLength(int length, String encoding) throws IOException, BufferUnderflowException, UnsupportedEncodingException; /** * transfer the data of the file channel to this data sink * * @param source the source channel * @return the number of transfered bytes * @throws BufferOverflowException If the no enough space is available * @throws IOException If some other I/O error occurs */ public long transferFrom(FileChannel source) throws IOException, BufferOverflowException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy