xlnt - community edition
index_types.hpp
1 // Copyright (c) 2014-2022 Thomas Fussell
2 // Copyright (c) 2024-2025 xlnt-community
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
5 // of this software and associated documentation files (the "Software"), to deal
6 // in the Software without restriction, including without limitation the rights
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 // copies of the Software, and to permit persons to whom the Software is
9 // furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 // THE SOFTWARE
21 //
22 // @license: http://www.opensource.org/licenses/mit-license.php
23 // @author: see AUTHORS file
24 
25 #pragma once
26 
27 #include <cstdint>
28 #include <string>
29 
30 #include <xlnt/xlnt_config.hpp>
31 
32 // We might want to change these types for various optimizations in the future
33 // so use typedefs.
34 
35 namespace xlnt {
36 
40 using row_t = std::uint32_t;
41 
47 class XLNT_API column_t
48 {
49 public:
53  using index_t = std::uint32_t;
54 
63  static index_t column_index_from_string(const std::string &column_string);
64 
73  static std::string column_string_from_index(index_t column_index);
74 
78  column_t();
79 
83  column_t(index_t column_index);
84 
88  column_t(const std::string &column_string);
89 
93  column_t(const char *column_string);
94 
98  std::string column_string() const;
99 
103  column_t &operator=(const std::string &rhs);
104 
108  column_t &operator=(const char *rhs);
109 
113  bool operator==(const column_t &other) const;
114 
118  bool operator!=(const column_t &other) const;
119 
123  bool operator==(int other) const;
124 
128  bool operator==(index_t other) const;
129 
133  bool operator==(const std::string &other) const;
134 
138  bool operator==(const char *other) const;
139 
143  bool operator!=(int other) const;
144 
148  bool operator!=(index_t other) const;
149 
153  bool operator!=(const std::string &other) const;
154 
158  bool operator!=(const char *other) const;
159 
163  bool operator>(const column_t &other) const;
164 
168  bool operator>=(const column_t &other) const;
169 
173  bool operator<(const column_t &other) const;
174 
178  bool operator<=(const column_t &other) const;
179 
183  bool operator>(const column_t::index_t &other) const;
184 
188  bool operator>=(const column_t::index_t &other) const;
189 
193  bool operator<(const column_t::index_t &other) const;
194 
198  bool operator<=(const column_t::index_t &other) const;
199 
203  column_t &operator++();
204 
208  column_t &operator--();
209 
213  column_t operator++(int);
214 
218  column_t operator--(int);
219 
223  friend XLNT_API column_t operator+(column_t lhs, const column_t &rhs);
224 
228  friend XLNT_API column_t operator-(column_t lhs, const column_t &rhs);
229 
233  column_t &operator+=(const column_t &rhs);
234 
238  column_t &operator-=(const column_t &rhs);
239 
243  friend XLNT_API bool operator>(const column_t::index_t &left, const column_t &right);
244 
248  friend XLNT_API bool operator>=(const column_t::index_t &left, const column_t &right);
249 
253  friend XLNT_API bool operator<(const column_t::index_t &left, const column_t &right);
254 
258  friend XLNT_API bool operator<=(const column_t::index_t &left, const column_t &right);
259 
263  friend XLNT_API void swap(column_t &left, column_t &right);
264 
269 };
270 
271 enum class row_or_col_t : int
272 {
273  row,
274  column
275 };
276 
281 struct XLNT_API column_hash
282 {
286  std::size_t operator()(const column_t &k) const;
287 };
288 
289 } // namespace xlnt
290 
291 namespace std {
292 
296 template <>
297 struct hash<xlnt::column_t>
298 {
302  size_t operator()(const xlnt::column_t &k) const
303  {
304  static xlnt::column_hash hasher;
305  return hasher(k);
306  }
307 };
308 
309 } // namespace std
index_t index
Internal numeric value of this column index.
Definition: index_types.hpp:268
std::uint32_t index_t
Alias declaration for the internal numeric type of this column.
Definition: index_types.hpp:53
std::uint32_t row_t
All rows should be referred to by an instance of this type.
Definition: index_types.hpp:40
Definition: cell_reference.hpp:261
Enumerates the possible types a cell can be determined by it&#39;s current value.
Definition: cell.hpp:36
bool operator!=(std::nullptr_t, const cell &cell)
Returns true if this cell is initialized.
size_t operator()(const xlnt::column_t &k) const
Returns the result of hashing column k.
Definition: index_types.hpp:302
bool operator==(std::nullptr_t, const cell &cell)
Returns true if this cell is uninitialized.
Columns can be referred to as a string A,B,...Z,AA,AB,..,ZZ,AAA,...,ZZZ or as a 1-indexed index...
Definition: index_types.hpp:47
Functor for hashing a column. Allows for use of std::unordered_set<column_t, column_hash> and similar...
Definition: index_types.hpp:281