xlnt/source/workbook/workbook.cpp

978 lines
24 KiB
C++
Raw Normal View History

2015-12-25 06:10:02 +08:00
// Copyright (c) 2014-2016 Thomas Fussell
// 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-05-22 05:48:51 +08:00
#include <algorithm>
2014-06-11 05:12:15 +08:00
#include <array>
2014-06-05 06:42:17 +08:00
#include <fstream>
2016-06-11 01:40:50 +08:00
#include <functional>
#include <set>
2014-05-21 22:20:30 +08:00
#include <sstream>
2016-07-23 08:26:02 +08:00
#include <detail/cell_impl.hpp>
#include <detail/constants.hpp>
2016-08-05 13:52:05 +08:00
#include <detail/xlsx_consumer.hpp>
#include <detail/xlsx_producer.hpp>
2016-07-23 08:26:02 +08:00
#include <detail/include_windows.hpp>
#include <detail/workbook_impl.hpp>
#include <detail/worksheet_impl.hpp>
2015-11-03 22:06:01 +08:00
#include <xlnt/packaging/manifest.hpp>
#include <xlnt/packaging/relationship.hpp>
#include <xlnt/packaging/zip_file.hpp>
2015-10-19 03:30:46 +08:00
#include <xlnt/styles/alignment.hpp>
2015-10-21 11:30:10 +08:00
#include <xlnt/styles/border.hpp>
2016-05-15 01:57:07 +08:00
#include <xlnt/styles/format.hpp>
2015-10-19 03:30:46 +08:00
#include <xlnt/styles/fill.hpp>
#include <xlnt/styles/font.hpp>
2016-05-15 01:57:07 +08:00
#include <xlnt/styles/style.hpp>
2015-10-19 03:30:46 +08:00
#include <xlnt/styles/number_format.hpp>
#include <xlnt/styles/protection.hpp>
#include <xlnt/utils/exceptions.hpp>
2016-08-03 12:12:18 +08:00
#include <xlnt/utils/path.hpp>
2016-01-25 00:15:49 +08:00
#include <xlnt/workbook/const_worksheet_iterator.hpp>
2015-10-15 06:05:13 +08:00
#include <xlnt/workbook/named_range.hpp>
2015-10-30 07:37:07 +08:00
#include <xlnt/workbook/theme.hpp>
2015-10-14 12:03:48 +08:00
#include <xlnt/workbook/workbook.hpp>
2016-01-25 00:15:49 +08:00
#include <xlnt/workbook/worksheet_iterator.hpp>
2015-10-14 12:03:48 +08:00
#include <xlnt/worksheet/range.hpp>
#include <xlnt/worksheet/worksheet.hpp>
2014-08-14 06:56:34 +08:00
2014-05-21 22:20:30 +08:00
namespace xlnt {
2014-07-25 05:31:46 +08:00
2016-08-03 12:12:18 +08:00
workbook workbook::minimal()
2014-05-21 22:20:30 +08:00
{
2016-08-03 12:12:18 +08:00
auto impl = new detail::workbook_impl();
workbook wb(impl);
wb.d_->manifest_.register_default_type("rels",
"application/vnd.openxmlformats-package.relationships+xml");
wb.d_->manifest_.register_override_type(path("workbook.xml"),
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml");
wb.d_->manifest_.register_relationship(uri("/"), relationship::type::office_document,
uri("workbook.xml"), target_mode::internal);
std::string title("Sheet");
wb.d_->worksheets_.push_back(detail::worksheet_impl(&wb, 1, title));
wb.d_->manifest_.register_override_type(path("sheet1.xml"),
"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml");
auto ws_rel = wb.d_->manifest_.register_relationship(uri("workbook.xml"),
relationship::type::worksheet, uri("sheet1.xml"), target_mode::internal);
wb.d_->sheet_title_rel_id_map_[title] = ws_rel;
2016-08-03 12:12:18 +08:00
return wb;
}
2014-07-25 05:31:46 +08:00
2016-08-03 12:12:18 +08:00
workbook workbook::empty_excel()
{
auto impl = new detail::workbook_impl();
xlnt::workbook wb(impl);
wb.d_->manifest_.register_override_type(path("xl/workbook.xml"),
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml");
wb.d_->manifest_.register_relationship(uri("/"), relationship::type::office_document,
uri("xl/workbook.xml"), target_mode::internal);
wb.d_->manifest_.register_default_type("rels",
"application/vnd.openxmlformats-package.relationships+xml");
wb.d_->manifest_.register_default_type("xml", "application/xml");
const std::vector<std::uint8_t> thumbnail = {
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,
0x00,0x60,0x00,0x60,0x00,0x00,0xff,0xe1,0x00,0x16,0x45,0x78,0x69,0x66,
0x00,0x00,0x49,0x49,0x2a,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0xff,0xdb,0x00,0x43,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
0xff,0xc0,0x00,0x11,0x08,0x00,0x01,0x00,0x01,0x03,0x01,0x22,0x00,0x02,
0x11,0x01,0x03,0x11,0x01,0xff,0xc4,0x00,0x15,0x00,0x01,0x01,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,
0xff,0xc4,0x00,0x14,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc4,0x00,0x14,0x01,0x01,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0xff,0xc4,0x00,0x14,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xda,0x00,0x0c,
0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,0x3f,0x00,0xbf,0x80,0x01,0xff,
0xd9
};
wb.set_thumbnail(thumbnail, "jpeg", "image/jpeg");
wb.d_->manifest_.register_override_type(path("docProps/core.xml"),
"application/vnd.openxmlformats-package.coreproperties+xml");
wb.d_->manifest_.register_relationship(uri("/"), relationship::type::core_properties,
uri("docProps/core.xml"), target_mode::internal);
wb.d_->manifest_.register_override_type(path("docProps/app.xml"),
"application/vnd.openxmlformats-officedocument.extended-properties+xml");
wb.d_->manifest_.register_relationship(uri("/"), relationship::type::extended_properties,
uri("docProps/app.xml"), target_mode::internal);
2016-08-03 12:12:18 +08:00
wb.set_application("Microsoft Excel");
wb.create_sheet();
wb.add_format(format());
wb.create_style("Normal");
wb.set_theme(theme());
wb.d_->stylesheet_.format_styles.front() = "Normal";
xlnt::fill gray125 = xlnt::fill::pattern(xlnt::pattern_fill::type::gray125);
wb.d_->stylesheet_.fills.push_back(gray125);
2016-08-03 12:12:18 +08:00
return wb;
}
workbook workbook::empty_libre_office()
{
2016-08-03 12:12:18 +08:00
auto impl = new detail::workbook_impl();
workbook wb(impl);
2016-08-03 12:12:18 +08:00
return wb;
}
workbook workbook::empty_numbers()
{
auto impl = new detail::workbook_impl();
workbook wb(impl);
return wb;
}
workbook::workbook()
{
2016-08-03 20:46:50 +08:00
auto wb_template = empty_excel();
swap(*this, wb_template);
2016-08-03 12:12:18 +08:00
}
workbook::workbook(detail::workbook_impl *impl) : d_(impl)
{
2014-05-21 22:20:30 +08:00
}
2016-08-05 13:52:05 +08:00
const worksheet workbook::get_sheet_by_title(const std::string &title) const
2014-05-21 22:20:30 +08:00
{
for (auto &impl : d_->worksheets_)
2014-05-21 22:20:30 +08:00
{
2016-08-05 13:52:05 +08:00
if (impl.title_ == title)
{
return worksheet(&impl);
}
2014-05-21 22:20:30 +08:00
}
2016-07-30 06:55:49 +08:00
throw key_not_found();
}
2016-08-05 13:52:05 +08:00
worksheet workbook::get_sheet_by_title(const std::string &title)
{
2016-07-22 11:04:36 +08:00
for (auto &impl : d_->worksheets_)
{
2016-08-05 13:52:05 +08:00
if (impl.title_ == title)
2016-07-22 11:04:36 +08:00
{
return worksheet(&impl);
}
}
2016-07-30 06:55:49 +08:00
throw key_not_found();
}
worksheet workbook::get_sheet_by_index(std::size_t index)
{
2016-08-03 12:12:18 +08:00
auto iter = d_->worksheets_.begin();
for (std::size_t i = 0; i < index; ++i, ++iter)
{
}
return worksheet(&*iter);
}
const worksheet workbook::get_sheet_by_index(std::size_t index) const
{
2016-08-03 12:12:18 +08:00
auto iter = d_->worksheets_.begin();
for (std::size_t i = 0; i < index; ++i, ++iter)
{
}
return worksheet(&*iter);
2014-05-21 22:20:30 +08:00
}
2016-08-05 13:52:05 +08:00
worksheet workbook::get_sheet_by_id(std::size_t id)
{
for (auto &impl : d_->worksheets_)
{
if (impl.id_ == id)
{
return worksheet(&impl);
}
}
throw key_not_found();
}
const worksheet workbook::get_sheet_by_id(std::size_t id) const
{
for (auto &impl : d_->worksheets_)
{
if (impl.id_ == id)
{
return worksheet(&impl);
}
}
throw key_not_found();
}
2014-05-21 22:20:30 +08:00
worksheet workbook::get_active_sheet()
{
2016-08-03 12:12:18 +08:00
return get_sheet_by_index(d_->active_sheet_index_);
2014-05-21 22:20:30 +08:00
}
bool workbook::has_named_range(const std::string &name) const
2014-05-21 22:20:30 +08:00
{
for (auto worksheet : *this)
2014-05-21 22:20:30 +08:00
{
if (worksheet.has_named_range(name))
2014-05-21 22:20:30 +08:00
{
return true;
}
}
return false;
}
worksheet workbook::create_sheet()
{
2016-03-06 10:39:50 +08:00
std::string title = "Sheet";
int index = 0;
2016-07-22 11:04:36 +08:00
while (contains(title))
2014-05-21 22:20:30 +08:00
{
title = "Sheet" + std::to_string(++index);
2014-05-21 22:20:30 +08:00
}
2014-06-10 12:29:49 +08:00
auto sheet_id = d_->worksheets_.size() + 1;
std::string sheet_filename = "sheet" + std::to_string(sheet_id) + ".xml";
d_->worksheets_.push_back(detail::worksheet_impl(this, sheet_id, title));
2016-08-05 13:52:05 +08:00
auto workbook_rel = d_->manifest_.get_relationship(path("/"), relationship::type::office_document);
uri sheet_uri(constants::package_worksheets().append(sheet_filename).string());
d_->manifest_.register_override_type(sheet_uri.get_path(),
"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml");
auto ws_rel = d_->manifest_.register_relationship(workbook_rel.get_target(),
relationship::type::worksheet, sheet_uri, target_mode::internal);
d_->sheet_title_rel_id_map_[title] = ws_rel;
return worksheet(&d_->worksheets_.back());
2014-05-21 22:20:30 +08:00
}
2016-07-22 10:14:00 +08:00
void workbook::copy_sheet(xlnt::worksheet worksheet)
2014-05-21 22:20:30 +08:00
{
2016-07-30 06:55:49 +08:00
if(worksheet.d_->parent_ != this) throw xlnt::invalid_parameter();
xlnt::detail::worksheet_impl impl(*worksheet.d_);
2016-07-18 02:59:11 +08:00
auto new_sheet = create_sheet();
impl.title_ = new_sheet.get_title();
*new_sheet.d_ = impl;
2014-05-21 22:20:30 +08:00
}
2016-07-22 10:14:00 +08:00
void workbook::copy_sheet(xlnt::worksheet worksheet, std::size_t index)
2014-05-21 22:20:30 +08:00
{
2016-07-22 10:14:00 +08:00
copy_sheet(worksheet);
if (index != d_->worksheets_.size() - 1)
{
2016-08-03 12:12:18 +08:00
auto iter = d_->worksheets_.begin();
for (std::size_t i = 0; i < index; ++i, ++iter)
{
}
d_->worksheets_.insert(iter, d_->worksheets_.back());
2016-07-22 10:14:00 +08:00
d_->worksheets_.pop_back();
}
2014-05-21 22:20:30 +08:00
}
2016-07-22 10:14:00 +08:00
std::size_t workbook::get_index(xlnt::worksheet worksheet)
2014-05-21 22:20:30 +08:00
{
2016-07-22 10:14:00 +08:00
auto match = std::find(begin(), end(), worksheet);
if (match == end())
2014-05-21 22:20:30 +08:00
{
2016-07-22 10:14:00 +08:00
throw std::runtime_error("worksheet isn't owned by this workbook");
2014-05-21 22:20:30 +08:00
}
2016-07-22 10:14:00 +08:00
return std::distance(begin(), match);
2014-05-21 22:20:30 +08:00
}
2015-11-11 08:47:31 +08:00
void workbook::create_named_range(const std::string &name, worksheet range_owner, const std::string &reference_string)
{
create_named_range(name, range_owner, range_reference(reference_string));
}
void workbook::create_named_range(const std::string &name, worksheet range_owner, const range_reference &reference)
2014-05-21 22:20:30 +08:00
{
2016-08-05 13:52:05 +08:00
get_sheet_by_title(range_owner.get_title()).create_named_range(name, reference);
2014-05-21 22:20:30 +08:00
}
void workbook::remove_named_range(const std::string &name)
2014-05-21 22:20:30 +08:00
{
for (auto ws : *this)
2014-05-21 22:20:30 +08:00
{
if (ws.has_named_range(name))
2014-05-21 22:20:30 +08:00
{
ws.remove_named_range(name);
2014-05-21 22:20:30 +08:00
return;
}
}
throw std::runtime_error("named range not found");
2014-05-21 22:20:30 +08:00
}
range workbook::get_named_range(const std::string &name)
2014-05-21 22:20:30 +08:00
{
for (auto ws : *this)
2014-05-21 22:20:30 +08:00
{
if (ws.has_named_range(name))
2014-05-21 22:20:30 +08:00
{
return ws.get_named_range(name);
2014-05-21 22:20:30 +08:00
}
}
throw std::runtime_error("named range not found");
2014-05-21 22:20:30 +08:00
}
2016-08-05 13:52:05 +08:00
void workbook::load(std::istream &stream)
{
2016-08-05 13:52:05 +08:00
detail::xlsx_consumer consumer(*this);
consumer.read(stream);
}
2016-08-05 13:52:05 +08:00
void workbook::load(const std::vector<unsigned char> &data)
2014-06-05 06:42:17 +08:00
{
2016-08-05 13:52:05 +08:00
detail::xlsx_consumer consumer(*this);
consumer.read(data);
2014-06-05 06:42:17 +08:00
}
2016-08-05 13:52:05 +08:00
void workbook::load(const std::string &filename)
2014-05-21 22:20:30 +08:00
{
2016-08-03 12:12:18 +08:00
return load(path(filename));
}
2015-10-30 07:37:07 +08:00
2016-08-05 13:52:05 +08:00
void workbook::load(const path &filename)
2016-08-03 12:12:18 +08:00
{
2016-08-05 13:52:05 +08:00
detail::xlsx_consumer consumer(*this);
consumer.read(filename);
2014-05-21 22:20:30 +08:00
}
void workbook::save(std::vector<unsigned char> &data) const
2014-07-25 05:31:46 +08:00
{
2016-08-05 13:52:05 +08:00
detail::xlsx_producer producer(*this);
producer.write(data);
2014-07-25 05:31:46 +08:00
}
void workbook::save(const std::string &filename) const
2014-07-25 05:31:46 +08:00
{
2016-08-05 13:52:05 +08:00
return save(path(filename));
2014-07-25 05:31:46 +08:00
}
void workbook::save(const path &filename) const
{
2016-08-05 13:52:05 +08:00
detail::xlsx_producer producer(*this);
producer.write(filename);
}
void workbook::save(std::ostream &stream) const
{
2016-08-05 13:52:05 +08:00
detail::xlsx_producer producer(*this);
producer.write(stream);
}
2016-08-05 13:52:05 +08:00
void workbook::set_guess_types(bool guess)
{
2016-08-05 13:52:05 +08:00
d_->guess_types_ = guess;
}
2016-08-05 13:52:05 +08:00
bool workbook::get_guess_types() const
{
return d_->guess_types_;
}
2014-05-21 22:20:30 +08:00
void workbook::remove_sheet(worksheet ws)
{
auto match_iter = std::find_if(d_->worksheets_.begin(), d_->worksheets_.end(),
2016-08-05 13:52:05 +08:00
[=](detail::worksheet_impl &comp) { return worksheet(&comp) == ws; });
if (match_iter == d_->worksheets_.end())
2014-05-21 22:20:30 +08:00
{
throw std::runtime_error("worksheet not owned by this workbook");
}
2016-08-05 13:52:05 +08:00
auto sheet_filename = path("worksheets/sheet" + std::to_string(d_->worksheets_.size()) + ".xml");
d_->worksheets_.erase(match_iter);
2014-05-21 22:20:30 +08:00
}
worksheet workbook::create_sheet(std::size_t index)
{
create_sheet();
if (index != d_->worksheets_.size() - 1)
{
2016-08-03 12:12:18 +08:00
auto iter = d_->worksheets_.begin();
for (std::size_t i = 0; i < index; ++i, ++iter)
{
}
d_->worksheets_.insert(iter, d_->worksheets_.back());
2016-07-18 03:20:20 +08:00
d_->worksheets_.pop_back();
}
2016-08-03 12:12:18 +08:00
return get_sheet_by_index(index);
2014-05-21 22:20:30 +08:00
}
2016-08-02 06:33:43 +08:00
worksheet workbook::create_sheet_with_rel(const std::string &title, const relationship &rel)
{
auto sheet_id = d_->worksheets_.size() + 1;
d_->worksheets_.push_back(detail::worksheet_impl(this, sheet_id, title));
return worksheet(&d_->worksheets_.back());
}
workbook::iterator workbook::begin()
2014-05-21 22:20:30 +08:00
{
return iterator(*this, 0);
2014-05-21 22:20:30 +08:00
}
workbook::iterator workbook::end()
2014-05-21 22:20:30 +08:00
{
return iterator(*this, d_->worksheets_.size());
}
2015-11-23 01:41:27 +08:00
workbook::const_iterator workbook::begin() const
{
return cbegin();
}
workbook::const_iterator workbook::end() const
{
return cend();
}
workbook::const_iterator workbook::cbegin() const
{
return const_iterator(*this, 0);
}
workbook::const_iterator workbook::cend() const
{
return const_iterator(*this, d_->worksheets_.size());
2014-05-21 22:20:30 +08:00
}
2016-08-02 06:33:43 +08:00
std::vector<std::string> workbook::get_sheet_titles() const
2014-05-21 22:20:30 +08:00
{
std::vector<std::string> names;
for (auto ws : *this)
2014-05-21 22:20:30 +08:00
{
names.push_back(ws.get_title());
}
2014-05-21 22:20:30 +08:00
return names;
}
worksheet workbook::operator[](const std::string &name)
2014-05-21 22:20:30 +08:00
{
2016-08-05 13:52:05 +08:00
return get_sheet_by_title(name);
2014-05-21 22:20:30 +08:00
}
2014-06-11 05:12:15 +08:00
worksheet workbook::operator[](std::size_t index)
2014-05-21 22:20:30 +08:00
{
2016-08-03 12:12:18 +08:00
return get_sheet_by_index(index);
2014-05-21 22:20:30 +08:00
}
void workbook::clear()
{
d_->worksheets_.clear();
2016-08-05 13:52:05 +08:00
d_->manifest_.clear();
2014-07-20 02:43:48 +08:00
d_->active_sheet_index_ = 0;
2016-07-30 05:50:33 +08:00
d_->manifest_.clear();
2016-07-18 02:59:11 +08:00
clear_styles();
clear_formats();
2014-05-21 22:20:30 +08:00
}
2016-07-22 10:14:00 +08:00
bool workbook::operator==(const workbook &rhs) const
2014-07-20 04:59:05 +08:00
{
2016-07-22 10:14:00 +08:00
return d_.get() == rhs.d_.get();
2014-07-20 04:59:05 +08:00
}
2016-07-22 10:14:00 +08:00
bool workbook::operator!=(const workbook &rhs) const
2014-05-21 22:20:30 +08:00
{
2016-07-22 10:14:00 +08:00
return d_.get() != rhs.d_.get();
2014-05-21 22:20:30 +08:00
}
2014-07-24 08:51:28 +08:00
void swap(workbook &left, workbook &right)
2014-07-20 04:59:05 +08:00
{
2014-07-24 08:51:28 +08:00
using std::swap;
swap(left.d_, right.d_);
2016-08-03 12:12:18 +08:00
if (left.d_ != nullptr)
{
for (auto ws : left)
{
ws.set_parent(left);
}
}
2016-08-03 12:12:18 +08:00
if (right.d_ != nullptr)
{
for (auto ws : right)
{
ws.set_parent(right);
}
}
2014-07-24 08:51:28 +08:00
}
2014-07-24 08:51:28 +08:00
workbook &workbook::operator=(workbook other)
{
swap(*this, other);
return *this;
}
2016-08-03 12:12:18 +08:00
workbook::workbook(workbook &&other) : workbook(nullptr)
2014-07-24 08:51:28 +08:00
{
swap(*this, other);
}
2014-07-24 08:51:28 +08:00
workbook::workbook(const workbook &other) : workbook()
{
*d_.get() = *other.d_.get();
for (auto ws : *this)
2014-07-24 08:51:28 +08:00
{
ws.set_parent(*this);
}
2014-07-20 04:59:05 +08:00
}
workbook::~workbook()
{
}
2014-07-25 05:31:46 +08:00
bool workbook::get_data_only() const
{
return d_->data_only_;
}
void workbook::set_data_only(bool data_only)
{
d_->data_only_ = data_only;
}
2015-10-19 03:30:46 +08:00
void workbook::set_code_name(const std::string & /*code_name*/)
2015-10-19 03:30:46 +08:00
{
}
2016-08-03 12:12:18 +08:00
bool workbook::has_theme() const
2015-10-19 03:30:46 +08:00
{
2016-08-03 12:12:18 +08:00
return d_->has_theme_;
2015-10-19 03:30:46 +08:00
}
2016-08-03 12:12:18 +08:00
const theme &workbook::get_theme() const
2015-10-19 03:30:46 +08:00
{
2015-10-30 07:37:07 +08:00
return d_->theme_;
2015-10-19 03:30:46 +08:00
}
2016-08-03 12:12:18 +08:00
void workbook::set_theme(const theme &value)
{
auto workbook_rel = d_->manifest_.get_relationship(path("/"), relationship::type::office_document);
if (!d_->manifest_.has_relationship(workbook_rel.get_target().get_path(), relationship::type::theme))
2016-08-03 12:12:18 +08:00
{
d_->manifest_.register_override_type(constants::part_theme(),
"application/vnd.openxmlformats-officedocument.theme+xml");
d_->manifest_.register_relationship(workbook_rel.get_target(),
relationship::type::theme, uri(constants::part_theme().string()), target_mode::internal);
2016-08-03 12:12:18 +08:00
}
d_->has_theme_ = true;
d_->theme_ = value;
}
2015-10-19 03:30:46 +08:00
std::vector<named_range> workbook::get_named_ranges() const
{
std::vector<named_range> named_ranges;
for (auto ws : *this)
{
for (auto &ws_named_range : ws.d_->named_ranges_)
2015-10-19 03:30:46 +08:00
{
named_ranges.push_back(ws_named_range.second);
}
}
2015-10-19 03:30:46 +08:00
return named_ranges;
}
2016-06-11 01:40:50 +08:00
std::size_t workbook::add_format(const format &to_add)
2015-10-24 02:42:36 +08:00
{
auto workbook_rel = d_->manifest_.get_relationship(path("/"), relationship::type::office_document);
if (!d_->manifest_.has_relationship(workbook_rel.get_target().get_path(), relationship::type::styles))
2016-08-03 12:12:18 +08:00
{
d_->manifest_.register_override_type(constants::part_styles(),
"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml");
d_->manifest_.register_relationship(workbook_rel.get_target(),
relationship::type::styles, uri(constants::part_styles().string()), target_mode::internal);
2016-08-03 12:12:18 +08:00
}
2016-06-11 01:40:50 +08:00
return d_->stylesheet_.add_format(to_add);
}
std::size_t workbook::add_style(const style &to_add)
{
auto workbook_rel = d_->manifest_.get_relationship(path("/"), relationship::type::office_document);
if (!d_->manifest_.has_relationship(workbook_rel.get_target().get_path(), relationship::type::styles))
2016-08-03 12:12:18 +08:00
{
d_->manifest_.register_override_type(constants::part_styles(),
"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml");
d_->manifest_.register_relationship(workbook_rel.get_target(),
relationship::type::styles, uri(constants::part_styles().string()), target_mode::internal);
2016-08-03 12:12:18 +08:00
}
2016-06-11 01:40:50 +08:00
return d_->stylesheet_.add_style(to_add);
}
bool workbook::has_style(const std::string &name) const
{
return std::find_if(d_->stylesheet_.styles.begin(), d_->stylesheet_.styles.end(),
[&](const style &s) { return s.get_name() == name; }) != d_->stylesheet_.styles.end();
}
std::size_t workbook::get_style_id(const std::string &name) const
{
return std::distance(d_->stylesheet_.styles.begin(),
std::find_if(d_->stylesheet_.styles.begin(), d_->stylesheet_.styles.end(),
[&](const style &s) { return s.get_name() == name; }));
2015-10-24 02:42:36 +08:00
}
void workbook::clear_styles()
{
2016-06-11 01:40:50 +08:00
d_->stylesheet_.styles.clear();
apply_to_cells([](cell c) { c.clear_style(); });
}
2016-05-15 01:57:07 +08:00
void workbook::clear_formats()
2016-05-14 02:40:17 +08:00
{
2016-06-11 01:40:50 +08:00
d_->stylesheet_.formats.clear();
apply_to_cells([](cell c) { c.clear_format(); });
}
void workbook::apply_to_cells(std::function<void(cell)> f)
{
for (auto ws : *this)
{
for (auto r : ws.iter_cells(true))
{
for (auto c : r)
{
f.operator()(c);
}
}
}
2016-05-14 02:40:17 +08:00
}
2016-05-15 01:57:07 +08:00
format &workbook::get_format(std::size_t format_index)
2015-10-29 03:08:54 +08:00
{
2016-06-11 01:40:50 +08:00
return d_->stylesheet_.formats.at(format_index);
2015-10-29 03:08:54 +08:00
}
2016-05-15 01:57:07 +08:00
const format &workbook::get_format(std::size_t format_index) const
2015-10-29 03:08:54 +08:00
{
2016-06-11 01:40:50 +08:00
return d_->stylesheet_.formats.at(format_index);
2015-10-29 03:08:54 +08:00
}
2015-10-30 01:46:56 +08:00
manifest &workbook::get_manifest()
{
return d_->manifest_;
}
2015-10-30 01:46:56 +08:00
const manifest &workbook::get_manifest() const
{
return d_->manifest_;
}
std::vector<text> &workbook::get_shared_strings()
2015-10-31 06:54:04 +08:00
{
return d_->shared_strings_;
}
const std::vector<text> &workbook::get_shared_strings() const
2015-10-31 06:54:04 +08:00
{
return d_->shared_strings_;
}
void workbook::add_shared_string(const text &shared, bool allow_duplicates)
2015-10-31 06:54:04 +08:00
{
auto workbook_rel = d_->manifest_.get_relationship(path("/"), relationship::type::office_document);
if (!d_->manifest_.has_relationship(workbook_rel.get_target().get_path(), relationship::type::styles))
2016-08-05 13:52:05 +08:00
{
d_->manifest_.register_override_type(constants::part_shared_strings(),
"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml");
d_->manifest_.register_relationship(workbook_rel.get_target(),
relationship::type::shared_string_table, uri(constants::part_shared_strings().string()), target_mode::internal);
2016-08-05 13:52:05 +08:00
}
2016-07-23 08:26:02 +08:00
if (!allow_duplicates)
{
//TODO: inefficient, use a set or something?
for (auto &s : d_->shared_strings_)
{
if (s == shared) return;
}
}
2015-11-02 12:52:19 +08:00
2015-10-31 06:54:04 +08:00
d_->shared_strings_.push_back(shared);
}
2016-03-06 10:39:50 +08:00
bool workbook::contains(const std::string &sheet_title) const
{
for(auto ws : *this)
{
if(ws.get_title() == sheet_title) return true;
}
return false;
}
void workbook::set_thumbnail(const std::vector<std::uint8_t> &thumbnail,
const std::string &extension, const std::string &content_type)
{
if (!d_->manifest_.has_relationship(path("/"), relationship::type::thumbnail))
{
d_->manifest_.register_default_type(extension, content_type);
d_->manifest_.register_relationship(uri("/"), relationship::type::thumbnail,
uri("docProps/thumbnail.jpeg"), target_mode::internal);
}
d_->thumbnail_.assign(thumbnail.begin(), thumbnail.end());
}
const std::vector<std::uint8_t> &workbook::get_thumbnail() const
{
return d_->thumbnail_;
}
2016-05-15 01:57:07 +08:00
style &workbook::create_style(const std::string &name)
{
2016-05-15 01:57:07 +08:00
style style;
style.set_name(name);
2016-06-11 01:40:50 +08:00
d_->stylesheet_.styles.push_back(style);
2016-06-11 01:40:50 +08:00
return d_->stylesheet_.styles.back();
}
style &workbook::get_style(const std::string &name)
{
2016-06-11 01:40:50 +08:00
return *std::find_if(d_->stylesheet_.styles.begin(), d_->stylesheet_.styles.end(),
[&name](const style &s) { return s.get_name() == name; });
}
const style &workbook::get_style(const std::string &name) const
{
2016-06-11 01:40:50 +08:00
return *std::find_if(d_->stylesheet_.styles.begin(), d_->stylesheet_.styles.end(),
[&name](const style &s) { return s.get_name() == name; });
}
2016-06-20 02:43:41 +08:00
style &workbook::get_style_by_id(std::size_t style_id)
{
return d_->stylesheet_.styles.at(style_id);
}
const style &workbook::get_style_by_id(std::size_t style_id) const
{
return d_->stylesheet_.styles.at(style_id);
}
2016-08-03 12:12:18 +08:00
std::string workbook::get_application() const
{
return d_->application_;
}
void workbook::set_application(const std::string &application)
{
d_->write_app_properties_ = true;
d_->application_ = application;
}
calendar workbook::get_base_date() const
{
return d_->base_date_;
}
void workbook::set_base_date(calendar base_date)
{
d_->base_date_ = base_date;
}
std::string workbook::get_creator() const
{
return d_->creator_;
}
void workbook::set_creator(const std::string &creator)
{
d_->creator_ = creator;
}
std::string workbook::get_last_modified_by() const
{
return d_->last_modified_by_;
}
void workbook::set_last_modified_by(const std::string &last_modified_by)
{
d_->last_modified_by_ = last_modified_by;
}
datetime workbook::get_created() const
{
return d_->created_;
}
void workbook::set_created(const datetime &when)
{
d_->created_ = when;
}
datetime workbook::get_modified() const
{
return d_->modified_;
}
void workbook::set_modified(const datetime &when)
{
d_->modified_ = when;
}
int workbook::get_doc_security() const
{
return d_->doc_security_;
}
void workbook::set_doc_security(int doc_security)
{
d_->doc_security_ = doc_security;
}
bool workbook::get_scale_crop() const
{
return d_->scale_crop_;
}
void workbook::set_scale_crop(bool scale_crop)
{
d_->scale_crop_ = scale_crop;
}
std::string workbook::get_company() const
{
return d_->company_;
}
void workbook::set_company(const std::string &company)
{
d_->company_ = company;
}
bool workbook::links_up_to_date() const
{
return d_->links_up_to_date_;
}
void workbook::set_links_up_to_date(bool links_up_to_date)
{
d_->links_up_to_date_ = links_up_to_date;
}
bool workbook::is_shared_doc() const
{
return d_->shared_doc_;
}
void workbook::set_shared_doc(bool shared_doc)
{
d_->shared_doc_ = shared_doc;
}
bool workbook::hyperlinks_changed() const
{
return d_->hyperlinks_changed_;
}
void workbook::set_hyperlinks_changed(bool hyperlinks_changed)
{
d_->hyperlinks_changed_ = hyperlinks_changed;
}
std::string workbook::get_app_version() const
{
return d_->app_version_;
}
void workbook::set_app_version(const std::string &version)
{
d_->app_version_ = version;
}
std::string workbook::get_title() const
{
return d_->title_;
}
void workbook::set_title(const std::string &title)
{
d_->title_ = title;
}
2016-08-05 13:52:05 +08:00
detail::workbook_impl &workbook::impl()
{
return *d_;
}
const detail::workbook_impl &workbook::impl() const
{
return *d_;
}
2016-08-03 12:12:18 +08:00
2015-10-19 03:30:46 +08:00
} // namespace xlnt