xlnt/source/workbook/named_range.cpp

92 lines
2.1 KiB
C++
Raw Normal View History

2015-10-14 12:03:48 +08:00
#include <xlnt/utils/exceptions.hpp>
2015-10-14 12:03:48 +08:00
#include <xlnt/workbook/named_range.hpp>
#include <xlnt/worksheet/range_reference.hpp>
#include <xlnt/worksheet/worksheet.hpp>
namespace {
/// <summary>
/// Return a vector containing string split at each delim.
/// </summary>
/// <remark>
/// This should maybe be in a utility header so it can be used elsewhere.
/// </remarks>
std::vector<xlnt::string> split_string(const xlnt::string &string, char delim)
2015-10-14 12:03:48 +08:00
{
std::vector<xlnt::string> split;
xlnt::string::size_type previous_index = 0;
2015-10-14 12:03:48 +08:00
auto separator_index = string.find(delim);
while (separator_index != xlnt::string::npos)
2015-10-14 12:03:48 +08:00
{
auto part = string.substr(previous_index, separator_index - previous_index);
split.push_back(part);
2015-10-14 12:03:48 +08:00
previous_index = separator_index + 1;
separator_index = string.find(delim, previous_index);
}
auto part = string.substr(previous_index);
split.push_back(part);
2015-10-14 12:03:48 +08:00
return split;
}
} // namespace
namespace xlnt {
std::vector<std::pair<string, string>> split_named_range(const string &named_range_string)
2015-10-14 12:03:48 +08:00
{
std::vector<std::pair<string, string>> final;
for (auto part : split_string(named_range_string, ','))
2015-10-14 12:03:48 +08:00
{
auto split = split_string(part, '!');
if (split[0].front() == '\'' && split[0].back() == '\'')
2015-10-14 12:03:48 +08:00
{
split[0] = split[0].substr(1, split[0].length() - 2);
}
2015-10-14 12:03:48 +08:00
// Try to parse it. Use empty string if it's not a valid range.
try
{
xlnt::range_reference ref(split[1]);
}
catch (xlnt::cell_coordinates_exception)
2015-10-14 12:03:48 +08:00
{
split[1] = "";
}
final.push_back({ split[0], split[1] });
2015-10-14 12:03:48 +08:00
}
2015-10-14 12:03:48 +08:00
return final;
}
2015-10-15 06:05:13 +08:00
named_range::named_range()
2015-10-14 12:03:48 +08:00
{
}
2015-10-15 06:05:13 +08:00
named_range::named_range(const named_range &other)
{
*this = other;
}
named_range::named_range(const string &name, const std::vector<named_range::target> &targets)
: name_(name), targets_(targets)
2015-10-15 06:05:13 +08:00
{
}
named_range &named_range::operator=(const named_range &other)
{
name_ = other.name_;
targets_ = other.targets_;
2015-10-15 06:05:13 +08:00
return *this;
}
2015-10-15 06:05:13 +08:00
} // namespace xlnt