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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: algo_thread.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:46:37  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___ALGO_THREAD__HPP
  10. #define GUI_CORE___ALGO_THREAD__HPP
  11. /*  $Id: algo_thread.hpp,v 1000.2 2004/06/01 19:46:37 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbithr.hpp>
  42. #include <corelib/ncbi_system.hpp>
  43. #include <gui/core/algo.hpp>
  44. #include <gui/dialogs/progress/progress_dlg_ex.hpp>
  45. BEGIN_NCBI_SCOPE
  46. template <typename PluginType>
  47. class CThreadedAlgorithm : public CAlgorithm<PluginType>
  48. {
  49. public:
  50.     CThreadedAlgorithm();
  51.     virtual ~CThreadedAlgorithm();
  52.     // for manipulating our progress messages
  53.     void AddProgressMessage(const string& str);
  54.     void SetCompleted(int pct);
  55.     // we overload RunCommand() to set up our thread and run
  56.     virtual void RunCommand(objects::CPluginMessage& msg);
  57.     // internal hook - RunCommand() re-routes to use this instead
  58.     virtual void RunThreaded(objects::CPluginMessage& msg) = 0;
  59. protected:
  60.     // determine if we've been interrupted
  61.     bool x_IsInterrupted() const;
  62.     /// our internal thread class
  63.     class CWorkerThread : public CThread
  64.     {
  65.     public:
  66.         CWorkerThread(CThreadedAlgorithm& parent,
  67.                       objects::CPluginMessage& msg)
  68.                       : m_Parent(parent)
  69.                       , m_Message(msg)
  70.                       , m_Completed(false)
  71.         {
  72.         }
  73.         void* Main()
  74.         {
  75.             m_Parent.RunThreaded(m_Message);
  76.             m_Completed = true;
  77.             return (void*)NULL;
  78.         }
  79.         bool IsCompleted(void) const
  80.         {
  81.             return m_Completed;
  82.         }
  83.     private:
  84.         CThreadedAlgorithm& m_Parent;
  85.         objects::CPluginMessage& m_Message;
  86.         bool m_Completed;
  87.     };
  88.     /// a progress dialog
  89.     CProgressDlgEx m_Progress;
  90.     // flag to monitor user interruption via "cancel"
  91.     bool m_IsInterrupted;
  92. };
  93. template <typename PluginType>
  94. inline
  95. CThreadedAlgorithm<PluginType>::CThreadedAlgorithm()
  96. {
  97. }
  98. template <typename PluginType>
  99. inline
  100. CThreadedAlgorithm<PluginType>::~CThreadedAlgorithm()
  101. {
  102. }
  103. template <typename PluginType>
  104. inline
  105. void CThreadedAlgorithm<PluginType>::AddProgressMessage(const string& str)
  106. {
  107.     m_Progress.SetTitle(str);
  108. }
  109. template <typename PluginType>
  110. inline
  111. void CThreadedAlgorithm<PluginType>::SetCompleted(int pct)
  112. {
  113.     m_Progress.SetPctCompleted(pct);
  114. }
  115. template <typename PluginType>
  116. inline
  117. void CThreadedAlgorithm<PluginType>::RunCommand(objects::CPluginMessage& msg)
  118. {
  119.     m_Progress.CenterOnActive();
  120.     m_Progress.Show();
  121. #ifdef NCBI_THREADS
  122.     try {
  123.         CRef<CWorkerThread> thread(new CWorkerThread(*this, msg));
  124.         thread->Run();
  125.         while ( !thread->IsCompleted()  &&  m_Progress.IsShown()) {
  126.             Fl::wait(0.05f);
  127.         }
  128.         m_IsInterrupted = true;
  129.         if (thread->IsCompleted()) {
  130.             thread->Join();
  131.         }
  132.         thread.Reset();
  133.     }
  134.     catch (...) {
  135.     }
  136. #else
  137.     // FIXME: figure out why my stupid window won't update...
  138.     Fl::wait(0.05f);
  139.     RunThreaded(msg);
  140. #endif
  141.     m_Progress.Hide();
  142. }
  143. template <typename PluginType>
  144. inline
  145. bool CThreadedAlgorithm<PluginType>::x_IsInterrupted(void) const
  146. {
  147.     return m_IsInterrupted;
  148. }
  149. END_NCBI_SCOPE
  150. /*
  151.  * ===========================================================================
  152.  * $Log: algo_thread.hpp,v $
  153.  * Revision 1000.2  2004/06/01 19:46:37  gouriano
  154.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  155.  *
  156.  * Revision 1.4  2004/04/26 17:32:32  ucko
  157.  * Fix for current progress dialog API.
  158.  *
  159.  * Revision 1.3  2003/12/22 19:10:46  dicuccio
  160.  * Center the progress dialog over the active window
  161.  *
  162.  * Revision 1.2  2003/12/04 18:06:10  dicuccio
  163.  * Added primitive interruption handler.  Added Fl::wait() to update the GUI
  164.  *
  165.  * Revision 1.1  2003/11/26 17:04:47  dicuccio
  166.  * Added CThreadedAlgorithm
  167.  *
  168.  * ===========================================================================
  169.  */
  170. #endif  // GUI_CORE___ALGO_THREAD__HPP