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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Date.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:32:14  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Date.cpp,v 1000.1 2004/06/01 19:32:14 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.  *   Useful member functions for dates: comparison and formatting
  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. // standard includes
  45. // generated includes
  46. #include <ncbi_pch.hpp>
  47. #include <objects/general/Date.hpp>
  48. #include <objects/general/Date_std.hpp>
  49. // generated classes
  50. BEGIN_NCBI_SCOPE
  51. BEGIN_objects_SCOPE // namespace ncbi::objects::
  52. // destructor
  53. CDate::~CDate(void)
  54. {
  55. }
  56. void CDate::SetToTime(const CTime& time, CDate::EPrecision prec)
  57. {
  58.     switch (Which()) {
  59.     case e_not_set:
  60.     case e_Std:
  61.         SetStd().SetToTime(time, prec);
  62.         break;
  63.     case e_Str:
  64.         SetStr(time.AsString());
  65.         break;
  66.     }
  67. }
  68. CTime CDate::AsCTime(CTime::ETimeZone tz) const
  69. {
  70.     switch (Which()) {
  71.     case e_Std:
  72.         return GetStd().AsCTime(tz);
  73.     case e_Str:
  74.         return CTime(GetStr()); // attempt to parse
  75.     default:
  76.         return CTime(CTime::eEmpty);
  77.     }
  78. }
  79. CDate::ECompare CDate::Compare(const CDate& date) const
  80. {
  81.     if (IsStd()  &&  date.IsStd() ) {
  82.         return GetStd().Compare(date.GetStd());
  83.     } else if (IsStr()  &&  date.IsStr()  &&  GetStr() == date.GetStr()) {
  84.         return eCompare_same;
  85.     } else {
  86.         return eCompare_unknown;
  87.     }
  88. }
  89. void CDate::GetDate(string* label, const string& format) const
  90. {
  91.     // Ensure that date exists
  92.     if (!label) {
  93.         return;
  94.     }
  95.     
  96.     switch (Which()) {
  97.     case e_Str:
  98.         *label += GetStr();
  99.         return;
  100.     case e_Std:
  101.         GetStd().GetDate(label, format);
  102.         return;
  103.     default:
  104.         return;
  105.     }
  106. }
  107.         
  108. END_objects_SCOPE // namespace ncbi::objects::
  109. END_NCBI_SCOPE
  110. /*
  111.  * ===========================================================================
  112.  *
  113.  * $Log: Date.cpp,v $
  114.  * Revision 1000.1  2004/06/01 19:32:14  gouriano
  115.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.6
  116.  *
  117.  * Revision 6.6  2004/05/19 17:21:39  gorelenk
  118.  * Added include of PCH - ncbi_pch.hpp
  119.  *
  120.  * Revision 6.5  2002/12/09 17:30:11  ucko
  121.  * Rename Assign to SetToTime to avoid shadowing CSerialObject; propagate tz
  122.  *
  123.  * Revision 6.4  2002/12/06 20:03:16  ucko
  124.  * Support conversion to/from CTime and from time_t
  125.  *
  126.  * Revision 6.3  2002/10/04 14:45:08  ucko
  127.  * Add a generic date formatter with flexible support for missing fields.
  128.  *
  129.  * Revision 6.2  2002/01/10 19:44:09  clausen
  130.  * Added GetDate
  131.  *
  132.  * Revision 6.1  2001/11/16 20:54:51  ucko
  133.  * Added comparison for dates.
  134.  *
  135.  * ===========================================================================
  136.  */
  137. /* Original file checksum: lines: 61, chars: 1873, CRC32: d1b93689 */