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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: mm_aligner_threads.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:04:49  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: mm_aligner_threads.cpp,v 1000.1 2004/06/01 18:04:49 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:  Yuri Kapustin
  35.  *
  36.  * File Description:  CMMAligner thread classes implementation
  37.  *                   
  38.  * ===========================================================================
  39.  *
  40.  */
  41. #include <ncbi_pch.hpp>
  42. #include "mm_aligner_threads.hpp"
  43. BEGIN_NCBI_SCOPE
  44. unsigned int g_nwmm_thread_count = 1;
  45. DEFINE_STATIC_FAST_MUTEX(thread_count_mutex);
  46. bool MM_RequestNewThread(const unsigned int max_threads)
  47. {
  48.     CFastMutexGuard guard(thread_count_mutex);
  49.     if(g_nwmm_thread_count < max_threads) {
  50.         ++g_nwmm_thread_count;
  51.         return true;
  52.     }
  53.     else
  54.         return false;
  55. }
  56. CThreadRunOnTop::CThreadRunOnTop (
  57.     const CMMAligner* aligner, const SCoordRect* rect,
  58.     vector<CNWAligner::TScore>* e,
  59.     vector<CNWAligner::TScore>* f,
  60.     vector<CNWAligner::TScore>* g,
  61.     vector<unsigned char>* trace, bool free_corner_fgap ):
  62.     m_aligner(aligner), m_rect(rect), m_E(e), m_F(f),
  63.     m_G(g), m_trace(trace), m_free_corner_fgap(free_corner_fgap)
  64. {
  65. }
  66. void* CThreadRunOnTop::Main()
  67. {
  68.     m_aligner->x_RunTop( *m_rect, *m_E, *m_F, *m_G,
  69.                          *m_trace, m_free_corner_fgap );
  70.  
  71.     return 0;
  72. }
  73. void CThreadRunOnTop::OnExit()
  74. {
  75.     CFastMutexGuard guard(thread_count_mutex);
  76.     --g_nwmm_thread_count;
  77. }
  78. //////////////////
  79. CThreadDoSM::CThreadDoSM( CMMAligner* aligner, const SCoordRect* rect,
  80.                 list<CNWAligner::ETranscriptSymbol>::iterator translist_pos,
  81.                 bool free_lt_fgap, bool free_rb_fgap ):
  82.     m_aligner(aligner), m_rect(rect),
  83.     m_translist_pos(translist_pos),
  84.     m_free_lt_fgap (free_lt_fgap),
  85.     m_free_rb_fgap (free_rb_fgap)
  86. {
  87. }
  88. void* CThreadDoSM::Main()
  89. {
  90.     m_aligner->x_DoSubmatrix( *m_rect, m_translist_pos,
  91.                               m_free_lt_fgap, m_free_rb_fgap );
  92.  
  93.     return 0;
  94. }
  95. void CThreadDoSM::OnExit()
  96. {
  97.     CFastMutexGuard guard(thread_count_mutex);
  98.     --g_nwmm_thread_count;
  99. }
  100. END_NCBI_SCOPE
  101. /*
  102.  * ===========================================================================
  103.  * $Log: mm_aligner_threads.cpp,v $
  104.  * Revision 1000.1  2004/06/01 18:04:49  gouriano
  105.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  106.  *
  107.  * Revision 1.4  2004/05/21 21:41:02  gorelenk
  108.  * Added PCH ncbi_pch.hpp
  109.  *
  110.  * Revision 1.3  2003/10/14 18:41:31  kapustin
  111.  * Dismiss static keyword as a local-to-compilation-unit flag. Use longer name since unnamed namespace are not everywhere supported
  112.  *
  113.  * Revision 1.2  2003/09/02 22:37:52  kapustin
  114.  * Fix id header tag
  115.  *
  116.  * Revision 1.1  2003/01/22 13:31:33  kapustin
  117.  * Initial revision
  118.  *
  119.  * ===========================================================================
  120.  */