home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 May / PCWorld_2001-05_cd.bin / Software / Vyzkuste / devc / _SETUP.6 / Group12 / mask_array.h < prev    next >
C/C++ Source or Header  |  2000-01-21  |  5KB  |  155 lines

  1. // The template and inlines for the -*- C++ -*- mask_array class.
  2.  
  3. // Copyright (C) 1997-1999 Cygnus Solutions
  4. //
  5. // This file is part of the GNU ISO C++ Library.  This library is free
  6. // software; you can redistribute it and/or modify it under the
  7. // terms of the GNU General Public License as published by the
  8. // Free Software Foundation; either version 2, or (at your option)
  9. // any later version.
  10.  
  11. // This library is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. // GNU General Public License for more details.
  15.  
  16. // You should have received a copy of the GNU General Public License along
  17. // with this library; see the file COPYING.  If not, write to the Free
  18. // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  19. // USA.
  20.  
  21. // As a special exception, you may use this file as part of a free software
  22. // library without restriction.  Specifically, if other files instantiate
  23. // templates or use macros or inline functions from this file, or you compile
  24. // this file and link it with other files to produce an executable, this
  25. // file does not by itself cause the resulting executable to be covered by
  26. // the GNU General Public License.  This exception does not however
  27. // invalidate any other reasons why the executable file might be covered by
  28. // the GNU General Public License.
  29.  
  30. // Written by Gabriel Dos Reis <Gabriel.Dos-Reis@DPTMaths.ENS-Cachan.Fr>
  31.  
  32. #ifndef __MASK_ARRAY__
  33. #define __MASK_ARRAY__
  34.  
  35. extern "C++" {
  36.  
  37. template <class _T> class mask_array
  38. public:
  39.     typedef _T value_type;
  40.     
  41.     void operator=  (const valarray<_T>&) const;
  42.     void operator*= (const valarray<_T>&) const;
  43.     void operator/= (const valarray<_T>&) const;
  44.     void operator%= (const valarray<_T>&) const;
  45.     void operator+= (const valarray<_T>&) const; 
  46.     void operator-= (const valarray<_T>&) const;
  47.     void operator^= (const valarray<_T>&) const;  
  48.     void operator&= (const valarray<_T>&) const;
  49.     void operator|= (const valarray<_T>&) const;
  50.     void operator<<=(const valarray<_T>&) const;  
  51.     void operator>>=(const valarray<_T>&) const; 
  52.     void operator= (const _T&);
  53.     
  54.     template<class _Dom>
  55.     void operator=  (const _Expr<_Dom,_T>&) const;
  56.     template<class _Dom>
  57.     void operator*= (const _Expr<_Dom,_T>&) const;
  58.     template<class _Dom>
  59.     void operator/= (const _Expr<_Dom,_T>&) const;
  60.     template<class _Dom>
  61.     void operator%= (const _Expr<_Dom,_T>&) const;
  62.     template<class _Dom>
  63.     void operator+= (const _Expr<_Dom,_T>&) const;
  64.     template<class _Dom>
  65.     void operator-= (const _Expr<_Dom,_T>&) const;
  66.     template<class _Dom>
  67.     void operator^= (const _Expr<_Dom,_T>&) const;
  68.     template<class _Dom>
  69.     void operator&= (const _Expr<_Dom,_T>&) const;
  70.     template<class _Dom>
  71.     void operator|= (const _Expr<_Dom,_T>&) const;
  72.     template<class _Dom>
  73.     void operator<<=(const _Expr<_Dom,_T>&) const;
  74.     template<class _Dom>
  75.     void operator>>=(const _Expr<_Dom,_T>&) const; 
  76.     
  77. private:
  78.     mask_array (_Array<_T>, size_t, _Array<bool>);
  79.     friend class valarray<_T>;
  80.     
  81.     const size_t       _M_sz;
  82.     const _Array<bool> _M_mask;
  83.     const _Array<_T>   _M_array;
  84.     
  85.     mask_array (const mask_array&);
  86.     
  87.     // not implemented
  88.     mask_array ();
  89.     mask_array& operator= (const mask_array&);
  90. };
  91.  
  92. template<typename _Tp>
  93. inline mask_array<_Tp>::mask_array (const mask_array<_Tp>& a)
  94.         : _M_sz (a._M_sz), _M_mask (a._M_mask), _M_array (a._M_array) {}
  95.  
  96. template<typename _T>
  97. inline 
  98. mask_array<_T>::mask_array (_Array<_T> __a, size_t __s, _Array<bool> __m)
  99.         : _M_sz (__s), _M_mask (__m), _M_array (__a) {}
  100.  
  101. template<typename _T>
  102. inline void
  103. mask_array<_T>::operator= (const _T& __t)
  104. { __valarray_fill (_M_array, _M_sz, _M_mask, __t); }
  105.     
  106. template<typename _T>
  107. inline void
  108. mask_array<_T>::operator= (const valarray<_T>& __v) const
  109. { __valarray_copy (_Array<_T> (__v), __v.size (), _M_array, _M_mask); }
  110.  
  111. template<typename _T>
  112. template<class E>
  113. inline void
  114. mask_array<_T>::operator= (const _Expr<E, _T>& __e) const
  115. { __valarray_copy (__e, __e.size (), _M_array, _M_mask); }
  116.  
  117. #undef _DEFINE_VALARRAY_OPERATOR
  118. #define _DEFINE_VALARRAY_OPERATOR(op, name)                \
  119. template<typename _T>                            \
  120. inline void                                \
  121. mask_array<_T>::operator##op##= (const valarray<_T>& __v) const        \
  122. {                                    \
  123.   _Array_augmented_##name (_M_array, _M_mask,                 \
  124.                            _Array<_T> (__v), __v.size ());        \
  125. }                                    \
  126.                                     \
  127. template<typename _T> template<class E>                    \
  128. inline void                                \
  129. mask_array<_T>::operator##op##= (const _Expr<E, _T>& __e) const        \
  130. {                                    \
  131.   _Array_augmented_##name (_M_array, _M_mask, __e, __e.size ());    \
  132. }
  133.  
  134. _DEFINE_VALARRAY_OPERATOR(*, multiplies)
  135. _DEFINE_VALARRAY_OPERATOR(/, divides)
  136. _DEFINE_VALARRAY_OPERATOR(%, modulus)
  137. _DEFINE_VALARRAY_OPERATOR(+, plus)
  138. _DEFINE_VALARRAY_OPERATOR(-, minus)
  139. _DEFINE_VALARRAY_OPERATOR(^, xor)
  140. _DEFINE_VALARRAY_OPERATOR(&, and)
  141. _DEFINE_VALARRAY_OPERATOR(|, or)
  142. _DEFINE_VALARRAY_OPERATOR(<<, shift_left)
  143. _DEFINE_VALARRAY_OPERATOR(>>, shift_right)
  144.  
  145. #undef _DEFINE_VALARRAY_OPERATOR    
  146.  
  147. } // extern "C++"
  148.     
  149. #endif // __MASK_ARRAY__ 
  150.  
  151. // Local Variables:
  152. // mode:c++
  153. // End:
  154.