2017-06-12 22:34:35 +08:00
|
|
|
// Copyright (c) 2014-2017 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
|
|
|
|
|
2017-06-16 06:10:27 +08:00
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
#include <detail/serialization/vector_streambuf.hpp>
|
2017-06-15 03:43:25 +08:00
|
|
|
#include <detail/serialization/xlsx_consumer.hpp>
|
2017-06-16 06:10:27 +08:00
|
|
|
#include <xlnt/cell/cell.hpp>
|
|
|
|
#include <xlnt/utils/optional.hpp>
|
2017-06-12 22:34:35 +08:00
|
|
|
#include <xlnt/workbook/streaming_workbook_reader.hpp>
|
2017-06-16 06:10:27 +08:00
|
|
|
#include <xlnt/workbook/workbook.hpp>
|
|
|
|
#include <xlnt/worksheet/worksheet.hpp>
|
2017-06-12 22:34:35 +08:00
|
|
|
|
|
|
|
namespace xlnt {
|
|
|
|
|
|
|
|
streaming_workbook_reader::~streaming_workbook_reader()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
2017-06-15 03:43:25 +08:00
|
|
|
void streaming_workbook_reader::close()
|
2017-06-12 22:34:35 +08:00
|
|
|
{
|
|
|
|
if (consumer_)
|
|
|
|
{
|
|
|
|
consumer_.reset(nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-16 06:10:27 +08:00
|
|
|
cell streaming_workbook_reader::read_cell()
|
2017-06-12 22:34:35 +08:00
|
|
|
{
|
2017-06-16 06:10:27 +08:00
|
|
|
return consumer_->read_cell();
|
2017-06-12 22:34:35 +08:00
|
|
|
}
|
|
|
|
|
2017-06-16 06:10:27 +08:00
|
|
|
std::string streaming_workbook_reader::begin_worksheet()
|
2017-06-12 22:34:35 +08:00
|
|
|
{
|
2017-06-16 06:10:27 +08:00
|
|
|
return consumer_->begin_worksheet();
|
2017-06-12 22:34:35 +08:00
|
|
|
}
|
|
|
|
|
2017-06-16 06:10:27 +08:00
|
|
|
worksheet streaming_workbook_reader::end_worksheet()
|
2017-06-12 22:34:35 +08:00
|
|
|
{
|
2017-06-16 06:10:27 +08:00
|
|
|
return consumer_->end_worksheet();
|
2017-06-12 22:34:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void streaming_workbook_reader::open(const std::vector<std::uint8_t> &data)
|
|
|
|
{
|
2017-06-16 06:10:27 +08:00
|
|
|
detail::vector_istreambuf buffer(data);
|
|
|
|
std::istream buffer_stream(&buffer);
|
|
|
|
open(buffer_stream);
|
2017-06-12 22:34:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void streaming_workbook_reader::open(const std::string &filename)
|
|
|
|
{
|
2017-06-16 06:10:27 +08:00
|
|
|
std::ifstream file_stream(filename, std::ios::binary);
|
|
|
|
open(file_stream);
|
2017-06-12 22:34:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
void streaming_workbook_reader::open(const std::wstring &filename)
|
|
|
|
{
|
2017-06-16 06:10:27 +08:00
|
|
|
std::ifstream file_stream(filename, std::ios::binary);
|
|
|
|
open(file_stream);
|
2017-06-12 22:34:35 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void streaming_workbook_reader::open(const xlnt::path &filename)
|
|
|
|
{
|
2017-06-16 06:10:27 +08:00
|
|
|
open(filename.string());
|
2017-06-12 22:34:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void streaming_workbook_reader::open(std::istream &stream)
|
|
|
|
{
|
2017-06-16 06:10:27 +08:00
|
|
|
workbook_.reset(new workbook());
|
|
|
|
consumer_.reset(new detail::xlsx_consumer(*workbook_));
|
|
|
|
consumer_->open(stream);
|
2017-06-12 22:34:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace xlnt
|