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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_ncbi_file_connector.c,v $
  4.  * PRODUCTION Revision 1000.1  2004/02/24 19:22:43  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CORE_001] Dev-tree R6.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_ncbi_file_connector.c,v 1000.1 2004/02/24 19:22:43 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Denis Vakatov
  35.  *
  36.  * File Description:
  37.  *   Standard test for the FILE-based CONNECTOR
  38.  *
  39.  */
  40. #include <connect/ncbi_connection.h>
  41. #include <connect/ncbi_file_connector.h>
  42. #include <connect/ncbi_util.h>
  43. #include <stdlib.h>
  44. /* This header must go last */
  45. #include "test_assert.h"
  46. #define OUT_FILE "test_ncbi_file_connector.out"
  47. static const char* s_ProgramName;
  48. static void Usage(const char* message)
  49. {
  50.     fprintf(stderr,
  51.             "nUsage: %s <input_file>n"
  52.             "  (copy <input_file> to "" OUT_FILE "")n"
  53.             "nERROR:  %s!n",
  54.             s_ProgramName, message);
  55.     abort();
  56. }
  57. int main(int argc, const char* argv[])
  58. {
  59.     CONN        conn;
  60.     CONNECTOR   connector;
  61.     EIO_Status  status;
  62.     const char* inp_file;
  63.     /* cmd.-line args */
  64.     s_ProgramName = argv[0];
  65.     if (argc != 2) {
  66.         Usage("Must specify the input file name");
  67.     }
  68.     inp_file = argv[1];
  69.     /* log and data log streams */
  70.     CORE_SetLOGFILE(stderr, 0/*false*/);
  71.     /* run the test */
  72.     fprintf(stderr,
  73.             "Starting the FILE CONNECTOR test...n"
  74.             "Copy data from file "%s" to file "%s".nn",
  75.             inp_file, OUT_FILE);
  76.     /* create connector, and bind it to the connection */
  77.     connector = FILE_CreateConnector(inp_file, OUT_FILE);
  78.     if ( !connector ) {
  79.         Usage("Failed to create FILE connector");
  80.     }
  81.     verify(CONN_Create(connector, &conn) == eIO_Success);
  82.  
  83.     /* pump the data from one file to another */
  84.     for (;;) {
  85.         char buf[100];
  86.         size_t n_read, n_written;
  87.         /* read */
  88.         status = CONN_Read(conn, buf, sizeof(buf), &n_read, eIO_ReadPlain);
  89.         if (status != eIO_Success) {
  90.             fprintf(stderr, "CONN_Read() failed (status: %s)n",
  91.                     IO_StatusStr(status));
  92.             break;
  93.         }
  94.         fprintf(stderr, "READ: %ld  bytesn", (long) n_read);
  95.         /* write */
  96.         status = CONN_Write(conn, buf, n_read, &n_written, eIO_WritePersist);
  97.         if (status != eIO_Success) {
  98.             fprintf(stderr, "CONN_Write() failed (status: %s)n",
  99.                     IO_StatusStr(status));
  100.             assert(0);
  101.             break;
  102.         }
  103.         assert(n_written == n_read);
  104.     }
  105.     assert(status == eIO_Closed);
  106.     
  107.     /* cleanup, exit */
  108.     verify(CONN_Close(conn) == eIO_Success);
  109.     CORE_SetLOG(0);
  110.     return 0;
  111. }
  112. /*
  113.  * --------------------------------------------------------------------------
  114.  * $Log: test_ncbi_file_connector.c,v $
  115.  * Revision 1000.1  2004/02/24 19:22:43  gouriano
  116.  * PRODUCTION: UPGRADED [CORE_001] Dev-tree R6.5
  117.  *
  118.  * Revision 6.5  2004/02/23 15:23:43  lavr
  119.  * New (last) parameter "how" added in CONN_Write() API call
  120.  *
  121.  * Revision 6.4  2002/08/07 16:38:08  lavr
  122.  * EIO_ReadMethod enums changed accordingly; log moved to end
  123.  *
  124.  * Revision 6.3  2002/03/22 19:47:09  lavr
  125.  * Test_assert.h made last among the include files
  126.  *
  127.  * Revision 6.2  2002/01/16 21:23:15  vakatov
  128.  * Utilize header "test_assert.h" to switch on ASSERTs in the Release mode too
  129.  *
  130.  * Revision 6.1  2000/04/12 15:22:43  vakatov
  131.  * Initial revision
  132.  *
  133.  * ==========================================================================
  134.  */