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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_date.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:32:36  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_date.cpp,v 1000.1 2004/06/01 19:32:36 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. *   Test for CDate_std::GetDate()
  38. *
  39. * ===========================================================================
  40. */
  41. #include <ncbi_pch.hpp>
  42. #include <corelib/ncbistd.hpp>
  43. #include <corelib/ncbiapp.hpp>
  44. #include <corelib/ncbiargs.hpp>
  45. #include <corelib/ncbienv.hpp>
  46. #include <objects/general/Date_std.hpp>
  47. USING_NCBI_SCOPE;
  48. USING_SCOPE(objects);
  49. class CTestDateApp : public CNcbiApplication
  50. {
  51. public:
  52.     void Init(void);
  53.     int  Run(void);
  54. };
  55. void CTestDateApp::Init(void)
  56. {
  57.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  58.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  59.                               "test of CDate_std::GetDate()");
  60.     
  61.     arg_desc->AddKey("f", "format", "date format", CArgDescriptions::eString);
  62.     arg_desc->AddKey("Y", "year",   "year number", CArgDescriptions::eInteger);
  63.     arg_desc->AddOptionalKey("M", "month", "month number",
  64.                              CArgDescriptions::eInteger);
  65.     arg_desc->AddOptionalKey("D", "day", "day number",
  66.                              CArgDescriptions::eInteger);
  67.     arg_desc->AddOptionalKey("S", "season", "season name",
  68.                              CArgDescriptions::eString);
  69.     // hour, minute, second?
  70.     SetupArgDescriptions(arg_desc.release());
  71. }
  72. int CTestDateApp::Run(void)
  73. {
  74.     CArgs      args = GetArgs();
  75.     CDate      date;
  76.     CDate_std& std  = date.SetStd();
  77.     std.SetYear(args["Y"].AsInteger());
  78.     if (args["M"]) {
  79.         std.SetMonth(args["M"].AsInteger());
  80.     }
  81.     if (args["D"]) {
  82.         std.SetDay(args["D"].AsInteger());
  83.     }
  84.     if (args["S"]) {
  85.         std.SetSeason(args["S"].AsString());
  86.     }
  87.     // ...
  88.     string s;
  89.     date.GetDate(&s);
  90.     NcbiCout << '"' << s << '"' << NcbiEndl;
  91.     s.erase();
  92.     date.GetDate(&s, args["f"].AsString());
  93.     NcbiCout << '"' << s << '"' << NcbiEndl;
  94.     s.erase();
  95.     date.GetDate(&s, "%Y-%M-%D");
  96.     NcbiCout << '"' << s << '"' << NcbiEndl;
  97.     return 0;
  98. }
  99. int main(int argc, const char* argv[])
  100. {
  101.     return CTestDateApp().AppMain(argc, argv, 0, eDS_Default, 0);
  102. }
  103. /*
  104. * ===========================================================================
  105. *
  106. * $Log: test_date.cpp,v $
  107. * Revision 1000.1  2004/06/01 19:32:36  gouriano
  108. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  109. *
  110. * Revision 1.3  2004/05/19 17:22:13  gorelenk
  111. * Added include of PCH - ncbi_pch.hpp
  112. *
  113. * Revision 1.2  2002/10/08 20:25:23  ucko
  114. * Make sure that passing booleans and string literals to GetDate works properly.
  115. *
  116. * Revision 1.1  2002/10/04 14:45:10  ucko
  117. * Add a generic date formatter with flexible support for missing fields.
  118. *
  119. *
  120. * ===========================================================================
  121. */