Date.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
- /*
- * ===========================================================================
- * PRODUCTION $Log: Date.cpp,v $
- * PRODUCTION Revision 1000.1 2004/06/01 19:32:14 gouriano
- * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.6
- * PRODUCTION
- * ===========================================================================
- */
- /* $Id: Date.cpp,v 1000.1 2004/06/01 19:32:14 gouriano Exp $
- * ===========================================================================
- *
- * PUBLIC DOMAIN NOTICE
- * National Center for Biotechnology Information
- *
- * This software/database is a "United States Government Work" under the
- * terms of the United States Copyright Act. It was written as part of
- * the author's official duties as a United States Government employee and
- * thus cannot be copyrighted. This software/database is freely available
- * to the public for use. The National Library of Medicine and the U.S.
- * Government have not placed any restriction on its use or reproduction.
- *
- * Although all reasonable efforts have been taken to ensure the accuracy
- * and reliability of the software and data, the NLM and the U.S.
- * Government do not and cannot warrant the performance or results that
- * may be obtained by using this software or data. The NLM and the U.S.
- * Government disclaim all warranties, express or implied, including
- * warranties of performance, merchantability or fitness for any particular
- * purpose.
- *
- * Please cite the author in any work or product based on this material.
- *
- * ===========================================================================
- *
- * Author: Aaron Ucko, NCBI
- *
- * File Description:
- * Useful member functions for dates: comparison and formatting
- *
- * Remark:
- * This code was originally generated by application DATATOOL
- * using specifications from the ASN data definition file
- * 'general.asn'.
- */
- // standard includes
- // generated includes
- #include <ncbi_pch.hpp>
- #include <objects/general/Date.hpp>
- #include <objects/general/Date_std.hpp>
- // generated classes
- BEGIN_NCBI_SCOPE
- BEGIN_objects_SCOPE // namespace ncbi::objects::
- // destructor
- CDate::~CDate(void)
- {
- }
- void CDate::SetToTime(const CTime& time, CDate::EPrecision prec)
- {
- switch (Which()) {
- case e_not_set:
- case e_Std:
- SetStd().SetToTime(time, prec);
- break;
- case e_Str:
- SetStr(time.AsString());
- break;
- }
- }
- CTime CDate::AsCTime(CTime::ETimeZone tz) const
- {
- switch (Which()) {
- case e_Std:
- return GetStd().AsCTime(tz);
- case e_Str:
- return CTime(GetStr()); // attempt to parse
- default:
- return CTime(CTime::eEmpty);
- }
- }
- CDate::ECompare CDate::Compare(const CDate& date) const
- {
- if (IsStd() && date.IsStd() ) {
- return GetStd().Compare(date.GetStd());
- } else if (IsStr() && date.IsStr() && GetStr() == date.GetStr()) {
- return eCompare_same;
- } else {
- return eCompare_unknown;
- }
- }
- void CDate::GetDate(string* label, const string& format) const
- {
- // Ensure that date exists
- if (!label) {
- return;
- }
-
- switch (Which()) {
- case e_Str:
- *label += GetStr();
- return;
- case e_Std:
- GetStd().GetDate(label, format);
- return;
- default:
- return;
- }
- }
-
- END_objects_SCOPE // namespace ncbi::objects::
- END_NCBI_SCOPE
- /*
- * ===========================================================================
- *
- * $Log: Date.cpp,v $
- * Revision 1000.1 2004/06/01 19:32:14 gouriano
- * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.6
- *
- * Revision 6.6 2004/05/19 17:21:39 gorelenk
- * Added include of PCH - ncbi_pch.hpp
- *
- * Revision 6.5 2002/12/09 17:30:11 ucko
- * Rename Assign to SetToTime to avoid shadowing CSerialObject; propagate tz
- *
- * Revision 6.4 2002/12/06 20:03:16 ucko
- * Support conversion to/from CTime and from time_t
- *
- * Revision 6.3 2002/10/04 14:45:08 ucko
- * Add a generic date formatter with flexible support for missing fields.
- *
- * Revision 6.2 2002/01/10 19:44:09 clausen
- * Added GetDate
- *
- * Revision 6.1 2001/11/16 20:54:51 ucko
- * Added comparison for dates.
- *
- * ===========================================================================
- */
- /* Original file checksum: lines: 61, chars: 1873, CRC32: d1b93689 */