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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: rlebtv.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/21 16:01:48  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*
  10. Copyright (c) 2002,2003 Anatoliy Kuznetsov.
  11. Permission is hereby granted, free of charge, to any person 
  12. obtaining a copy of this software and associated documentation 
  13. files (the "Software"), to deal in the Software without restriction, 
  14. including without limitation the rights to use, copy, modify, merge, 
  15. publish, distribute, sublicense, and/or sell copies of the Software, 
  16. and to permit persons to whom the Software is furnished to do so, 
  17. subject to the following conditions:
  18. The above copyright notice and this permission notice shall be included 
  19. in all copies or substantial portions of the Software.
  20. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
  21. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
  22. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
  23. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
  24. DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
  25. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
  26. OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #ifndef RLEBTV__H__INCLUDED__
  29. #define RLEBTV__H__INCLUDED__
  30. /*
  31.     GAP vector is designed to be very small.
  32.     The size of buffer is fixed 128 short values.
  33.     First word is a start flag.
  34.     Used for debugging purposes.
  35. */
  36. class gap_vector
  37. {
  38. public:
  39.     gap_vector(gap_word_t init = 0)
  40.     {
  41.         m_buf[0] = 1 << 3;  // initial length = 1;
  42.         if (init)
  43.         {
  44.             m_buf[0] ^= 1;
  45.         }
  46.         m_buf[1] = gap_max_bits - 1;
  47.     }
  48.     /// Checks if bit pos 1 or 0. Returns 0 if 0 and non zero otherwise.
  49.     int is_bit_true(unsigned pos) const;
  50.     int test(unsigned pos) const;
  51.     /// Sets bit number pos to 1
  52.     /// returns true if operation sucessful, false if GAP threashold reached and
  53.     /// we need to convert block to true bitblock
  54.     bool set_bit(unsigned pos);
  55.     /// Sets bit number pos to 0
  56.     bool clear_bit(unsigned pos);
  57.     /// Counts number of bits ON 
  58.     unsigned bit_count() const;
  59.     
  60.     unsigned count_range(unsigned left, 
  61.                          unsigned right,
  62.                          unsigned* d=0) const;
  63.     void control() const;
  64.     
  65.     void convert_to_bitset(unsigned* dest) const;
  66.     int combine_and(const gap_word_t* other);
  67.     const gap_word_t* get_buf() const { return m_buf; }
  68.     void invert() { *m_buf = 1 - *m_buf; }
  69.     void temp_invert() const;
  70.     void combine_or(const gap_vector& vect);
  71.     void combine_sub(const gap_vector& vect);
  72.     void combine_xor(const gap_vector& vect);
  73.     gap_word_t* get_buf() { return m_buf; }
  74.     int compare(const gap_vector& vect);
  75. private:
  76.     gap_word_t   m_buf[bm::gap_max_buff_len+3];    
  77. };
  78. inline void gap_vector::combine_or(const gap_vector& vect)
  79. {
  80.     gap_word_t tmp_buf[bm::gap_max_buff_len * 3] = {0,}; // temporary result
  81.     unsigned len;
  82.     gap_word_t* res = bm::gap_operation_or(m_buf, vect.get_buf(), tmp_buf);
  83.     len = bm::gap_length(res);
  84. //    assert(len <= bm::GAP_BUFF_THRESHOLD);
  85.     if (res == tmp_buf)
  86.     {
  87.         assert(len);
  88.         ::memcpy(m_buf, tmp_buf, (len+1)*sizeof(gap_word_t));
  89.     }
  90.     else
  91.     {
  92.         assert(res == m_buf);
  93.     }
  94. }
  95. inline void gap_vector::combine_xor(const gap_vector& vect)
  96. {
  97.     gap_word_t tmp_buf[gap_max_buff_len * 3] = {0,}; // temporary result
  98.     unsigned len;
  99.     gap_word_t* res = bm::gap_operation_xor(m_buf, vect.get_buf(), tmp_buf);
  100.     len = bm::gap_length(res);
  101. //    assert(len <= bm::GAP_BUFF_THRESHOLD);
  102.     if (res == tmp_buf)
  103.     {
  104.         assert(len);
  105.         ::memcpy(m_buf, tmp_buf, (len+1)*sizeof(gap_word_t));
  106.     }
  107.     else
  108.     {
  109.         assert(res == m_buf);
  110.     }
  111. }
  112. inline void gap_vector::combine_sub(const gap_vector& vect)
  113. {
  114.     gap_word_t tmp_buf[bm::gap_max_buff_len * 3] = {0,}; // temporary result
  115.     gap_word_t* res = bm::gap_operation_sub(m_buf, vect.get_buf(), tmp_buf);
  116.     unsigned len = bm::gap_length(res);
  117. //    assert(len <= bm::GAP_BUFF_THRESHOLD);
  118.     if (res == tmp_buf)
  119.     {
  120.         assert(len);
  121.         ::memcpy(m_buf, tmp_buf, (len+1) * sizeof(gap_word_t));
  122.     }
  123.     else
  124.     {
  125.         assert(res == m_buf);
  126.     }
  127. }
  128. inline void gap_vector::temp_invert() const
  129. {
  130.     gap_word_t* buf = const_cast<gap_word_t*>(m_buf);
  131.     *buf ^= 1;
  132. }
  133. inline void gap_vector::control() const
  134. {
  135.     unsigned sum = bm::gap_control_sum(m_buf);
  136.     if(sum != bm::gap_max_bits-1)
  137.     {
  138.         assert(0);
  139.         cout << "GAP Control failed." << endl;
  140.         exit(1);
  141.     }
  142.     unsigned len = bm::gap_length(m_buf);
  143.     gap_word_t prev = m_buf[1];
  144.     for (unsigned i = 2; i < len; ++i)
  145.     {
  146.         if (i != len-1)
  147.         {
  148.             if (m_buf[i] <= prev)
  149.             {
  150.                 assert(0);
  151.                 cout << "GAP sequence control failed." << endl;
  152.                 exit(1);
  153.             }
  154.         }
  155.         else
  156.         {
  157.             assert(m_buf[i] == bm::gap_max_bits-1);
  158.         }
  159.         prev = m_buf[i];
  160.     }
  161. }
  162. inline int gap_vector::is_bit_true(unsigned pos) const
  163. {
  164.     return bm::gap_test(m_buf, pos);
  165. }
  166. inline int gap_vector::test(unsigned pos) const
  167. {
  168.     return bm::gap_test(m_buf, pos);
  169. }
  170. unsigned gap_vector::bit_count() const
  171. {
  172.     return bm::gap_bit_count(m_buf);
  173. }
  174. unsigned gap_vector::count_range(unsigned left, 
  175.                                  unsigned right,
  176.                                  unsigned*) const
  177. {
  178.     return bm::gap_bit_count_range(m_buf, (gap_word_t)left, (gap_word_t)right);
  179. }
  180. // returns destination size
  181. int gap_vector::combine_and(const gap_word_t* other)
  182. {
  183.     gap_word_t tmp_buf[gap_max_buff_len * 3] = {0,}; // temporary result
  184.     gap_word_t* res = bm::gap_operation_and(m_buf, other, tmp_buf);
  185.     unsigned len = bm::gap_length(res);
  186. //    assert(len <= bm::GAP_BUFF_THRESHOLD);
  187.     if (res == tmp_buf)
  188.     {
  189.         assert(len);
  190.         ::memcpy(m_buf, tmp_buf, (len+1) * sizeof(gap_word_t));
  191.     }
  192.     else
  193.     {
  194.         assert(res == m_buf);
  195.     }
  196.     return 0;
  197. }
  198. inline bool gap_vector::set_bit(unsigned pos)
  199. {
  200.     unsigned is_set;
  201.     bm::gap_set_value(1, m_buf, pos, &is_set);
  202.     return is_set!=0;
  203. }
  204. inline bool gap_vector::clear_bit(unsigned pos)
  205. {
  206.     unsigned is_set;
  207.     bm::gap_set_value(0, m_buf, pos, &is_set);
  208.     return is_set!=0;
  209. }
  210. inline void gap_vector::convert_to_bitset(unsigned* dest) const
  211. {
  212.     bm::gap_convert_to_bitset(dest, m_buf, bm::set_block_size);
  213. }
  214. inline int gap_vector::compare(const gap_vector& vect)
  215. {
  216.     return bm::gapcmp(m_buf, vect.get_buf());
  217. }
  218. #endif