ACE_SSL_Asynch_Stream Class Reference

This class is a factory for initiating asynchronous reads and writes on an SSL stream. More...

#include <SSL_Asynch_Stream.h>

Collaboration diagram for ACE_SSL_Asynch_Stream:

Collaboration graph
[legend]
List of all members.

Public Types

 ST_CLIENT = 0x0001
 ST_SERVER = 0x0002
enum  Stream_Type { ST_CLIENT = 0x0001, ST_SERVER = 0x0002 }

Public Member Functions

 ACE_SSL_Asynch_Stream (Stream_Type s_type=ST_SERVER, ACE_SSL_Context *context=0)
 Constructor.
virtual ~ACE_SSL_Asynch_Stream (void)
 Destructor.
int cancel (void)
int close (void)
int open (ACE_Handler &handler, ACE_HANDLE handle=ACE_INVALID_HANDLE, const void *completion_key=0, ACE_Proactor *proactor=0)
int read (ACE_Message_Block &message_block, size_t num_bytes_to_read, const void *act=0, int priority=0, int signal_number=ACE_SIGRTMIN)
int write (ACE_Message_Block &message_block, size_t bytes_to_write, const void *act=0, int priority=0, int signal_number=ACE_SIGRTMIN)

Protected Types

 SF_STREAM_OPEN = 0x0001
 istream_ open OK
 SF_REQ_SHUTDOWN = 0x0002
 request to SSL shutdown
 SF_SHUTDOWN_DONE = 0x0004
 SSL shutdown finished.
 SF_CLOSE_NTF_SENT = 0x0008
 Close notification sent.
 SF_DELETE_ENABLE = 0x0010
 Stream can be safely destroyed.
 BF_EOS = 0x01
 End of stream.
 BF_AIO = 0x02
 Real AIO in progress.
enum  Stream_Flag {
  SF_STREAM_OPEN = 0x0001, SF_REQ_SHUTDOWN = 0x0002, SF_SHUTDOWN_DONE = 0x0004, SF_CLOSE_NTF_SENT = 0x0008,
  SF_DELETE_ENABLE = 0x0010
}
 Stream state/flags. More...
enum  BIO_Flag { BF_EOS = 0x01, BF_AIO = 0x02 }

Protected Member Functions

virtual ACE_Asynch_Operation_Impl * implementation (void) const
virtual void handle_write_stream (const ACE_Asynch_Write_Stream::Result &result)
 virtual from ACE_Handler
virtual void handle_read_stream (const ACE_Asynch_Read_Stream::Result &result)
virtual void handle_wakeup (void)
void print_error (int err_ssl, const ACE_TCHAR *pText)
int pending_BIO_count (void)
int notify_read (int bytes_transferred, int error)
int notify_write (int bytes_transferred, int error)
int notify_close (void)
SSL State Machine
int do_SSL_state_machine (void)
int do_SSL_handshake (void)
int do_SSL_read (void)
int do_SSL_write (void)
int do_SSL_shutdown (void)
BIO Helpers
int ssl_bio_read (char *buf, size_t len, int &errval)
int ssl_bio_write (const char *buf, size_t len, int &errval)

Protected Attributes

Stream_Type type_
 Stream Type ST_CLIENT/ST_SERVER.
ACE_HANDLE handle_
 The real file/socket handle.
ACE_Proactorproactor_
 The proactor.
ACE_Handler * ext_handler_
 External,i.e user handler.
ACE_SSL_Asynch_Read_Stream_Resultext_read_result_
 External, i.e. read result faked for user.
ACE_SSL_Asynch_Write_Stream_Resultext_write_result_
 External, i.e. write result faked for user.
int flags_
SSL * ssl_
 The SSL session.
BIO * bio_
 The BIO implementation.
ACE_SYNCH_MUTEX mutex_
 Mutex to protect work.
Internal stream, buffer and info for BIO read
ACE_Asynch_Read_Stream bio_istream_
ACE_Message_Block bio_inp_msg_
int bio_inp_errno_
int bio_inp_flag_
Internal stream, buffer and info for BIO write
ACE_Asynch_Write_Stream bio_ostream_
ACE_Message_Block bio_out_msg_
int bio_out_errno_
int bio_out_flag_

Private Member Functions

 ACE_SSL_Asynch_Stream (ACE_SSL_Asynch_Stream const &)
ACE_SSL_Asynch_Streamoperator= (ACE_SSL_Asynch_Stream const &)

Friends

struct ACE_SSL_Asynch_Stream_Accessor

Detailed Description

This class is a factory for initiating asynchronous reads and writes on an SSL stream.

Once open() is called, multiple asynchronous read and write operations can be started using this class. The handler object (derived from ACE_Handler) specified in open() will receive completion events for the operations initiated via this class.


Member Enumeration Documentation

enum ACE_SSL_Asynch_Stream::BIO_Flag [protected]

The real streams which work under the ssl connection. BIO performs I/O via this streams

Enumerator:
BF_EOS  End of stream.
BF_AIO  Real AIO in progress.

enum ACE_SSL_Asynch_Stream::Stream_Flag [protected]

Stream state/flags.

Enumerator:
SF_STREAM_OPEN  istream_ open OK
SF_REQ_SHUTDOWN  request to SSL shutdown
SF_SHUTDOWN_DONE  SSL shutdown finished.
SF_CLOSE_NTF_SENT  Close notification sent.
SF_DELETE_ENABLE  Stream can be safely destroyed.

enum ACE_SSL_Asynch_Stream::Stream_Type

Enumerator:
ST_CLIENT 
ST_SERVER 


Constructor & Destructor Documentation

ACE_SSL_Asynch_Stream::ACE_SSL_Asynch_Stream ( Stream_Type  s_type = ST_SERVER,
ACE_SSL_Context context = 0 
)

Constructor.

ACE_SSL_Asynch_Stream::~ACE_SSL_Asynch_Stream ( void   )  [virtual]

Destructor.

ACE_SSL_Asynch_Stream::ACE_SSL_Asynch_Stream ( ACE_SSL_Asynch_Stream const &   )  [private]


Member Function Documentation

int ACE_SSL_Asynch_Stream::cancel ( void   ) 

int ACE_SSL_Asynch_Stream::close ( void   ) 

int ACE_SSL_Asynch_Stream::do_SSL_handshake ( void   )  [protected]

int ACE_SSL_Asynch_Stream::do_SSL_read ( void   )  [protected]

int ACE_SSL_Asynch_Stream::do_SSL_shutdown ( void   )  [protected]

int ACE_SSL_Asynch_Stream::do_SSL_state_machine ( void   )  [protected]

int ACE_SSL_Asynch_Stream::do_SSL_write ( void   )  [protected]

void ACE_SSL_Asynch_Stream::handle_read_stream ( const ACE_Asynch_Read_Stream::Result &  result  )  [protected, virtual]

This method is called when BIO read request is completed. It processes the IO completion and calls do_SSL_state_machine().

void ACE_SSL_Asynch_Stream::handle_wakeup ( void   )  [protected, virtual]

This method is called when all SSL sessions are closed and no more pending AIOs exist. It also calls users handle_wakeup().

void ACE_SSL_Asynch_Stream::handle_write_stream ( const ACE_Asynch_Write_Stream::Result &  result  )  [protected, virtual]

virtual from ACE_Handler

This method is called when BIO write request is completed. It processes the IO completion and calls do_SSL_state_machine().

virtual ACE_Asynch_Operation_Impl* ACE_SSL_Asynch_Stream::implementation ( void   )  const [inline, protected, virtual]

Virtual from ACE_Asynch_Operation. Since this class is essentially an implementation class, simply return 0.

int ACE_SSL_Asynch_Stream::notify_close ( void   )  [protected]

This method is called to notify ourself that SSL session is shutdown and that there is no more I/O activity now and in the future.

int ACE_SSL_Asynch_Stream::notify_read ( int  bytes_transferred,
int  error 
) [protected]

This method is called to notify user handler when user's read in done.

int ACE_SSL_Asynch_Stream::notify_write ( int  bytes_transferred,
int  error 
) [protected]

This method is called to notify user handler when user's write in done.

int ACE_SSL_Asynch_Stream::open ( ACE_Handler &  handler,
ACE_HANDLE  handle = ACE_INVALID_HANDLE,
const void *  completion_key = 0,
ACE_Proactor proactor = 0 
)

Initializes the factory with information which will be used with each asynchronous call.

Return values:
0 for success.
-1 for failure; consult errno for further information.

ACE_SSL_Asynch_Stream& ACE_SSL_Asynch_Stream::operator= ( ACE_SSL_Asynch_Stream const &   )  [private]

int ACE_SSL_Asynch_Stream::pending_BIO_count ( void   )  [protected]

void ACE_SSL_Asynch_Stream::print_error ( int  err_ssl,
const ACE_TCHAR pText 
) [protected]

int ACE_SSL_Asynch_Stream::read ( ACE_Message_Block message_block,
size_t  num_bytes_to_read,
const void *  act = 0,
int  priority = 0,
int  signal_number = ACE_SIGRTMIN 
)

Initiates an asynchronous read. If the operation is successfully initiated, the handle_read_stream() method will be called on the ACE_Handler object passed to open() when the operation completes. Data is read into the specified ACE_Message_Block beginning at its write pointer; the block's write pointer is updated to reflect any added data when the operation completes.

Return values:
0 for success.
-1 for failure; consult errno for further information.

int ACE_SSL_Asynch_Stream::ssl_bio_read ( char *  buf,
size_t  len,
int &  errval 
) [protected]

int ACE_SSL_Asynch_Stream::ssl_bio_write ( const char *  buf,
size_t  len,
int &  errval 
) [protected]

int ACE_SSL_Asynch_Stream::write ( ACE_Message_Block message_block,
size_t  bytes_to_write,
const void *  act = 0,
int  priority = 0,
int  signal_number = ACE_SIGRTMIN 
)

Initiates an asynchronous write. If the operation is successfully initiated, the handle_write_stream() method will be called on the ACE_Handler object passed to open() when the operation completes. Data is taken from the specified ACE_Message_Block beginning at its read pointer; the block's read pointer is updated to reflect any data successfully sent when the operation completes.

Return values:
0 for success.
-1 for failure; consult errno for further information.


Friends And Related Function Documentation

friend struct ACE_SSL_Asynch_Stream_Accessor [friend]


Member Data Documentation

BIO* ACE_SSL_Asynch_Stream::bio_ [protected]

The BIO implementation.

int ACE_SSL_Asynch_Stream::bio_inp_errno_ [protected]

int ACE_SSL_Asynch_Stream::bio_inp_flag_ [protected]

ACE_Message_Block ACE_SSL_Asynch_Stream::bio_inp_msg_ [protected]

ACE_Asynch_Read_Stream ACE_SSL_Asynch_Stream::bio_istream_ [protected]

ACE_Asynch_Write_Stream ACE_SSL_Asynch_Stream::bio_ostream_ [protected]

int ACE_SSL_Asynch_Stream::bio_out_errno_ [protected]

int ACE_SSL_Asynch_Stream::bio_out_flag_ [protected]

ACE_Message_Block ACE_SSL_Asynch_Stream::bio_out_msg_ [protected]

ACE_Handler* ACE_SSL_Asynch_Stream::ext_handler_ [protected]

External,i.e user handler.

ACE_SSL_Asynch_Read_Stream_Result* ACE_SSL_Asynch_Stream::ext_read_result_ [protected]

External, i.e. read result faked for user.

ACE_SSL_Asynch_Write_Stream_Result* ACE_SSL_Asynch_Stream::ext_write_result_ [protected]

External, i.e. write result faked for user.

int ACE_SSL_Asynch_Stream::flags_ [protected]

ACE_HANDLE ACE_SSL_Asynch_Stream::handle_ [protected]

The real file/socket handle.

ACE_SYNCH_MUTEX ACE_SSL_Asynch_Stream::mutex_ [protected]

Mutex to protect work.

ACE_Proactor* ACE_SSL_Asynch_Stream::proactor_ [protected]

The proactor.

SSL* ACE_SSL_Asynch_Stream::ssl_ [protected]

The SSL session.

Stream_Type ACE_SSL_Asynch_Stream::type_ [protected]

Stream Type ST_CLIENT/ST_SERVER.


The documentation for this class was generated from the following files:
Generated on Mon Apr 30 22:51:55 2007 for ACE_SSL by  doxygen 1.4.7-1