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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: basic_sample.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:31:43  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: basic_sample.cpp,v 1000.1 2004/06/01 18:31:43 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.  * Authors:  Denis Vakatov, Vladimir Ivanov
  35.  *
  36.  * File Description:
  37.  *   Sample for the command-line arguments' processing ("ncbiargs.[ch]pp"):
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbiapp.hpp>
  42. #include <corelib/ncbienv.hpp>
  43. #include <corelib/ncbiargs.hpp>
  44. USING_NCBI_SCOPE;
  45. /////////////////////////////////////////////////////////////////////////////
  46. //  CSampleBasicApplication::
  47. class CSampleBasicApplication : public CNcbiApplication
  48. {
  49. private:
  50.     virtual void Init(void);
  51.     virtual int  Run(void);
  52.     virtual void Exit(void);
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //  Init test for all different types of arguments
  56. void CSampleBasicApplication::Init(void)
  57. {
  58.     // Create command-line argument descriptions class
  59.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  60.     // Specify USAGE context
  61.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  62.                               "CArgDescriptions demo program");
  63.     // Describe the expected command-line arguments
  64.     arg_desc->AddOptionalPositional
  65.         ("logfile",
  66.          "This is an optional named positional argument without default value",
  67.          CArgDescriptions::eOutputFile,
  68.          CArgDescriptions::fPreOpen | CArgDescriptions::fBinary);
  69.     arg_desc->AddFlag
  70.         ("f1",
  71.          "This is a flag argument: TRUE if set, FALSE if not set");
  72.     arg_desc->AddPositional
  73.         ("barfooetc",
  74.          "This is a mandatory plain (named positional) argument",
  75.          CArgDescriptions::eString);
  76.     arg_desc->SetConstraint
  77.         ("barfooetc", &(*new CArgAllow_Strings, "foo", "bar", "etc"));
  78.     arg_desc->AddDefaultKey
  79.         ("kd", "DefaultKey",
  80.          "This is an optional integer key argument, with default value",
  81.          CArgDescriptions::eInteger, "123");
  82.     arg_desc->SetConstraint
  83.         ("kd", new CArgAllow_Integers(0, 200));
  84.     arg_desc->AddExtra
  85.         (0,  // no mandatory extra args
  86.          3,  // up to 3 optional extra args
  87.          "These are the optional extra (unnamed positional) arguments. "
  88.          "They will be printed out to the file specified by the "
  89.          "2nd positional argument,n"logfile"",
  90.          CArgDescriptions::eBoolean);
  91.     arg_desc->AddKey
  92.         ("k", "MandatoryKey",
  93.          "This is a mandatory alpha-num key argument",
  94.          CArgDescriptions::eString);
  95.     arg_desc->SetConstraint
  96.         ("k", new CArgAllow_String(CArgAllow_Symbols::eAlnum));
  97.     arg_desc->AddOptionalKey
  98.         ("ko", "OptionalKey",
  99.          "This is another optional key argument, without default value",
  100.          CArgDescriptions::eBoolean);
  101.     arg_desc->AddFlag
  102.         ("f2",
  103.          "This is another flag argument: FALSE if set, TRUE if not set",
  104.          false);
  105.     arg_desc->AddDefaultPositional
  106.         ("one_symbol",
  107.          "This is an optional named positional argument with default value",
  108.          CArgDescriptions::eString, "a");
  109.     arg_desc->SetConstraint
  110.         ("one_symbol", new CArgAllow_Symbols(" aBtCd"));
  111.     // Setup arg.descriptions for this application
  112.     SetupArgDescriptions(arg_desc.release());
  113. }
  114. /////////////////////////////////////////////////////////////////////////////
  115. //  Run test (printout arguments obtained from command-line)
  116. int CSampleBasicApplication::Run(void)
  117. {
  118.     // Get arguments
  119.     CArgs args = GetArgs();
  120.     // Do run
  121.     cout << string(72, '=') << endl;
  122.     // Stream to result output
  123.     // (NOTE: "x_lg" is just a workaround for bug in SUN WorkShop 5.1 compiler)
  124.     ostream* x_lg = args["logfile"] ? &args["logfile"].AsOutputFile() : &cout;
  125.     ostream& lg = *x_lg;
  126.     if ( args["logfile"] )
  127.         cout << "Printing arguments to file `"
  128.              << args["logfile"].AsString() << "'..." << endl;
  129.     // Printout argument values
  130.     lg << "k:         " << args["k"].AsString() << endl;
  131.     lg << "barfooetc: " << args["barfooetc"].AsString() << endl;
  132.     if ( args["logfile"] )
  133.         lg << "logfile:   " << args["logfile"].AsString() << endl;
  134.     if ( args["ko"] ) {
  135.         lg << "ko:        " << NStr::BoolToString(args["ko"].AsBoolean())
  136.            << endl;
  137.     } else {
  138.         lg << "ko:        not provided" << endl;
  139.         bool is_thrown = false;
  140.         try {
  141.             (void) args["ko"].AsString();
  142.         } catch (CArgException&) {
  143.             is_thrown = true;
  144.         }
  145.     }
  146.     // Extra (unnamed positional) arguments
  147.     if ( args.GetNExtra() ) {
  148.         for (size_t extra = 1;  extra <= args.GetNExtra();  extra++) {
  149.             lg << "#" << extra << ":        "
  150.                << NStr::BoolToString(args[extra].AsBoolean())
  151.                << "   (passed as `" << args[extra].AsString() << "')"
  152.                << endl;
  153.         }
  154.     } else {
  155.         lg << "(no unnamed positional arguments passed in the cmd-line)"
  156.            << endl;
  157.     }
  158.     // Separator
  159.     lg << string(44, '-') << endl;
  160.     // Printout obtained argument values
  161.     string str;
  162.     cout << args.Print(str) << endl;
  163.     return 0;
  164. }
  165. /////////////////////////////////////////////////////////////////////////////
  166. //  Cleanup
  167. void CSampleBasicApplication::Exit(void)
  168. {
  169.     SetDiagStream(0);
  170. }
  171. /////////////////////////////////////////////////////////////////////////////
  172. //  MAIN
  173. int main(int argc, const char* argv[])
  174. {
  175.     // Execute main application function
  176.     return CSampleBasicApplication().AppMain(argc, argv, 0, eDS_Default, 0);
  177. }
  178. /*
  179.  * ===========================================================================
  180.  * $Log: basic_sample.cpp,v $
  181.  * Revision 1000.1  2004/06/01 18:31:43  gouriano
  182.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  183.  *
  184.  * Revision 1.2  2004/05/21 21:41:41  gorelenk
  185.  * Added PCH ncbi_pch.hpp
  186.  *
  187.  * Revision 1.1  2002/04/18 16:05:09  ucko
  188.  * Add centralized tree for sample apps.
  189.  *
  190.  * Revision 6.4  2002/04/16 18:49:07  ivanov
  191.  * Centralize threatment of assert() in tests.
  192.  * Added #include <test/test_assert.h>. CVS log moved to end of file.
  193.  *
  194.  * Revision 6.3  2001/06/01 15:36:21  vakatov
  195.  * Fixed for the case when "logfile" is not provided in the cmd.line
  196.  *
  197.  * Revision 6.2  2001/06/01 15:17:57  vakatov
  198.  * Workaround a bug in SUN WorkShop 5.1 compiler
  199.  *
  200.  * Revision 6.1  2001/05/31 16:32:51  ivanov
  201.  * Initialization
  202.  *
  203.  * ===========================================================================
  204.  */