📄 basicexcel.cpp
字号:
#include "stdafx.h"
#include "BasicExcel.h"
namespace YCompoundFiles
{
/********************************** Start of Class Block *************************************/
// PURPOSE: Manage a file by treating it as blocks of data of a certain size.
Block::Block() :
blockSize_(512), fileSize_(0), indexEnd_(0),
filename_(0) {}
bool Block::Create(const wchar_t* filename)
// PURPOSE: Create a new block file and open it.
// PURPOSE: If file is present, truncate it and then open it.
// PROMISE: Return true if file is successfully created and opened, false if otherwise.
{
// Create new file
int filenameLength = wcslen(filename);
char* name = new char[filenameLength+1];
wcstombs(name, filename, filenameLength);
name[filenameLength] = 0;
file_.open(name, ios_base::out | ios_base::trunc);
file_.close();
file_.clear();
// Open the file
bool ret = this->Open(filename);
delete[] name;
return ret;
}
bool Block::Open(const wchar_t* filename, ios_base::openmode mode)
// PURPOSE: Open an existing block file.
// PROMISE: Return true if file is successfully opened, false if otherwise.
{
// Open existing file for reading or writing or both
int filenameLength = wcslen(filename);
filename_.resize(filenameLength+1, 0);
wcstombs(&*(filename_.begin()), filename, filenameLength);
file_.open(&*(filename_.begin()), mode | ios_base::binary);
if (!file_.is_open()) return false;
mode_ = mode;
// Calculate filesize
if (mode & ios_base::in)
{
file_.seekg(0, ios_base::end);
fileSize_ = file_.tellg();
}
else if (mode & ios_base::out)
{
file_.seekp(0, ios_base::end);
fileSize_ = file_.tellp();
}
else
{
this->Close();
return false;
}
// Calculate last index + 1
indexEnd_ = fileSize_/blockSize_ + (fileSize_ % blockSize_ ? 1 : 0);
return true;
}
bool Block::Close()
// PURPOSE: Close the opened block file.
// PROMISE: Return true if file is successfully closed, false if otherwise.
{
file_.close();
file_.clear();
filename_.clear();
fileSize_ = 0;
indexEnd_ = 0;
blockSize_ = 512;
return !file_.is_open();
}
bool Block::IsOpen()
// PURPOSE: Check if the block file is still opened.
// PROMISE: Return true if file is still opened, false if otherwise.
{
return file_.is_open();
}
bool Block::Read(int index, char* block)
// PURPOSE: Read a block of data from the opened file at the index position.
// EXPLAIN: index is from [0..].
// PROMISE: Return true if data are successfully read, false if otherwise.
{
if (!(mode_ & ios_base::in)) return false;
if (index < indexEnd_)
{
file_.seekg(index * blockSize_);
file_.read(block, blockSize_);
return !file_.fail();
}
else return false;
}
bool Block::Write(int index, const char* block)
// PURPOSE: Write a block of data to the opened file at the index position.
// EXPLAIN: index is from [0..].
// PROMISE: Return true if data are successfully written, false if otherwise.
{
if (!(mode_ & ios_base::out)) return false;
file_.seekp(index * blockSize_);
file_.write(block, blockSize_);
if (indexEnd_ <= index)
{
indexEnd_ = index + 1;
fileSize_ += blockSize_;
}
file_.close();
file_.clear();
file_.open(&*(filename_.begin()), mode_ | ios_base::binary);
return file_.is_open();
}
bool Block::Swap(int index1, int index2)
// PURPOSE: Swap two blocks of data in the opened file at the index positions.
// EXPLAIN: index1 and index2 are from [0..].
// PROMISE: Return true if data are successfully swapped, false if otherwise.
{
if (!(mode_ & ios_base::out)) return false;
if (index1 < indexEnd_ && index2 < indexEnd_)
{
if (index1 == index2) return true;
char* block1 = new char[blockSize_];
if (!this->Read(index1, block1)) return false;
char* block2 = new char[blockSize_];
if (!this->Read(index2, block2)) return false;
if (!this->Write(index1, block2)) return false;
if (!this->Write(index2, block1)) return false;
delete[] block1;
delete[] block2;
return true;
}
else return false;
}
bool Block::Move(int from, int to)
// PURPOSE: Move a block of data in the opened file from an index position to another index position.
// EXPLAIN: from and to are from [0..].
// PROMISE: Return true if data are successfully moved, false if otherwise.
{
if (!(mode_ & ios_base::out)) return false;
if (from < indexEnd_ && to < indexEnd_)
{
if (to > from)
{
for (int i=from; i!=to; ++i)
{
if (!this->Swap(i, i+1)) return false;
}
}
else
{
for (int i=from; i!=to; --i)
{
if (!this->Swap(i, i-1)) return false;
}
}
return true;
}
else return false;
}
bool Block::Insert(int index, const char* block)
// PURPOSE: Insert a new block of data in the opened file at the index position.
// EXPLAIN: index is from [0..].
// PROMISE: Return true if data are successfully inserted, false if otherwise.
{
if (!(mode_ & ios_base::out)) return false;
if (index <= indexEnd_)
{
// Write block to end of file
if (!this->Write(indexEnd_, block)) return false;
// Move block to index if necessary
if (index < indexEnd_-1) return this->Move(indexEnd_-1, index);
else return true;
}
else
{
// Write block to index after end of file
return this->Write(index, block);
}
}
bool Block::Erase(int index)
// PURPOSE: Erase a block of data in the opened file at the index position.
// EXPLAIN: index is from [0..].
// PROMISE: Return true if data are successfully erased, false if otherwise.
{
if (!(mode_ & ios_base::out)) return false;
if (index < indexEnd_)
{
fileSize_ -= blockSize_;
indexEnd_ -= 1;
// Read entire file except the block to be deleted into memory.
char* buffer = new char[fileSize_];
for (int i=0, j=0; i!=indexEnd_+1; ++i)
{
file_.seekg(i*blockSize_);
if (i != index)
{
file_.read(buffer+j*blockSize_, blockSize_);
++j;
}
}
file_.close();
file_.open(&*(filename_.begin()), ios_base::out | ios_base::trunc | ios_base::binary);
file_.write(buffer, fileSize_); // Write the new file.
file_.close();
file_.open(&*(filename_.begin()), mode_ | ios_base::binary);
delete[] buffer;
return true;
}
else return false;
}
bool Block::Erase(vector<int>& indices)
// PURPOSE: Erase blocks of data in the opened file at the index positions.
// EXPLAIN: Each index in indices is from [0..].
// PROMISE: Return true if data are successfully erased, false if otherwise.
{
if (!(mode_ & ios_base::out)) return false;
// Read entire file except the blocks to be deleted into memory.
int maxIndices = indices.size();
fileSize_ -= maxIndices*blockSize_;
char* buffer = new char[fileSize_];
for (int i=0, k=0; i!=indexEnd_; ++i)
{
file_.seekg(i*blockSize_);
bool toDelete = false;
for (int j=0; j<maxIndices; ++j)
{
if (i == indices[j])
{
toDelete = true;
break;
}
}
if (!toDelete)
{
file_.read(buffer+k*blockSize_, blockSize_);
++k;
}
}
indexEnd_ -= maxIndices;
file_.close();
file_.open(&*(filename_.begin()), ios_base::out | ios_base::trunc | ios_base::binary);
file_.write(buffer, fileSize_); // Write the new file.
file_.close();
file_.open(&*(filename_.begin()), mode_ | ios_base::binary);
delete[] buffer;
return true;
}
/********************************** End of Class Block ***************************************/
/********************************** Start of Class Header ************************************/
// PURPOSE: Read and write data to a compound file header.
CompoundFile::Header::Header() :
fileType_(0xE11AB1A1E011CFD0LL),
uk1_(0), uk2_(0), uk3_(0), uk4_(0), uk5_(0x003B), uk6_(0x0003), uk7_(-2),
log2BigBlockSize_(9), log2SmallBlockSize_(6),
uk8_(0), uk9_(0), uk10_(0), uk11_(0x00001000),
SBATStart_(-2), SBATCount_(0),
XBATStart_(-2), XBATCount_(0),
BATCount_(1), propertiesStart_(1)
{
BATArray_[0] = 0; // Initial BAT indices at block 0 (=block 1 in Block)
fill (BATArray_+1, BATArray_+109, -1); // Rest of the BATArray is empty
Initialize();
}
void CompoundFile::Header::Write(char* block)
// PURPOSE: Write header information into a block of data.
// REQUIRE: Block of data must be at least 512 bytes in size.
{
LittleEndian::Write(block, fileType_, 0x0000, 8);
LittleEndian::Write(block, uk1_, 0x0008, 4);
LittleEndian::Write(block, uk2_, 0x000C, 4);
LittleEndian::Write(block, uk3_, 0x0010, 4);
LittleEndian::Write(block, uk4_, 0x0014, 4);
LittleEndian::Write(block, uk5_, 0x0018, 2);
LittleEndian::Write(block, uk6_, 0x001A, 2);
LittleEndian::Write(block, uk7_, 0x001C, 2);
LittleEndian::Write(block, log2BigBlockSize_, 0x001E, 2);
LittleEndian::Write(block, log2SmallBlockSize_, 0x0020, 4);
LittleEndian::Write(block, uk8_, 0x0024, 4);
LittleEndian::Write(block, uk9_, 0x0028, 4);
LittleEndian::Write(block, BATCount_, 0x002C, 4);
LittleEndian::Write(block, propertiesStart_, 0x0030, 4);
LittleEndian::Write(block, uk10_, 0x0034, 4);
LittleEndian::Write(block, uk11_, 0x0038, 4);
LittleEndian::Write(block, SBATStart_, 0x003C, 4);
LittleEndian::Write(block, SBATCount_, 0x0040, 4);
LittleEndian::Write(block, XBATStart_, 0x0044, 4);
LittleEndian::Write(block, XBATCount_, 0x0048, 4);
for (int i=0; i<109; ++i) LittleEndian::Write(block, BATArray_[i], 0x004C+i*4, 4);
}
void CompoundFile::Header::Read(char* block)
// PURPOSE: Read header information from a block of data.
// REQUIRE: Block of data must be at least 512 bytes in size.
{
LittleEndian::Read(block, fileType_, 0x0000, 8);
LittleEndian::Read(block, uk1_, 0x0008, 4);
LittleEndian::Read(block, uk2_, 0x000C, 4);
LittleEndian::Read(block, uk3_, 0x0010, 4);
LittleEndian::Read(block, uk4_, 0x0014, 4);
LittleEndian::Read(block, uk5_, 0x0018, 2);
LittleEndian::Read(block, uk6_, 0x001A, 2);
LittleEndian::Read(block, uk7_, 0x001C, 2);
LittleEndian::Read(block, log2BigBlockSize_, 0x001E, 2);
LittleEndian::Read(block, log2SmallBlockSize_, 0x0020, 4);
LittleEndian::Read(block, uk8_, 0x0024, 4);
LittleEndian::Read(block, uk9_, 0x0028, 4);
LittleEndian::Read(block, BATCount_, 0x002C, 4);
LittleEndian::Read(block, propertiesStart_, 0x0030, 4);
LittleEndian::Read(block, uk10_, 0x0034, 4);
LittleEndian::Read(block, uk11_, 0x0038, 4);
LittleEndian::Read(block, SBATStart_, 0x003C, 4);
LittleEndian::Read(block, SBATCount_, 0x0040, 4);
LittleEndian::Read(block, XBATStart_, 0x0044, 4);
LittleEndian::Read(block, XBATCount_, 0x0048, 4);
for (int i=0; i<109; ++i) LittleEndian::Read(block, BATArray_[i], 0x004C+i*4, 4);
Initialize();
}
void CompoundFile::Header::Initialize()
{
bigBlockSize_ = (int)pow(2.0, log2BigBlockSize_); // Calculate each big block size.
smallBlockSize_ = (int)pow(2.0, log2SmallBlockSize_); // Calculate each small block size.
}
/********************************** End of Class Header **************************************/
/********************************** Start of Class Property **********************************/
// PURPOSE: Read and write data to a compound file property.
CompoundFile::Property::Property() :
nameSize_(0),
propertyType_(1), nodeColor_(1),
previousProp_(-1), nextProp_(-1), childProp_(-1),
uk1_(0), uk2_(0), uk3_(0), uk4_(0), uk5_(0),
seconds1_(0), days1_(0), seconds2_(0), days2_(0),
startBlock_(-2), size_(0)
{
fill (name_, name_+32, 0);
}
void CompoundFile::Property::Write(char* block)
// PURPOSE: Write property information from a block of data.
// REQUIRE: Block of data must be at least 128 bytes in size.
{
LittleEndian::WriteString(block, name_, 0x00, 32);
LittleEndian::Write(block, nameSize_, 0x40, 2);
LittleEndian::Write(block, propertyType_, 0x42, 1);
LittleEndian::Write(block, nodeColor_, 0x43, 1);
LittleEndian::Write(block, previousProp_, 0x44, 4);
LittleEndian::Write(block, nextProp_, 0x48, 4);
LittleEndian::Write(block, childProp_, 0x4C, 4);
LittleEndian::Write(block, uk1_, 0x50, 4);
LittleEndian::Write(block, uk2_, 0x54, 4);
LittleEndian::Write(block, uk3_, 0x58, 4);
LittleEndian::Write(block, uk4_, 0x5C, 4);
LittleEndian::Write(block, uk5_, 0x60, 4);
LittleEndian::Write(block, seconds1_, 0x64, 4);
LittleEndian::Write(block, days1_, 0x68, 4);
LittleEndian::Write(block, seconds2_, 0x6C, 4);
LittleEndian::Write(block, days2_, 0x70, 4);
LittleEndian::Write(block, startBlock_, 0x74, 4);
LittleEndian::Write(block, size_, 0x78, 4);
}
void CompoundFile::Property::Read(char* block)
// PURPOSE: Read property information from a block of data.
// REQUIRE: Block of data must be at least 128 bytes in size.
{
LittleEndian::ReadString(block, name_, 0x00, 32);
LittleEndian::Read(block, nameSize_, 0x40, 2);
LittleEndian::Read(block, propertyType_, 0x42, 1);
LittleEndian::Read(block, nodeColor_, 0x43, 1);
LittleEndian::Read(block, previousProp_, 0x44, 4);
LittleEndian::Read(block, nextProp_, 0x48, 4);
LittleEndian::Read(block, childProp_, 0x4C, 4);
LittleEndian::Read(block, uk1_, 0x50, 4);
LittleEndian::Read(block, uk2_, 0x54, 4);
LittleEndian::Read(block, uk3_, 0x58, 4);
LittleEndian::Read(block, uk4_, 0x5C, 4);
LittleEndian::Read(block, uk5_, 0x60, 4);
LittleEndian::Read(block, seconds1_, 0x64, 4);
LittleEndian::Read(block, days1_, 0x68, 4);
LittleEndian::Read(block, seconds2_, 0x6C, 4);
LittleEndian::Read(block, days2_, 0x70, 4);
LittleEndian::Read(block, startBlock_, 0x74, 4);
LittleEndian::Read(block, size_, 0x78, 4);
}
/********************************** End of Class Property ************************************/
/********************************** Start of Class PropertyTree **********************************/
CompoundFile::PropertyTree::PropertyTree() {};
CompoundFile::PropertyTree::~PropertyTree()
{
int maxChildren = children_.size();
for (int i=0; i<maxChildren; ++i) delete children_[i];
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -