Annotation of libwww/Library/src/HTNet.html, revision 2.20

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.17      frystyk     3: <TITLE>Asyncronous Socket Management</TITLE>
2.20    ! frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 24-Sep-1995 -->
2.1       frystyk     5: </HEAD>
                      6: <BODY>
2.2       frystyk     7: 
2.17      frystyk     8: <H1>Asyncronous Socket Management</H1>
2.1       frystyk     9: 
2.5       frystyk    10: <PRE>
                     11: /*
2.8       frystyk    12: **     (c) COPYRIGHT MIT 1995.
2.5       frystyk    13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
2.1       frystyk    17: This module contains the routines for handling the set of active
2.2       frystyk    18: sockets currently in use by the multithreaded clients. It is an
                     19: internal module to the Library, the application interface is
2.15      frystyk    20: implemented in the <A HREF="HTEvntrg.html">Event Module</A>. Look for
2.2       frystyk    21: more information in the <A
2.17      frystyk    22: HREF="http://www.w3.org/pub/WWW/Library/User/Architecture/">
2.2       frystyk    23: Multithread Specifications</A>. <P>
2.1       frystyk    24: 
2.17      frystyk    25: This module is implemented by <A HREF="HTNet.c">HTNet.c</A>, and it is
                     26: a part of the <A HREF="http://www.w3.org/pub/WWW/Library/">W3C
                     27: Reference Library</A>.
2.1       frystyk    28: 
                     29: <PRE>
2.17      frystyk    30: #ifndef HTNET_H
                     31: #define HTNET_H
                     32: #include "HTReq.h"
2.1       frystyk    33: </PRE>
                     34: 
2.17      frystyk    35: <H2>The HTNet Object</H2>
2.1       frystyk    36: 
2.17      frystyk    37: The <CODE>HTNet</CODE> object is the core of the request queue
                     38: management. This object contains information about the socket
                     39: descriptor, the input read buffer etc. required to identify and
                     40: service a request. <P>
2.1       frystyk    41: 
                     42: <PRE>
2.18      frystyk    43: typedef struct _HTNet HTNet;
2.1       frystyk    44: </PRE>
                     45: 
2.17      frystyk    46: <H2>Request Termination Call Back Functions</H2>
                     47: 
                     48: The termination callback functions is a set of functions that can be
                     49: registered by the application to be called when a request has
                     50: terminated. There can be more than one callback function which are
                     51: called on turn and each callback function can be associated with a
                     52: status code of the request. For example one callback function can be
                     53: registered for HT_LOADED, another for HT_ERROR etc.
                     54: 
                     55: <H3>Register a Request Callback</H3>
2.2       frystyk    56: 
2.17      frystyk    57: Register a call back function that is to be called on every
                     58: termination of a request. Several call back functions can be
                     59: registered in which case all of them are called in the reverse order
                     60: of which they were registered (last one first). The status signifies
                     61: which call back function to call depending of the result of the
                     62: request. This can be
2.1       frystyk    63: 
2.17      frystyk    64: <DL>
                     65: <DT>HT_ERROR
                     66: <DD>An error occured
                     67: <DT>HT_LOADED
                     68: <DD>The document was loaded
                     69: <DT>HT_NO_DATA
                     70: <DD>OK, but no data
                     71: <DT>HT_RETRY
                     72: <DD>Retry request after at a later time
                     73: <DT>HT_ALL
                     74: <DD>All of above
                     75: </DL>
2.1       frystyk    76: 
                     77: <PRE>
2.17      frystyk    78: typedef int HTNetCallBack (HTRequest * request, int status);
                     79: 
                     80: extern BOOL HTNet_register (HTNetCallBack *cbf, int status);
2.9       frystyk    81: </PRE>
                     82: 
2.17      frystyk    83: <H3>Unregister</H3>
2.9       frystyk    84: 
2.17      frystyk    85: Unregister call back functions
2.9       frystyk    86: 
                     87: <PRE>
2.17      frystyk    88: extern BOOL HTNet_unregister (HTNetCallBack *cbf);
                     89: extern BOOL HTNet_unregisterAll (void);
2.1       frystyk    90: </PRE>
                     91: 
2.17      frystyk    92: <H2>Call the Call Back Functions</H2>
2.10      frystyk    93: 
2.17      frystyk    94: Call all the call back functions registered in the list IF not the
                     95: status is HT_IGNORE. The callback functions are called in the reverse
                     96: order of which they were registered (last one first). Returns YES if
                     97: OK, else NO.
2.10      frystyk    98: 
                     99: <PRE>
2.17      frystyk   100: extern BOOL HTNet_callback (HTRequest * me, int status);
2.10      frystyk   101: </PRE>
                    102: 
2.17      frystyk   103: <H2>Request Queue</H2>
                    104: 
                    105: The request queue ensures that no more than a fixed number of TCP
                    106: connections are open at the same time. If more requests are handed to
                    107: the Library, they are put into the pending queue and initiated when
                    108: sockets become free.
                    109: 
                    110: <H3>Number of Simultanous open TCP connections</H3>
2.1       frystyk   111: 
2.17      frystyk   112: Set the max number of simultanous sockets. The default value is
2.19      frystyk   113: HT_MAX_SOCKETS which is 6. The number of persistent connections depend
                    114: on this value as a deadlock can occur if all available sockets a
                    115: persistent (see the <A HREF="HTDNS.html">DNS Manager</A> for more
                    116: information on setting the number of persistent connections). The
                    117: number of persistent connections can never be more than the max number
                    118: of sockets-2, so letting newmax=2 prevents persistent sockets.
2.1       frystyk   119: 
                    120: <PRE>
2.17      frystyk   121: extern BOOL HTNet_setMaxSocket (int newmax);
                    122: extern int  HTNet_maxSocket (void);
2.1       frystyk   123: </PRE>
                    124: 
2.17      frystyk   125: <H2>List Active Queue</H2>
2.1       frystyk   126: 
2.17      frystyk   127: Returns the list of active requests that are currently having an open
                    128: connection. Returns list of HTNet objects or NULL if error
2.1       frystyk   129: 
                    130: <PRE>
2.17      frystyk   131: extern HTList *HTNet_activeQueue (void);
2.1       frystyk   132: </PRE>
                    133: 
2.17      frystyk   134: 
                    135: <H2>List Pending Queue</H2>
                    136: 
                    137: Returns the list of pending requests that are waiting to become
                    138: active. Returns list of HTNet objects or NULL if error
                    139: 
2.1       frystyk   140: <PRE>
2.17      frystyk   141: extern HTList *HTNet_pendingQueue (void);
2.1       frystyk   142: </PRE>
                    143: 
2.17      frystyk   144: <H2>HTNet Object Creation and deletion methods</H2>
                    145: 
                    146: These methods are used from within the Request Manager and are not
                    147: normally to be used outside the Library kernel.
                    148: 
                    149: <H3>Create an Object</H3>
                    150: 
                    151: Create a new HTNet object as a new request to be handled. If we have
                    152: more than HTMaxActive connections already then put this into the
                    153: pending queue, else start the request by calling the call back
                    154: function registered with this access method.  Returns YES if OK, else
                    155: NO
                    156: 
                    157: <PRE>
                    158: extern BOOL HTNet_new (HTRequest * request, HTPriority priority);
2.20    ! frystyk   159: </PRE>
        !           160: 
        !           161: <H3>Duplicate an Existing Object</H3>
        !           162: 
        !           163: Creates a new HTNet object as a duplicate of the same request.
        !           164: Returns YES if OK, else NO.
        !           165: 
        !           166: <PRE>
        !           167: extern BOOL HTNet_dup (HTNet *src, HTNet **dest);
2.17      frystyk   168: </PRE>
                    169: 
2.19      frystyk   170: <H2>Make an Object Wait</H2>
                    171: 
                    172: Let a net object wait for a persistent socket. It will be launched
                    173: from the HTNet_delete() function when the socket gets free.
                    174: 
                    175: <PRE>
                    176: extern BOOL HTNet_wait (HTNet *net);
                    177: </PRE>
                    178: 
2.17      frystyk   179: <H3>Delete an Object</H3>
                    180: 
                    181: Deletes the HTNet object from the list of active requests and calls
                    182: any registered call back functions IF not the status is HT_IGNORE.
                    183: This is used if we have internal requests that the app doesn't know
                    184: about. We also see if we have pending requests that can be started up
                    185: now when we have a socket free. The callback functions are called in
                    186: the reverse order of which they were registered (last one first)
2.1       frystyk   187: 
                    188: <PRE>
2.17      frystyk   189: extern BOOL HTNet_delete (HTNet * me, int status);
2.1       frystyk   190: </PRE>
                    191: 
2.17      frystyk   192: <H3>Delete ALL HTNet Objects</H3>
2.1       frystyk   193: 
2.17      frystyk   194: Deletes all HTNet object that might either be active or pending We DO
2.19      frystyk   195: NOT call the call back functions - A crude way of saying goodbye!
2.1       frystyk   196: 
                    197: <PRE>
2.17      frystyk   198: extern BOOL HTNet_deleteAll (void);
2.1       frystyk   199: </PRE>
                    200: 
2.17      frystyk   201: <H2>Killing requests</H2>
                    202: 
                    203: For those who can't help it ;-)
                    204: 
                    205: <H3>Kill a Request</H3>
2.1       frystyk   206: 
2.17      frystyk   207: Kill the request by calling the call back function with a request for
                    208: closing the connection. Does not remove the object. This is done by
                    209: HTNet_delete() function which is called by the load routine.  Returns
                    210: OK if success, NO on error
2.1       frystyk   211: 
                    212: <PRE>
2.17      frystyk   213: extern BOOL HTNet_kill (HTNet * me);
2.1       frystyk   214: </PRE>
                    215: 
2.17      frystyk   216: <H3>Kill ALL requests</H3>
2.1       frystyk   217: 
2.17      frystyk   218: Kills all registered (active+pending) requests by calling the call
                    219: back function with a request for closing the connection. We do not
                    220: remove the HTNet object as it is done by HTNet_delete().  Returns OK
                    221: if success, NO on error
2.1       frystyk   222: 
                    223: <PRE>
2.17      frystyk   224: extern BOOL HTNet_killAll (void);
                    225: </PRE>
2.1       frystyk   226: 
2.17      frystyk   227: <PRE>
                    228: #endif /* HTNET_H */
2.1       frystyk   229: </PRE>
                    230: 
2.17      frystyk   231: End of declaration module
2.1       frystyk   232: </BODY>
                    233: </HTML>
                    234: 
                    235: 

Webmaster