2017-04-22 09:58:40 +08:00
|
|
|
// Copyright (C) 2016-2017 Thomas Fussell
|
|
|
|
// Copyright (C) 2002-2007 Ariya Hidayat (ariya@kde.org).
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions
|
|
|
|
// are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
|
|
// documentation and/or other materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
// NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2017-04-22 07:52:02 +08:00
|
|
|
#include <array>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cstring>
|
2017-04-26 06:14:47 +08:00
|
|
|
#include <iostream>
|
2017-04-28 22:58:55 +08:00
|
|
|
#include <locale>
|
2017-04-22 07:52:02 +08:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-04-24 06:18:35 +08:00
|
|
|
#include <detail/binary.hpp>
|
2017-04-25 10:16:03 +08:00
|
|
|
#include <detail/unicode.hpp>
|
2017-04-22 07:52:02 +08:00
|
|
|
#include <detail/cryptography/compound_document.hpp>
|
|
|
|
#include <xlnt/utils/exceptions.hpp>
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2017-04-25 04:06:58 +08:00
|
|
|
using namespace xlnt::detail;
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
int compare_keys(const std::string &left, const std::string &right)
|
2017-04-22 07:52:02 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
auto to_lower = [](std::string s)
|
2017-04-23 02:25:27 +08:00
|
|
|
{
|
2017-04-26 06:14:47 +08:00
|
|
|
static const auto locale = std::locale();
|
2017-04-28 22:58:55 +08:00
|
|
|
std::use_facet<std::ctype<char>>(locale).tolower(&s[0], &s[0] + s.size());
|
2017-04-26 06:14:47 +08:00
|
|
|
return s;
|
|
|
|
};
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-26 06:14:47 +08:00
|
|
|
return to_lower(left).compare(to_lower(right));
|
2017-04-24 08:27:16 +08:00
|
|
|
}
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
std::string join_path(const std::vector<std::string> &path)
|
2017-04-25 10:16:03 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
auto joined = std::string();
|
2017-04-27 11:19:28 +08:00
|
|
|
|
|
|
|
for (auto part : path)
|
|
|
|
{
|
|
|
|
joined.append(part);
|
2017-04-28 22:58:55 +08:00
|
|
|
joined.push_back('/');
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return joined;
|
|
|
|
}
|
|
|
|
|
2017-04-26 06:14:47 +08:00
|
|
|
const sector_id FreeSector = -1;
|
2017-04-27 00:02:49 +08:00
|
|
|
const sector_id EndOfChain = -2;
|
|
|
|
const sector_id SATSector = -3;
|
2017-04-28 22:58:55 +08:00
|
|
|
//const sector_id MSATSector = -4;
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-26 06:14:47 +08:00
|
|
|
const directory_id End = -1;
|
|
|
|
|
|
|
|
} // namespace
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-26 06:14:47 +08:00
|
|
|
namespace xlnt {
|
|
|
|
namespace detail {
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
compound_document::compound_document(std::vector<std::uint8_t> &data)
|
|
|
|
: writer_(new binary_writer<byte>(data)),
|
|
|
|
reader_(new binary_reader<byte>(data))
|
2017-04-25 10:16:03 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
header_.msat.fill(FreeSector);
|
|
|
|
writer_->offset(0);
|
|
|
|
writer_->write(header_);
|
|
|
|
|
|
|
|
header_.directory_start = allocate_sector();
|
|
|
|
writer_->offset(0);
|
|
|
|
writer_->write(header_);
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
insert_entry("Root Entry", compound_document_entry::entry_type::RootStorage);
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
compound_document::compound_document(const std::vector<std::uint8_t> &data)
|
2017-04-28 22:58:55 +08:00
|
|
|
: writer_(nullptr),
|
|
|
|
reader_(new binary_reader<byte>(data))
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
header_ = reader_->read<compound_document_header>();
|
|
|
|
|
|
|
|
// read msat
|
|
|
|
auto current = header_.extra_msat_start;
|
|
|
|
|
|
|
|
for (auto i = std::size_t(0); i < header_.num_msat_sectors; ++i)
|
|
|
|
{
|
|
|
|
if (i < 109)
|
|
|
|
{
|
|
|
|
msat_.push_back(header_.msat[i]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto extra_msat_sector = std::vector<sector_id>();
|
|
|
|
auto extra_msat_sector_writer = binary_writer<sector_id>(extra_msat_sector);
|
|
|
|
|
|
|
|
read_sector(current, extra_msat_sector_writer);
|
|
|
|
|
|
|
|
std::copy(extra_msat_sector.begin(),
|
|
|
|
extra_msat_sector.end() - 1,
|
|
|
|
std::back_inserter(msat_));
|
|
|
|
current = extra_msat_sector.back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto sat_sector_id : msat_)
|
|
|
|
{
|
|
|
|
if (sat_sector_id < 0) continue;
|
|
|
|
|
|
|
|
auto sat_sector = std::vector<sector_id>();
|
|
|
|
auto sat_sector_writer = binary_writer<sector_id>(sat_sector);
|
|
|
|
|
|
|
|
read_sector(sat_sector_id, sat_sector_writer);
|
|
|
|
|
|
|
|
std::copy(sat_sector.begin(),
|
|
|
|
sat_sector.end(),
|
|
|
|
std::back_inserter(sat_));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto ssat_sector_id : follow_chain(header_.ssat_start, sat_))
|
|
|
|
{
|
|
|
|
auto ssat_sector = std::vector<sector_id>();
|
|
|
|
auto ssat_sector_writer = binary_writer<sector_id>(ssat_sector);
|
|
|
|
|
|
|
|
read_sector(ssat_sector_id, ssat_sector_writer);
|
|
|
|
|
|
|
|
std::copy(ssat_sector.begin(),
|
|
|
|
ssat_sector.end(),
|
|
|
|
std::back_inserter(ssat_));
|
|
|
|
}
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_initialize_parent_maps();
|
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
compound_document::~compound_document()
|
|
|
|
{
|
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
std::size_t compound_document::sector_size()
|
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
return static_cast<std::size_t>(1) << header_.sector_size_power;
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
std::size_t compound_document::short_sector_size()
|
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
return static_cast<std::size_t>(1) << header_.short_sector_size_power;
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
std::vector<byte> compound_document::read_stream(const std::string &name)
|
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
const auto entry_id = find_entry(name, compound_document_entry::entry_type::UserStream);
|
2017-04-27 11:19:28 +08:00
|
|
|
const auto entry = entry_cache_.at(entry_id);
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
auto stream_data = std::vector<byte>();
|
|
|
|
auto stream_data_writer = binary_writer<byte>(stream_data);
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
if (entry->size < header_.threshold)
|
2017-04-25 10:16:03 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
for (auto sector : follow_chain(entry->start, ssat_))
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
read_short_sector<byte>(sector, stream_data_writer);
|
2017-04-26 06:14:47 +08:00
|
|
|
}
|
2017-04-25 10:16:03 +08:00
|
|
|
}
|
2017-04-27 11:19:28 +08:00
|
|
|
else
|
2017-04-25 10:16:03 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
for (auto sector : follow_chain(entry->start, sat_))
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
read_sector<byte>(sector, stream_data_writer);
|
2017-04-26 06:14:47 +08:00
|
|
|
}
|
2017-04-25 10:16:03 +08:00
|
|
|
}
|
2017-04-27 11:19:28 +08:00
|
|
|
stream_data.resize(entry->size);
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
return stream_data;
|
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
void compound_document::write_stream(const std::string &name, const std::vector<std::uint8_t> &data)
|
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
auto entry_id = contains_entry(name, compound_document_entry::entry_type::UserStream)
|
|
|
|
? find_entry(name, compound_document_entry::entry_type::UserStream)
|
|
|
|
: insert_entry(name, compound_document_entry::entry_type::UserStream);
|
2017-04-27 11:19:28 +08:00
|
|
|
auto entry = entry_cache_.at(entry_id);
|
|
|
|
entry->size = static_cast<std::uint32_t>(data.size());
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
auto stream_data_reader = binary_reader<byte>(data);
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
if (entry->size < header_.threshold)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
|
|
|
const auto num_sectors = data.size() / short_sector_size()
|
|
|
|
+ (data.size() % short_sector_size() ? 1 : 0);
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
auto chain = allocate_short_sectors(num_sectors);
|
|
|
|
entry->start = chain.front();
|
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
for (auto sector : follow_chain(entry->start, ssat_))
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
write_short_sector(stream_data_reader, sector);
|
2017-04-26 06:14:47 +08:00
|
|
|
}
|
|
|
|
}
|
2017-04-27 11:19:28 +08:00
|
|
|
else
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
const auto num_sectors = data.size() / short_sector_size()
|
|
|
|
+ (data.size() % short_sector_size() ? 1 : 0);
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
auto chain = allocate_sectors(num_sectors);
|
|
|
|
entry->start = chain.front();
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
for (auto sector : follow_chain(entry->start, sat_))
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
write_sector(stream_data_reader, sector);
|
2017-04-26 06:14:47 +08:00
|
|
|
}
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
template<typename T>
|
|
|
|
void compound_document::write_sector(binary_reader<T> &reader, sector_id id)
|
|
|
|
{
|
|
|
|
writer_->offset(sector_data_start() + sector_size() * id);
|
|
|
|
writer_->append(reader, std::min(sector_size(), reader.bytes()) / sizeof(T));
|
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
template<typename T>
|
|
|
|
void compound_document::write_short_sector(binary_reader<T> &reader, sector_id id)
|
|
|
|
{
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
template<typename T>
|
2017-04-28 22:58:55 +08:00
|
|
|
void compound_document::read_sector(sector_id id, binary_writer<T> &writer)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
reader_->offset(sector_data_start() + sector_size() * id);
|
|
|
|
writer.append(*reader_, sector_size());
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
template<typename T>
|
2017-04-28 22:58:55 +08:00
|
|
|
void compound_document::read_short_sector(sector_id id, binary_writer<T> &writer)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
const auto container_chain = follow_chain(entry_cache_[0]->start, sat_);
|
|
|
|
auto container = std::vector<byte>();
|
|
|
|
auto container_writer = binary_writer<byte>(container);
|
|
|
|
|
|
|
|
for (auto sector : container_chain)
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
read_sector(sector, container_writer);
|
2017-04-26 06:14:47 +08:00
|
|
|
}
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
auto container_reader = binary_reader<byte>(container);
|
|
|
|
container_reader.offset(id * short_sector_size());
|
|
|
|
|
|
|
|
writer.append(container_reader, short_sector_size());
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
sector_id compound_document::allocate_sector()
|
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
const auto sectors_per_sector = sector_size() / sizeof(sector_id);
|
|
|
|
auto next_free_iter = std::find(sat_.begin(), sat_.end(), FreeSector);
|
|
|
|
|
|
|
|
if (next_free_iter == sat_.end())
|
|
|
|
{
|
|
|
|
auto next_msat_index = header_.num_msat_sectors;
|
|
|
|
auto new_sat_sector_id = sector_id(sat_.size());
|
|
|
|
msat_.push_back(new_sat_sector_id);
|
|
|
|
header_.msat[msat_.size() - 1] = new_sat_sector_id;
|
|
|
|
sat_.resize(sat_.size() + sectors_per_sector, FreeSector);
|
|
|
|
sat_[new_sat_sector_id] = SATSector;
|
|
|
|
auto sat_reader = binary_reader<sector_id>(sat_);
|
|
|
|
sat_reader.offset(next_msat_index * sectors_per_sector);
|
|
|
|
write_sector(sat_reader, new_sat_sector_id);
|
|
|
|
next_free_iter = std::find(sat_.begin(), sat_.end(), FreeSector);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto next_free = next_free_iter - sat_.begin();
|
|
|
|
sat_[next_free] = EndOfChain;
|
|
|
|
|
|
|
|
auto next_free_msat_index = next_free / sectors_per_sector;;
|
|
|
|
auto sat_index = msat_[next_free_msat_index];
|
|
|
|
writer_->offset(sector_data_start()
|
|
|
|
+ (sat_index * sector_size())
|
|
|
|
+ (next_free % sectors_per_sector) * sizeof(sector_id));
|
|
|
|
writer_->write(EndOfChain);
|
|
|
|
|
|
|
|
auto empty_sector = std::vector<byte>(sector_size());
|
|
|
|
auto empty_sector_reader = binary_reader<byte>(empty_sector);
|
|
|
|
write_sector(empty_sector_reader, next_free);
|
|
|
|
|
|
|
|
return next_free;
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-25 04:06:58 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
sector_chain compound_document::allocate_sectors(std::size_t count)
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
if (count == std::size_t(0)) return {};
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
auto chain = sector_chain();
|
2017-04-28 22:58:55 +08:00
|
|
|
auto current = allocate_sector();
|
2017-04-25 04:06:58 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
for (auto i = std::size_t(1); i < count; ++i)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
chain.push_back(current);
|
|
|
|
auto next = allocate_sector();
|
|
|
|
sat_[current] = next;
|
|
|
|
current = next;
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-25 04:06:58 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
return chain;
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
sector_chain compound_document::follow_chain(sector_id start, const sector_chain &table)
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
auto chain = sector_chain();
|
2017-04-28 22:58:55 +08:00
|
|
|
auto current = start;
|
2017-04-25 07:23:51 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
while (current >= 0)
|
2017-04-23 02:25:27 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
chain.push_back(current);
|
|
|
|
current = table[current];
|
2017-04-23 02:25:27 +08:00
|
|
|
}
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
return chain;
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
sector_chain compound_document::allocate_short_sectors(std::size_t count)
|
2017-04-25 07:23:51 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
if (count == std::size_t(0)) return {};
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
auto chain = sector_chain();
|
|
|
|
auto current = allocate_short_sector();
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
for (auto i = std::size_t(1); i < count; ++i)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
chain.push_back(current);
|
|
|
|
auto next = allocate_short_sector();
|
|
|
|
ssat_[current] = next;
|
|
|
|
current = next;
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-28 22:58:55 +08:00
|
|
|
|
|
|
|
chain.push_back(current);
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
return chain;
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
sector_id compound_document::allocate_short_sector()
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
const auto sectors_per_sector = sector_size() / sizeof(sector_id);
|
|
|
|
auto next_free_iter = std::find(ssat_.begin(), ssat_.end(), FreeSector);
|
|
|
|
|
|
|
|
if (next_free_iter == ssat_.end())
|
|
|
|
{
|
|
|
|
auto new_ssat_sector_id = allocate_sector();
|
|
|
|
|
|
|
|
++header_.num_short_sectors;
|
|
|
|
|
|
|
|
if (header_.ssat_start < 0)
|
|
|
|
{
|
|
|
|
header_.ssat_start = new_ssat_sector_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
writer_->offset(0);
|
|
|
|
writer_->write(header_);
|
|
|
|
|
|
|
|
auto old_size = ssat_.size();
|
|
|
|
ssat_.resize(old_size + sectors_per_sector, FreeSector);
|
|
|
|
|
|
|
|
auto ssat_reader = binary_reader<sector_id>(ssat_);
|
|
|
|
ssat_reader.offset(old_size / sectors_per_sector);
|
|
|
|
write_sector(ssat_reader, new_ssat_sector_id);
|
|
|
|
|
|
|
|
next_free_iter = std::find(ssat_.begin(), ssat_.end(), FreeSector);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto next_free = next_free_iter - ssat_.begin();
|
|
|
|
ssat_[next_free] = EndOfChain;
|
|
|
|
|
|
|
|
auto sat_chain = follow_chain(header_.ssat_start, sat_);
|
|
|
|
auto next_free_sat_chain_index = next_free / sectors_per_sector;
|
|
|
|
auto sat_index = sat_chain[next_free_sat_chain_index];
|
|
|
|
writer_->offset(sector_data_start()
|
|
|
|
+ (sat_index * sectors_per_sector) * sizeof(sector_id)
|
|
|
|
+ (next_free % sectors_per_sector) * sizeof(sector_id));
|
|
|
|
writer_->write(EndOfChain);
|
|
|
|
|
|
|
|
const auto short_sectors_per_sector = sector_size() / short_sector_size();
|
|
|
|
const auto required_container_sectors = std::size_t(next_free / short_sectors_per_sector + 1);
|
|
|
|
|
|
|
|
if (required_container_sectors > 0)
|
|
|
|
{
|
|
|
|
if (entry_cache_[0]->start < 0)
|
|
|
|
{
|
|
|
|
entry_cache_[0]->start = allocate_sector();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto container_chain = follow_chain(entry_cache_[0]->start, sat_);
|
|
|
|
|
|
|
|
if (required_container_sectors > container_chain.size())
|
|
|
|
{
|
|
|
|
sat_[container_chain.back()] = allocate_sector();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return next_free;
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
directory_id compound_document::next_empty_entry()
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
auto entry_id = directory_id(0);
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
for (; entry_id < directory_id(entry_cache_.size()); ++entry_id)
|
2017-04-22 07:52:02 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
auto entry = entry_cache_[entry_id];
|
|
|
|
|
|
|
|
if (entry->type == compound_document_entry::entry_type::Empty)
|
2017-04-27 00:02:49 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
return entry_id;
|
2017-04-27 00:02:49 +08:00
|
|
|
}
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
const auto entries_per_sector = sector_size()
|
|
|
|
/ sizeof(compound_document_entry);
|
|
|
|
auto new_sector = allocate_sector();
|
|
|
|
// TODO: connect chains here
|
|
|
|
writer_->offset(sector_data_start() + new_sector * sector_size());
|
|
|
|
reader_->offset(sector_data_start() + new_sector * sector_size());
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
for (auto i = std::size_t(0); i < entries_per_sector; ++i)
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
auto empty_entry = compound_document_entry();
|
|
|
|
empty_entry.type = compound_document_entry::entry_type::Empty;
|
|
|
|
|
|
|
|
writer_->write(empty_entry);
|
|
|
|
|
|
|
|
entry_cache_[entry_id + i] = const_cast<compound_document_entry *>(
|
|
|
|
reader_->read_pointer<compound_document_entry>());
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
return entry_id;
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
directory_id compound_document::insert_entry(
|
2017-04-28 22:58:55 +08:00
|
|
|
const std::string &name,
|
2017-04-27 11:19:28 +08:00
|
|
|
compound_document_entry::entry_type type)
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
auto entry_id = next_empty_entry();
|
|
|
|
auto entry = entry_cache_.at(entry_id);
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
entry->name(name);
|
|
|
|
entry->type = type;
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
// TODO: parse path from name and use correct parent storage instead of 0
|
|
|
|
tree_insert(entry_id, 0);
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
return entry_id;
|
|
|
|
}
|
2017-04-25 04:06:58 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
std::size_t compound_document::sector_data_start()
|
|
|
|
{
|
|
|
|
return sizeof(compound_document_header);
|
|
|
|
}
|
2017-04-25 04:06:58 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
bool compound_document::contains_entry(const std::string &path,
|
|
|
|
compound_document_entry::entry_type type)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
return find_entry(path, type) >= 0;
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
directory_id compound_document::find_entry(const std::string &name,
|
|
|
|
compound_document_entry::entry_type type)
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
if (type == compound_document_entry::entry_type::RootStorage
|
|
|
|
&& (name == "/" || name == "/Root Entry")) return 0;
|
2017-04-25 04:06:58 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
for (auto entry : entry_cache_)
|
2017-04-23 02:25:27 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
if (entry.second->type == compound_document_entry::entry_type::Empty) continue;
|
2017-04-28 22:58:55 +08:00
|
|
|
if (entry.second->type != type) continue;
|
2017-04-27 11:19:28 +08:00
|
|
|
if (tree_path(entry.first) == name) return entry.first;
|
2017-04-23 02:25:27 +08:00
|
|
|
}
|
2017-04-27 11:19:28 +08:00
|
|
|
|
|
|
|
return End;
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
void compound_document::print_directory()
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
for (auto entry : entry_cache_)
|
2017-04-22 07:52:02 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
if (entry.second->type != compound_document_entry::entry_type::UserStream) continue;
|
2017-04-28 22:58:55 +08:00
|
|
|
std::cout << tree_path(entry.first) << std::endl;
|
2017-04-22 07:52:02 +08:00
|
|
|
}
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
void compound_document::tree_initialize_parent_maps()
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-28 22:58:55 +08:00
|
|
|
const auto entries_per_sector = sector_size() / sizeof(compound_document_entry);
|
2017-04-27 11:19:28 +08:00
|
|
|
auto entry_id = directory_id(0);
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
for (auto sector : follow_chain(header_.directory_start, sat_))
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
reader_->offset(sector_data_start() + sector * sector_size());
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
for (auto i = std::size_t(0); i < entries_per_sector; ++i)
|
|
|
|
{
|
|
|
|
entry_cache_[entry_id++] = const_cast<compound_document_entry *>(
|
|
|
|
&reader_->read_reference<compound_document_entry>());
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
auto stack = std::vector<directory_id>();
|
|
|
|
auto storage_siblings = std::vector<directory_id>();
|
|
|
|
auto stream_siblings = std::vector<directory_id>();
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
auto directory_stack = std::vector<directory_id>();
|
|
|
|
directory_stack.push_back(directory_id(0));
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
while (!directory_stack.empty())
|
|
|
|
{
|
|
|
|
auto current_storage_id = directory_stack.back();
|
|
|
|
directory_stack.pop_back();
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
if (tree_child(current_storage_id) < 0) continue;
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
auto storage_stack = std::vector<directory_id>();
|
|
|
|
auto storage_root_id = tree_child(current_storage_id);
|
|
|
|
parent_[storage_root_id] = End;
|
|
|
|
storage_stack.push_back(storage_root_id);
|
2017-04-23 08:43:26 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
while (!storage_stack.empty())
|
|
|
|
{
|
|
|
|
auto current_entry_id = storage_stack.back();
|
|
|
|
auto current_entry = entry_cache_.at(current_entry_id);
|
|
|
|
storage_stack.pop_back();
|
2017-04-23 08:43:26 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
parent_storage_[current_entry_id] = current_storage_id;
|
2017-04-23 08:43:26 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
if (current_entry->type == compound_document_entry::entry_type::UserStorage)
|
|
|
|
{
|
|
|
|
directory_stack.push_back(current_entry_id);
|
|
|
|
}
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
if (current_entry->prev >= 0)
|
|
|
|
{
|
|
|
|
storage_stack.push_back(current_entry->prev);
|
|
|
|
tree_parent(tree_left(current_entry_id)) = current_entry_id;
|
|
|
|
}
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
if (current_entry->next >= 0)
|
|
|
|
{
|
|
|
|
storage_stack.push_back(tree_right(current_entry_id));
|
|
|
|
tree_parent(tree_right(current_entry_id)) = current_entry_id;
|
|
|
|
}
|
2017-04-23 08:43:26 +08:00
|
|
|
}
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
|
|
|
}
|
2017-04-23 08:43:26 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
void compound_document::tree_insert(directory_id new_id, directory_id storage_id)
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
using entry_color = compound_document_entry::entry_color;
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
parent_storage_[new_id] = storage_id;
|
|
|
|
|
|
|
|
tree_left(new_id) = End;
|
|
|
|
tree_right(new_id) = End;
|
|
|
|
|
|
|
|
if (tree_root(new_id) == End)
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
if (new_id != 0)
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_root(new_id) = new_id;
|
2017-04-26 06:14:47 +08:00
|
|
|
}
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_color(new_id) = entry_color::Black;
|
|
|
|
tree_parent(new_id) = End;
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
return;
|
2017-04-27 00:02:49 +08:00
|
|
|
}
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
// normal tree insert
|
|
|
|
// (will probably unbalance the tree, fix after)
|
|
|
|
auto x = tree_root(new_id);
|
|
|
|
auto y = End;
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
while (x >= 0)
|
2017-04-27 00:02:49 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
y = x;
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
if (compare_keys(tree_key(new_id), tree_key(x)) > 0)
|
2017-04-27 00:02:49 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
x = tree_right(x);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = tree_left(x);
|
2017-04-27 00:02:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_parent(new_id) = y;
|
2017-04-27 00:02:49 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
if (compare_keys(tree_key(new_id), tree_key(y)) > 0)
|
2017-04-27 00:02:49 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_right(y) = new_id;
|
2017-04-27 00:02:49 +08:00
|
|
|
}
|
2017-04-27 11:19:28 +08:00
|
|
|
else
|
2017-04-27 00:02:49 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_left(y) = new_id;
|
2017-04-27 00:02:49 +08:00
|
|
|
}
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_insert_fixup(new_id);
|
2017-04-27 00:02:49 +08:00
|
|
|
}
|
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
std::string compound_document::tree_path(directory_id id)
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
auto storage_id = parent_storage_[id];
|
2017-04-28 22:58:55 +08:00
|
|
|
auto result = std::vector<std::string>();
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
while (storage_id > 0)
|
2017-04-25 10:16:03 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
storage_id = parent_storage_[storage_id];
|
2017-04-28 22:58:55 +08:00
|
|
|
result.push_back(entry_cache_[storage_id]->name());
|
2017-04-26 06:14:47 +08:00
|
|
|
}
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
return "/" + join_path(result) + entry_cache_[id]->name();
|
2017-04-27 11:19:28 +08:00
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
void compound_document::tree_rotate_left(directory_id x)
|
|
|
|
{
|
|
|
|
auto y = tree_right(x);
|
2017-04-25 10:16:03 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
// turn y's left subtree into x's right subtree
|
|
|
|
tree_right(x) = tree_left(y);
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
if (tree_left(y) != End)
|
|
|
|
{
|
|
|
|
tree_parent(tree_left(y)) = x;
|
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
// link x's parent to y
|
|
|
|
tree_parent(y) = tree_parent(x);
|
2017-04-23 08:43:26 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
if (tree_parent(x) == End)
|
|
|
|
{
|
|
|
|
tree_root(x) = y;
|
|
|
|
}
|
|
|
|
else if (x == tree_left(tree_parent(x)))
|
|
|
|
{
|
|
|
|
tree_left(tree_parent(x)) = y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tree_right(tree_parent(x)) = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
// put x on y's left
|
|
|
|
tree_left(y) = x;
|
|
|
|
tree_parent(x) = y;
|
2017-04-25 07:23:51 +08:00
|
|
|
}
|
2017-04-24 08:51:50 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
void compound_document::tree_rotate_right(directory_id y)
|
2017-04-25 07:23:51 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
auto x = tree_left(y);
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
// turn x's right subtree into y's left subtree
|
|
|
|
tree_left(y) = tree_right(x);
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
if (tree_right(x) != End)
|
2017-04-23 02:25:27 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_parent(tree_right(x)) = y;
|
|
|
|
}
|
2017-04-24 06:18:35 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
// link y's parent to x
|
|
|
|
tree_parent(x) = tree_parent(y);
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
if (tree_parent(y) == End)
|
|
|
|
{
|
|
|
|
tree_root(y) = x;
|
|
|
|
}
|
|
|
|
else if (y == tree_left(tree_parent(y)))
|
|
|
|
{
|
|
|
|
tree_left(tree_parent(y)) = x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tree_right(tree_parent(y)) = x;
|
2017-04-22 07:52:02 +08:00
|
|
|
}
|
2017-04-25 07:23:51 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
// put y on x's right
|
|
|
|
tree_right(x) = y;
|
|
|
|
tree_parent(y) = x;
|
2017-04-25 07:23:51 +08:00
|
|
|
}
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
void compound_document::tree_insert_fixup(directory_id x)
|
2017-04-25 07:23:51 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
using entry_color = compound_document_entry::entry_color;
|
|
|
|
|
|
|
|
tree_color(x) = entry_color::Red;
|
|
|
|
|
|
|
|
while (x != tree_root(x) && tree_color(tree_parent(x)) == entry_color::Red)
|
2017-04-23 02:25:27 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
if (tree_parent(x) == tree_left(tree_parent(tree_parent(x))))
|
|
|
|
{
|
|
|
|
auto y = tree_right(tree_parent(tree_parent(x)));
|
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
if (y >= 0 && tree_color(y) == entry_color::Red)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
|
|
|
// case 1
|
|
|
|
tree_color(tree_parent(x)) = entry_color::Black;
|
|
|
|
tree_color(y) = entry_color::Black;
|
|
|
|
tree_color(tree_parent(tree_parent(x))) = entry_color::Red;
|
|
|
|
x = tree_parent(tree_parent(x));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x == tree_right(tree_parent(x)))
|
|
|
|
{
|
|
|
|
// case 2
|
|
|
|
x = tree_parent(x);
|
|
|
|
tree_rotate_left(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
// case 3
|
|
|
|
tree_color(tree_parent(x)) = entry_color::Black;
|
|
|
|
tree_color(tree_parent(tree_parent(x))) = entry_color::Red;
|
|
|
|
tree_rotate_right(tree_parent(tree_parent(x)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // same as above with left and right switched
|
2017-04-25 07:23:51 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
auto y = tree_left(tree_parent(tree_parent(x)));
|
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
if (y >= 0 && tree_color(y) == entry_color::Red)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
|
|
|
//case 1
|
|
|
|
tree_color(tree_parent(x)) = entry_color::Black;
|
|
|
|
tree_color(y) = entry_color::Black;
|
|
|
|
tree_color(tree_parent(tree_parent(x))) = entry_color::Red;
|
|
|
|
x = tree_parent(tree_parent(x));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x == tree_left(tree_parent(x)))
|
|
|
|
{
|
|
|
|
// case 2
|
|
|
|
x = tree_parent(x);
|
|
|
|
tree_rotate_right(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
// case 3
|
|
|
|
tree_color(tree_parent(x)) = entry_color::Black;
|
|
|
|
tree_color(tree_parent(tree_parent(x))) = entry_color::Red;
|
|
|
|
tree_rotate_left(tree_parent(tree_parent(x)));
|
|
|
|
}
|
2017-04-25 07:23:51 +08:00
|
|
|
}
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
tree_color(tree_root(x)) = entry_color::Black;
|
2017-04-25 07:23:51 +08:00
|
|
|
}
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
directory_id &compound_document::tree_left(directory_id id)
|
2017-04-25 07:23:51 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
return entry_cache_[id]->prev;
|
2017-04-25 07:23:51 +08:00
|
|
|
}
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
directory_id &compound_document::tree_right(directory_id id)
|
2017-04-25 07:23:51 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
return entry_cache_[id]->next;
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-23 02:25:27 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
directory_id &compound_document::tree_parent(directory_id id)
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
return parent_[id];
|
2017-04-25 04:06:58 +08:00
|
|
|
}
|
2017-04-22 07:52:02 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
directory_id &compound_document::tree_root(directory_id id)
|
2017-04-25 04:06:58 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
return tree_child(parent_storage_[id]);
|
2017-04-22 07:52:02 +08:00
|
|
|
}
|
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
directory_id &compound_document::tree_child(directory_id id)
|
2017-04-26 06:14:47 +08:00
|
|
|
{
|
2017-04-27 11:19:28 +08:00
|
|
|
return entry_cache_[id]->child;
|
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-28 22:58:55 +08:00
|
|
|
std::string compound_document::tree_key(directory_id id)
|
2017-04-27 11:19:28 +08:00
|
|
|
{
|
|
|
|
return entry_cache_[id]->name();
|
|
|
|
}
|
2017-04-26 06:14:47 +08:00
|
|
|
|
2017-04-27 11:19:28 +08:00
|
|
|
compound_document_entry::entry_color &compound_document::tree_color(directory_id id)
|
|
|
|
{
|
|
|
|
return entry_cache_[id]->color;
|
2017-04-26 06:14:47 +08:00
|
|
|
}
|
|
|
|
|
2017-04-22 07:52:02 +08:00
|
|
|
} // namespace detail
|
|
|
|
} // namespace xlnt
|