qxLib
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros
vector2d.inl
Go to the documentation of this file.
1 /**
2 
3  @file vector2d.inl
4  @author Khrapov
5  @date 17.02.2020
6  @copyright � Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class T>
14 inline vector2d<T>::vector2d(vector2d&& other) noexcept
15 {
16  assign(std::move(other));
17 }
18 
19 template<class T>
20 inline vector2d<T>::vector2d(const vector2d& other)
21 {
22  assign(other);
23 }
24 
25 template<class T>
26 inline vector2d<T>::vector2d(size_type rows, size_type cols, const_pointer pData)
27 {
28  assign(rows, cols, pData);
29 }
30 
31 template<class T>
32 inline vector2d<T>::vector2d(size_type rows, size_type cols, const_reference data)
33 {
34  assign(rows, cols, data);
35 }
36 
37 template<class T>
39 {
40  free();
41 }
42 
43 template<class T>
44 inline const typename vector2d<T>::vector2d& vector2d<T>::operator=(vector2d&& other) noexcept
45 {
46  assign(std::move(other));
47  return *this;
48 }
49 
50 template<class T>
51 inline const typename vector2d<T>::vector2d& vector2d<T>::operator=(const vector2d& other)
52 {
53  assign(other);
54  return *this;
55 }
56 
57 template<class T>
58 inline void vector2d<T>::assign(vector2d&& other) noexcept
59 {
60  std::swap(m_pData, other.m_pData);
61  std::swap(m_nRows, other.m_nRows);
62  std::swap(m_nCols, other.m_nCols);
63  std::swap(m_nAllocatedSize, other.m_nAllocatedSize);
64 }
65 
66 template<class T>
67 inline void vector2d<T>::assign(const vector2d& other)
68 {
69  if (other.m_pData != m_pData)
70  assign(other.rows(), other.cols(), other.m_pData);
71 }
72 
73 template<class T>
74 inline void vector2d<T>::assign(size_type rows, size_type cols, const_pointer pData)
75 {
76  if (resize(rows, cols) && pData)
77  std::memcpy(m_pData, pData, rows * cols * sizeof(T));
78 }
79 
80 template<class T>
81 inline void vector2d<T>::assign(size_type rows, size_type cols, const_reference data)
82 {
83  if (resize(rows, cols))
84  fill(data);
85 }
86 
87 template<class T>
88 inline bool vector2d<T>::reserve(size_type nElements)
89 {
90  bool bRet = false;
91 
92  if (nElements > m_nAllocatedSize)
93  {
94  if (void* pMem = std::realloc(m_pData, nElements * sizeof(T)))
95  {
96  m_pData = static_cast<T*>(pMem);
97  m_nAllocatedSize = nElements;
98  bRet = true;
99  }
100  }
101 
102  return bRet;
103 }
104 
105 template<class T>
106 inline bool vector2d<T>::resize(size_type rows, size_type cols)
107 {
108  bool bRet = false;
109 
110  if (rows > 0 && cols > 0)
111  {
112  const size_type nSizeRequired = rows * cols;
113 
114  if (nSizeRequired > m_nAllocatedSize)
115  bRet = reserve(nSizeRequired);
116  else
117  bRet = true;
118 
119  if (bRet)
120  {
121  auto itFirst = iterator(this, rows * cols);
122  auto itLast = iterator(this, m_nRows * m_nCols);
123  destruct(itFirst, itLast);
124 
125  m_nRows = rows;
126  m_nCols = cols;
127  }
128  }
129 
130  return bRet;
131 }
132 
133 template<class T>
134 inline bool vector2d<T>::resize(size_type rows, size_type cols, const_reference data)
135 {
136  const bool bRet = resize(rows, cols);
137 
138  if (bRet)
139  fill(data);
140 
141  return bRet;
142 }
143 
144 template<class T>
145 inline void vector2d<T>::free()
146 {
147  clear();
148  std::free(m_pData);
149  m_pData = nullptr;
150  m_nAllocatedSize = 0;
151 }
152 
153 template<class T>
154 inline void vector2d<T>::fill(const_reference elem)
155 {
156  value_type temp = elem;
157  std::fill(begin(), end(), temp);
158 }
159 
160 template<class T>
161 inline typename vector2d<T>::pointer vector2d<T>::operator[](size_type nRow) noexcept
162 {
163  return m_pData + nRow * m_nCols;
164 }
165 
166 template<class T>
167 inline typename vector2d<T>::const_pointer vector2d<T>::operator[](size_type nRow) const noexcept
168 {
169  return m_pData + nRow * m_nCols;
170 }
171 
172 template<class T>
173 inline const T& vector2d<T>::get(size_type nRow, size_type nCol) const noexcept
174 {
175  return (*this)[nRow][nCol];
176 }
177 
178 template<class T>
179 inline void vector2d<T>::set(size_type nRow, size_type nCol, const_reference data) noexcept
180 {
181  (*this)[nRow][nCol] = data;
182 }
183 
184 template<class T>
185 inline typename vector2d<T>::size_type vector2d<T>::rows() const noexcept
186 {
187  return m_nRows;
188 }
189 
190 template<class T>
191 inline typename vector2d<T>::size_type vector2d<T>::cols() const noexcept
192 {
193  return m_nCols;
194 }
195 
196 template<class T>
197 inline typename vector2d<T>::size_type vector2d<T>::size_x() const noexcept
198 {
199  return m_nRows;
200 }
201 
202 template<class T>
203 inline typename vector2d<T>::size_type vector2d<T>::size_y() const noexcept
204 {
205  return m_nCols;
206 }
207 
208 template<class T>
209 inline typename vector2d<T>::size_type vector2d<T>::capacity(void) const noexcept
210 {
211  return m_nAllocatedSize;
212 }
213 
214 /**
215  @brief Get number of elements in whole vector2d
216  @retval - num of elements (cols * rows)
217 **/
218 template<class T>
219 inline typename vector2d<T>::size_type vector2d<T>::size() const noexcept
220 {
221  return size_x() * size_y();
222 }
223 
224 /**
225  @brief Get first element pointer
226  @retval - first element pointer
227 **/
228 template<class T>
229 inline typename vector2d<T>::pointer vector2d<T>::data() noexcept
230 {
231  return m_pData;
232 }
233 
234 /**
235  @brief Get element at nIndex pos
236  @param nIndex - continuous vector index
237  @retval - element
238 **/
239 template<class T>
240 inline typename vector2d<T>::reference vector2d<T>::at(size_type nIndex) noexcept
241 {
242  return m_pData[nIndex];
243 }
244 
245 /**
246  @brief Clear vector (do not free memory)
247 **/
248 template<class T>
249 inline void vector2d<T>::clear() noexcept
250 {
251  if (m_pData)
252  destruct(begin(), end());
253 
254  m_nRows = 0;
255  m_nCols = 0;
256 }
257 
258 } // namespace qx
Non-const random access iterator type.
Definition: iterator.h:35
Continuous 2d vector.
Definition: vector2d.h:31
bool resize(size_type rows, size_type cols)
Resize vector.
Definition: vector2d.inl:106
void free()
Clear vector and free memory.
Definition: vector2d.inl:145
size_type rows() const noexcept
Get num of rows in vector.
Definition: vector2d.inl:185
bool reserve(size_type nElements)
Reserve vector size.
Definition: vector2d.inl:88
size_type capacity() const noexcept
Get allocated size.
Definition: vector2d.inl:209
pointer operator[](size_type nRow) noexcept
operator[]
Definition: vector2d.inl:161
void fill(const_reference elem)
Fill vector with element.
Definition: vector2d.inl:154
const_reference get(size_type nRow, size_type nCol) const noexcept
Get element.
Definition: vector2d.inl:173
void set(size_type nRow, size_type nCol, const_reference data) noexcept
Set element.
Definition: vector2d.inl:179
size_type size_y() const noexcept
Get num of cols in vector.
Definition: vector2d.inl:203
void assign(vector2d &&other) noexcept
Assign by moving from other vector.
Definition: vector2d.inl:58
size_type cols() const noexcept
Get num of cols in vector.
Definition: vector2d.inl:191
size_type size_x() const noexcept
Get num of rows in vector.
Definition: vector2d.inl:197
void destruct(iterator_t itStart, iterator_t itEnd)
Call destructors.
Definition: utils.inl:14