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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Object_id.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:32:27  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Object_id.cpp,v 1000.1 2004/06/01 19:32:27 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:  .......
  35.  *
  36.  * File Description:
  37.  *   .......
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the ASN data definition file
  42.  *   'general.asn'.
  43.  *
  44.  * ---------------------------------------------------------------------------
  45.  * $Log: Object_id.cpp,v $
  46.  * Revision 1000.1  2004/06/01 19:32:27  gouriano
  47.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.9
  48.  *
  49.  * Revision 6.9  2004/05/19 17:21:39  gorelenk
  50.  * Added include of PCH - ncbi_pch.hpp
  51.  *
  52.  * Revision 6.8  2003/02/07 16:03:07  vasilche
  53.  * Fixed CObject_id::Match().
  54.  *
  55.  * Revision 6.7  2003/02/06 22:25:25  vasilche
  56.  * Added some Compare() methods.
  57.  *
  58.  * Revision 6.6  2001/08/31 16:05:54  clausen
  59.  * Removed upper casing.
  60.  *
  61.  * Revision 6.5  2000/12/26 17:28:51  vasilche
  62.  * Simplified and formatted code.
  63.  *
  64.  * Revision 6.4  2000/12/15 19:22:10  ostell
  65.  * made AsString do Upcase, and switched to using PNocase().Equals()
  66.  *
  67.  * Revision 6.3  2000/12/08 21:49:29  ostell
  68.  * changed MakeString to AsString and to use ostream instead of string
  69.  *
  70.  * Revision 6.2  2000/12/08 19:53:15  ostell
  71.  * added MakeString()
  72.  *
  73.  * Revision 6.1  2000/11/21 18:58:21  vasilche
  74.  * Added Match() methods for CSeq_id, CObject_id and CDbtag.
  75.  *
  76.  *
  77.  * ===========================================================================
  78.  */
  79. // standard includes
  80. // generated includes
  81. #include <ncbi_pch.hpp>
  82. #include <objects/general/Object_id.hpp>
  83. #include <corelib/ncbistd.hpp>
  84. // generated classes
  85. BEGIN_NCBI_SCOPE
  86. BEGIN_objects_SCOPE // namespace ncbi::objects::
  87. // destructor
  88. CObject_id::~CObject_id(void)
  89. {
  90.     return;
  91. }
  92. // match for identity
  93. bool CObject_id::Match(const CObject_id& oid2) const
  94. {
  95.     E_Choice type = Which();
  96.     if ( type != oid2.Which() )
  97.         return false;
  98.     switch ( type ) {
  99.     case e_Id:
  100.         return GetId() == oid2.GetId();
  101.     case e_Str:
  102.         return PNocase().Equals(GetStr(), oid2.GetStr());
  103.     default:
  104.         return this == &oid2;
  105.     }
  106. }
  107. // match for identity
  108. int CObject_id::Compare(const CObject_id& oid2) const
  109. {
  110.     E_Choice type = Which();
  111.     E_Choice type2 = Which();
  112.     if ( type != type2 )
  113.         return type - type2;
  114.     switch ( type ) {
  115.     case e_Id:
  116.         return GetId() - oid2.GetId();
  117.     case e_Str:
  118.         return PNocase().Compare(GetStr(), oid2.GetStr());
  119.     default:
  120.         return 0;
  121.     }
  122. }
  123. // format contents into a stream
  124. ostream& CObject_id::AsString(ostream &s) const
  125. {
  126.     switch ( Which() ) {
  127.     case e_Id:
  128.         s << GetId();
  129.         break;
  130.     case e_Str:
  131.         s << GetStr(); // no Upcase() on output as per Ostell 7/2001 - Karl
  132.         break;
  133.     default:
  134.         break;
  135.     }
  136.     return s;
  137. }
  138. END_objects_SCOPE // namespace ncbi::objects::
  139. END_NCBI_SCOPE