#include "precompiled_xls.h" #include "CFStream.h" #include "CFRecordType.h" //#include //#include #include namespace XLS {; CFStream::CFStream(IStream* stream) : stream_(stream) { if(NULL == stream) { throw;// EXCEPT::RT::CompoundFileFormatError("Wrong IStream pointer (NULL)"); } } CFStream::~CFStream() { stream_->Commit(0); stream_->Release(); } // Read 'size' unsigned chars from the stream void CFStream::read(void* buf, const size_t size) { if(NULL == buf) { throw;// EXCEPT::RT::CompoundFileFormatError("Wrong buffer pointer (NULL)"); } ULONG num_read = 0; HRESULT hres = stream_->Read(buf, size, &num_read); if(FAILED(hres)) { std::wstringstream str; str << L"Impossible to read " << size << L" unsigned chars from \"" << getStreamName() << L"\" stream"; throw;// EXCEPT::RT::CompoundFileFormatError(str.str(), hres); } if(num_read < size) { throw;// EXCEPT::RT::EndOfStreamReached(getStreamName(), num_read, size); } // Tipa successful } // Write 'size' unsigned chars to the stream void CFStream::write(const void* buf, const size_t size) { if(NULL == buf) { throw;// EXCEPT::RT::CompoundFileFormatError("Wrong buffer pointer (NULL)"); } ULONG num_written = 0; HRESULT hres = stream_->Write(buf, size, &num_written); if(FAILED(hres)) { std::wstringstream str; str << L"Impossible to write " << size << L" unsigned chars to \"" << getStreamName() << L"\" stream"; throw;// EXCEPT::RT::CompoundFileFormatError(str.str(), hres); } if(num_written < size) { std::wstringstream str; str << L"Only " << num_written << L" unsigned chars were saved instead of " << size << L" unsigned chars requested."; throw;// EXCEPT::RT::CompoundFileFormatError(str.str(), hres); } // Tipa successful } // If the current pointer is exactly at the end of the stream. const bool CFStream::isEOF() const { return getStreamPointer() == getStreamSize(); } // Stream pointer const unsigned __int64 CFStream::getStreamPointer() const { LARGE_INTEGER null_ptr; null_ptr.QuadPart = 0; ULARGE_INTEGER seek_ptr; stream_->Seek(null_ptr, STREAM_SEEK_CUR, &seek_ptr); return seek_ptr.QuadPart; } void CFStream::seekFromCurForward(const size_t offset) { LARGE_INTEGER seek_ptr; seek_ptr.QuadPart = offset; stream_->Seek(seek_ptr, STREAM_SEEK_CUR, NULL); } void CFStream::seekFromBegin(const unsigned __int64 offset) { LARGE_INTEGER seek_ptr; seek_ptr.QuadPart = offset; HRESULT result = stream_->Seek(seek_ptr, STREAM_SEEK_SET, NULL); } void CFStream::seekToEnd() { LARGE_INTEGER seek_ptr; seek_ptr.QuadPart = 0; HRESULT result = stream_->Seek(seek_ptr, STREAM_SEEK_END, NULL); } // Stream current size const unsigned __int64 CFStream::getStreamSize() const { STATSTG info; stream_->Stat(&info, STATFLAG_DEFAULT); return info.cbSize.QuadPart; } // Stream name //const std::string CFStream::getStreamName() const //{ // STATSTG info; // HRESULT hres = stream_->Stat(&info, STATFLAG_DEFAULT); // if(FAILED(hres)) // { // Log::warning("Can't obtain the name of the Compound File stream"); // return ""; // } // return static_cast(std::wstring (info.pwcsName)); //} const std::wstring CFStream::getStreamName() const { STATSTG info; HRESULT hres = stream_->Stat(&info, STATFLAG_DEFAULT); if(FAILED(hres)) { Log::warning("Can't obtain the name of the Compound File stream"); return L""; } return std::wstring (info.pwcsName); } void CFStream::writeAndApplyDelayedItems(void* buf, const size_t size, const ReceiverItems& receiver_items_from_record, const SourceItems& source_items_from_record) { appendDelayedItems(receiver_items_from_record, source_items_from_record); write(buf, size); if(receiver_items_from_record.size() || source_items_from_record.size()) { applyDelayedItems(); } } // The file pointer of the start of the record will be appended to all receiver items 'data_place' fields // Then all items will be appended to the common queue void CFStream::appendDelayedItems(const ReceiverItems& receiver_items_from_record, const SourceItems& source_items_from_record) { const unsigned int record_start_pointer = static_cast(getStreamPointer()) - sizeof(unsigned __int16)/*size_short*/ - sizeof(CFRecordType::TypeId); for(ReceiverItems::const_iterator it = receiver_items_from_record.begin(), itEnd = receiver_items_from_record.end(); it != itEnd; ++it) { ReceiverItem copy_item(*it); copy_item.data_place += record_start_pointer; receiver_items.push_back(copy_item); } for(SourceItems::const_iterator it = source_items_from_record.begin(), itEnd = source_items_from_record.end(); it != itEnd; ++it) { SourceItem copy_item(*it); if(copy_item.is_file_ptr) { copy_item.data += record_start_pointer; } source_items.push_back(copy_item); } } // Try to apply void CFStream::applyDelayedItems() { ReceiverItems& res = receiver_items; SourceItems& src = source_items; for(ReceiverItems::iterator it = receiver_items.begin(); it != receiver_items.end();) { const CFRecordType::TypeId receiver_id = it->receiver_id; SourceItems::iterator its = std::find_if(source_items.begin(), source_items.end(), boost::bind(&SourceItem::receiver_id, _1) == receiver_id || boost::bind(&SourceItem::receiver_id, _1) == rt_ANY_TYPE); if(its != source_items.end()) { if(NULL != it->fn) { it->fn(*this, it->data_place, its->data); // receiver_items and source_items may be expanded here. } else { seekFromBegin(it->data_place); write(&its->data, it->data_size); } receiver_items.erase(it++); source_items.erase(its); continue; } ++it; } seekToEnd(); } } // namespace XLS