TCP/TCPConnection.h
author Jens Alfke <jens@mooseyard.com>
Sat May 24 17:25:06 2008 -0700 (2008-05-24)
changeset 2 9fdd8dba529c
parent 0 9d67172bb323
child 7 5936db2c1987
permissions -rw-r--r--
* Added more documentation.
* Minor API changes.
     1 //
     2 //  TCPConnection.h
     3 //  MYNetwork
     4 //
     5 //  Created by Jens Alfke on 5/18/08.
     6 //  Copyright 2008 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import "TCPEndpoint.h"
    10 @class IPAddress;
    11 @class TCPReader, TCPWriter, TCPListener;
    12 @protocol TCPConnectionDelegate;
    13 
    14 
    15 typedef enum {
    16     kTCP_Disconnected = -1,
    17     kTCP_Closed,
    18     kTCP_Opening,
    19     kTCP_Open,
    20     kTCP_Closing
    21 } TCPConnectionStatus;
    22 
    23 
    24 /** A generic class that manages a TCP socket connection.
    25     It creates a TCPReader and a TCPWriter to handle I/O.
    26     TCPConnection itself mostly deals with SSL setup and opening/closing the socket.
    27     (The SSL related methods are inherited from TCPEndpoint.) */
    28 @interface TCPConnection : TCPEndpoint
    29 {
    30     @private
    31     TCPListener *_server;
    32     IPAddress *_address;
    33     BOOL _isIncoming, _checkedPeerCert;
    34     TCPConnectionStatus _status;
    35     TCPReader *_reader;
    36     TCPWriter *_writer;
    37     NSError *_error;
    38 }
    39 
    40 /** Initializes a TCPConnection to the given IP address.
    41     Afer configuring settings, you should call -open to begin the connection. */
    42 - (id) initToAddress: (IPAddress*)address;
    43 
    44 /** Initializes a TCPConnection to the given IP address, binding to a specific outgoing port
    45     number. (This is usually only necessary when attempting to tunnel through a NAT.) */
    46 - (id) initToAddress: (IPAddress*)address
    47            localPort: (UInt16)localPort;
    48 
    49 /** Initializes a TCPConnection from an incoming TCP socket.
    50     You don't usually need to call this; TCPListener does it automatically. */
    51 - (id) initIncomingFromSocket: (CFSocketNativeHandle)socket listener: (TCPListener*)listener;
    52 
    53 /** The delegate object that will be called when the connection opens, closes or receives messages. */
    54 @property (assign) id<TCPConnectionDelegate> delegate;
    55 
    56 /** The certificate(s) of the connected peer, if this connection uses SSL.
    57     The items in the array are SecCertificateRefs; use the Keychain API to work with them. */
    58 @property (readonly) NSArray *peerSSLCerts;
    59 
    60 /** Connection's current status */
    61 @property (readonly) TCPConnectionStatus status;
    62 
    63 /** Opens the connection. This happens asynchronously; wait for a delegate method to be called.
    64     You don't need to open incoming connections received via a TCPListener. */
    65 - (void) open;
    66 
    67 /** Closes the connection, after waiting for all in-progress messages to be sent or received.
    68     This happens asynchronously; wait for a delegate method to be called.*/
    69 - (void) close;
    70 
    71 /** Closes the connection, like -close, but if it hasn't closed by the time the timeout
    72     expires, it will disconnect the socket. */
    73 - (void) closeWithTimeout: (NSTimeInterval)timeout;
    74 
    75 /** Closes all open TCPConnections. */
    76 + (void) closeAllWithTimeout: (NSTimeInterval)timeout;
    77 
    78 /** Blocks until all open TCPConnections close. You should call +closeAllWithTimeout: first. */
    79 + (void) waitTillAllClosed;
    80 
    81 /** The IP address of the other peer. */
    82 @property (readonly) IPAddress *address;
    83 
    84 /** The TCPListener that created this incoming connection, or nil */
    85 @property (readonly) TCPListener *server;
    86 
    87 /** Is this an incoming connection, received via a TCPListener? */
    88 @property (readonly) BOOL isIncoming;
    89 
    90 /** The fatal error, if any, 
    91     that caused the connection to fail to open or to disconnect unexpectedly. */
    92 @property (readonly) NSError *error;
    93 
    94 /** The actual security level of this connection. 
    95     Value is nil or one of the security level constants from NSStream.h,
    96     such as NSStreamSocketSecurityLevelTLSv1. */
    97 @property (readonly) NSString* actualSecurityLevel;
    98 
    99 
   100 @property (readonly) TCPReader *reader;
   101 @property (readonly) TCPWriter *writer;
   102 
   103 
   104 // protected:
   105 - (Class) readerClass;
   106 - (Class) writerClass;
   107 
   108 @end
   109 
   110 
   111 
   112 /** The delegate messages sent by TCPConnection.
   113     All methods are optional. */
   114 @protocol TCPConnectionDelegate <NSObject>
   115 @optional
   116 /** Called after the connection successfully opens. */
   117 - (void) connectionDidOpen: (TCPConnection*)connection;
   118 /** Called after the connection fails to open due to an error. */
   119 - (void) connection: (TCPConnection*)connection failedToOpen: (NSError*)error;
   120 /** Called when the identity of the peer is known, if using an SSL connection and the SSL
   121     settings say to check the peer's certificate.
   122     This happens, if at all, after the -connectionDidOpen: call. */
   123 - (BOOL) connection: (TCPConnection*)connection authorizeSSLPeer: (SecCertificateRef)peerCert;
   124 /** Called after the connection closes. */
   125 - (void) connectionDidClose: (TCPConnection*)connection;
   126 @end