1 // The template and inlines for the -*- C++ -*- gslice class.
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2004
4 // Free Software Foundation, Inc.
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
31 // Written by Gabriel Dos Reis <Gabriel.Dos-Reis@DPTMaths.ENS-Cachan.Fr>
34 * This is an internal header file, included by other library headers.
35 * You should not attempt to use it directly.
41 #pragma GCC system_header
46 * @brief Class defining multi-dimensional subset of an array.
48 * The slice class represents a multi-dimensional subset of an array,
49 * specified by three parameter sets: start offset, size array, and stride
50 * array. The start offset is the index of the first element of the array
51 * that is part of the subset. The size and stride array describe each
52 * dimension of the slice. Size is the number of elements in that
53 * dimension, and stride is the distance in the array between successive
54 * elements in that dimension. Each dimension's size and stride is taken
55 * to begin at an array element described by the previous dimension. The
56 * size array and stride array must be the same size.
58 * For example, if you have offset==3, stride[0]==11, size[1]==3,
59 * stride[1]==3, then slice[0,0]==array[3], slice[0,1]==array[6],
60 * slice[0,2]==array[9], slice[1,0]==array[14], slice[1,1]==array[17],
61 * slice[1,2]==array[20].
66 /// Construct an empty slice.
70 * @brief Construct a slice.
72 * Constructs a slice with as many dimensions as the length of the @a l
75 * @param o Offset in array of first element.
76 * @param l Array of dimension lengths.
77 * @param s Array of dimension strides between array elements.
79 gslice(size_t, const valarray
<size_t>&, const valarray
<size_t>&);
81 // XXX: the IS says the copy-ctor and copy-assignment operators are
82 // synthetized by the compiler but they are just unsuitable
83 // for a ref-counted semantic
85 gslice(const gslice
&);
90 // XXX: See the note above.
91 /// Assignment operator.
92 gslice
& operator=(const gslice
&);
94 /// Return array offset of first slice element.
97 /// Return array of sizes of slice dimensions.
98 valarray
<size_t> size() const;
100 /// Return array of array strides for each dimension.
101 valarray
<size_t> stride() const;
107 valarray
<size_t> _M_size
;
108 valarray
<size_t> _M_stride
;
109 valarray
<size_t> _M_index
; // Linear array of referenced indices
110 _Indexer(size_t, const valarray
<size_t>&,
111 const valarray
<size_t>&);
112 void _M_increment_use() { ++_M_count
; }
113 size_t _M_decrement_use() { return --_M_count
; }
118 template<typename _Tp
> friend class valarray
;
122 gslice::start () const
123 { return _M_index
? _M_index
->_M_start
: 0; }
125 inline valarray
<size_t>
126 gslice::size () const
127 { return _M_index
? _M_index
->_M_size
: valarray
<size_t>(); }
129 inline valarray
<size_t>
130 gslice::stride () const
131 { return _M_index
? _M_index
->_M_stride
: valarray
<size_t>(); }
133 inline gslice::gslice () : _M_index(0) {}
136 gslice::gslice(size_t __o
, const valarray
<size_t>& __l
,
137 const valarray
<size_t>& __s
)
138 : _M_index(new gslice::_Indexer(__o
, __l
, __s
)) {}
141 gslice::gslice(const gslice
& __g
) : _M_index(__g
._M_index
)
142 { if (_M_index
) _M_index
->_M_increment_use(); }
146 { if (_M_index
&& _M_index
->_M_decrement_use() == 0) delete _M_index
; }
149 gslice::operator= (const gslice
& __g
)
151 if (__g
._M_index
) __g
._M_index
->_M_increment_use();
152 if (_M_index
&& _M_index
->_M_decrement_use() == 0) delete _M_index
;
153 _M_index
= __g
._M_index
;
161 #endif /* _GSLICE_H */