xlnt/source/s11n/excel_serializer.cpp

230 lines
7.5 KiB
C++
Raw Normal View History

2015-10-30 01:46:56 +08:00
#include <xlnt/s11n/excel_serializer.hpp>
2015-10-30 07:37:07 +08:00
#include <xlnt/common/exceptions.hpp>
2015-10-30 01:46:56 +08:00
#include <xlnt/s11n/manifest_serializer.hpp>
2015-10-30 07:37:07 +08:00
#include <xlnt/s11n/relationship_serializer.hpp>
#include <xlnt/s11n/shared_strings_serializer.hpp>
#include <xlnt/s11n/style_serializer.hpp>
#include <xlnt/s11n/theme_serializer.hpp>
#include <xlnt/s11n/workbook_serializer.hpp>
#include <xlnt/s11n/worksheet_serializer.hpp>
#include <xlnt/s11n/xml_document.hpp>
2015-10-31 06:54:04 +08:00
#include <xlnt/s11n/xml_node.hpp>
2015-10-30 07:37:07 +08:00
#include <xlnt/s11n/xml_serializer.hpp>
#include <xlnt/workbook/document_properties.hpp>
2015-10-30 01:46:56 +08:00
#include <xlnt/workbook/manifest.hpp>
2015-10-21 11:30:10 +08:00
#include <xlnt/workbook/workbook.hpp>
2015-10-30 07:37:07 +08:00
#include <xlnt/worksheet/worksheet.hpp>
#include <detail/constants.hpp>
2015-10-21 11:30:10 +08:00
namespace {
std::string::size_type find_string_in_string(const std::string &string, const std::string &substring)
{
std::string::size_type possible_match_index = string.find(substring.at(0));
while(possible_match_index != std::string::npos)
{
if(string.substr(possible_match_index, substring.size()) == substring)
{
return possible_match_index;
}
possible_match_index = string.find(substring.at(0), possible_match_index + 1);
}
return possible_match_index;
}
2015-10-30 07:37:07 +08:00
bool load_workbook(xlnt::zip_file &archive, bool guess_types, bool data_only, xlnt::workbook &wb)
2015-10-24 02:42:36 +08:00
{
wb.set_guess_types(guess_types);
wb.set_data_only(data_only);
2015-10-30 07:37:07 +08:00
xlnt::manifest_serializer ms(wb.get_manifest());
ms.read_manifest(xlnt::xml_serializer::deserialize(archive.read(xlnt::constants::ArcContentTypes)));
2015-10-24 02:42:36 +08:00
2015-10-31 06:54:04 +08:00
if(ms.determine_document_type() != "excel")
2015-10-24 02:42:36 +08:00
{
throw xlnt::invalid_file_exception("");
}
wb.clear();
2015-10-31 06:54:04 +08:00
auto workbook_relationships = xlnt::relationship_serializer::read_relationships(archive, xlnt::constants::ArcWorkbook);
2015-10-24 02:42:36 +08:00
2015-10-31 06:54:04 +08:00
for(const auto &relationship : workbook_relationships)
2015-10-24 02:42:36 +08:00
{
wb.create_relationship(relationship.get_id(), relationship.get_target_uri(), relationship.get_type());
}
2015-10-30 07:37:07 +08:00
auto xml = xlnt::xml_serializer::deserialize(archive.read(xlnt::constants::ArcWorkbook));
2015-10-24 02:42:36 +08:00
2015-10-31 06:54:04 +08:00
auto root_node = xml.get_child("workbook");
2015-10-24 02:42:36 +08:00
2015-10-31 06:54:04 +08:00
auto workbook_pr_node = root_node.get_child("workbookPr");
2015-10-30 07:37:07 +08:00
wb.get_properties().excel_base_date = (workbook_pr_node.has_attribute("date1904") && workbook_pr_node.get_attribute("date1904") != "0") ? xlnt::calendar::mac_1904 : xlnt::calendar::windows_1900;
2015-10-24 02:42:36 +08:00
2015-10-30 07:37:07 +08:00
xlnt::shared_strings_serializer shared_strings_serializer_;
std::vector<std::string> shared_strings;
2015-10-31 06:54:04 +08:00
shared_strings_serializer_.read_shared_strings(xlnt::xml_serializer::deserialize(archive.read(xlnt::constants::ArcSharedString)), shared_strings);
for(auto shared_string : shared_strings)
{
wb.add_shared_string(shared_string);
}
2015-10-24 02:42:36 +08:00
2015-10-30 07:37:07 +08:00
xlnt::style_serializer style_reader_(wb);
style_reader_.read_stylesheet(xlnt::xml_serializer::deserialize(archive.read(xlnt::constants::ArcStyles)));
2015-10-29 03:08:54 +08:00
2015-10-31 06:54:04 +08:00
auto sheets_node = root_node.get_child("sheets");
2015-10-24 02:42:36 +08:00
2015-10-30 07:37:07 +08:00
for(auto sheet_node : sheets_node.get_children())
2015-10-24 02:42:36 +08:00
{
2015-10-30 07:37:07 +08:00
auto rel = wb.get_relationship(sheet_node.get_attribute("r:id"));
auto ws = wb.create_sheet(sheet_node.get_attribute("name"), rel);
2015-10-31 06:54:04 +08:00
auto ws_filename = "xl/" + rel.get_target_uri();
2015-10-24 02:42:36 +08:00
2015-10-30 07:37:07 +08:00
xlnt::worksheet_serializer worksheet_serializer(ws);
2015-10-31 06:54:04 +08:00
worksheet_serializer.read_worksheet(xlnt::xml_serializer::deserialize(archive.read(ws_filename)));
2015-10-24 02:42:36 +08:00
}
2015-10-30 07:37:07 +08:00
return true;
2015-10-24 02:42:36 +08:00
}
2015-10-21 11:30:10 +08:00
} // namespace
namespace xlnt {
2015-10-30 07:37:07 +08:00
const std::string excel_serializer::central_directory_signature()
2015-10-21 11:30:10 +08:00
{
return "\x50\x4b\x05\x06";
}
2015-10-30 07:37:07 +08:00
std::string excel_serializer::repair_central_directory(const std::string &original)
2015-10-21 11:30:10 +08:00
{
2015-10-30 07:37:07 +08:00
auto pos = find_string_in_string(original, central_directory_signature());
2015-10-21 11:30:10 +08:00
if(pos != std::string::npos)
{
return original.substr(0, pos + 22);
}
return original;
}
2015-10-30 07:37:07 +08:00
bool excel_serializer::load_stream_workbook(std::istream &stream, bool guess_types, bool data_only)
2015-10-21 11:30:10 +08:00
{
2015-10-24 02:42:36 +08:00
std::vector<std::uint8_t> bytes((std::istream_iterator<char>(stream)),
std::istream_iterator<char>());
2015-10-30 07:37:07 +08:00
return load_virtual_workbook(bytes, guess_types, data_only);
2015-10-21 11:30:10 +08:00
}
2015-10-30 07:37:07 +08:00
bool excel_serializer::load_workbook(const std::string &filename, bool guess_types, bool data_only)
2015-10-21 11:30:10 +08:00
{
2015-10-24 02:42:36 +08:00
try
{
2015-10-30 07:37:07 +08:00
archive_.load(filename);
2015-10-24 02:42:36 +08:00
}
catch(std::runtime_error)
{
throw invalid_file_exception(filename);
}
2015-10-31 06:54:04 +08:00
return ::load_workbook(archive_, guess_types, data_only, workbook_);
2015-10-24 02:42:36 +08:00
}
2015-10-21 11:30:10 +08:00
2015-10-30 07:37:07 +08:00
bool excel_serializer::load_virtual_workbook(const std::vector<std::uint8_t> &bytes, bool guess_types, bool data_only)
2015-10-24 02:42:36 +08:00
{
2015-10-30 07:37:07 +08:00
archive_.load(bytes);
2015-10-21 11:30:10 +08:00
2015-10-31 06:54:04 +08:00
return ::load_workbook(archive_, guess_types, data_only, workbook_);
2015-10-21 11:30:10 +08:00
}
2015-10-31 06:54:04 +08:00
excel_serializer::excel_serializer(workbook &wb) : workbook_(wb)
2015-10-30 01:46:56 +08:00
{
}
2015-10-31 06:54:04 +08:00
void excel_serializer::write_data(bool /*as_template*/)
2015-10-30 01:46:56 +08:00
{
2015-10-30 07:37:07 +08:00
relationship_serializer relationship_serializer_;
2015-10-30 01:46:56 +08:00
2015-10-31 06:54:04 +08:00
relationship_serializer_.write_relationships(workbook_.get_root_relationships(), "", archive_);
relationship_serializer_.write_relationships(workbook_.get_relationships(), constants::ArcWorkbook, archive_);
2015-10-30 01:46:56 +08:00
2015-10-30 07:37:07 +08:00
xml_document properties_app_xml;
2015-10-31 06:54:04 +08:00
workbook_serializer workbook_serializer_(workbook_);
2015-10-30 07:37:07 +08:00
archive_.writestr(constants::ArcApp, xml_serializer::serialize(workbook_serializer_.write_properties_app()));
archive_.writestr(constants::ArcCore, xml_serializer::serialize(workbook_serializer_.write_properties_core()));
2015-10-30 01:46:56 +08:00
2015-10-30 07:37:07 +08:00
theme_serializer theme_serializer_;
2015-10-31 06:54:04 +08:00
archive_.writestr(constants::ArcTheme, theme_serializer_.write_theme(workbook_.get_loaded_theme()).to_string());
xlnt::shared_strings_serializer shared_strings_serializer_;
archive_.writestr(constants::ArcSharedString, xml_serializer::serialize(shared_strings_serializer_.write_shared_strings(workbook_.get_shared_strings())));
2015-10-30 01:46:56 +08:00
2015-10-30 07:37:07 +08:00
archive_.writestr(constants::ArcWorkbook, xml_serializer::serialize(workbook_serializer_.write_workbook()));
2015-10-30 01:46:56 +08:00
2015-10-31 06:54:04 +08:00
style_serializer style_serializer_(workbook_);
archive_.writestr(constants::ArcStyles, style_serializer_.write_stylesheet().to_string());
2015-10-30 01:46:56 +08:00
2015-10-31 06:54:04 +08:00
manifest_serializer manifest_serializer_(workbook_.get_manifest());
archive_.writestr(constants::ArcContentTypes, manifest_serializer_.write_manifest().to_string());
2015-10-30 01:46:56 +08:00
2015-10-30 07:37:07 +08:00
write_worksheets();
2015-10-30 01:46:56 +08:00
}
2015-10-30 07:37:07 +08:00
void excel_serializer::write_worksheets()
2015-10-30 01:46:56 +08:00
{
std::size_t index = 0;
2015-10-31 06:54:04 +08:00
for(auto ws : workbook_)
2015-10-30 01:46:56 +08:00
{
2015-10-31 06:54:04 +08:00
for(auto relationship : workbook_.get_relationships())
2015-10-30 01:46:56 +08:00
{
if(relationship.get_type() == relationship::type::worksheet &&
workbook::index_from_ws_filename(relationship.get_target_uri()) == index)
{
2015-10-30 07:37:07 +08:00
worksheet_serializer serializer_(ws);
2015-10-31 06:54:04 +08:00
std::string ws_filename = "xl/" + relationship.get_target_uri();
archive_.writestr(ws_filename, serializer_.write_worksheet().to_string());
2015-10-30 01:46:56 +08:00
break;
}
}
index++;
}
}
2015-10-30 07:37:07 +08:00
void excel_serializer::write_external_links()
{
}
bool excel_serializer::save_stream_workbook(std::ostream &stream, bool as_template)
2015-10-30 01:46:56 +08:00
{
2015-10-30 07:37:07 +08:00
write_data(as_template);
archive_.save(stream);
2015-10-30 01:46:56 +08:00
2015-10-30 07:37:07 +08:00
return true;
2015-10-30 01:46:56 +08:00
}
2015-10-30 07:37:07 +08:00
bool excel_serializer::save_workbook(const std::string &filename, bool as_template)
2015-10-30 01:46:56 +08:00
{
2015-10-30 07:37:07 +08:00
write_data(as_template);
archive_.save(filename);
2015-10-30 01:46:56 +08:00
return true;
}
2015-10-30 07:37:07 +08:00
bool excel_serializer::save_virtual_workbook(std::vector<std::uint8_t> &bytes, bool as_template)
2015-10-30 01:46:56 +08:00
{
2015-10-30 07:37:07 +08:00
write_data(as_template);
archive_.save(bytes);
2015-10-30 01:46:56 +08:00
2015-10-30 07:37:07 +08:00
return true;
2015-10-30 01:46:56 +08:00
}
2015-10-21 11:30:10 +08:00
} // namespace xlnt