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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_obj_convert.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:45:05  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_obj_convert.cpp,v 1000.1 2004/06/01 20:45:05 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:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    Test application for plugins
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbiapp.hpp>
  41. #include <corelib/ncbiargs.hpp>
  42. #include <corelib/ncbienv.hpp>
  43. #include <corelib/ncbireg.hpp>
  44. #include <gui/core/idocument.hpp>
  45. #include <gui/core/obj_convert.hpp>
  46. #include <gui/core/plugin_arg_dialog.hpp>
  47. #include <gui/core/plugin_exception.hpp>
  48. #include <gui/core/selection_buffer.hpp>
  49. #include <gui/plugin/PluginArgSet.hpp>
  50. #include <gui/objutils/utils.hpp>
  51. #include <objects/seq/Bioseq.hpp>
  52. #include <objmgr/feat_ci.hpp>
  53. #include <objmgr/object_manager.hpp>
  54. #include <objmgr/scope.hpp>
  55. #include <objtools/data_loaders/genbank/gbloader.hpp>
  56. #include <serial/objostr.hpp>
  57. #include <serial/serial.hpp>
  58. USING_NCBI_SCOPE;
  59. USING_SCOPE(objects);
  60. //
  61. // a test exception class
  62. //
  63. class CObjConvertTestException : EXCEPTION_VIRTUAL_BASE public CException
  64. {
  65. public:
  66.     // Enumerated list of document management errors
  67.     enum EErrCode {
  68.         eTestFailed
  69.     };
  70.     // Translate the specific error code into a string representations of
  71.     // that error code.
  72.     virtual const char* GetErrCodeString(void) const
  73.     {
  74.         switch (GetErrCode()) {
  75.         case eTestFailed:   return "eTestFailed";
  76.         default:            return CException::GetErrCodeString();
  77.         }
  78.     }
  79.     NCBI_EXCEPTION_DEFAULT(CObjConvertTestException, CException);
  80. };
  81. class CObjConvertTestApp : public CNcbiApplication
  82. {
  83. public:
  84.     CObjConvertTestApp();
  85. private:
  86.     virtual void Init(void);
  87.     virtual int  Run(void);
  88.     virtual void Exit(void);
  89.     //
  90.     // internal testing routines
  91.     //
  92.     void x_TestObjConvert();
  93.     void x_TestTime();
  94. };
  95. CObjConvertTestApp::CObjConvertTestApp()
  96. {
  97. }
  98. /////////////////////////////////////////////////////////////////////////////
  99. //  Init test for all different types of arguments
  100. void CObjConvertTestApp::Init(void)
  101. {
  102.     // Create command-line argument descriptions class
  103.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  104.     // Specify USAGE context
  105.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  106.                               "Object conversion test application");
  107.     arg_desc->AddKey("acc", "Accession", "Accession to test",
  108.                      CArgDescriptions::eString);
  109.     arg_desc->AddDefaultKey("iters", "Iterations", "Iterations to test",
  110.                      CArgDescriptions::eInteger,
  111. #ifdef _DEBUG
  112.                      "1"
  113. #else
  114.                      "10"
  115. #endif
  116.                      );
  117.     // Setup arg.descriptions for this application
  118.     SetupArgDescriptions(arg_desc.release());
  119. }
  120. int CObjConvertTestApp::Run(void)
  121. {
  122.     CArgs args = GetArgs();
  123.     const size_t MAX_ITERS = args["iters"].AsInteger();
  124.     string acc = args["acc"].AsString();
  125.     CRef<CSeq_id> id(new CSeq_id(acc));
  126.     if (id->Which() == CSeq_id::e_not_set) {
  127.         LOG_POST(Fatal << "don't understand accession " << acc);
  128.     }
  129.     CRef<CObjectManager> obj_mgr(new CObjectManager());
  130.     obj_mgr->RegisterDataLoader(*new CGBDataLoader(),
  131.                                 CObjectManager::eDefault);
  132.     CRef<CScope> scope(new CScope(*obj_mgr));
  133.     scope->AddDefaults();
  134.     CRef<CSeq_loc> loc(new CSeq_loc());
  135.     loc->SetWhole(*id);
  136.     // pass 1: load all features into memory and index
  137.     cout << "priming...";
  138.     cout.flush();
  139.     SAnnotSelector sel = CSeqUtils::GetAnnotSelector();
  140.     {{
  141.          CFeat_CI feat_iter(*scope, *loc, sel);
  142.          cout << "done." << endl;
  143.          cout << "found " << feat_iter.GetSize() << " features" << endl;
  144.      }}
  145.     //
  146.     // time raw use of CFeat_CI
  147.     //
  148.     cout << "timing CFeat_CI...";
  149.     cout.flush();
  150.     CStopWatch sw;
  151.     sw.Start();
  152.     {{
  153.          size_t count = 0;
  154.          for (size_t iters = 0;  iters < MAX_ITERS;  ++iters) {
  155.              CFeat_CI feat_iter(*scope, *loc, sel);
  156.              for ( ;  feat_iter;  ++feat_iter) {
  157.                  ++count;
  158.              }
  159.          }
  160.      }}
  161.     double e = sw.Elapsed();
  162.     cout << "done" << endl;
  163.     cout << MAX_ITERS << " iterations in " << e << " seconds = "
  164.         << e / MAX_ITERS << " secs/iter" << endl;
  165.     //
  166.     // time direct use of CObjectConverter
  167.     //
  168.     cout << "timing CObjectConverter...";
  169.     cout.flush();
  170.     sw.Start();
  171.     {{
  172.          size_t size = 0;
  173.          for (size_t iters = 0;  iters < MAX_ITERS;  ++iters) {
  174.              CObjConverter::TObjList objs;
  175.              CObjectConverter::Convert(*scope, *loc,
  176.                                        CSeq_feat::GetTypeInfo(), objs);
  177.              size += objs.size();
  178.          }
  179.      }}
  180.     e = sw.Elapsed();
  181.     cout << "done" << endl;
  182.     cout << MAX_ITERS << " iterations in " << e << " seconds = "
  183.         << e / MAX_ITERS << " secs/iter" << endl;
  184.     //
  185.     // time use of CObjectCache
  186.     //
  187.     cout << "timing CObjectConverter...";
  188.     cout.flush();
  189.     sw.Start();
  190.     {{
  191.          size_t sum = 0;
  192.          CConvertCache cache;
  193.          for (size_t iters = 0;  iters < MAX_ITERS;  ++iters) {
  194.              const CObjectConverter::TObjList& objs =
  195.                  cache.Convert(*scope, *loc,
  196.                                CSeq_feat::GetTypeInfo());
  197.              sum += objs.size();
  198.          }
  199.      }}
  200.     e = sw.Elapsed();
  201.     cout << "done" << endl;
  202.     cout << MAX_ITERS << " iterations in " << e << " seconds = "
  203.         << e / MAX_ITERS << " secs/iter" << endl;
  204.     return 0;
  205. }
  206. /////////////////////////////////////////////////////////////////////////////
  207. //  Cleanup
  208. void CObjConvertTestApp::Exit(void)
  209. {
  210.     SetDiagStream(0);
  211. }
  212. /////////////////////////////////////////////////////////////////////////////
  213. //  MAIN
  214. int main(int argc, const char* argv[])
  215. {
  216.     // Execute main application function
  217.     return CObjConvertTestApp().AppMain(argc, argv, 0, eDS_Default, 0);
  218. }
  219. /*
  220.  * ===========================================================================
  221.  * $Log: test_obj_convert.cpp,v $
  222.  * Revision 1000.1  2004/06/01 20:45:05  gouriano
  223.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  224.  *
  225.  * Revision 1.6  2004/06/01 18:04:02  dicuccio
  226.  * Tweak to avoid warning message
  227.  *
  228.  * Revision 1.5  2004/05/21 22:27:41  gorelenk
  229.  * Added PCH ncbi_pch.hpp
  230.  *
  231.  * Revision 1.4  2004/05/03 17:53:53  dicuccio
  232.  * Tweaked makefiles to support new gui_objutils library
  233.  *
  234.  * Revision 1.3  2004/01/21 12:38:19  dicuccio
  235.  * redesigned CObjectCOnverter API to eliminate temporary object creation
  236.  *
  237.  * Revision 1.2  2004/01/15 16:28:02  dicuccio
  238.  * FIxed compilation errors - test_obj_convert now works
  239.  *
  240.  * Revision 1.1  2004/01/08 11:35:03  dicuccio
  241.  * Initial revision
  242.  *
  243.  * Revision 1.14  2003/10/24 02:13:15  ucko
  244.  * Fix for new CPluginArgDialog interface
  245.  *
  246.  * Revision 1.13  2003/10/07 17:26:15  dicuccio
  247.  * FIxed for URL -> Value conversion
  248.  *
  249.  * Revision 1.12  2003/09/29 15:42:05  dicuccio
  250.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  251.  *
  252.  * Revision 1.11  2003/09/04 14:01:52  dicuccio
  253.  * Introduce IDocument and IView as abstract base classes for CDocument and CView
  254.  *
  255.  * Revision 1.10  2003/07/17 11:59:50  friedman
  256.  * Include CSelectionBuffer::TSelList for SertArgs. Test Boolesn/Flag dialog widgets.
  257.  *
  258.  * Revision 1.9  2003/07/16 15:22:36  dicuccio
  259.  * Implemented tool tips for arguments
  260.  *
  261.  * Revision 1.8  2003/06/20 14:47:41  dicuccio
  262.  * Revised handling of plugin registration (moved GetInfo() out of plugin factory
  263.  * and into each handler as a static function)
  264.  *
  265.  * Revision 1.7  2003/05/19 13:36:00  dicuccio
  266.  * Moved gui/core/plugin/ -> gui/plugin/.  Merged gui/core/algo, gui/core/doc/,
  267.  * and gui/core/view/ into one library (gui/core/)
  268.  *
  269.  * Revision 1.6  2003/05/09 16:49:01  dicuccio
  270.  * Added explicit check so that default set-constraint arguments will have their
  271.  * values shown
  272.  *
  273.  * Revision 1.5  2003/04/25 14:15:24  dicuccio
  274.  * Fix compilation errors resulting from changes to plugin API
  275.  *
  276.  * Revision 1.4  2003/04/21 15:13:15  dicuccio
  277.  * Added real-life test arguments
  278.  *
  279.  * Revision 1.3  2003/04/16 11:39:50  dicuccio
  280.  * Added torture-test menu with many entries
  281.  *
  282.  * Revision 1.2  2003/03/28 19:20:19  dicuccio
  283.  * Added default argument for testing
  284.  *
  285.  * Revision 1.1  2003/03/20 19:57:28  dicuccio
  286.  * Initial revision
  287.  *
  288.  * ===========================================================================
  289.  */