// 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace { #ifdef WIN32 std::wstring utf8_to_utf16(const std::string &utf8_string) { std::wstring_convert convert; return convert.from_bytes(utf8_string); } void open_stream(std::ifstream &stream, const std::wstring &path) { stream.open(path, std::ios::binary); } void open_stream(std::ofstream &stream, const std::wstring &path) { stream.open(path, std::ios::binary); } void open_stream(std::ifstream &stream, const std::string &path) { open_stream(stream, utf8_to_utf16(path)); } void open_stream(std::ofstream &stream, const std::string &path) { stream.open(path, utf8_to_utf16(path)); } #else void open_stream(std::ifstream &stream, const std::string &path) { stream.open(path, std::ios::binary); } void open_stream(std::ofstream &stream, const std::string &path) { stream.open(path, std::ios::binary); } #endif } // namespace namespace xlnt { workbook workbook::minimal() { 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("1"); 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; return wb; } workbook workbook::empty_excel() { auto impl = new detail::workbook_impl(); 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"); wb.set_thumbnail(excel_thumbnail(), "jpeg", "image/jpeg"); wb.d_->manifest_.register_override_type(path("/docProps/core.xml"), "application/vnd.openxmlformats-package.core-properties+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); wb.set_creator("Microsoft Office User"); wb.set_last_modified_by("Microsoft Office User"); wb.set_created(datetime(2016, 8, 12, 3, 16, 56)); wb.set_modified(datetime(2016, 8, 12, 3, 17, 16)); wb.set_application("Microsoft Macintosh Excel"); wb.set_app_version("15.0300"); wb.set_absolute_path(path("/Users/thomas/Development/xlnt/tests/data/xlsx/")); wb.enable_x15(); wb.d_->has_file_version_ = true; wb.d_->file_version_.app_name = "xl"; wb.d_->file_version_.last_edited = 6; wb.d_->file_version_.lowest_edited = 6; wb.d_->file_version_.rup_build = 26709; wb.d_->has_properties_ = true; wb.d_->has_view_ = true; wb.d_->has_arch_id_ = true; wb.d_->has_calculation_properties_ = true; auto ws = wb.create_sheet(); ws.enable_x14ac(); page_margins margins; margins.set_left(0.7); margins.set_right(0.7); margins.set_top(0.75); margins.set_bottom(0.75); margins.set_header(0.3); margins.set_footer(0.3); ws.set_page_margins(margins); ws.d_->has_dimension_ = true; ws.d_->has_format_properties_ = true; ws.d_->has_view_ = true; auto default_border = border().side(border_side::bottom, border::border_property()) .side(border_side::top, border::border_property()) .side(border_side::start, border::border_property()) .side(border_side::end, border::border_property()) .side(border_side::diagonal, border::border_property()); wb.d_->stylesheet_.borders.push_back(default_border); auto default_fill = fill(pattern_fill().type(pattern_fill_type::none)); wb.d_->stylesheet_.fills.push_back(default_fill); auto gray125_fill = pattern_fill().type(pattern_fill_type::gray125); wb.d_->stylesheet_.fills.push_back(gray125_fill); auto default_font = font() .name("Calibri") .size(12) .scheme("minor") .family(2) .color(theme_color(1)); wb.d_->stylesheet_.fonts.push_back(default_font); wb.create_style("Normal").builtin_id(0) .border(default_border, false) .fill(default_fill, false) .font(default_font, false) .number_format(xlnt::number_format::general(), false); wb.create_format() .border(default_border, false) .fill(default_fill, false) .font(default_font, false) .number_format(xlnt::number_format::general(), false) .style("Normal"); wb.set_theme(theme()); return wb; } workbook workbook::empty_libre_office() { auto impl = new detail::workbook_impl(); 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_override_type(path("docProps/core.xml"), "application/vnd.openxmlformats-package.core-properties+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); wb.d_->manifest_.register_override_type(path("_rels/.rels"), "application/vnd.openxmlformats-package.relationships+xml"); wb.d_->manifest_.register_override_type(path("xl/_rels/workbook.xml.rels"), "application/vnd.openxmlformats-package.relationships+xml"); std::string title("Sheet1"); wb.d_->worksheets_.push_back(detail::worksheet_impl(&wb, 1, title)); wb.d_->manifest_.register_override_type(path("xl/worksheets/sheet1.xml"), "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"); auto ws_rel = wb.d_->manifest_.register_relationship(uri("xl/workbook.xml"), relationship::type::worksheet, uri("worksheets/sheet1.xml"), target_mode::internal); wb.d_->sheet_title_rel_id_map_[title] = ws_rel; auto ws = wb.get_sheet_by_index(0); ws.d_->has_format_properties_ = true; ws.d_->has_view_ = true; ws.d_->has_dimension_ = true; page_margins margins; margins.set_left(0.7875); margins.set_right(0.7875); margins.set_top(1.05277777777778); margins.set_bottom(1.05277777777778); margins.set_header(0.7875); margins.set_footer(0.7875); ws.set_page_margins(margins); ws.set_page_setup(page_setup()); ws.get_header_footer().get_center_header().set_font_name("&C&\"Times New Roman\"&12&A"); ws.get_header_footer().get_center_footer().set_font_name("&C&\"Times New Roman\"&12Page &B"); ws.add_column_properties(1, column_properties()); auto default_alignment = xlnt::alignment() .horizontal(horizontal_alignment::general) .vertical(vertical_alignment::bottom) .rotation(0) .wrap(false) .indent(0) .shrink(false); wb.d_->stylesheet_.alignments.push_back(default_alignment); auto default_border = border().side(border_side::bottom, border::border_property()) .side(border_side::top, border::border_property()) .side(border_side::start, border::border_property()) .side(border_side::end, border::border_property()) .side(border_side::diagonal, border::border_property()) .diagonal(diagonal_direction::neither); wb.d_->stylesheet_.borders.push_back(default_border); auto default_fill = xlnt::fill(xlnt::pattern_fill().type(pattern_fill_type::none)); wb.d_->stylesheet_.fills.push_back(default_fill); auto gray125_fill = xlnt::fill(xlnt::pattern_fill().type(pattern_fill_type::gray125)); wb.d_->stylesheet_.fills.push_back(gray125_fill); auto default_font = font().name("Arial").size(10).family(2); wb.d_->stylesheet_.fonts.push_back(default_font); auto second_font = font().name("Arial").size(10).family(0); wb.d_->stylesheet_.fonts.push_back(second_font); auto default_number_format = xlnt::number_format(); default_number_format.set_format_string("General"); default_number_format.set_id(164); wb.d_->stylesheet_.number_formats.push_back(default_number_format); auto default_protection = xlnt::protection() .locked(true) .hidden(false); wb.d_->stylesheet_.protections.push_back(default_protection); wb.create_style("Normal").builtin_id(0).custom(false) .alignment(default_alignment, false) .border(default_border, true) .fill(default_fill, true) .font(default_font, true) .number_format(default_number_format, false) .protection(default_protection, false); wb.create_style("Comma").builtin_id(3).custom(false) .alignment(default_alignment, false) .border(default_border, true) .fill(default_fill, true) .font(second_font, true) .number_format(number_format::from_builtin_id(43), false) .protection(default_protection, false); wb.create_style("Comma [0]").builtin_id(6).custom(false) .alignment(default_alignment, false) .border(default_border, true) .fill(default_fill, true) .font(second_font, true) .number_format(number_format::from_builtin_id(41), false) .protection(default_protection, false); wb.create_style("Currency").builtin_id(4).custom(false) .alignment(default_alignment, false) .border(default_border, true) .fill(default_fill, true) .font(second_font, true) .number_format(number_format::from_builtin_id(44), false) .protection(default_protection, false); wb.create_style("Currency [0]").builtin_id(7).custom(false) .alignment(default_alignment, false) .border(default_border, true) .fill(default_fill, true) .font(second_font, true) .number_format(number_format::from_builtin_id(42), false) .protection(default_protection, false); wb.create_style("Percent").builtin_id(5).custom(false) .alignment(default_alignment, false) .border(default_border, true) .fill(default_fill, false) .font(second_font, true) .number_format(number_format::percentage(), false) .protection(default_protection, false); wb.create_format() .number_format(default_number_format, true) .alignment(default_alignment, true) .protection(default_protection, true) .style("Normal"); wb.d_->has_file_version_ = true; wb.d_->file_version_.app_name = "Calc"; wb.d_->has_properties_ = true; wb.d_->has_view_ = true; wb.d_->has_calculation_properties_ = true; wb.d_->application_ = "LibreOffice/5.1.4.2$Windows_x86 LibreOffice_project/f99d75f39f1c57ebdd7ffc5f42867c12031db97a"; wb.d_->short_bools_ = false; return wb; } workbook workbook::empty_numbers() { auto impl = new detail::workbook_impl(); workbook wb(impl); return wb; } workbook::workbook() { auto wb_template = empty_excel(); swap(*this, wb_template); } workbook::workbook(detail::workbook_impl *impl) : d_(impl) { if (impl != nullptr) { d_->stylesheet_.parent = this; } } void workbook::register_app_properties_in_manifest() { auto wb_rel = get_manifest().get_relationship(path("/"), relationship_type::office_document); if (!get_manifest().has_relationship(wb_rel.get_target().get_path(), relationship_type::extended_properties)) { get_manifest().register_override_type(path("/docProps/app.xml"), "application/vnd.openxmlformats-officedocument.extended-properties+xml"); get_manifest().register_relationship(uri("/"), relationship::type::extended_properties, uri("docProps/app.xml"), target_mode::internal); } } void workbook::register_core_properties_in_manifest() { auto wb_rel = get_manifest().get_relationship(path("/"), relationship_type::office_document); if (!get_manifest().has_relationship(wb_rel.get_target().get_path(), relationship_type::core_properties)) { get_manifest().register_override_type(path("/docProps/core.xml"), "application/vnd.openxmlformats-package.core-properties+xml"); get_manifest().register_relationship(uri("/"), relationship::type::core_properties, uri("docProps/core.xml"), target_mode::internal); } } void workbook::register_shared_string_table_in_manifest() { auto wb_rel = get_manifest().get_relationship(path("/"), relationship_type::office_document); if (!get_manifest().has_relationship(wb_rel.get_target().get_path(), relationship_type::shared_string_table)) { get_manifest().register_override_type(constants::part_shared_strings(), "application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"); get_manifest().register_relationship(wb_rel.get_target(), relationship::type::shared_string_table, uri("sharedStrings.xml"), target_mode::internal); } } void workbook::register_stylesheet_in_manifest() { auto wb_rel = get_manifest().get_relationship(path("/"), relationship_type::office_document); if (!get_manifest().has_relationship(wb_rel.get_target().get_path(), relationship_type::styles)) { get_manifest().register_override_type(constants::part_styles(), "application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"); get_manifest().register_relationship(wb_rel.get_target(), relationship::type::styles, uri("styles.xml"), target_mode::internal); } } void workbook::register_theme_in_manifest() { auto wb_rel = get_manifest().get_relationship(path("/"), relationship_type::office_document); if (!get_manifest().has_relationship(wb_rel.get_target().get_path(), relationship_type::theme)) { get_manifest().register_override_type(constants::part_theme(), "application/vnd.openxmlformats-officedocument.theme+xml"); get_manifest().register_relationship(wb_rel.get_target(), relationship::type::theme, uri("theme/theme1.xml"), target_mode::internal); } } void workbook::register_comments_in_manifest(worksheet ws) { auto wb_rel = get_manifest().get_relationship(path("/"), relationship_type::office_document); auto ws_rel = get_manifest().get_relationship(wb_rel.get_target().get_path(), d_->sheet_title_rel_id_map_.at(ws.get_title())); path ws_path(ws_rel.get_source().get_path().parent().append(ws_rel.get_target().get_path())); if (!get_manifest().has_relationship(ws_path, relationship_type::vml_drawing)) { std::size_t file_number = 1; path filename("vmlDrawing1.vml"); while (true) { bool filename_exists = false; for (auto current_ws_rel : get_manifest().get_relationships(wb_rel.get_target().get_path(), xlnt::relationship_type::worksheet)) { path current_ws_path(current_ws_rel.get_source().get_path().parent().append(current_ws_rel.get_target().get_path())); if (!get_manifest().has_relationship(current_ws_path, xlnt::relationship_type::vml_drawing)) break; for (auto current_ws_child_rel : get_manifest().get_relationships(current_ws_path, xlnt::relationship_type::vml_drawing)) { if (current_ws_child_rel.get_target().get_path() == path("../drawings").append(filename)) { filename_exists = true; break; } } if (filename_exists) { break; } } if (!filename_exists) break; file_number++; filename = path("vmlDrawing" + std::to_string(file_number) + ".vml"); } get_manifest().register_default_type("vml", "application/vnd.openxmlformats-officedocument.vmlDrawing"); const path relative_path(path("../drawings").append(filename)); get_manifest().register_relationship(uri(ws_path.string()), relationship::type::vml_drawing, uri(relative_path.string()), target_mode::internal); } if (!get_manifest().has_relationship(ws_path, relationship_type::comments)) { std::size_t file_number = 1; path filename("comments1.xml"); while (true) { if (!get_manifest().has_override_type(constants::package_xl().append(filename))) break; file_number++; filename = path("comments" + std::to_string(file_number) + ".xml"); } const path absolute_path(constants::package_xl().append(filename)); get_manifest().register_override_type(absolute_path, "application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml"); const path relative_path(path("..").append(filename)); get_manifest().register_relationship(uri(ws_path.string()), relationship::type::comments, uri(relative_path.string()), target_mode::internal); } } const worksheet workbook::get_sheet_by_title(const std::string &title) const { for (auto &impl : d_->worksheets_) { if (impl.title_ == title) { return worksheet(&impl); } } throw key_not_found(); } worksheet workbook::get_sheet_by_title(const std::string &title) { for (auto &impl : d_->worksheets_) { if (impl.title_ == title) { return worksheet(&impl); } } throw key_not_found(); } worksheet workbook::get_sheet_by_index(std::size_t index) { 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 { auto iter = d_->worksheets_.begin(); for (std::size_t i = 0; i < index; ++i, ++iter) { } return worksheet(&*iter); } 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(); } worksheet workbook::get_active_sheet() { return get_sheet_by_index(d_->active_sheet_index_); } bool workbook::has_named_range(const std::string &name) const { for (auto worksheet : *this) { if (worksheet.has_named_range(name)) { return true; } } return false; } worksheet workbook::create_sheet() { std::string title = "Sheet1"; int index = 1; while (contains(title)) { title = "Sheet" + std::to_string(++index); } 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)); auto workbook_rel = d_->manifest_.get_relationship(path("/"), relationship::type::office_document); uri relative_sheet_uri(path("worksheets").append(sheet_filename).string()); auto absolute_sheet_path = path("/xl").append(relative_sheet_uri.get_path()); d_->manifest_.register_override_type(absolute_sheet_path, "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"); auto ws_rel = d_->manifest_.register_relationship(workbook_rel.get_target(), relationship::type::worksheet, relative_sheet_uri, target_mode::internal); d_->sheet_title_rel_id_map_[title] = ws_rel; return worksheet(&d_->worksheets_.back()); } void workbook::copy_sheet(worksheet to_copy) { if(to_copy.d_->parent_ != this) throw invalid_parameter(); detail::worksheet_impl impl(*to_copy.d_); auto new_sheet = create_sheet(); impl.title_ = new_sheet.get_title(); *new_sheet.d_ = impl; } void workbook::copy_sheet(worksheet to_copy, std::size_t index) { copy_sheet(to_copy); if (index != d_->worksheets_.size() - 1) { auto iter = d_->worksheets_.begin(); for (std::size_t i = 0; i < index; ++i, ++iter) { } d_->worksheets_.insert(iter, d_->worksheets_.back()); d_->worksheets_.pop_back(); } } std::size_t workbook::get_index(worksheet ws) { auto match = std::find(begin(), end(), ws); if (match == end()) { throw invalid_parameter(); } return static_cast(std::distance(begin(), match)); } 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) { get_sheet_by_title(range_owner.get_title()).create_named_range(name, reference); } void workbook::remove_named_range(const std::string &name) { for (auto ws : *this) { if (ws.has_named_range(name)) { ws.remove_named_range(name); return; } } throw key_not_found(); } range workbook::get_named_range(const std::string &name) { for (auto ws : *this) { if (ws.has_named_range(name)) { return ws.get_named_range(name); } } throw key_not_found(); } void workbook::load(std::istream &stream) { clear(); detail::xlsx_consumer consumer(*this); consumer.read(stream); } void workbook::load(const std::vector &data) { xlnt::detail::vector_istreambuf data_buffer(data); std::istream data_stream(&data_buffer); load(data_stream); } void workbook::load(const std::string &filename) { return load(path(filename)); } void workbook::load(const path &filename) { std::ifstream file_stream; open_stream(file_stream, filename.string()); load(file_stream); } void workbook::load(const std::string &filename, const std::string &password) { return load(path(filename), password); } void workbook::load(const path &filename, const std::string &password) { std::ifstream file_stream; open_stream(file_stream, filename.string()); return load(file_stream, password); } void workbook::load(const std::vector &data, const std::string &password) { xlnt::detail::vector_istreambuf data_buffer(data); std::istream data_stream(&data_buffer); load(data_stream, password); } void workbook::load(std::istream &stream, const std::string &password) { clear(); detail::xlsx_consumer consumer(*this); consumer.read(stream, password); } void workbook::save(std::vector &data) const { xlnt::detail::vector_ostreambuf data_buffer(data); std::ostream data_stream(&data_buffer); save(data_stream); } void workbook::save(const std::string &filename) const { return save(path(filename)); } void workbook::save(const path &filename) const { std::ofstream file_stream; open_stream(file_stream, filename.string()); save(file_stream); } void workbook::save(std::ostream &stream) const { detail::xlsx_producer producer(*this); producer.write(stream); } #ifdef WIN32 void workbook::save(const std::wstring &filename) { std::ofstream file_stream; open_stream(file_stream, filename); save(file_stream); } void workbook::save(const std::wstring &filename, const std::string &password) { std::ofstream file_stream; open_stream(file_stream, filename); save(file_stream, password); } void workbook::load(const std::wstring &filename) { std::ifstream file_stream; open_stream(file_stream, filename); load(file_stream); } void workbook::load(const std::wstring &filename, const std::string &password) { std::ifstream file_stream; open_stream(file_stream, filename); load(file_stream); } #endif void workbook::set_guess_types(bool guess) { d_->guess_types_ = guess; } bool workbook::get_guess_types() const { return d_->guess_types_; } void workbook::remove_sheet(worksheet ws) { auto match_iter = std::find_if(d_->worksheets_.begin(), d_->worksheets_.end(), [=](detail::worksheet_impl &comp) { return &comp == ws.d_; }); if (match_iter == d_->worksheets_.end()) { throw invalid_parameter(); } auto ws_rel_id = d_->sheet_title_rel_id_map_.at(ws.get_title()); auto wb_rel = d_->manifest_.get_relationship(xlnt::path("/"), xlnt::relationship_type::office_document); auto ws_rel = d_->manifest_.get_relationship(wb_rel.get_target().get_path(), ws_rel_id); d_->manifest_.unregister_override_type(ws_rel.get_target().get_path()); d_->manifest_.unregister_relationship(wb_rel.get_target(), ws_rel_id);; d_->sheet_title_rel_id_map_.erase(ws.get_title()); d_->worksheets_.erase(match_iter); } worksheet workbook::create_sheet(std::size_t index) { create_sheet(); if (index != d_->worksheets_.size() - 1) { auto iter = d_->worksheets_.begin(); for (std::size_t i = 0; i < index; ++i, ++iter) { } d_->worksheets_.insert(iter, d_->worksheets_.back()); d_->worksheets_.pop_back(); } return get_sheet_by_index(index); } 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)); auto workbook_rel = d_->manifest_.get_relationship(path("/"), relationship::type::office_document); auto sheet_absoulute_path = workbook_rel.get_target().get_path().parent().append(rel.get_target().get_path()); d_->manifest_.register_override_type(sheet_absoulute_path, "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"); auto ws_rel = d_->manifest_.register_relationship(workbook_rel.get_target(), relationship::type::worksheet, rel.get_target(), target_mode::internal); d_->sheet_title_rel_id_map_[title] = ws_rel; return worksheet(&d_->worksheets_.back()); } workbook::iterator workbook::begin() { return iterator(*this, 0); } workbook::iterator workbook::end() { return iterator(*this, d_->worksheets_.size()); } 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()); } std::vector workbook::get_sheet_titles() const { std::vector names; for (auto ws : *this) { names.push_back(ws.get_title()); } return names; } std::size_t workbook::get_sheet_count() const { return d_->worksheets_.size(); } worksheet workbook::operator[](const std::string &name) { return get_sheet_by_title(name); } worksheet workbook::operator[](std::size_t index) { return get_sheet_by_index(index); } void workbook::clear() { *d_ = detail::workbook_impl(); d_->stylesheet_.clear(); } bool workbook::operator==(const workbook &rhs) const { return d_.get() == rhs.d_.get(); } bool workbook::operator!=(const workbook &rhs) const { return d_.get() != rhs.d_.get(); } void swap(workbook &left, workbook &right) { using std::swap; swap(left.d_, right.d_); if (left.d_ != nullptr) { for (auto ws : left) { ws.set_parent(left); } left.d_->stylesheet_.parent = &left; } if (right.d_ != nullptr) { for (auto ws : right) { ws.set_parent(right); } right.d_->stylesheet_.parent = &right; } } workbook &workbook::operator=(workbook other) { swap(*this, other); d_->stylesheet_.parent = this; return *this; } workbook::workbook(workbook &&other) : workbook(nullptr) { swap(*this, other); } workbook::workbook(const workbook &other) : workbook() { *d_.get() = *other.d_.get(); for (auto ws : *this) { ws.set_parent(*this); } d_->stylesheet_.parent = this; } workbook::~workbook() { } bool workbook::get_data_only() const { return d_->data_only_; } void workbook::set_data_only(bool data_only) { d_->data_only_ = data_only; } bool workbook::has_theme() const { return d_->has_theme_; } const theme &workbook::get_theme() const { return d_->theme_; } void workbook::set_theme(const theme &value) { register_theme_in_manifest(); d_->has_theme_ = true; d_->theme_ = value; } std::vector workbook::get_named_ranges() const { std::vector named_ranges; for (auto ws : *this) { for (auto &ws_named_range : ws.d_->named_ranges_) { named_ranges.push_back(ws_named_range.second); } } return named_ranges; } format workbook::create_format() { register_stylesheet_in_manifest(); return d_->stylesheet_.create_format(); } bool workbook::has_style(const std::string &name) const { return d_->stylesheet_.has_style(name); } void workbook::clear_styles() { apply_to_cells([](cell c) { c.clear_style(); }); } void workbook::clear_formats() { apply_to_cells([](cell c) { c.clear_format(); }); } void workbook::apply_to_cells(std::function f) { for (auto ws : *this) { for (auto row = ws.get_lowest_row(); row <= ws.get_highest_row(); ++row) { for (auto column = ws.get_lowest_column(); column <= ws.get_highest_column(); ++column) { if (ws.has_cell(cell_reference(column, row))) { f.operator()(ws.get_cell(cell_reference(column, row))); } } } } } format workbook::get_format(std::size_t format_index) { return d_->stylesheet_.get_format(format_index); } const format workbook::get_format(std::size_t format_index) const { return d_->stylesheet_.get_format(format_index); } manifest &workbook::get_manifest() { return d_->manifest_; } const manifest &workbook::get_manifest() const { return d_->manifest_; } std::vector &workbook::get_shared_strings() { return d_->shared_strings_; } const std::vector &workbook::get_shared_strings() const { return d_->shared_strings_; } void workbook::add_shared_string(const formatted_text &shared, bool allow_duplicates) { register_shared_string_table_in_manifest(); if (!allow_duplicates) { //TODO: inefficient, use a set or something? for (auto &s : d_->shared_strings_) { if (s == shared) return; } } d_->shared_strings_.push_back(shared); } 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 &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 &workbook::get_thumbnail() const { return d_->thumbnail_; } style workbook::create_style(const std::string &name) { return d_->stylesheet_.create_style(name); } style workbook::style(const std::string &name) { return d_->stylesheet_.style(name); } const style workbook::style(const std::string &name) const { return d_->stylesheet_.style(name); } 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; } detail::workbook_impl &workbook::impl() { return *d_; } const detail::workbook_impl &workbook::impl() const { return *d_; } bool workbook::has_view() const { return d_->has_view_; } workbook_view workbook::get_view() const { if (!d_->has_view_) { throw invalid_attribute(); } return d_->view_; } void workbook::set_view(const workbook_view &view) { d_->has_view_ = true; d_->view_ = view; } bool workbook::has_code_name() const { return d_->has_code_name_; } std::string workbook::get_code_name() const { if (!d_->has_code_name_) { throw invalid_attribute(); } return d_->code_name_; } void workbook::set_code_name(const std::string &code_name) { d_->code_name_ = code_name; d_->has_code_name_ = true; } bool workbook::x15_enabled() const { return d_->x15_; } void workbook::enable_x15() { d_->x15_ = true; } void workbook::disable_x15() { d_->x15_ = false; } bool workbook::has_absolute_path() const { return d_->has_absolute_path_; } path workbook::get_absolute_path() const { return d_->absolute_path_; } void workbook::set_absolute_path(const path &absolute_path) { d_->absolute_path_ = absolute_path; d_->has_absolute_path_ = true; } void workbook::clear_absolute_path() { d_->absolute_path_ = path(); d_->has_absolute_path_ = false; } bool workbook::has_properties() const { return d_->has_properties_; } bool workbook::has_file_version() const { return d_->has_file_version_; } std::string workbook::get_app_name() const { return d_->file_version_.app_name; } std::size_t workbook::get_last_edited() const { return d_->file_version_.last_edited; } std::size_t workbook::get_lowest_edited() const { return d_->file_version_.lowest_edited; } std::size_t workbook::get_rup_build() const { return d_->file_version_.rup_build; } bool workbook::has_calculation_properties() const { return d_->has_calculation_properties_; } bool workbook::has_arch_id() const { return d_->has_arch_id_; } } // namespace xlnt