2015-12-25 06:10:02 +08:00
|
|
|
// Copyright (c) 2014-2016 Thomas Fussell
|
2015-12-25 04:51:11 +08:00
|
|
|
// Copyright (c) 2010-2015 openpyxl
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, WRISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE
|
|
|
|
//
|
|
|
|
// @license: http://www.opensource.org/licenses/mit-license.php
|
|
|
|
// @author: see AUTHORS file
|
2014-08-14 06:56:34 +08:00
|
|
|
#include <xlnt/worksheet/worksheet.hpp>
|
2014-05-31 06:42:25 +08:00
|
|
|
|
2015-10-14 01:56:07 +08:00
|
|
|
#include "cell_impl.hpp"
|
|
|
|
#include "comment_impl.hpp"
|
|
|
|
|
2015-12-25 04:51:11 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
std::pair<bool, long double> cast_numeric(const std::string &s)
|
|
|
|
{
|
|
|
|
const char *str = s.c_str();
|
|
|
|
char *str_end = nullptr;
|
|
|
|
auto result = std::strtold(str, &str_end);
|
|
|
|
if (str_end != str + s.size()) return { false, 0 };
|
|
|
|
return { true, result };
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<bool, long double> cast_percentage(const std::string &s)
|
|
|
|
{
|
|
|
|
if (s.back() == '%')
|
|
|
|
{
|
|
|
|
auto number = cast_numeric(s.substr(0, s.size() - 1));
|
|
|
|
|
|
|
|
if (number.first)
|
|
|
|
{
|
|
|
|
return { true, number.second / 100 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return { false, 0 };
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<bool, xlnt::time> cast_time(const std::string &s)
|
|
|
|
{
|
|
|
|
xlnt::time result;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto last_colon = s.find_last_of(':');
|
|
|
|
if (last_colon == std::string::npos) return { false, result };
|
|
|
|
double seconds = std::stod(s.substr(last_colon + 1));
|
|
|
|
result.second = static_cast<int>(seconds);
|
|
|
|
result.microsecond = static_cast<int>((seconds - static_cast<double>(result.second)) * 1e6);
|
|
|
|
|
|
|
|
auto first_colon = s.find_first_of(':');
|
|
|
|
|
|
|
|
if (first_colon == last_colon)
|
|
|
|
{
|
|
|
|
auto decimal_pos = s.find('.');
|
|
|
|
if (decimal_pos != std::string::npos)
|
|
|
|
{
|
|
|
|
result.minute = std::stoi(s.substr(0, first_colon));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result.hour = std::stoi(s.substr(0, first_colon));
|
|
|
|
result.minute = result.second;
|
|
|
|
result.second = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result.hour = std::stoi(s.substr(0, first_colon));
|
|
|
|
result.minute = std::stoi(s.substr(first_colon + 1, last_colon - first_colon - 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (std::invalid_argument)
|
|
|
|
{
|
|
|
|
return { false, result };
|
|
|
|
}
|
|
|
|
|
|
|
|
return { true, result };
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-05-31 06:42:25 +08:00
|
|
|
namespace xlnt {
|
|
|
|
namespace detail {
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2015-11-04 03:53:48 +08:00
|
|
|
cell_impl::cell_impl() : cell_impl(column_t(1), 1)
|
2014-05-31 06:42:25 +08:00
|
|
|
{
|
|
|
|
}
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2015-10-15 06:05:13 +08:00
|
|
|
cell_impl::cell_impl(column_t column, row_t row) : cell_impl(nullptr, column, row)
|
|
|
|
{
|
|
|
|
}
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2015-10-14 01:56:07 +08:00
|
|
|
cell_impl::cell_impl(worksheet_impl *parent, column_t column, row_t row)
|
2015-10-15 06:05:13 +08:00
|
|
|
: type_(cell::type::null),
|
|
|
|
parent_(parent),
|
|
|
|
column_(column),
|
|
|
|
row_(row),
|
|
|
|
value_numeric_(0),
|
|
|
|
has_hyperlink_(false),
|
|
|
|
is_merged_(false),
|
2015-10-21 01:53:47 +08:00
|
|
|
has_style_(false),
|
|
|
|
style_id_(0),
|
2015-10-15 06:05:13 +08:00
|
|
|
comment_(nullptr)
|
2014-05-31 06:42:25 +08:00
|
|
|
{
|
|
|
|
}
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2015-10-14 01:56:07 +08:00
|
|
|
cell_impl::cell_impl(const cell_impl &rhs)
|
2014-06-13 05:04:37 +08:00
|
|
|
{
|
|
|
|
*this = rhs;
|
|
|
|
}
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2014-06-13 05:04:37 +08:00
|
|
|
cell_impl &cell_impl::operator=(const cell_impl &rhs)
|
|
|
|
{
|
|
|
|
parent_ = rhs.parent_;
|
2015-10-14 01:56:07 +08:00
|
|
|
value_numeric_ = rhs.value_numeric_;
|
|
|
|
value_string_ = rhs.value_string_;
|
2014-06-13 05:04:37 +08:00
|
|
|
hyperlink_ = rhs.hyperlink_;
|
2014-07-26 04:39:25 +08:00
|
|
|
formula_ = rhs.formula_;
|
|
|
|
column_ = rhs.column_;
|
|
|
|
row_ = rhs.row_;
|
2015-10-14 01:56:07 +08:00
|
|
|
is_merged_ = rhs.is_merged_;
|
2014-06-13 05:04:37 +08:00
|
|
|
has_hyperlink_ = rhs.has_hyperlink_;
|
2015-10-14 01:56:07 +08:00
|
|
|
type_ = rhs.type_;
|
2015-10-19 03:30:46 +08:00
|
|
|
style_id_ = rhs.style_id_;
|
2015-10-26 12:26:48 +08:00
|
|
|
has_style_ = rhs.has_style_;
|
2015-11-01 22:43:01 +08:00
|
|
|
|
|
|
|
if (rhs.comment_ != nullptr)
|
2015-10-14 01:56:07 +08:00
|
|
|
{
|
|
|
|
comment_.reset(new comment_impl(*rhs.comment_));
|
|
|
|
}
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2014-06-13 05:04:37 +08:00
|
|
|
return *this;
|
|
|
|
}
|
2014-05-31 06:42:25 +08:00
|
|
|
|
2015-11-23 01:41:27 +08:00
|
|
|
cell cell_impl::self()
|
|
|
|
{
|
|
|
|
return xlnt::cell(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cell_impl::set_string(const std::string &s, bool guess_types)
|
|
|
|
{
|
|
|
|
value_string_ = s;
|
|
|
|
type_ = cell::type::string;
|
|
|
|
|
|
|
|
if (value_string_.size() > 1 && value_string_.front() == '=')
|
|
|
|
{
|
|
|
|
formula_ = value_string_;
|
|
|
|
type_ = cell::type::formula;
|
|
|
|
value_string_.clear();
|
|
|
|
}
|
|
|
|
else if (cell::error_codes().find(s) != cell::error_codes().end())
|
|
|
|
{
|
|
|
|
type_ = cell::type::error;
|
|
|
|
}
|
|
|
|
else if (guess_types)
|
|
|
|
{
|
|
|
|
auto percentage = cast_percentage(s);
|
|
|
|
|
|
|
|
if (percentage.first)
|
|
|
|
{
|
|
|
|
value_numeric_ = percentage.second;
|
|
|
|
type_ = cell::type::numeric;
|
|
|
|
self().set_number_format(xlnt::number_format::percentage());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto time = cast_time(s);
|
|
|
|
|
|
|
|
if (time.first)
|
|
|
|
{
|
|
|
|
type_ = cell::type::numeric;
|
|
|
|
self().set_number_format(number_format::date_time6());
|
|
|
|
value_numeric_ = time.second.to_number();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto numeric = cast_numeric(s);
|
|
|
|
|
|
|
|
if (numeric.first)
|
|
|
|
{
|
|
|
|
value_numeric_ = numeric.second;
|
|
|
|
type_ = cell::type::numeric;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-31 06:42:25 +08:00
|
|
|
} // namespace detail
|
|
|
|
} // namespace xlnt
|