xlnt - community edition
cell_reference.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 <xlnt/xlnt_config.hpp>
28 #include <xlnt/cell/index_types.hpp>
29 
30 #include <cstdint>
31 #include <functional>
32 #include <string>
33 #include <utility>
34 
35 namespace xlnt {
36 
37 class cell_reference;
38 class range_reference;
39 
44 struct XLNT_API cell_reference_hash
45 {
49  std::size_t operator()(const cell_reference &k) const;
50 };
51 
59 class XLNT_API cell_reference
60 {
61 public:
65  static std::pair<std::string, row_t> split_reference(const std::string &reference_string);
66 
73  static std::pair<std::string, row_t> split_reference(
74  const std::string &reference_string, bool &absolute_column, bool &absolute_row);
75 
76  // constructors
77 
82 
83  // TODO: should these be explicit? The implicit conversion is nice sometimes.
84 
88  cell_reference(const char *reference_string);
89 
93  cell_reference(const std::string &reference_string);
94 
98  cell_reference(column_t column, row_t row);
99 
100  // absoluteness
101 
115  cell_reference &make_absolute(bool absolute_column = true, bool absolute_row = true);
116 
120  bool column_absolute() const;
121 
126  void column_absolute(bool absolute_column);
127 
131  bool row_absolute() const;
132 
137  void row_absolute(bool absolute_row);
138 
139  // getters/setters
140 
145  column_t column() const;
146 
150  void column(const std::string &column_string);
151 
155  column_t::index_t column_index() const;
156 
160  void column_index(column_t column);
161 
165  row_t row() const;
166 
170  void row(row_t row);
171 
178  cell_reference make_offset(int column_offset, int row_offset) const;
179 
183  std::string to_string() const;
184 
188  range_reference to_range() const;
189 
190  // operators
191 
197  range_reference operator,(const cell_reference &other) const;
198 
203  bool operator==(const cell_reference &comparand) const;
204 
209  bool operator==(const std::string &reference_string) const;
210 
215  bool operator==(const char *reference_string) const;
216 
221  bool operator!=(const cell_reference &comparand) const;
222 
227  bool operator!=(const std::string &reference_string) const;
228 
233  bool operator!=(const char *reference_string) const;
234 
235 private:
240  column_t column_;
241 
246  row_t row_;
247 
251  bool absolute_row_;
252 
256  bool absolute_column_;
257 };
258 
259 } // namespace xlnt
260 
261 namespace std {
262 template <>
263 struct hash<xlnt::cell_reference>
264 {
265  size_t operator()(const xlnt::cell_reference &x) const
266  {
267  static_assert(std::is_same<decltype(x.row()), std::uint32_t>::value, "this hash function expects both row and column to be 32-bit numbers");
268  static_assert(std::is_same<decltype(x.column_index()), std::uint32_t>::value, "this hash function expects both row and column to be 32-bit numbers");
269  return hash<std::uint64_t>{}(x.row() | static_cast<std::uint64_t>(x.column_index()) << 32);
270  }
271 };
272 } // namespace std
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.
Functor for hashing a cell reference. Allows for use of std::unordered_set<cell_reference, cel_reference_hash> and similar.
Definition: cell_reference.hpp:44
bool operator==(std::nullptr_t, const cell &cell)
Returns true if this cell is uninitialized.
An object used to refer to a cell. References have two parts, the column and the row. In Excel, the reference string A1 refers to the top-left-most cell. A cell_reference can be initialized from a string of this form or a 1-indexed ordered pair of the form column, row.
Definition: cell_reference.hpp:59
column_t::index_t column_index() const
Returns a 1-indexed numeric index of the column of this reference.
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
A range_reference describes a rectangular area of a worksheet with positive width and height defined ...
Definition: range_reference.hpp:36
row_t row() const
Returns a 1-indexed numeric index of the row of this reference.