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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_service_connector.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:32:30  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CONNECT___NCBI_SERVICE_CONNECTOR__H
  10. #define CONNECT___NCBI_SERVICE_CONNECTOR__H
  11. /*  $Id: ncbi_service_connector.h,v 1000.0 2003/10/29 16:32:30 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:  Anton Lavrentiev
  37.  *
  38.  * File Description:
  39.  *   Implement CONNECTOR for a named NCBI service
  40.  *
  41.  *   See in "ncbi_connector.h" for the detailed specification of the underlying
  42.  *   connector("CONNECTOR", "SConnectorTag") methods and structures.
  43.  *
  44.  */
  45. #include <connect/ncbi_service.h>
  46. /** @addtogroup Connectors
  47.  *
  48.  * @{
  49.  */
  50. #ifdef __cplusplus
  51. extern "C" {
  52. #endif
  53. typedef const SSERV_Info* (*FSERVICE_GetNextInfo)(SERV_ITER iter, void* data);
  54. typedef void              (*FSERVICE_CleanupData)(void* data);
  55. typedef void              (*FSERVICE_ResetData)(void* data);
  56. typedef struct {
  57.     void*                data;
  58.     FSERVICE_ResetData   reset;         /* called at each close     */
  59.     FSERVICE_CleanupData cleanup;       /* called at destruction    */
  60.     FSERVICE_GetNextInfo get_next_info; /* called to get conn point */
  61. } SSERVICE_Extra;
  62. extern NCBI_XCONNECT_EXPORT CONNECTOR SERVICE_CreateConnectorEx
  63. (const char*           service,
  64.  TSERV_Type            types,
  65.  const SConnNetInfo*   net_info,
  66.  const SSERVICE_Extra* params
  67.  );
  68. #define SERVICE_CreateConnector(service) 
  69.     SERVICE_CreateConnectorEx(service, fSERV_Any, 0, 0)
  70. #ifdef __cplusplus
  71. }  /* extern "C" */
  72. #endif
  73. /* @} */
  74. /*
  75.  * --------------------------------------------------------------------------
  76.  * $Log: ncbi_service_connector.h,v $
  77.  * Revision 1000.0  2003/10/29 16:32:30  gouriano
  78.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.10
  79.  *
  80.  * Revision 6.10  2003/04/09 19:05:52  siyan
  81.  * Added doxygen support
  82.  *
  83.  * Revision 6.9  2003/01/17 19:44:20  lavr
  84.  * Reduce dependencies
  85.  *
  86.  * Revision 6.8  2003/01/08 01:59:33  lavr
  87.  * DLL-ize CONNECT library for MSVC (add NCBI_XCONNECT_EXPORT)
  88.  *
  89.  * Revision 6.7  2002/09/19 18:05:09  lavr
  90.  * Header file guard macro changed; log moved to end
  91.  *
  92.  * Revision 6.6  2002/04/26 16:27:13  lavr
  93.  * SSERVICE_Params: reset added for use in open/close pairs
  94.  *
  95.  * Revision 6.5  2001/09/24 20:25:11  lavr
  96.  * +SSERVICE_Extra, +4th parameter for SERVICE_CreateConnectorEx()
  97.  * -SERVICE_CreateConnector() - now implemented as macro
  98.  *
  99.  * Revision 6.4  2001/09/10 21:20:19  lavr
  100.  * Few unimportant layout changes
  101.  *
  102.  * Revision 6.3  2001/06/04 17:00:18  lavr
  103.  * Include files adjusted
  104.  *
  105.  * Revision 6.2  2000/12/29 17:48:34  lavr
  106.  * Accepted server types included in SERVICE_CreateConnectorEx arguments.
  107.  *
  108.  * Revision 6.1  2000/10/07 22:15:12  lavr
  109.  * Initial revision
  110.  *
  111.  * ==========================================================================
  112.  */
  113. #endif /* CONNECT___NCBI_SERVICE_CONNECTOR__H */