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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: linkout.cpp,v $
  4.  * PRODUCTION Revision 1000.4  2004/06/01 20:56:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: linkout.cpp,v 1000.4 2004/06/01 20:56:48 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.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "linkout.hpp"
  41. #include "utils.hpp"
  42. #include <gui/plugin/PluginInfo.hpp>
  43. #include <gui/plugin/PluginCommand.hpp>
  44. #include <gui/plugin/PluginCommandSet.hpp>
  45. #include <gui/plugin/PluginArgSet.hpp>
  46. #include <gui/plugin/PluginArg.hpp>
  47. #include <gui/plugin/PluginRequest.hpp>
  48. #include <gui/core/version.hpp>
  49. #include <gui/utils/app_popup.hpp>
  50. #include <objmgr/seq_descr_ci.hpp>
  51. #include <objects/seqfeat/Org_ref.hpp>
  52. #include <objects/seqfeat/BioSource.hpp>
  53. #include <objects/seq/Seqdesc.hpp>
  54. #include <objects/seq/Seq_descr.hpp>
  55. #include <objects/seq/Bioseq.hpp>
  56. BEGIN_NCBI_SCOPE
  57. USING_SCOPE(objects);
  58. CConstRef<objects::COrg_ref> GetOrganism(const objects::CBioseq_Handle& handle)
  59. {
  60.     CConstRef<objects::COrg_ref> ref;
  61.     objects::CSeq_descr_CI desc_iter(handle);
  62.     for ( ;  desc_iter  &&  !ref;  ++desc_iter) {
  63.         ITERATE (objects::CBioseq::TDescr::Tdata, iter, desc_iter->Get()) {
  64.             if ((*iter)->Which() == objects::CSeqdesc::e_Org) {
  65.                 ref.Reset(&(*iter)->GetOrg());
  66.                 break;
  67.             }
  68.             if ((*iter)->Which() == objects::CSeqdesc::e_Source) {
  69.                 ref.Reset(&(*iter)->GetSource().GetOrg());
  70.                 break;
  71.             }
  72.         }
  73.     }
  74.     return ref;
  75. }
  76. // standard info boilerplate
  77. void CAlgoLinkOut::GetInfo(CPluginInfo& info)
  78. {
  79.     info.Reset();
  80.     // version info macro
  81.     info.SetInfo(CPluginVersion::eMajor, CPluginVersion::eMinor, 0,
  82.                  string(__DATE__) + " " + string(__TIME__),
  83.                  "CAlgoLinkOut", "", "", "");
  84.     // command info
  85.     CPluginCommandSet& cmds = info.SetCommands();
  86.     CPluginCommand&    args = cmds.AddAlgoCommand(eAlgoCommand_run);
  87.     args.AddArgument("app",      "App to run",   CPluginArg::eString);
  88.     args.AddArgument("app_args", "Args for app", CPluginArg::eString);
  89. }
  90. // run our plugin
  91. void CAlgoLinkOut::RunCommand(CPluginMessage& msg)
  92. {
  93.     const CPluginCommand& args = msg.GetRequest().GetCommand();
  94.     CPluginReply& reply = msg.SetReply();
  95.     string app      = args["app"].AsString();
  96.     string app_args = args["app_args"].AsString();
  97.     reply.SetStatus(eMessageStatus_failed);
  98.     if (app == "<browser>") {
  99.         if ( !CAppPopup::PopupURL(app_args) ) {
  100.             LOG_POST(Error << "Cannot launch browser with URL: " << app_args);
  101.         }
  102.         reply.SetStatus(eMessageStatus_success);
  103.     }
  104. }
  105. END_NCBI_SCOPE
  106. /*
  107.  * ===========================================================================
  108.  * $Log: linkout.cpp,v $
  109.  * Revision 1000.4  2004/06/01 20:56:48  gouriano
  110.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  111.  *
  112.  * Revision 1.5  2004/05/21 22:27:47  gorelenk
  113.  * Added PCH ncbi_pch.hpp
  114.  *
  115.  * Revision 1.4  2004/02/27 17:01:19  dicuccio
  116.  * Un-inlined GetOrganism()
  117.  *
  118.  * Revision 1.3  2003/11/24 15:45:31  dicuccio
  119.  * Renamed CVersion to CPluginVersion
  120.  *
  121.  * Revision 1.2  2003/11/04 17:49:24  dicuccio
  122.  * Changed calling parameters for plugins - pass CPluginMessage instead of paired
  123.  * CPluginCommand/CPluginReply
  124.  *
  125.  * Revision 1.1  2003/09/23 19:45:45  dicuccio
  126.  * Initial revision
  127.  *
  128.  * ===========================================================================
  129.  */