]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/bits/gslice.h
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / include / bits / gslice.h
CommitLineData
725dc051
BK
1// The template and inlines for the -*- C++ -*- gslice class.
2
818ab71a 3// Copyright (C) 1997-2016 Free Software Foundation, Inc.
725dc051
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
725dc051
BK
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
748086b7
JJ
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
725dc051 19
748086b7
JJ
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
725dc051 24
f910786b 25/** @file bits/gslice.h
729e3d3f 26 * This is an internal header file, included by other library headers.
f910786b 27 * Do not attempt to use it directly. @headername{valarray}
729e3d3f
PE
28 */
29
143c27b0
BK
30// Written by Gabriel Dos Reis <Gabriel.Dos-Reis@DPTMaths.ENS-Cachan.Fr>
31
3d7c150e
BK
32#ifndef _GSLICE_H
33#define _GSLICE_H 1
b0a85b86
GDR
34
35#pragma GCC system_header
725dc051 36
12ffa228
BK
37namespace std _GLIBCXX_VISIBILITY(default)
38{
39_GLIBCXX_BEGIN_NAMESPACE_VERSION
3cbc7af0 40
5b9daa7e
BK
41 /**
42 * @addtogroup numeric_arrays
43 * @{
44 */
45
7fb397a4
JQ
46 /**
47 * @brief Class defining multi-dimensional subset of an array.
48 *
49 * The slice class represents a multi-dimensional subset of an array,
50 * specified by three parameter sets: start offset, size array, and stride
51 * array. The start offset is the index of the first element of the array
52 * that is part of the subset. The size and stride array describe each
53 * dimension of the slice. Size is the number of elements in that
54 * dimension, and stride is the distance in the array between successive
55 * elements in that dimension. Each dimension's size and stride is taken
56 * to begin at an array element described by the previous dimension. The
57 * size array and stride array must be the same size.
58 *
59 * For example, if you have offset==3, stride[0]==11, size[1]==3,
60 * stride[1]==3, then slice[0,0]==array[3], slice[0,1]==array[6],
61 * slice[0,2]==array[9], slice[1,0]==array[14], slice[1,1]==array[17],
62 * slice[1,2]==array[20].
63 */
b714a419
PC
64 class gslice
65 {
66 public:
67 /// Construct an empty slice.
4091894c 68 gslice();
b714a419
PC
69
70 /**
71 * @brief Construct a slice.
72 *
73 * Constructs a slice with as many dimensions as the length of the @a l
74 * and @a s arrays.
75 *
93c66bc6
BK
76 * @param __o Offset in array of first element.
77 * @param __l Array of dimension lengths.
78 * @param __s Array of dimension strides between array elements.
b714a419 79 */
93c66bc6
BK
80 gslice(size_t __o, const valarray<size_t>& __l,
81 const valarray<size_t>& __s);
b714a419
PC
82
83 // XXX: the IS says the copy-ctor and copy-assignment operators are
28dac70a 84 // synthesized by the compiler but they are just unsuitable
b714a419
PC
85 // for a ref-counted semantic
86 /// Copy constructor.
87 gslice(const gslice&);
88
89 /// Destructor.
90 ~gslice();
91
92 // XXX: See the note above.
93 /// Assignment operator.
94 gslice& operator=(const gslice&);
95
96 /// Return array offset of first slice element.
97 size_t start() const;
98
99 /// Return array of sizes of slice dimensions.
100 valarray<size_t> size() const;
101
102 /// Return array of array strides for each dimension.
103 valarray<size_t> stride() const;
104
105 private:
106 struct _Indexer
725dc051 107 {
b714a419
PC
108 size_t _M_count;
109 size_t _M_start;
110 valarray<size_t> _M_size;
111 valarray<size_t> _M_stride;
112 valarray<size_t> _M_index; // Linear array of referenced indices
4091894c
PC
113
114 _Indexer()
115 : _M_count(1), _M_start(0), _M_size(), _M_stride(), _M_index() {}
116
b714a419
PC
117 _Indexer(size_t, const valarray<size_t>&,
118 const valarray<size_t>&);
4091894c 119
b714a419
PC
120 void
121 _M_increment_use()
122 { ++_M_count; }
123
124 size_t
125 _M_decrement_use()
126 { return --_M_count; }
725dc051 127 };
ed6814f7 128
b714a419 129 _Indexer* _M_index;
ed6814f7 130
b714a419
PC
131 template<typename _Tp> friend class valarray;
132 };
ed6814f7 133
b714a419 134 inline size_t
4091894c 135 gslice::start() const
b714a419 136 { return _M_index ? _M_index->_M_start : 0; }
ed6814f7 137
b714a419 138 inline valarray<size_t>
4091894c 139 gslice::size() const
b714a419 140 { return _M_index ? _M_index->_M_size : valarray<size_t>(); }
725dc051 141
b714a419 142 inline valarray<size_t>
4091894c 143 gslice::stride() const
b714a419 144 { return _M_index ? _M_index->_M_stride : valarray<size_t>(); }
725dc051 145
4091894c
PC
146 // _GLIBCXX_RESOLVE_LIB_DEFECTS
147 // 543. valarray slice default constructor
148 inline
149 gslice::gslice()
150 : _M_index(new gslice::_Indexer()) {}
ed6814f7 151
b714a419
PC
152 inline
153 gslice::gslice(size_t __o, const valarray<size_t>& __l,
154 const valarray<size_t>& __s)
155 : _M_index(new gslice::_Indexer(__o, __l, __s)) {}
725dc051 156
b714a419 157 inline
4091894c
PC
158 gslice::gslice(const gslice& __g)
159 : _M_index(__g._M_index)
b714a419 160 { if (_M_index) _M_index->_M_increment_use(); }
ed6814f7 161
b714a419
PC
162 inline
163 gslice::~gslice()
164 {
165 if (_M_index && _M_index->_M_decrement_use() == 0)
166 delete _M_index;
167 }
ed6814f7 168
b714a419 169 inline gslice&
4091894c 170 gslice::operator=(const gslice& __g)
b714a419
PC
171 {
172 if (__g._M_index)
173 __g._M_index->_M_increment_use();
174 if (_M_index && _M_index->_M_decrement_use() == 0)
175 delete _M_index;
176 _M_index = __g._M_index;
177 return *this;
178 }
725dc051 179
5b9daa7e
BK
180 // @} group numeric_arrays
181
12ffa228
BK
182_GLIBCXX_END_NAMESPACE_VERSION
183} // namespace
725dc051 184
3d7c150e 185#endif /* _GSLICE_H */