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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: id1_client.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:32:39  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: id1_client.cpp,v 1000.1 2004/06/01 19:32:39 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:  Aaron Ucko, NCBI
  35.  *
  36.  * File Description:
  37.  *   ID1 network client
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the data definition file
  42.  *   'id1.asn'.
  43.  */
  44. // standard includes
  45. // generated includes
  46. #include <ncbi_pch.hpp>
  47. #include <objects/id1/id1_client.hpp>
  48. #include <objects/seqset/Seq_entry.hpp>
  49. #include <objects/seqloc/Seq_id.hpp>
  50. #include <serial/exception.hpp>
  51. #include <objects/id1/ID1server_maxcomplex.hpp>
  52. // generated classes
  53. BEGIN_NCBI_SCOPE
  54. BEGIN_objects_SCOPE // namespace ncbi::objects::
  55. CRef<CSeq_entry> CID1Client::AskGetsefromgi(const CID1server_maxcomplex& req,
  56.                                             CID1Client::TReply* reply)
  57. {
  58.     TReply reply0;
  59.     if ( !reply ) {
  60.         reply = &reply0;
  61.     }
  62.     try {
  63.         return Tparent::AskGetsefromgi(req, reply);
  64.     } catch (CInvalidChoiceSelection&) {
  65.         if (m_AllowDeadEntries  &&  reply->IsGotdeadseqentry()) {
  66.             return CRef<CSeq_entry>(&reply->SetGotdeadseqentry());
  67.         } else {
  68.             throw;
  69.         }
  70.     }
  71. }
  72. CRef<CSeq_entry> CID1Client::FetchEntry(int gi, int max_complexity)
  73. {
  74.     CRef<CID1server_maxcomplex> mc(new CID1server_maxcomplex);
  75.     mc->SetGi(gi);
  76.     mc->SetMaxplex(max_complexity);
  77.     return AskGetsefromgi(*mc);
  78. }
  79. CRef<CSeq_entry> CID1Client::FetchEntry(const CSeq_id& id, int max_complexity)
  80. {
  81.     int gi = AskGetgi(id);
  82.     if (gi == 0) {
  83.         return CRef<CSeq_entry>();
  84.     }
  85.     return FetchEntry(gi, max_complexity);
  86. }
  87. CRef<CSeq_entry> CID1Client::FetchEntry(const string& id_string,
  88.                                         int max_complexity)
  89. {
  90.     CSeq_id id(id_string);
  91.     return FetchEntry(id, max_complexity);
  92. }
  93. // destructor
  94. CID1Client::~CID1Client(void)
  95. {
  96. }
  97. END_objects_SCOPE // namespace ncbi::objects::
  98. END_NCBI_SCOPE
  99. /*
  100. * ===========================================================================
  101. *
  102. * $Log: id1_client.cpp,v $
  103. * Revision 1000.1  2004/06/01 19:32:39  gouriano
  104. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  105. *
  106. * Revision 1.4  2004/05/20 18:44:57  ucko
  107. * Don't attempt to pass temporary Seq-ids, even by const reference, as
  108. * that technically requires a public copy constructor.
  109. *
  110. * Revision 1.3  2004/05/20 18:23:21  jcherry
  111. * Added a simplified interface for retrieving entries
  112. *
  113. * Revision 1.2  2004/05/19 17:22:32  gorelenk
  114. * Added include of PCH - ncbi_pch.hpp
  115. *
  116. * Revision 1.1  2003/04/09 16:00:14  ucko
  117. * Give all RPC clients unique basenames.
  118. *
  119. * Revision 1.1  2002/11/13 20:13:44  ucko
  120. * Add datatool-generated client classes
  121. *
  122. *
  123. * ===========================================================================
  124. */
  125. /* Original file checksum: lines: 64, chars: 1872, CRC32: cedfdc3e */