ncbi_socket_connector.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_socket_connector.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:32:54  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CONNECT___NCBI_SOCKET_CONNECTOR__H
  10. #define CONNECT___NCBI_SOCKET_CONNECTOR__H
  11. /*  $Id: ncbi_socket_connector.h,v 1000.0 2003/10/29 16:32:54 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Denis Vakatov
  37.  *
  38.  * File Description:
  39.  *   Implement CONNECTOR for a network socket(based on the NCBI "SOCK").
  40.  *
  41.  *   See in "connectr.h" for the detailed specification of the underlying
  42.  *   connector("CONNECTOR", "SConnectorTag") methods and structures.
  43.  *
  44.  */
  45. #include <connect/ncbi_connector.h>
  46. #include <connect/ncbi_socket.h>
  47. /** @addtogroup Connectors
  48.  *
  49.  * @{
  50.  */
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54. /* This is equivalent to SOCK_CreateConnectorEx(host, port, max_try, 0,0,0),
  55.  * see below.
  56.  */
  57. extern NCBI_XCONNECT_EXPORT CONNECTOR SOCK_CreateConnector
  58. (const char*    host,   /* server:  host                            */
  59.  unsigned short port,   /* server:  service port                    */
  60.  unsigned int   max_try /* max.number of attempts to establish conn */
  61.  );
  62. typedef enum {
  63.     eSCC_DebugPrintout  = 1,
  64.     eSCC_SetReadOnWrite = 2
  65. } ESCC_Flags;
  66. typedef unsigned int TSCC_Flags;  /* bitwise OR of "ESCC_Flags */
  67. /* Create new CONNECTOR structure to handle connection to a socket.
  68.  * Make up to "max_try" attempts to connect to the "host:port" before
  69.  * giving up.
  70.  * On successful connect, send the first "init_size" bytes from buffer
  71.  * "init_data"(can be NULL -- then send nothing) to the opened connection.
  72.  * NOTE:  the connector makes (and then uses) its own copy of the "init_data".
  73.  * Return NULL on error.
  74.  */
  75. extern NCBI_XCONNECT_EXPORT CONNECTOR SOCK_CreateConnectorEx
  76. (const char*    host,      /* server:  host                                  */
  77.  unsigned short port,      /* server:  service port                          */
  78.  unsigned int   max_try,   /* max.number of attempts to establish connection */
  79.  const void*    init_data, /* data to send to server on connect              */
  80.  size_t         init_size, /* size of the "init_data" buffer                 */
  81.  TSCC_Flags     flags      /* bitwise OR of additional flags: see above      */
  82.  );
  83. /* Equivalent to SOCK_CreateConnectorOnTopEx(sock, max_try, 0,0,0),
  84.  * see below.
  85.  */
  86. extern NCBI_XCONNECT_EXPORT CONNECTOR SOCK_CreateConnectorOnTop
  87. (SOCK         sock,   /* socket object                                       */
  88.  unsigned int max_try /* max.number of tries to re-establish the link if lost*/
  89.  );
  90. /* Create new CONNECTOR structure on top of existing socket object (SOCK),
  91.  * acquiring the ownership of the socket, and overriding all timeouts
  92.  * that might have been set already in it. Timeout values will be taken from
  93.  * connection (CONN), after the connector is used in CONN_Create() call.
  94.  * Please note that this function revokes all ownership of the socket, and
  95.  * further assumes the passed socket is for the sole use of the connector.
  96.  * A socket obtained as a result of accepting connection on a listening socket
  97.  * (aka server-side socket) is not allowed to have reconnects (max_try = 0).
  98.  */
  99. extern NCBI_XCONNECT_EXPORT CONNECTOR SOCK_CreateConnectorOnTopEx
  100. (SOCK         sock,      /* socket object                                    */
  101.  unsigned int max_try,   /* max.# of tries to reconnect if disconnected      */
  102.  TSCC_Flags   flags      /* bitwise OR of additional flags: see above        */
  103.  );
  104. #ifdef __cplusplus
  105. }  /* extern "C" */
  106. #endif
  107. /* @} */
  108. /*
  109.  * --------------------------------------------------------------------------
  110.  * $Log: ncbi_socket_connector.h,v $
  111.  * Revision 1000.0  2003/10/29 16:32:54  gouriano
  112.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.9
  113.  *
  114.  * Revision 6.9  2003/05/14 03:48:51  lavr
  115.  * SOCKET_CreateConnectorOnTopEx(): init_data and init_size parameters removed
  116.  *
  117.  * Revision 6.8  2003/04/09 19:05:57  siyan
  118.  * Added doxygen support
  119.  *
  120.  * Revision 6.7  2003/01/08 01:59:33  lavr
  121.  * DLL-ize CONNECT library for MSVC (add NCBI_XCONNECT_EXPORT)
  122.  *
  123.  * Revision 6.6  2002/09/19 18:05:34  lavr
  124.  * Header file guard macro changed; log moved to end
  125.  *
  126.  * Revision 6.5  2002/08/07 16:31:40  lavr
  127.  * Added eSCC_SetReadOnWrite to constructor flags; log moved to end
  128.  *
  129.  * Revision 6.4  2002/01/12 22:15:28  lavr
  130.  * Fixed function description to use not former but current parameter names
  131.  *
  132.  * Revision 6.3  2001/12/04 15:54:29  lavr
  133.  * +SOCK_CreateConnectorOnTop(), +SOCK_CreateConnectorOnTopEx()
  134.  *
  135.  * Revision 6.2  2001/01/23 23:09:18  lavr
  136.  * Flags added to 'Ex' constructor
  137.  *
  138.  * Revision 6.1  2000/04/07 20:05:37  vakatov
  139.  * Initial revision
  140.  *
  141.  * ==========================================================================
  142.  */
  143. #endif /* CONNECT___NCBI_SOCKET_CONNECTOR__H */