xlnt/source/cell/cell_reference.cpp

263 lines
6.8 KiB
C++
Raw Normal View History

2014-05-21 22:20:30 +08:00
#include <locale>
2014-08-14 06:56:34 +08:00
#include <xlnt/cell/cell_reference.hpp>
#include <xlnt/common/exceptions.hpp>
#include <xlnt/worksheet/range_reference.hpp>
2015-10-26 12:44:55 +08:00
#include "detail/constants.hpp"
2014-05-21 22:20:30 +08:00
namespace xlnt {
2014-05-21 22:20:30 +08:00
std::size_t cell_reference_hash::operator()(const cell_reference &k) const
{
return k.get_row() * constants::MaxColumn + k.get_column_index();
2014-05-21 22:20:30 +08:00
}
2014-05-21 22:20:30 +08:00
cell_reference cell_reference::make_absolute(const cell_reference &relative_reference)
{
cell_reference copy = relative_reference;
copy.absolute_ = true;
return copy;
}
cell_reference::cell_reference() : cell_reference(1, 1, false)
{
}
2014-05-21 22:20:30 +08:00
cell_reference::cell_reference(const std::string &string)
{
bool absolute = false;
auto split = split_reference(string, absolute, absolute);
*this = cell_reference(split.first, split.second, absolute);
}
cell_reference::cell_reference(const char *reference_string) : cell_reference(std::string(reference_string))
{
}
2014-05-22 05:48:51 +08:00
cell_reference::cell_reference(const std::string &column, row_t row, bool absolute)
: column_(column_index_from_string(column)), row_(row), absolute_(absolute)
2014-05-21 22:20:30 +08:00
{
if (row == 0 || row_ >= constants::MaxRow || column_ == 0 || column_ >= constants::MaxColumn)
2014-05-21 22:20:30 +08:00
{
throw cell_coordinates_exception(column_, row_);
2014-05-21 22:20:30 +08:00
}
}
2015-10-15 06:05:13 +08:00
cell_reference::cell_reference(column_t column_index, row_t row, bool absolute)
: column_(column_index), row_(row), absolute_(absolute)
2014-05-21 22:20:30 +08:00
{
if (row_ == 0 || row_ >= constants::MaxRow || column_ == 0 || column_ >= constants::MaxColumn)
2014-05-21 22:20:30 +08:00
{
throw cell_coordinates_exception(column_, row_);
2014-05-21 22:20:30 +08:00
}
}
range_reference cell_reference::operator, (const xlnt::cell_reference &other) const
{
return range_reference(*this, other);
}
2014-05-21 22:20:30 +08:00
std::string cell_reference::to_string() const
{
if (absolute_)
2014-05-21 22:20:30 +08:00
{
return std::string("$") + column_string_from_index(column_) + "$" + std::to_string(row_);
2014-05-21 22:20:30 +08:00
}
return column_string_from_index(column_) + std::to_string(row_);
2014-05-21 22:20:30 +08:00
}
2014-05-22 05:48:51 +08:00
range_reference cell_reference::to_range() const
{
return range_reference(column_, row_, column_, row_);
2014-05-22 05:48:51 +08:00
}
std::pair<std::string, row_t> cell_reference::split_reference(const std::string &reference_string,
bool &absolute_column, bool &absolute_row)
2014-05-21 22:20:30 +08:00
{
absolute_column = false;
absolute_row = false;
2014-05-21 22:20:30 +08:00
// Convert a coordinate string like 'B12' to a tuple ('B', 12)
bool column_part = true;
2014-05-21 22:20:30 +08:00
std::string column_string;
for (auto character : reference_string)
2014-05-21 22:20:30 +08:00
{
char upper = std::toupper(character, std::locale::classic());
if (std::isalpha(character, std::locale::classic()))
2014-05-21 22:20:30 +08:00
{
if (column_part)
2014-05-21 22:20:30 +08:00
{
column_string.append(1, upper);
}
else
{
2014-05-31 06:42:25 +08:00
throw cell_coordinates_exception(reference_string);
2014-05-21 22:20:30 +08:00
}
}
else if (character == '$')
2015-10-14 12:03:48 +08:00
{
if (column_part)
2015-10-14 12:03:48 +08:00
{
if (column_string.empty())
2015-10-14 12:03:48 +08:00
{
column_string.append(1, upper);
}
else
{
column_part = false;
}
}
}
2014-05-21 22:20:30 +08:00
else
{
if (column_part)
2014-05-21 22:20:30 +08:00
{
column_part = false;
}
else if (!std::isdigit(character, std::locale::classic()))
2014-05-21 22:20:30 +08:00
{
2014-05-31 06:42:25 +08:00
throw cell_coordinates_exception(reference_string);
2014-05-21 22:20:30 +08:00
}
}
}
2014-05-21 22:20:30 +08:00
std::string row_string = reference_string.substr(column_string.length());
if (row_string.length() == 0)
2014-06-06 05:42:15 +08:00
{
throw cell_coordinates_exception(reference_string);
}
if (column_string[0] == '$')
2014-05-21 22:20:30 +08:00
{
absolute_row = true;
column_string = column_string.substr(1);
}
if (row_string[0] == '$')
2014-05-21 22:20:30 +08:00
{
absolute_column = true;
row_string = row_string.substr(1);
}
return { column_string, std::stoi(row_string) };
2014-05-21 22:20:30 +08:00
}
cell_reference cell_reference::make_offset(int column_offset, int row_offset) const
{
2015-10-15 06:05:13 +08:00
return cell_reference(static_cast<column_t>(static_cast<int>(column_) + column_offset),
static_cast<row_t>(static_cast<int>(row_) + row_offset));
2014-05-21 22:20:30 +08:00
}
bool cell_reference::operator==(const cell_reference &comparand) const
{
return comparand.column_ == column_ && comparand.row_ == row_ && absolute_ == comparand.absolute_;
2014-05-21 22:20:30 +08:00
}
2014-05-22 05:48:51 +08:00
column_t cell_reference::column_index_from_string(const std::string &column_string)
2014-05-21 22:20:30 +08:00
{
if (column_string.length() > 3 || column_string.empty())
2014-05-21 22:20:30 +08:00
{
2014-06-06 05:42:15 +08:00
throw column_string_index_exception();
2014-05-21 22:20:30 +08:00
}
2014-05-22 05:48:51 +08:00
column_t column_index = 0;
2014-05-21 22:20:30 +08:00
int place = 1;
for (int i = static_cast<int>(column_string.length()) - 1; i >= 0; i--)
2014-05-21 22:20:30 +08:00
{
if (!std::isalpha(column_string[static_cast<std::size_t>(i)], std::locale::classic()))
2014-05-21 22:20:30 +08:00
{
2015-10-15 06:05:13 +08:00
throw column_string_index_exception();
2014-05-21 22:20:30 +08:00
}
column_index += static_cast<column_t>(
(std::toupper(column_string[static_cast<std::size_t>(i)], std::locale::classic()) - 'A' + 1) * place);
2014-05-21 22:20:30 +08:00
place *= 26;
}
2014-05-21 22:20:30 +08:00
return column_index;
}
// Convert a column number into a column letter (3 -> 'C')
// Right shift the column col_idx by 26 to find column letters in reverse
// order.These numbers are 1 - based, and can be converted to ASCII
// ordinals by adding 64.
2014-05-22 05:48:51 +08:00
std::string cell_reference::column_string_from_index(column_t column_index)
2014-05-21 22:20:30 +08:00
{
// these indicies corrospond to A->ZZZ and include all allowed
// columns
if (column_index < 1 || column_index > constants::MaxColumn)
2014-05-21 22:20:30 +08:00
{
// auto msg = "Column index out of bounds: " + std::to_string(column_index);
2014-06-06 05:42:15 +08:00
throw column_string_index_exception();
2014-05-21 22:20:30 +08:00
}
2015-10-15 06:05:13 +08:00
int temp = static_cast<int>(column_index);
2014-05-21 22:20:30 +08:00
std::string column_letter = "";
while (temp > 0)
2014-05-21 22:20:30 +08:00
{
int quotient = temp / 26, remainder = temp % 26;
2014-05-21 22:20:30 +08:00
// check for exact division and borrow if needed
if (remainder == 0)
2014-05-21 22:20:30 +08:00
{
quotient -= 1;
remainder = 26;
}
2014-05-21 22:20:30 +08:00
column_letter = std::string(1, char(remainder + 64)) + column_letter;
temp = quotient;
}
2014-05-21 22:20:30 +08:00
return column_letter;
}
2014-07-25 05:31:46 +08:00
bool cell_reference::operator<(const cell_reference &other)
2014-07-25 05:31:46 +08:00
{
if (row_ != other.row_)
2014-07-25 05:31:46 +08:00
{
return row_ < other.row_;
2014-07-25 05:31:46 +08:00
}
return column_ < other.column_;
2014-07-25 05:31:46 +08:00
}
bool cell_reference::operator>(const cell_reference &other)
{
if (row_ != other.row_)
{
return row_ > other.row_;
}
return column_ > other.column_;
2014-05-22 06:13:32 +08:00
}
bool cell_reference::operator<=(const cell_reference &other)
{
if (row_ != other.row_)
{
return row_ < other.row_;
}
return column_ <= other.column_;
}
bool cell_reference::operator>=(const cell_reference &other)
{
if (row_ != other.row_)
{
return row_ > other.row_;
}
return column_ >= other.column_;
}
} // namespace xlnt