decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream Class Reference

An output stream for reading data from an OpenSSL Socket instance. More...

#include <src/main/decaf/internal/net/ssl/openssl/OpenSSLSocketInputStream.h>

Inheritance diagram for decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream:
Inheritance graph
[legend]

Public Member Functions

 OpenSSLSocketInputStream (OpenSSLSocket *socket)
virtual ~OpenSSLSocketInputStream ()
virtual int available () const
 Indicates the number of bytes available.The default implementation of this methods returns 0. Classes that override this method may return the total number of bytes that are currently available for reading and others may simply return a value of one indicating that there is some data avaiable. The caller should view the result of this method as an absolute.The default implementation of this method returns zero.
Returns:
the number of bytes available on this input stream.
Exceptions:
IOException if an I/O error occurs.

virtual void close ()
 Close - does nothing.
virtual long long skip (long long num)
 Not supported.

Protected Member Functions

virtual int doReadByte ()
virtual int doReadArrayBounded (unsigned char *buffer, int size, int offset, int length)

Detailed Description

An output stream for reading data from an OpenSSL Socket instance.

Since:
1.0

Constructor & Destructor Documentation

decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream::OpenSSLSocketInputStream ( OpenSSLSocket socket  ) 
virtual decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream::~OpenSSLSocketInputStream (  )  [virtual]

Member Function Documentation

virtual int decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream::available (  )  const [virtual]

Indicates the number of bytes available.The default implementation of this methods returns 0. Classes that override this method may return the total number of bytes that are currently available for reading and others may simply return a value of one indicating that there is some data avaiable. The caller should view the result of this method as an absolute.The default implementation of this method returns zero.

Returns:
the number of bytes available on this input stream.
Exceptions:
IOException if an I/O error occurs.

Reimplemented from decaf::io::InputStream.

virtual void decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream::close (  )  [virtual]

Close - does nothing.

It is the responsibility of the owner of the socket object to close it.

Closes the InputStream freeing any resources that might have been acquired during the lifetime of this stream.The default implementation of this method does nothing.

Exceptions:
IOException if an I/O error occurs while closing the InputStream.

Reimplemented from decaf::io::InputStream.

virtual int decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream::doReadArrayBounded ( unsigned char *  buffer,
int  size,
int  offset,
int  length 
) [protected, virtual]

Reimplemented from decaf::io::InputStream.

virtual int decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream::doReadByte (  )  [protected, virtual]
virtual long long decaf::internal::net::ssl::openssl::OpenSSLSocketInputStream::skip ( long long  num  )  [virtual]

Not supported.

Skips over and discards n bytes of data from this input stream.The skip method may, for a variety of reasons, end up skipping over some smaller number of bytes, possibly 0. This may result from any of a number of conditions; reaching end of file before n bytes have been skipped is only one possibility. The actual number of bytes skipped is returned.The skip method of InputStream creates a byte array and then repeatedly reads into it until num bytes have been read or the end of the stream has been reached. Subclasses are encouraged to provide a more efficient implementation of this method.

Parameters:
num The number of bytes to skip.
Returns:
total bytes skipped
Exceptions:
IOException if an I/O error occurs.
UnsupportedOperationException if the concrete stream class does not support skipping bytes.

Reimplemented from decaf::io::InputStream.


The documentation for this class was generated from the following file:

Generated on 1 Dec 2014 for activemq-cpp-3.8.2 by  doxygen 1.6.1