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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: http_connector_hit.c,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/12 17:06:36  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R6.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: http_connector_hit.c,v 1000.2 2004/04/12 17:06:36 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.  *   Hit an arbitrary URL using HTTP-based CONNECTOR
  38.  *
  39.  */
  40. #include "../ncbi_ansi_ext.h"
  41. #include <connect/ncbi_http_connector.h>
  42. #include <connect/ncbi_util.h>
  43. /* This header must go last */
  44. #include "test_assert.h"
  45. /* Holder for the cmd.-line arg values describing the URL to hit
  46.  * (used by the pseudo-registry getter "s_REG_Get")
  47.  */
  48. static struct {
  49.     const char* host;
  50.     const char* port;
  51.     const char* path;
  52.     const char* args;
  53. } s_Args;
  54. /* Getter for the pseudo-registry
  55.  */
  56. #if defined(__cplusplus)
  57. extern "C" {
  58.     static void s_REG_Get(void*user_data,
  59.                           const char* section, const char* name,
  60.                           char* value, size_t value_size);
  61. }
  62. #endif /* __cplusplus */
  63. static void s_REG_Get
  64. (void*       user_data,
  65.  const char* section,
  66.  const char* name,
  67.  char*       value,
  68.  size_t      value_size)
  69. {
  70.     if (strcmp(section, DEF_CONN_REG_SECTION) != 0) {
  71.         assert(0);
  72.         return;
  73.     }
  74. #define X_GET_VALUE(x_name, x_value)              
  75.     if (strcmp(name, x_name) == 0) {              
  76.         strncpy0(value, x_value, value_size - 1); 
  77.         return;                                   
  78.     }
  79.     X_GET_VALUE(REG_CONN_HOST,           s_Args.host);
  80.     X_GET_VALUE(REG_CONN_PORT,           s_Args.port);
  81.     X_GET_VALUE(REG_CONN_PATH,           s_Args.path);
  82.     X_GET_VALUE(REG_CONN_ARGS,           s_Args.args);
  83.     X_GET_VALUE(REG_CONN_DEBUG_PRINTOUT, "yes");
  84. }
  85. /*****************************************************************************
  86.  *  MAIN
  87.  */
  88. int main(int argc, const char* argv[])
  89. {
  90.     const char* inp_file    = (argc > 5) ? argv[5] : "";
  91.     const char* user_header = (argc > 6) ? argv[6] : "";
  92.     CONNECTOR   connector;
  93.     CONN        conn;
  94.     EIO_Status  status;
  95.     char   buffer[100];
  96.     size_t n_read, n_written;
  97.     /* Prepare to connect:  parse and check cmd.-line args, etc. */
  98.     s_Args.host         = (argc > 1) ? argv[1] : "";
  99.     s_Args.port         = (argc > 2) ? argv[2] : "";
  100.     s_Args.path         = (argc > 3) ? argv[3] : "";
  101.     s_Args.args         = (argc > 4) ? argv[4] : "";
  102.     fprintf(stderr, "Running '%s':n"
  103.             "  URL host:        '%s'n"
  104.             "  URL port:        '%s'n"
  105.             "  URL path:        '%s'n"
  106.             "  URL args:        '%s'n"
  107.             "  Input data file: '%s'n"
  108.             "  User header:     '%s'n"
  109.             " Reply(if any) from the hit URL goes to the standard output.nn",
  110.             argv[0],
  111.             s_Args.host, s_Args.port, s_Args.path, s_Args.args,
  112.             inp_file, user_header);
  113.     /* Log stream */
  114.     CORE_SetLOGFILE(stderr, 0/*false*/);
  115.     /* Tune to the test URL using hard-coded pseudo-registry */
  116.     CORE_SetREG( REG_Create(0, s_REG_Get, 0, 0, 0) );
  117.     /* Usage */
  118.     if (argc < 4) {
  119.         fprintf(stderr,
  120.                 "Usage:   %s host port path [args] [inp_file] [user_header]n"
  121.                 "Example: %s yar.ncbi.nlm.nih.gov 6224 "
  122.                 "/tools/vakatov/con_url.cgi 'arg1+arg2+arg3'n",
  123.                 argv[0], argv[0]);
  124.         fprintf(stderr, "Too few arguments.n");
  125.         return 1;
  126.     }
  127.     /* Connect */
  128.     connector = HTTP_CreateConnector(0, user_header, 0);
  129.     assert(connector);
  130.     verify(CONN_Create(connector, &conn) == eIO_Success);
  131.     /* If the input file is specified,
  132.      * then send its content (as the HTTP request body) to URL
  133.      */
  134.     if ( *inp_file ) {
  135.         FILE* inp_fp = fopen(inp_file, "rb");
  136.         if ( !inp_fp ) {
  137.             fprintf(stderr, "Cannot open file '%s' for read", inp_file);
  138.             assert(0);
  139.         }
  140.         for (;;) {
  141.             n_read = fread(buffer, 1, sizeof(buffer), inp_fp);
  142.             if (n_read <= 0) {
  143.                 assert(feof(inp_fp));
  144.                 break; /* EOF */
  145.             }
  146.             status = CONN_Write(conn, buffer, n_read,
  147.                                 &n_written, eIO_WritePersist);
  148.             if (status != eIO_Success) {
  149.                 fprintf(stderr, "Error writing to URL (%s)",
  150.                         IO_StatusStr(status));
  151.                 assert(0);
  152.             }
  153.             assert(n_written == n_read);
  154.         }
  155.         fclose(inp_fp);
  156.     }
  157.     /* Read reply from connection, write it to standard output */
  158.     fprintf(stdout, "nn----- [BEGIN] HTTP Content -----n");
  159.     for (;;) {
  160.         status = CONN_Read(conn,buffer,sizeof(buffer),&n_read,eIO_ReadPlain);
  161.         if (status != eIO_Success)
  162.             break;
  163.         fwrite(buffer, 1, n_read, stdout);
  164.         fflush(stdout);
  165.     }
  166.     fprintf(stdout, "n----- [END] HTTP Content -----nn");
  167.     if (status != eIO_Closed) {
  168.         fprintf(stderr, "Error reading from URL (%s)", IO_StatusStr(status));
  169.         assert(0);
  170.     }
  171.     /* Success:  close the connection, cleanup, and exit */
  172.     CONN_Close(conn);
  173.     CORE_SetREG(0);
  174.     CORE_SetLOG(0);
  175.     return 0;
  176. }
  177. /*
  178.  * --------------------------------------------------------------------------
  179.  * $Log: http_connector_hit.c,v $
  180.  * Revision 1000.2  2004/04/12 17:06:36  gouriano
  181.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R6.13
  182.  *
  183.  * Revision 6.13  2004/04/01 14:14:02  lavr
  184.  * Spell "occurred", "occurrence", and "occurring"
  185.  *
  186.  * Revision 6.12  2004/02/23 15:23:42  lavr
  187.  * New (last) parameter "how" added in CONN_Write() API call
  188.  *
  189.  * Revision 6.11  2003/04/15 14:06:09  lavr
  190.  * Changed ray.nlm.nih.gov -> ray.ncbi.nlm.nih.gov
  191.  *
  192.  * Revision 6.10  2002/11/22 15:09:40  lavr
  193.  * Replace all occurrences of "ray" with "yar"
  194.  *
  195.  * Revision 6.9  2002/10/28 15:47:12  lavr
  196.  * Use "ncbi_ansi_ext.h" privately and use strncpy0()
  197.  *
  198.  * Revision 6.8  2002/08/07 16:38:08  lavr
  199.  * EIO_ReadMethod enums changed accordingly; log moved to end
  200.  *
  201.  * Revision 6.7  2002/03/22 19:45:55  lavr
  202.  * Test_assert.h made last among the include files
  203.  *
  204.  * Revision 6.6  2002/01/16 21:23:14  vakatov
  205.  * Utilize header "test_assert.h" to switch on ASSERTs in the Release mode too
  206.  *
  207.  * Revision 6.5  2001/01/11 16:42:45  lavr
  208.  * Registry Get/Set methods got the 'user_data' argument, forgotten earlier
  209.  *
  210.  * Revision 6.4  2000/11/15 17:27:29  vakatov
  211.  * Fixed path to the test CGI application.
  212.  *
  213.  * Revision 6.3  2000/09/27 16:00:24  lavr
  214.  * Registry entries adjusted
  215.  *
  216.  * Revision 6.2  2000/05/30 23:24:40  vakatov
  217.  * Cosmetic fix for the C++ compilation
  218.  *
  219.  * Revision 6.1  2000/04/21 19:56:28  vakatov
  220.  * Initial revision
  221.  *
  222.  * ==========================================================================
  223.  */