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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: comprot_cli.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:22:07  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef RDBLIB__COMPROT_CLI__HPP
  10. #define RDBLIB__COMPROT_CLI__HPP
  11. /* $Id: comprot_cli.hpp,v 1000.0 2003/10/29 20:22:07 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:  Victor Sapojnikov
  37.  *
  38.  * File Description:
  39.  *   Conveniency shortcut functions for CompactProtocol client,
  40.  *   returning bool/int/void and accepting 0 or 1 parameters.
  41.  *
  42.  */
  43. #include <dbapi/driver/exception.hpp>
  44. #include <cli/sssconnection.hpp>
  45. #include <iostream>
  46. //using namespace std;
  47. BEGIN_NCBI_SCOPE
  48. extern CSSSConnection* conn;
  49. void comprot_errmsg();
  50. bool comprot_bool( const char *procName, int object );
  51. CDB_Exception* read_CDB_Exception(IGate *pGate);
  52. template<class T> bool comprot_bool1( const char *procName, int object, T* param )
  53. {
  54.   IGate* pGate = conn->getProtocol();
  55.   pGate->set_RPC_call(procName);
  56.   pGate->set_output_arg( "object", &object );
  57.   pGate->set_output_arg("param", param);
  58.   pGate->send_data();
  59.   int nOk;
  60.   if (pGate->get_input_arg("result", &nOk) != IGate::eGood) {
  61.     comprot_errmsg();
  62.     return false;
  63.   }
  64.   return nOk;
  65. }
  66. int comprot_int( const char *procName, int object );
  67. template<class T> int comprot_int1( const char *procName, int object, T* param )
  68. {
  69.   IGate* pGate = conn->getProtocol();
  70.   pGate->set_RPC_call(procName);
  71.   pGate->set_output_arg( "object", &object );
  72.   pGate->set_output_arg("param", param);
  73.   pGate->send_data();
  74.   int res;
  75.   if (pGate->get_input_arg("result", &res) != IGate::eGood) {
  76.     comprot_errmsg();
  77.     return 0;
  78.   }
  79.   return res;
  80. }
  81. template<class T1, class T2> int comprot_int2(
  82.   const char *procName, int object,
  83.   const char *name1, T1* param1,
  84.   const char *name2, T2* param2)
  85. {
  86.   IGate* pGate = conn->getProtocol();
  87.   pGate->set_RPC_call(procName);
  88.   pGate->set_output_arg( "object", &object );
  89.   pGate->set_output_arg(name1, param1);
  90.   pGate->set_output_arg(name2, param2);
  91.   pGate->send_data();
  92.   int res;
  93.   if (pGate->get_input_arg("result", &res) != IGate::eGood) {
  94.     comprot_errmsg();
  95.     return 0;
  96.   }
  97.   return res;
  98. }
  99. void comprot_void( const char *procName, int object );
  100. template<class T> void comprot_void1( const char *procName, int object, T* param )
  101. {
  102.   IGate* pGate = conn->getProtocol();
  103.   pGate->set_RPC_call(procName);
  104.   pGate->set_output_arg( "object", &object );
  105.   pGate->set_output_arg( "param", param );
  106.   pGate->send_data();
  107. }
  108. char* comprot_chars( const char *procName, int object, char* buf, int len );
  109. template<class T> char* comprot_chars1( const char *procName, int object, T* param, char* buf, int len )
  110. {
  111.   IGate* pGate = conn->getProtocol();
  112.   pGate->set_RPC_call(procName);
  113.   pGate->set_output_arg( "object", &object );
  114.   pGate->set_output_arg("param", param);
  115.   pGate->send_data();
  116.   if (pGate->get_input_arg("result", buf, len) != IGate::eGood) {
  117.     comprot_errmsg();
  118.     return 0;
  119.   }
  120.   return buf;
  121. }
  122. END_NCBI_SCOPE
  123. #endif  /* RDBLIB__COMPROT_CLI__HPP */