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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Pub.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:32:57  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Pub.cpp,v 1000.3 2004/06/01 19:32:57 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.  *   'pub.asn'.
  43.  */
  44. #include <ncbi_pch.hpp>
  45. #include <objects/pub/Pub.hpp>
  46. #include <objects/pub/Pub_equiv.hpp>
  47. #include <objects/biblio/PubMedId.hpp>
  48. #include <objects/biblio/Cit_art.hpp>
  49. #include <objects/biblio/Cit_jour.hpp>
  50. #include <objects/biblio/Cit_book.hpp>
  51. #include <objects/biblio/Cit_proc.hpp>
  52. #include <objects/biblio/Cit_let.hpp>
  53. #include <objects/biblio/Cit_sub.hpp>
  54. #include <objects/biblio/Cit_pat.hpp>
  55. #include <objects/biblio/Id_pat.hpp>
  56. #include <objects/biblio/Cit_gen.hpp>
  57. #include <objects/medline/Medline_entry.hpp>
  58. // generated classes
  59. BEGIN_NCBI_SCOPE
  60. BEGIN_objects_SCOPE // namespace ncbi::objects::
  61. // destructor
  62. CPub::~CPub(void)
  63. {
  64. }
  65. // Appends a label to "label"
  66. void CPub::GetLabel(string*    label,
  67.                     ELabelType type,
  68.                     bool       unique) const
  69. {
  70.     static const char* s_PubTypes[14] = {
  71.         "Unknown",
  72.         "Generic",
  73.         "Submit",
  74.         "Medline",
  75.         "MUID",
  76.         "Article",
  77.         "Journal",
  78.         "Book",
  79.         "Proceedings",
  80.         "Patent",
  81.         "PatID",
  82.         "Manuscript",
  83.         "Equiv",
  84.         "PMID" };
  85.     // Check that label exists
  86.     if (!label) {
  87.         return;
  88.     }
  89.     // Get the index into the s_PubTypes array corresponding to pub type
  90.     int idx = static_cast<int>(Which());
  91.     idx = idx >= 0 && idx < 14 ? idx : 0;
  92.     if (type == eType) {
  93.         // Append pub type to label and return
  94.         *label += s_PubTypes[idx];
  95.         return;
  96.     }
  97.     if (type == eBoth) {
  98.         // Append pub type to label
  99.         *label += string(s_PubTypes[idx]) + ": ";
  100.     }
  101.     switch (Which()) {
  102.     case e_Muid:
  103.         *label += "NLM" + NStr::IntToString(GetMuid());
  104.         break;
  105.     case e_Pmid:
  106.         *label += "PM" + NStr::IntToString(GetPmid().Get());
  107.         break;
  108.     case e_Equiv:
  109.         GetEquiv().GetLabel(label);
  110.         break;
  111.     case e_Medline:
  112.         GetMedline().GetLabel(label, unique);
  113.         break;   
  114.     case e_Article:
  115.         GetArticle().GetLabel(label, unique);
  116.         break;
  117.     case e_Journal:
  118.         GetJournal().GetLabel(label);
  119.         break;
  120.     case e_Book:
  121.         GetBook().GetLabel(label);
  122.         break;
  123.     case e_Proc:
  124.         GetProc().GetLabel(label);
  125.         break;
  126.     case e_Man:
  127.         GetMan().GetLabel(label);
  128.         break;
  129.     case e_Sub:
  130.         GetSub().GetLabel(label);
  131.         break;
  132.     case e_Patent:
  133.         GetPatent().GetLabel(label);
  134.         break;
  135.     case e_Pat_id:
  136.     {
  137.         GetPat_id().GetLabel(label);
  138.         break;
  139.     }
  140.     case e_Gen:
  141.         GetGen().GetLabel(label, unique);
  142.         break;       
  143.     default:
  144.         break;
  145.     }
  146. }
  147. END_objects_SCOPE // namespace ncbi::objects::
  148. END_NCBI_SCOPE
  149. /*
  150.  * ===========================================================================
  151.  * $Log: Pub.cpp,v $
  152.  * Revision 1000.3  2004/06/01 19:32:57  gouriano
  153.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.7
  154.  *
  155.  * Revision 6.7  2004/05/19 17:24:52  gorelenk
  156.  * Added include of PCH - ncbi_pch.hpp
  157.  *
  158.  * Revision 6.6  2004/02/24 15:53:48  grichenk
  159.  * Redesigned GetLabel(), moved most functionality from pub to biblio
  160.  *
  161.  * Revision 6.5  2003/11/21 14:45:02  grichenk
  162.  * Replaced runtime_error with CException
  163.  *
  164.  * Revision 6.4  2002/07/11 18:20:27  ucko
  165.  * Move include of Pub.hpp to top and CVS log to bottom.
  166.  *
  167.  * Revision 6.3  2002/06/30 03:24:52  vakatov
  168.  * Get rid of warnings caused by constless char* initialization
  169.  *
  170.  * Revision 6.2  2002/01/12 07:33:28  vakatov
  171.  * Get rid of unused variables (in CATCH())
  172.  *
  173.  * Revision 6.1  2002/01/10 19:38:00  clausen
  174.  * Added GetLabel
  175.  *
  176.  * ===========================================================================
  177.  */
  178. /* Original file checksum: lines: 61, chars: 1862, CRC32: d27bbf43 */