mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-19 22:36:13 +08:00
Compare commits
25 Commits
core-linux
...
core-linux
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e52ebca48 | |||
| 4925b47002 | |||
| afdaacb226 | |||
| 9f98f07f23 | |||
| 9e1a0e365f | |||
| 39e2b69b8e | |||
| 58c00745a7 | |||
| 4015e8ba4d | |||
| 276af55699 | |||
| ebdfcbd7ee | |||
| 867c09c85d | |||
| cd12777c68 | |||
| 0708c1f45a | |||
| ee577e629a | |||
| f230dc2555 | |||
| 11c9d74e68 | |||
| d61a955c38 | |||
| acfb96e3c3 | |||
| d2e3cc47f2 | |||
| 4f2f164af9 | |||
| 8addd6cb04 | |||
| 92cda5bc80 | |||
| 1a377d8738 | |||
| ed3e107db5 | |||
| 64d8c659bc |
@ -963,4 +963,3 @@ namespace DocFormatUtils
|
||||
};
|
||||
}
|
||||
|
||||
using namespace DocFormatUtils;
|
||||
|
||||
@ -32,6 +32,8 @@
|
||||
|
||||
#include "AnnotationReferenceDescriptor.h"
|
||||
|
||||
using namespace DocFormatUtils;
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
ByteStructure* AnnotationReferenceDescriptor::ConstructObject(VirtualStreamReader* reader, int length)
|
||||
@ -76,4 +78,4 @@ namespace DocFileFormat
|
||||
|
||||
return static_cast<ByteStructure*>(newObject);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -34,6 +34,8 @@
|
||||
#include "IVisitable.h"
|
||||
#include "Global.h"
|
||||
|
||||
using namespace DocFormatUtils;
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
typedef enum _BorderType
|
||||
|
||||
@ -33,6 +33,8 @@
|
||||
|
||||
#include "../Common/FormatUtils.h"
|
||||
|
||||
using namespace DocFormatUtils;
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
class DateAndTime
|
||||
|
||||
@ -33,6 +33,7 @@
|
||||
#include "DrawingPrimitives.h"
|
||||
#include "VirtualStreamReader.h"
|
||||
|
||||
using namespace DocFormatUtils;
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
|
||||
@ -147,10 +147,11 @@ namespace DocFileFormat
|
||||
if (fAES) crypt_data_aes.cipherAlgorithm = CRYPT_METHOD::AES_ECB;
|
||||
if (fCryptoAPI) crypt_data_aes.cipherAlgorithm = CRYPT_METHOD::RC4;
|
||||
crypt_data_aes.keySize = KeySize / 8;
|
||||
break;
|
||||
case 0x6801:
|
||||
crypt_data_aes.cipherAlgorithm = CRYPT_METHOD::RC4;
|
||||
crypt_data_aes.keySize = KeySize / 8;
|
||||
|
||||
if (crypt_data_aes.keySize == 0) crypt_data_aes.keySize = 5; // 40 bit
|
||||
break;
|
||||
case 0x660E:
|
||||
crypt_data_aes.cipherAlgorithm = CRYPT_METHOD::AES_ECB;
|
||||
|
||||
@ -34,6 +34,8 @@
|
||||
#include "VirtualStreamReader.h"
|
||||
#include "../../ASCOfficeXlsFile2/source/XlsFormat/Crypt/Decryptor.h"
|
||||
|
||||
using namespace DocFormatUtils;
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
typedef enum FibVersion
|
||||
@ -507,9 +509,9 @@ namespace DocFileFormat
|
||||
class FileInformationBlock
|
||||
{
|
||||
public:
|
||||
bool m_bOlderVersion;
|
||||
int m_CodePage;
|
||||
FibBase m_FibBase;
|
||||
bool m_bOlderVersion;
|
||||
int m_CodePage;
|
||||
FibBase m_FibBase;
|
||||
|
||||
RgW97 m_RgW97;
|
||||
RgLw97 m_RgLw97;
|
||||
@ -1189,9 +1191,9 @@ namespace DocFileFormat
|
||||
m_FibBase.fDot = FormatUtils::BitmaskToBool((int)flag16, 0x0001);
|
||||
m_FibBase.fGlsy = FormatUtils::BitmaskToBool((int)flag16, 0x0002);
|
||||
m_FibBase.fComplex = FormatUtils::BitmaskToBool((int)flag16, 0x0002);
|
||||
m_FibBase.fHasPic = FormatUtils::BitmaskToBool((int)flag16, 0x0008);
|
||||
m_FibBase.cQuickSaves = (WORD)(((int)flag16 & 0x00F0) >> 4);
|
||||
m_FibBase.fEncrypted = FormatUtils::BitmaskToBool((int)flag16, 0x0100);
|
||||
m_FibBase.fHasPic = FormatUtils::BitmaskToBool((int)flag16, 0x0008);
|
||||
m_FibBase.cQuickSaves = (WORD)(((int)flag16 & 0x00F0) >> 4);
|
||||
m_FibBase.fEncrypted = FormatUtils::BitmaskToBool((int)flag16, 0x0100);
|
||||
m_FibBase.fWhichTblStm = FormatUtils::BitmaskToBool((int)flag16, 0x0200);
|
||||
m_FibBase.fReadOnlyRecommended = FormatUtils::BitmaskToBool((int)flag16, 0x0400);
|
||||
m_FibBase.fWriteReservation = FormatUtils::BitmaskToBool((int)flag16, 0x0800);
|
||||
|
||||
@ -72,7 +72,7 @@ public:
|
||||
|
||||
if (m_Data)
|
||||
{
|
||||
rdUShort = FormatUtils::BytesToUInt16 (m_Data, m_Position, m_Size);
|
||||
rdUShort = DocFormatUtils::FormatUtils::BytesToUInt16 (m_Data, m_Position, m_Size);
|
||||
m_Position += sizeof(rdUShort);
|
||||
}
|
||||
|
||||
@ -85,7 +85,7 @@ public:
|
||||
|
||||
if (m_Data)
|
||||
{
|
||||
rdShort = FormatUtils::BytesToInt16 (m_Data, m_Position, m_Size);
|
||||
rdShort = DocFormatUtils::FormatUtils::BytesToInt16 (m_Data, m_Position, m_Size);
|
||||
m_Position += sizeof(rdShort);
|
||||
}
|
||||
|
||||
@ -98,7 +98,7 @@ public:
|
||||
|
||||
if (m_Data)
|
||||
{
|
||||
rdInt = FormatUtils::BytesToInt32 (m_Data, m_Position, m_Size);
|
||||
rdInt = DocFormatUtils::FormatUtils::BytesToInt32 (m_Data, m_Position, m_Size);
|
||||
m_Position += sizeof(rdInt);
|
||||
}
|
||||
|
||||
@ -111,7 +111,7 @@ public:
|
||||
|
||||
if (m_Data )
|
||||
{
|
||||
rdUInt = FormatUtils::BytesToUInt32 (m_Data, m_Position, m_Size);
|
||||
rdUInt = DocFormatUtils::FormatUtils::BytesToUInt32 (m_Data, m_Position, m_Size);
|
||||
m_Position += sizeof(rdUInt);
|
||||
}
|
||||
|
||||
|
||||
@ -0,0 +1,60 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2017
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "RegularContainer.h"
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
class OfficeArtFRITContainer: public RegularContainer
|
||||
{
|
||||
public:
|
||||
static const unsigned short TYPE_CODE_0xF118 = 0xF118;
|
||||
|
||||
OfficeArtFRITContainer () : RegularContainer()
|
||||
{
|
||||
}
|
||||
|
||||
OfficeArtFRITContainer (IBinaryReader* _reader, unsigned int size, unsigned int typeCode, unsigned int version, unsigned int instance) : RegularContainer (_reader, size, typeCode, version, instance)
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~OfficeArtFRITContainer()
|
||||
{
|
||||
}
|
||||
|
||||
virtual Record* NewObject (IBinaryReader* _reader, unsigned int bodySize, unsigned int typeCode, unsigned int version, unsigned int instance)
|
||||
{
|
||||
return new OfficeArtFRITContainer( _reader, bodySize, typeCode, version, instance );
|
||||
}
|
||||
};
|
||||
}
|
||||
@ -50,6 +50,7 @@
|
||||
#include "GroupShapeRecord.h"
|
||||
#include "OfficeArtClientTextbox.h"
|
||||
#include "UnknownRecord.h"
|
||||
#include "OfficeArtFRITContainer.h"
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
@ -135,6 +136,7 @@ namespace DocFileFormat
|
||||
case GroupContainer::TYPE_CODE_0xF003 : return new GroupContainer();
|
||||
case GroupShapeRecord::TYPE_CODE_0xF009 : return new GroupShapeRecord ();
|
||||
case OfficeArtClientTextbox::TYPE_CODE_0xF00D : return new OfficeArtClientTextbox ();
|
||||
case OfficeArtFRITContainer::TYPE_CODE_0xF118 : return new OfficeArtFRITContainer ();
|
||||
|
||||
default:
|
||||
return new UnknownRecord();
|
||||
|
||||
@ -32,6 +32,8 @@
|
||||
#include "Spa.h"
|
||||
#include "VirtualStreamReader.h"
|
||||
|
||||
using namespace DocFormatUtils;
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
|
||||
|
||||
@ -247,9 +247,8 @@ namespace DocFileFormat
|
||||
{
|
||||
freeform = false;
|
||||
m_pXmlWriter->WriteAttribute( L"type", (std::wstring(L"#") + VMLShapeTypeMapping::GenerateTypeId(pShape->GetShapeType())));
|
||||
|
||||
m_pXmlWriter->WriteAttribute( L"style", FormatUtils::XmlEncode(buildStyle(pShape, pAnchor, options, pContainer->Index)));
|
||||
}
|
||||
m_pXmlWriter->WriteAttribute( L"style", FormatUtils::XmlEncode(buildStyle(pShape, pAnchor, options, pContainer->Index)));
|
||||
|
||||
if (pShape->is<LineType>())
|
||||
{
|
||||
@ -446,7 +445,7 @@ namespace DocFileFormat
|
||||
{
|
||||
yCoord = iter->op;
|
||||
}break;
|
||||
// OUTLINE
|
||||
// LINE
|
||||
case lineColor:
|
||||
{
|
||||
RGBColor lineColor((int)iter->op, RedFirst);
|
||||
@ -493,6 +492,21 @@ namespace DocFileFormat
|
||||
{
|
||||
appendValueAttribute(&m_stroke, L"startarrowwidth", getArrowWidth( iter->op ));
|
||||
}break;
|
||||
case cxstyle:
|
||||
{
|
||||
if (pShape->GetShapeType() == NULL)
|
||||
{
|
||||
freeform = false;
|
||||
m_pXmlWriter->WriteAttribute(L"type", L"#_x0000_t32");
|
||||
}
|
||||
switch(iter->op)
|
||||
{
|
||||
case 0: m_pXmlWriter->WriteAttribute(L"o:connectortype", L"straight"); break;
|
||||
case 1: m_pXmlWriter->WriteAttribute(L"o:connectortype", L"elbow"); break;
|
||||
case 2: m_pXmlWriter->WriteAttribute(L"o:connectortype", L"curved"); break;
|
||||
case 3: m_pXmlWriter->WriteAttribute(L"o:connectortype", L"none"); break;
|
||||
}
|
||||
}break;
|
||||
// FILL
|
||||
case fillColor:
|
||||
{
|
||||
@ -544,6 +558,14 @@ namespace DocFileFormat
|
||||
appendValueAttribute(&m_fill, L"r:id", std::wstring(( L"rId" ) + FormatUtils::IntToWideString(m_nImageId) ));
|
||||
}
|
||||
}break;
|
||||
case fillBlipName:
|
||||
{
|
||||
std::wstring name;
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::wstring>(&name, iter->opComplex.get(), iter->op, ENCODING_UTF16);
|
||||
if (!name.empty())
|
||||
appendValueAttribute(&m_fill, L"o:title", FormatUtils::XmlEncode(name));
|
||||
|
||||
}break;
|
||||
case fillOpacity:
|
||||
{
|
||||
appendValueAttribute(&m_fill, L"opacity", ( FormatUtils::IntToWideString( iter->op ) + L"f" ));
|
||||
|
||||
@ -197,20 +197,20 @@ public:
|
||||
int cchSize = 1;
|
||||
cch = ReadBytes( cchSize, true );
|
||||
|
||||
int xstzSize = FormatUtils::BytesToUChar( cch, 0, cchSize ) * 1;
|
||||
int xstzSize = DocFormatUtils::FormatUtils::BytesToUChar( cch, 0, cchSize ) * 1;
|
||||
xstz = ReadBytes(xstzSize, true);
|
||||
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::wstring>( &wstrResult, xstz, xstzSize, ENCODING_WINDOWS_1250 );
|
||||
DocFormatUtils::FormatUtils::GetSTLCollectionFromBytes<std::wstring>( &wstrResult, xstz, xstzSize, ENCODING_WINDOWS_1250 );
|
||||
}
|
||||
else
|
||||
{
|
||||
int cchSize = 2;
|
||||
cch = ReadBytes( cchSize, true );
|
||||
|
||||
int xstzSize = FormatUtils::BytesToInt16( cch, 0, cchSize ) * 2;
|
||||
int xstzSize = DocFormatUtils::FormatUtils::BytesToInt16( cch, 0, cchSize ) * 2;
|
||||
xstz = ReadBytes(xstzSize, true);
|
||||
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::wstring>( &wstrResult, xstz, xstzSize, ENCODING_UTF16 );
|
||||
DocFormatUtils::FormatUtils::GetSTLCollectionFromBytes<std::wstring>( &wstrResult, xstz, xstzSize, ENCODING_UTF16 );
|
||||
}
|
||||
|
||||
RELEASEARRAYOBJECTS(xstz);
|
||||
@ -234,7 +234,7 @@ public:
|
||||
//dont read the terminating zero
|
||||
unsigned char* stringBytes = ReadBytes( ( cch * 2 ), true );
|
||||
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::wstring>( &result, stringBytes, ( ( cch * 2 ) - 2 ), ENCODING_UTF16 );
|
||||
DocFormatUtils::FormatUtils::GetSTLCollectionFromBytes<std::wstring>( &result, stringBytes, ( ( cch * 2 ) - 2 ), ENCODING_UTF16 );
|
||||
|
||||
RELEASEARRAYOBJECTS( stringBytes );
|
||||
}
|
||||
@ -278,7 +278,7 @@ public:
|
||||
//dont read the terminating zero
|
||||
stringBytes = ReadBytes( cch, true );
|
||||
|
||||
FormatUtils::GetSTLCollectionFromBytes<std::wstring>( &result, stringBytes, ( cch - 1 ), ENCODING_WINDOWS_1250);
|
||||
DocFormatUtils::FormatUtils::GetSTLCollectionFromBytes<std::wstring>( &result, stringBytes, ( cch - 1 ), ENCODING_WINDOWS_1250);
|
||||
|
||||
}
|
||||
RELEASEARRAYOBJECTS( stringBytes );
|
||||
|
||||
@ -139,7 +139,7 @@ namespace DocFileFormat
|
||||
|
||||
if (encryptionHeader->bStandard)
|
||||
{
|
||||
CRYPT::RC4Decryptor Decryptor(encryptionHeader->crypt_data_rc4, m_sPassword, 1);
|
||||
CRYPT::RC4Decryptor Decryptor(encryptionHeader->crypt_data_rc4, m_sPassword);
|
||||
|
||||
if (Decryptor.IsVerify() == false)
|
||||
{
|
||||
@ -470,11 +470,6 @@ namespace DocFileFormat
|
||||
delete storageOut;
|
||||
return false;
|
||||
}
|
||||
//DecryptStream(Decryptor, "WordDocument", storageIn, storageOut);
|
||||
//if (FIB->m_FibBase.fWhichTblStm)
|
||||
// DecryptStream(Decryptor, "1Table", storageIn, storageOut);
|
||||
//else
|
||||
// DecryptStream(Decryptor, "0Table", storageIn, storageOut);
|
||||
|
||||
std::list<std::string> listStream = storageIn->entries();
|
||||
|
||||
@ -486,15 +481,11 @@ namespace DocFileFormat
|
||||
|
||||
for (std::list<std::string>::iterator it2 = list_entry.begin(); it2 != list_entry.end(); it2++)
|
||||
{
|
||||
//if (*it2 != "WordDocument" && std::wstring::npos == it2->find("Table"))
|
||||
// CopyStream( *it2, storageIn, storageOut);
|
||||
DecryptStream(Decryptor, *it2, storageIn, storageOut);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//if (*it != "WordDocument" && std::wstring::npos == it->find("Table"))
|
||||
// CopyStream( *it, storageIn, storageOut);
|
||||
DecryptStream(Decryptor, *it, storageIn, storageOut);
|
||||
}
|
||||
|
||||
@ -554,32 +545,40 @@ namespace DocFileFormat
|
||||
if (!stream) return false;
|
||||
|
||||
stream->seek(0);
|
||||
int sz_stream = stream->size();
|
||||
int size_stream = stream->size();
|
||||
|
||||
POLE::Stream *streamNew = new POLE::Stream(storageOut, streamName, true, sz_stream);
|
||||
POLE::Stream *streamNew = new POLE::Stream(storageOut, streamName, true, size_stream);
|
||||
if (!streamNew) return false;
|
||||
|
||||
unsigned char* data_stream = new unsigned char[sz_stream];
|
||||
stream->read(data_stream, sz_stream);
|
||||
unsigned char* data_stream = new unsigned char[size_stream];
|
||||
stream->read(data_stream, size_stream);
|
||||
|
||||
unsigned char* data_store = NULL;
|
||||
int sz_data_store = 0;
|
||||
int size_data_store = 0;
|
||||
|
||||
if ("WordDocument" == streamName)
|
||||
{
|
||||
sz_data_store = 68;
|
||||
data_store = new unsigned char[sz_data_store];
|
||||
size_data_store = 68;
|
||||
data_store = new unsigned char[size_data_store];
|
||||
}
|
||||
|
||||
if (data_store)
|
||||
memcpy(data_store, data_stream, sz_data_store);
|
||||
memcpy(data_store, data_stream, size_data_store);
|
||||
|
||||
int size_block = 0x200;
|
||||
for (int pos = 0, block = 0 ; pos < size_stream; pos += size_block, block++)
|
||||
{
|
||||
if (pos + size_block > size_stream)
|
||||
size_block = size_stream - pos;
|
||||
|
||||
Decryptor->Decrypt((char*)data_stream + pos, size_block, block);
|
||||
}
|
||||
|
||||
Decryptor->Decrypt((char*)data_stream, sz_stream, 0);
|
||||
|
||||
if (data_store)
|
||||
memcpy(data_stream, data_store, sz_data_store);
|
||||
memcpy(data_stream, data_store, size_data_store);
|
||||
|
||||
streamNew->write(data_stream, sz_stream);
|
||||
streamNew->write(data_stream, size_stream);
|
||||
|
||||
RELEASEARRAYOBJECTS(data_store);
|
||||
RELEASEARRAYOBJECTS(data_stream);
|
||||
|
||||
@ -405,6 +405,8 @@ public:
|
||||
std::wstring Fill;
|
||||
std::wstring Del;
|
||||
std::wstring Ins;
|
||||
std::wstring MoveFrom;
|
||||
std::wstring MoveTo;
|
||||
std::wstring rPrChange;
|
||||
|
||||
bool bBold;
|
||||
@ -492,13 +494,15 @@ public:
|
||||
Fill.clear();
|
||||
Del.clear();
|
||||
Ins.clear();
|
||||
MoveFrom.clear();
|
||||
MoveTo.clear();
|
||||
rPrChange.clear();
|
||||
}
|
||||
bool IsNoEmpty()
|
||||
{
|
||||
return bBold || bItalic || bUnderline || bStrikeout || bFontAscii || bFontHAnsi || bFontAE || bFontCS || bFontSize || bColor || bVertAlign || bHighLight || bShd ||
|
||||
bRStyle || bSpacing || bDStrikeout || bCaps || bSmallCaps || bPosition || bFontHint || bBoldCs || bItalicCs || bFontSizeCs || bCs || bRtl || bLang || bLangBidi || bLangEA || bThemeColor || bVanish ||
|
||||
!Outline.empty() || !Fill.empty() || !Del.empty() || !Ins.empty() || !rPrChange.empty();
|
||||
!Outline.empty() || !Fill.empty() || !Del.empty() || !Ins.empty() || !MoveFrom.empty() || !MoveTo.empty() || !rPrChange.empty();
|
||||
}
|
||||
void Write(XmlUtils::CStringWriter* pCStringWriter)
|
||||
{
|
||||
@ -749,6 +753,10 @@ public:
|
||||
pCStringWriter->WriteString(Del);
|
||||
if (!Ins.empty())
|
||||
pCStringWriter->WriteString(Ins);
|
||||
if (!MoveFrom.empty())
|
||||
pCStringWriter->WriteString(MoveFrom);
|
||||
if (!MoveTo.empty())
|
||||
pCStringWriter->WriteString(MoveTo);
|
||||
if (!rPrChange.empty())
|
||||
pCStringWriter->WriteString(rPrChange);
|
||||
pCStringWriter->WriteString(L"</w:rPr>");
|
||||
|
||||
@ -570,6 +570,20 @@ public:
|
||||
orPr->Ins = oIns.ToString(_T("w:ins"));
|
||||
}
|
||||
break;
|
||||
case c_oSerProp_rPrType::MoveFrom:
|
||||
{
|
||||
TrackRevision oMoveFrom;
|
||||
oBinary_CommonReader2.ReadTrackRevision(length, &oMoveFrom);
|
||||
orPr->MoveFrom = oMoveFrom.ToString(_T("w:moveFrom"));
|
||||
}
|
||||
break;
|
||||
case c_oSerProp_rPrType::MoveTo:
|
||||
{
|
||||
TrackRevision oMoveTo;
|
||||
oBinary_CommonReader2.ReadTrackRevision(length, &oMoveTo);
|
||||
orPr->MoveTo = oMoveTo.ToString(_T("w:moveTo"));
|
||||
}
|
||||
break;
|
||||
case c_oSerProp_rPrType::rPrChange:
|
||||
{
|
||||
TrackRevision oRPrChange;
|
||||
@ -3771,6 +3785,42 @@ public:
|
||||
res = Read1(length, &Binary_DocumentTableReader::ReadDelIns, this, &oTrackRevision);
|
||||
oTrackRevision.Write(&GetRunStringWriter(), _T("w:del"));
|
||||
}
|
||||
else if ( c_oSerParType::MoveFrom == type )
|
||||
{
|
||||
TrackRevision oTrackRevision;
|
||||
res = Read1(length, &Binary_DocumentTableReader::ReadDelIns, this, &oTrackRevision);
|
||||
oTrackRevision.Write(&GetRunStringWriter(), _T("w:moveFrom"));
|
||||
}
|
||||
else if ( c_oSerParType::MoveTo == type )
|
||||
{
|
||||
TrackRevision oTrackRevision;
|
||||
res = Read1(length, &Binary_DocumentTableReader::ReadDelIns, this, &oTrackRevision);
|
||||
oTrackRevision.Write(&GetRunStringWriter(), _T("w:moveTo"));
|
||||
}
|
||||
else if ( c_oSerParType::MoveFromRangeStart == type )
|
||||
{
|
||||
OOX::Logic::CMoveFromRangeStart oMoveFromRangeStart;
|
||||
res = Read1(length, &Binary_DocumentTableReader::ReadMoveFromRangeStart, this, &oMoveFromRangeStart);
|
||||
GetRunStringWriter().WriteString(oMoveFromRangeStart.toXML());
|
||||
}
|
||||
else if ( c_oSerParType::MoveFromRangeEnd == type )
|
||||
{
|
||||
OOX::Logic::CMoveFromRangeEnd oMoveToRangeEnd;
|
||||
res = Read1(length, &Binary_DocumentTableReader::ReadMoveFromRangeEnd, this, &oMoveToRangeEnd);
|
||||
GetRunStringWriter().WriteString(oMoveToRangeEnd.toXML());
|
||||
}
|
||||
else if ( c_oSerParType::MoveToRangeStart == type )
|
||||
{
|
||||
OOX::Logic::CMoveToRangeStart oMoveToRangeStart;
|
||||
res = Read1(length, &Binary_DocumentTableReader::ReadMoveToRangeStart, this, &oMoveToRangeStart);
|
||||
GetRunStringWriter().WriteString(oMoveToRangeStart.toXML());
|
||||
}
|
||||
else if ( c_oSerParType::MoveToRangeEnd == type )
|
||||
{
|
||||
OOX::Logic::CMoveToRangeEnd oMoveToRangeEnd;
|
||||
res = Read1(length, &Binary_DocumentTableReader::ReadMoveToRangeEnd, this, &oMoveToRangeEnd);
|
||||
GetRunStringWriter().WriteString(oMoveToRangeEnd.toXML());
|
||||
}
|
||||
else if(c_oSerParType::Sdt == type)
|
||||
{
|
||||
SdtWraper oSdt(1);
|
||||
@ -3797,6 +3847,142 @@ public:
|
||||
res = c_oSerConstants::ReadUnknown;
|
||||
return res;
|
||||
}
|
||||
int ReadMoveFromRangeStart(BYTE type, long length, void* poResult)
|
||||
{
|
||||
int res = c_oSerConstants::ReadOk;
|
||||
OOX::Logic::CMoveFromRangeStart* pMoveFromRangeStart = static_cast<OOX::Logic::CMoveFromRangeStart*>(poResult);
|
||||
if (c_oSerMoveRange::Author == type)
|
||||
{
|
||||
pMoveFromRangeStart->m_sAuthor.Init();
|
||||
pMoveFromRangeStart->m_sAuthor->append(m_oBufferedStream.GetString3(length));
|
||||
}
|
||||
else if (c_oSerMoveRange::ColFirst == type)
|
||||
{
|
||||
pMoveFromRangeStart->m_oColFirst.Init();
|
||||
pMoveFromRangeStart->m_oColFirst->SetValue(m_oBufferedStream.GetLong());
|
||||
}
|
||||
else if (c_oSerMoveRange::ColLast == type)
|
||||
{
|
||||
pMoveFromRangeStart->m_oColLast.Init();
|
||||
pMoveFromRangeStart->m_oColLast->SetValue(m_oBufferedStream.GetLong());
|
||||
}
|
||||
else if (c_oSerMoveRange::Date == type)
|
||||
{
|
||||
std::wstring strValue = m_oBufferedStream.GetString3(length);
|
||||
|
||||
pMoveFromRangeStart->m_oDate.Init();
|
||||
pMoveFromRangeStart->m_oDate->SetValue(strValue);
|
||||
}
|
||||
else if (c_oSerMoveRange::DisplacedByCustomXml == type)
|
||||
{
|
||||
pMoveFromRangeStart->m_oDisplacedByCustomXml.Init();
|
||||
pMoveFromRangeStart->m_oDisplacedByCustomXml->SetValue((SimpleTypes::EDisplacedByCustomXml)m_oBufferedStream.GetUChar());
|
||||
}
|
||||
else if (c_oSerMoveRange::Id == type)
|
||||
{
|
||||
pMoveFromRangeStart->m_oId.Init();
|
||||
pMoveFromRangeStart->m_oId->SetValue(m_oBufferedStream.GetLong());
|
||||
}
|
||||
else if (c_oSerMoveRange::Name == type)
|
||||
{
|
||||
pMoveFromRangeStart->m_sName.Init();
|
||||
pMoveFromRangeStart->m_sName->append(m_oBufferedStream.GetString3(length));
|
||||
}
|
||||
else if (c_oSerMoveRange::UserId == type)
|
||||
{
|
||||
pMoveFromRangeStart->m_sUserId.Init();
|
||||
pMoveFromRangeStart->m_sUserId->append(m_oBufferedStream.GetString3(length));
|
||||
}
|
||||
else
|
||||
res = c_oSerConstants::ReadUnknown;
|
||||
return res;
|
||||
}
|
||||
int ReadMoveToRangeStart(BYTE type, long length, void* poResult)
|
||||
{
|
||||
int res = c_oSerConstants::ReadOk;
|
||||
OOX::Logic::CMoveToRangeStart* pMoveToRangeStart = static_cast<OOX::Logic::CMoveToRangeStart*>(poResult);
|
||||
if (c_oSerMoveRange::Author == type)
|
||||
{
|
||||
pMoveToRangeStart->m_sAuthor.Init();
|
||||
pMoveToRangeStart->m_sAuthor->append(m_oBufferedStream.GetString3(length));
|
||||
}
|
||||
else if (c_oSerMoveRange::ColFirst == type)
|
||||
{
|
||||
pMoveToRangeStart->m_oColFirst.Init();
|
||||
pMoveToRangeStart->m_oColFirst->SetValue(m_oBufferedStream.GetLong());
|
||||
}
|
||||
else if (c_oSerMoveRange::ColLast == type)
|
||||
{
|
||||
pMoveToRangeStart->m_oColLast.Init();
|
||||
pMoveToRangeStart->m_oColLast->SetValue(m_oBufferedStream.GetLong());
|
||||
}
|
||||
else if (c_oSerMoveRange::Date == type)
|
||||
{
|
||||
std::wstring strValue = m_oBufferedStream.GetString3(length);
|
||||
|
||||
pMoveToRangeStart->m_oDate.Init();
|
||||
pMoveToRangeStart->m_oDate->SetValue(strValue);
|
||||
}
|
||||
else if (c_oSerMoveRange::DisplacedByCustomXml == type)
|
||||
{
|
||||
pMoveToRangeStart->m_oDisplacedByCustomXml.Init();
|
||||
pMoveToRangeStart->m_oDisplacedByCustomXml->SetValue((SimpleTypes::EDisplacedByCustomXml)m_oBufferedStream.GetUChar());
|
||||
}
|
||||
else if (c_oSerMoveRange::Id == type)
|
||||
{
|
||||
pMoveToRangeStart->m_oId.Init();
|
||||
pMoveToRangeStart->m_oId->SetValue(m_oBufferedStream.GetLong());
|
||||
}
|
||||
else if (c_oSerMoveRange::Name == type)
|
||||
{
|
||||
pMoveToRangeStart->m_sName.Init();
|
||||
pMoveToRangeStart->m_sName->append(m_oBufferedStream.GetString3(length));
|
||||
}
|
||||
else if (c_oSerMoveRange::UserId == type)
|
||||
{
|
||||
pMoveToRangeStart->m_sUserId.Init();
|
||||
pMoveToRangeStart->m_sUserId->append(m_oBufferedStream.GetString3(length));
|
||||
}
|
||||
else
|
||||
res = c_oSerConstants::ReadUnknown;
|
||||
return res;
|
||||
}
|
||||
int ReadMoveFromRangeEnd(BYTE type, long length, void* poResult)
|
||||
{
|
||||
int res = c_oSerConstants::ReadOk;
|
||||
OOX::Logic::CMoveFromRangeEnd* pMoveFromRangeEnd = static_cast<OOX::Logic::CMoveFromRangeEnd*>(poResult);
|
||||
if (c_oSerMoveRange::DisplacedByCustomXml == type)
|
||||
{
|
||||
pMoveFromRangeEnd->m_oDisplacedByCustomXml.Init();
|
||||
pMoveFromRangeEnd->m_oDisplacedByCustomXml->SetValue((SimpleTypes::EDisplacedByCustomXml)m_oBufferedStream.GetUChar());
|
||||
}
|
||||
else if (c_oSerMoveRange::Id == type)
|
||||
{
|
||||
pMoveFromRangeEnd->m_oId.Init();
|
||||
pMoveFromRangeEnd->m_oId->SetValue(m_oBufferedStream.GetLong());
|
||||
}
|
||||
else
|
||||
res = c_oSerConstants::ReadUnknown;
|
||||
return res;
|
||||
}
|
||||
int ReadMoveToRangeEnd(BYTE type, long length, void* poResult)
|
||||
{
|
||||
int res = c_oSerConstants::ReadOk;
|
||||
OOX::Logic::CMoveToRangeEnd* pMoveToRangeEnd = static_cast<OOX::Logic::CMoveToRangeEnd*>(poResult);
|
||||
if (c_oSerMoveRange::DisplacedByCustomXml == type)
|
||||
{
|
||||
pMoveToRangeEnd->m_oDisplacedByCustomXml.Init();
|
||||
pMoveToRangeEnd->m_oDisplacedByCustomXml->SetValue((SimpleTypes::EDisplacedByCustomXml)m_oBufferedStream.GetUChar());
|
||||
}
|
||||
else if (c_oSerMoveRange::Id == type)
|
||||
{
|
||||
pMoveToRangeEnd->m_oId.Init();
|
||||
pMoveToRangeEnd->m_oId->SetValue(m_oBufferedStream.GetLong());
|
||||
}
|
||||
else
|
||||
res = c_oSerConstants::ReadUnknown;
|
||||
return res;
|
||||
}
|
||||
int ReadFldSimple(BYTE type, long length, void* poResult)
|
||||
{
|
||||
int res = c_oSerConstants::ReadOk;
|
||||
|
||||
@ -381,7 +381,9 @@ extern int g_nCurFormatVersion;
|
||||
TextFill = 32,
|
||||
Del = 33,
|
||||
Ins = 34,
|
||||
rPrChange = 35
|
||||
rPrChange = 35,
|
||||
MoveFrom = 36,
|
||||
MoveTo = 37
|
||||
};}
|
||||
namespace c_oSerProp_rowPrType{enum c_oSerProp_rowPrType
|
||||
{
|
||||
@ -464,7 +466,13 @@ extern int g_nCurFormatVersion;
|
||||
Del = 12,
|
||||
Ins = 13,
|
||||
Background = 14,
|
||||
Sdt = 15
|
||||
Sdt = 15,
|
||||
MoveFrom = 16,
|
||||
MoveTo = 17,
|
||||
MoveFromRangeStart = 18,
|
||||
MoveFromRangeEnd = 19,
|
||||
MoveToRangeStart = 20,
|
||||
MoveToRangeEnd = 21
|
||||
};}
|
||||
namespace c_oSerDocTableType{enum c_oSerDocTableType
|
||||
{
|
||||
@ -1073,6 +1081,17 @@ extern int g_nCurFormatVersion;
|
||||
TIMaxLength = 23,
|
||||
TIType = 24,
|
||||
};}
|
||||
namespace c_oSerMoveRange{enum c_oSerMoveRange
|
||||
{
|
||||
Author = 0,
|
||||
ColFirst = 1,
|
||||
ColLast = 2,
|
||||
Date = 3,
|
||||
DisplacedByCustomXml = 4,
|
||||
Id = 5,
|
||||
Name = 6,
|
||||
UserId = 7
|
||||
};}
|
||||
}
|
||||
|
||||
#endif // #ifndef DOCX_BIN_READER_WRITER_DEFINES
|
||||
|
||||
@ -831,6 +831,22 @@ namespace BinDocxRW
|
||||
Write_rPrChange(rPr.m_oRPrChange.get());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if(rPr.m_oMoveFrom.IsInit())
|
||||
{
|
||||
m_oBcw.m_oStream.WriteBYTE(c_oSerProp_rPrType::MoveFrom);
|
||||
m_oBcw.m_oStream.WriteBYTE(c_oSerPropLenType::Variable);
|
||||
nCurPos = m_oBcw.WriteItemWithLengthStart();
|
||||
m_oBcw.WriteTrackRevision(rPr.m_oMoveFrom.get());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if(rPr.m_oMoveTo.IsInit())
|
||||
{
|
||||
m_oBcw.m_oStream.WriteBYTE(c_oSerProp_rPrType::MoveTo);
|
||||
m_oBcw.m_oStream.WriteBYTE(c_oSerPropLenType::Variable);
|
||||
nCurPos = m_oBcw.WriteItemWithLengthStart();
|
||||
m_oBcw.WriteTrackRevision(rPr.m_oMoveTo.get());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
}
|
||||
void Write_rPrChange(const OOX::Logic::CRPrChange& rPrChange)
|
||||
{
|
||||
@ -3229,6 +3245,22 @@ namespace BinDocxRW
|
||||
m_oBcw.WriteItemEnd(nCurPos);
|
||||
break;
|
||||
}
|
||||
case OOX::et_w_moveFrom:
|
||||
{
|
||||
OOX::Logic::CMoveFrom* pMoveFrom = static_cast<OOX::Logic::CMoveFrom*>(item);
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerParType::MoveFrom);
|
||||
WriteMoveFrom(*pMoveFrom);
|
||||
m_oBcw.WriteItemEnd(nCurPos);
|
||||
break;
|
||||
}
|
||||
case OOX::et_w_moveTo:
|
||||
{
|
||||
OOX::Logic::CMoveTo* pMoveTo = static_cast<OOX::Logic::CMoveTo*>(item);
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerParType::MoveTo);
|
||||
WriteMoveTo(*pMoveTo);
|
||||
m_oBcw.WriteItemEnd(nCurPos);
|
||||
break;
|
||||
}
|
||||
case OOX::et_w_commentRangeStart:
|
||||
{
|
||||
OOX::Logic::CCommentRangeStart* pCommentRangeStart = static_cast<OOX::Logic::CCommentRangeStart*>(item);
|
||||
@ -3241,6 +3273,39 @@ namespace BinDocxRW
|
||||
WriteComment(OOX::et_w_commentRangeEnd, pCommentRangeEnd->m_oId);
|
||||
break;
|
||||
}
|
||||
//todo moveRange on all levels(body, p ...)
|
||||
// case OOX::et_w_moveFromRangeStart:
|
||||
// {
|
||||
// OOX::Logic::CMoveFromRangeStart* pMoveFromRangeStart = static_cast<OOX::Logic::CMoveFromRangeStart*>(item);
|
||||
// nCurPos = m_oBcw.WriteItemStart(c_oSerParType::MoveFromRangeStart);
|
||||
// WriteMoveRangeStart(*pMoveFromRangeStart);
|
||||
// m_oBcw.WriteItemEnd(nCurPos);
|
||||
// break;
|
||||
// }
|
||||
// case OOX::et_w_moveFromRangeEnd:
|
||||
// {
|
||||
// OOX::Logic::CMoveFromRangeEnd* pMoveFromRangeEnd = static_cast<OOX::Logic::CMoveFromRangeEnd*>(item);
|
||||
// nCurPos = m_oBcw.WriteItemStart(c_oSerParType::MoveFromRangeEnd);
|
||||
// WriteMoveRangeEnd(*pMoveFromRangeEnd);
|
||||
// m_oBcw.WriteItemEnd(nCurPos);
|
||||
// break;
|
||||
// }
|
||||
// case OOX::et_w_moveToRangeStart:
|
||||
// {
|
||||
// OOX::Logic::CMoveToRangeStart* pMoveToRangeStart = static_cast<OOX::Logic::CMoveToRangeStart*>(item);
|
||||
// nCurPos = m_oBcw.WriteItemStart(c_oSerParType::MoveToRangeStart);
|
||||
// WriteMoveRangeStart(*pMoveToRangeStart);
|
||||
// m_oBcw.WriteItemEnd(nCurPos);
|
||||
// break;
|
||||
// }
|
||||
// case OOX::et_w_moveToRangeEnd:
|
||||
// {
|
||||
// OOX::Logic::CMoveToRangeEnd* pMoveToRangeEnd = static_cast<OOX::Logic::CMoveToRangeEnd*>(item);
|
||||
// nCurPos = m_oBcw.WriteItemStart(c_oSerParType::MoveToRangeEnd);
|
||||
// WriteMoveRangeEnd(*pMoveToRangeEnd);
|
||||
// m_oBcw.WriteItemEnd(nCurPos);
|
||||
// break;
|
||||
// }
|
||||
case OOX::et_m_oMathPara:
|
||||
{
|
||||
OOX::Logic::COMathPara* pOMathPara = static_cast<OOX::Logic::COMathPara*>(item);
|
||||
@ -3280,6 +3345,92 @@ namespace BinDocxRW
|
||||
WriteParagraphContent(oIns.m_arrItems);
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
void WriteMoveFrom(const OOX::Logic::CMoveFrom& oMoveFrom)
|
||||
{
|
||||
int nCurPos = 0;
|
||||
m_oBcw.WriteTrackRevision(oMoveFrom);
|
||||
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerProp_RevisionType::Content);
|
||||
WriteParagraphContent(oMoveFrom.m_arrItems);
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
void WriteMoveTo(const OOX::Logic::CMoveTo& oMoveTo)
|
||||
{
|
||||
int nCurPos = 0;
|
||||
m_oBcw.WriteTrackRevision(oMoveTo);
|
||||
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerProp_RevisionType::Content);
|
||||
WriteParagraphContent(oMoveTo.m_arrItems);
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
template<typename T> void WriteMoveRangeStart(const T& elem)
|
||||
{
|
||||
int nCurPos = 0;
|
||||
if (elem.m_sAuthor.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::Author);
|
||||
m_oBcw.m_oStream.WriteStringW3(elem.m_sAuthor.get());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if (elem.m_oColFirst.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::ColFirst);
|
||||
m_oBcw.m_oStream.WriteLONG(elem.m_oColFirst->GetValue());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if (elem.m_oColLast.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::ColLast);
|
||||
m_oBcw.m_oStream.WriteLONG(elem.m_oColLast->GetValue());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if (elem.m_oDate.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::Date);
|
||||
m_oBcw.m_oStream.WriteStringW3(elem.m_oDate->ToString());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if (elem.m_oDisplacedByCustomXml.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::DisplacedByCustomXml);
|
||||
m_oBcw.m_oStream.WriteBYTE(elem.m_oDisplacedByCustomXml->GetValue());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if (elem.m_oId.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::Id);
|
||||
m_oBcw.m_oStream.WriteLONG(elem.m_oId->GetValue());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if (elem.m_sName.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::Name);
|
||||
m_oBcw.m_oStream.WriteStringW3(elem.m_sName.get());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if (elem.m_sUserId.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::UserId);
|
||||
m_oBcw.m_oStream.WriteStringW3(elem.m_sUserId.get());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
}
|
||||
template<typename T> void WriteMoveRangeEnd(const T& elem)
|
||||
{
|
||||
int nCurPos = 0;
|
||||
if (elem.m_oDisplacedByCustomXml.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::DisplacedByCustomXml);
|
||||
m_oBcw.m_oStream.WriteBYTE(elem.m_oDisplacedByCustomXml->GetValue());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
if (elem.m_oId.IsInit())
|
||||
{
|
||||
nCurPos = m_oBcw.WriteItemStart(c_oSerMoveRange::Id);
|
||||
m_oBcw.m_oStream.WriteLONG(elem.m_oId->GetValue());
|
||||
m_oBcw.WriteItemWithLengthEnd(nCurPos);
|
||||
}
|
||||
}
|
||||
void WriteComment(OOX::EElementType eType, nullable<SimpleTypes::CDecimalNumber<>>& oId)
|
||||
{
|
||||
int nCurPos = 0;
|
||||
|
||||
@ -548,7 +548,7 @@ void PptxConverter::convert( PPTX::Logic::Transition *oox_transition )
|
||||
|
||||
if (oox_transition->advTm.is_init())
|
||||
{
|
||||
odp_context->current_slide().set_page_duration(*oox_transition->dur);
|
||||
odp_context->current_slide().set_page_duration(*oox_transition->advTm);
|
||||
}
|
||||
|
||||
if (oox_transition->base.is_init() == false) return;
|
||||
|
||||
@ -176,6 +176,7 @@ SOURCES += \
|
||||
../Reader/ReadStructures.cpp \
|
||||
../Reader/PPTDocumentInfoOneUser.cpp \
|
||||
../Reader/Records.cpp \
|
||||
../Reader/PPTFileReader.cpp \
|
||||
../Reader/SlidePersist.cpp \
|
||||
../Records/Animations/AnimationTypes.cpp \
|
||||
../Records/Drawing/ArtBlip.cpp \
|
||||
|
||||
@ -32,6 +32,7 @@
|
||||
|
||||
#include "../Reader/ReadStructures.cpp"
|
||||
#include "../Reader/PPTDocumentInfoOneUser.cpp"
|
||||
#include "../Reader/PPTFileReader.cpp"
|
||||
#include "../Reader/Records.cpp"
|
||||
#include "../Reader/SlidePersist.cpp"
|
||||
#include "../Records/Animations/AnimationTypes.cpp"
|
||||
|
||||
@ -64,7 +64,8 @@ long COfficePPTFile::OpenFile(const std::wstring & sFileName, const std::wstring
|
||||
m_pReader = new CPPTFileReader(pStgFrom, m_strTempDirectory);
|
||||
CPPTFileReader* pptReader = (CPPTFileReader*)m_pReader;
|
||||
|
||||
pptReader->m_oDocumentInfo.m_strFileDirectory= GetDirectory(sFileName.c_str());
|
||||
pptReader->m_oDocumentInfo.m_strTmpDirectory = m_strTempDirectory;
|
||||
pptReader->m_oDocumentInfo.m_strPassword = password;
|
||||
|
||||
if (pptReader->IsPowerPoint() == false)
|
||||
{
|
||||
@ -73,47 +74,21 @@ long COfficePPTFile::OpenFile(const std::wstring & sFileName, const std::wstring
|
||||
return AVS_ERROR_FILEFORMAT;
|
||||
}
|
||||
|
||||
if (pptReader->ReadPersistDirectory() == false)
|
||||
return AVS_ERROR_FILEFORMAT;
|
||||
|
||||
|
||||
if (pptReader->IsEncrypted())
|
||||
if (pptReader->ReadPersists() == false)
|
||||
{
|
||||
CEncryptionHeader *pEncryptionHeader = pptReader->GetEncryptionHeader();
|
||||
if (password.empty()) return AVS_ERROR_DRM;
|
||||
|
||||
if (pEncryptionHeader->bStandard)
|
||||
if (pptReader->IsEncrypted())
|
||||
{
|
||||
CRYPT::RC4Decryptor Decryptor(pEncryptionHeader->crypt_data_rc4, password, 1);
|
||||
|
||||
if (Decryptor.IsVerify() == false)
|
||||
{
|
||||
return AVS_ERROR_PASSWORD;
|
||||
}
|
||||
if (DecryptOfficeFile(&Decryptor) == false) return AVS_ERROR_DRM;
|
||||
|
||||
return OpenFile(m_sTempDecryptFileName, L"");
|
||||
}
|
||||
else
|
||||
{
|
||||
CRYPT::ECMADecryptor Decryptor;
|
||||
|
||||
Decryptor.SetCryptData(pEncryptionHeader->crypt_data_aes);
|
||||
|
||||
if (Decryptor.SetPassword(password) == false)
|
||||
{
|
||||
return AVS_ERROR_PASSWORD;
|
||||
}
|
||||
if (DecryptOfficeFile(&Decryptor) == false) return AVS_ERROR_DRM;
|
||||
|
||||
return OpenFile(m_sTempDecryptFileName, L"");
|
||||
if (password.empty()) return AVS_ERROR_DRM;
|
||||
else return AVS_ERROR_PASSWORD;
|
||||
}
|
||||
return AVS_ERROR_FILEFORMAT;
|
||||
}
|
||||
else
|
||||
{
|
||||
pptReader->ReadSlideList();
|
||||
m_Status = READMODE;
|
||||
}
|
||||
|
||||
//pptReader->ReadEncryptedSummary();
|
||||
//pptReader->ReadDocumentSummary();
|
||||
pptReader->ReadDocument();
|
||||
|
||||
m_Status = READMODE;
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
@ -161,94 +136,3 @@ std::wstring COfficePPTFile::GetDirectory(std::wstring strFileName)
|
||||
}
|
||||
return strFileName;
|
||||
}
|
||||
|
||||
bool COfficePPTFile::DecryptOfficeFile(CRYPT::Decryptor* Decryptor)
|
||||
{
|
||||
if (!m_pReader) return false;
|
||||
CPPTFileReader* pptReader = (CPPTFileReader*)(m_pReader);
|
||||
|
||||
if (m_strTempDirectory.empty())
|
||||
{
|
||||
m_strTempDirectory = NSFile::CFileBinary::GetTempPath();
|
||||
}
|
||||
m_sTempDecryptFileName = m_strTempDirectory + FILE_SEPARATOR_STR + L"~tempFile.ppt";
|
||||
|
||||
POLE::Storage *storageIn = pptReader->m_pPowerPointStg;
|
||||
POLE::Storage *storageOut = new POLE::Storage(m_sTempDecryptFileName.c_str());
|
||||
|
||||
if (!storageOut || !storageIn) return false;
|
||||
|
||||
if (!storageOut->open(true, true))
|
||||
{
|
||||
delete storageOut;
|
||||
return false;
|
||||
}
|
||||
std::list<std::string> listStream = storageIn->entries();
|
||||
|
||||
for (std::list<std::string>::iterator it = listStream.begin(); it != listStream.end(); it++)
|
||||
{
|
||||
if (storageIn->isDirectory(*it))
|
||||
{
|
||||
std::list<std::string> list_entry = storageIn->GetAllStreams(*it);
|
||||
|
||||
for (std::list<std::string>::iterator it2 = list_entry.begin(); it2 != list_entry.end(); it2++)
|
||||
{
|
||||
DecryptStream(Decryptor, *it2, storageIn, storageOut);
|
||||
}
|
||||
}
|
||||
else
|
||||
DecryptStream(Decryptor, *it, storageIn, storageOut);
|
||||
|
||||
}
|
||||
storageOut->close();
|
||||
delete storageOut;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool COfficePPTFile::DecryptStream(CRYPT::Decryptor* Decryptor, std::string streamName, POLE::Storage * storageIn, POLE::Storage * storageOut)
|
||||
{
|
||||
POLE::Stream *stream = new POLE::Stream(storageIn, streamName);
|
||||
if (!stream) return false;
|
||||
|
||||
stream->seek(0);
|
||||
int sz_stream = stream->size();
|
||||
|
||||
POLE::Stream *streamNew = new POLE::Stream(storageOut, streamName, true, sz_stream);
|
||||
if (!streamNew) return false;
|
||||
|
||||
unsigned char* data_stream = new unsigned char[sz_stream];
|
||||
stream->read(data_stream, sz_stream);
|
||||
|
||||
unsigned char* data_store = NULL;
|
||||
int sz_data_store = 0;
|
||||
|
||||
//if ("WordDocument" == streamName)
|
||||
//{
|
||||
// sz_data_store = 68;
|
||||
// data_store = new unsigned char[sz_data_store];
|
||||
//}
|
||||
|
||||
if (data_store)
|
||||
memcpy(data_store, data_stream, sz_data_store);
|
||||
|
||||
Decryptor->Decrypt((char*)data_stream, sz_stream, 0);
|
||||
|
||||
if (data_store)
|
||||
memcpy(data_stream, data_store, sz_data_store);
|
||||
|
||||
streamNew->write(data_stream, sz_stream);
|
||||
|
||||
RELEASEARRAYOBJECTS(data_store);
|
||||
RELEASEARRAYOBJECTS(data_stream);
|
||||
|
||||
streamNew->flush();
|
||||
|
||||
delete streamNew;
|
||||
delete stream;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -79,9 +79,6 @@ private:
|
||||
long OpenFile(const std::wstring & fileName, const std::wstring & password);
|
||||
bool CloseFile();
|
||||
|
||||
bool DecryptOfficeFile (CRYPT::Decryptor* Decryptor);
|
||||
bool DecryptStream (CRYPT::Decryptor* Decryptor, std::string streamName, POLE::Storage* storageIn, POLE::Storage* storageOut);
|
||||
|
||||
std::wstring GetDirectory(std::wstring strFileName);
|
||||
};
|
||||
|
||||
|
||||
@ -38,8 +38,9 @@ class CPPTDocumentInfo
|
||||
public:
|
||||
CCurrentUser m_oCurrentUser;
|
||||
std::vector<CPPTUserInfo*> m_arUsers;
|
||||
std::wstring m_strFileDirectory;
|
||||
std::wstring m_strTmpDirectory;
|
||||
std::map<int, std::wstring> m_mapStoreImageFile;
|
||||
std::wstring m_strPassword;
|
||||
|
||||
CPPTDocumentInfo() : m_oCurrentUser(), m_arUsers()
|
||||
{
|
||||
@ -63,7 +64,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
bool ReadFromStream(CRecordCurrentUserAtom* pCurrentUser, POLE::Stream* pStream, std::wstring strFolderMem)
|
||||
bool ReadFromStream(CRecordCurrentUserAtom* pCurrentUser, POLE::Stream* pStream)
|
||||
{
|
||||
m_oCurrentUser.FromAtom(pCurrentUser);
|
||||
|
||||
@ -84,17 +85,20 @@ public:
|
||||
|
||||
CPPTUserInfo* pInfo = new CPPTUserInfo();
|
||||
|
||||
pInfo->m_strFileDirectory = m_strFileDirectory;
|
||||
pInfo->m_strTmpDirectory = m_strTmpDirectory;
|
||||
pInfo->m_bEncrypt = m_oCurrentUser.m_bIsEncrypt;
|
||||
pInfo->m_strPassword = m_strPassword;
|
||||
|
||||
bool bResult = pInfo->ReadFromStream(&oUserAtom, pStream, strFolderMem);
|
||||
bool bResult = pInfo->ReadFromStream(&oUserAtom, pStream);
|
||||
|
||||
offsetToEdit = pInfo->m_oUser.m_nOffsetLastEdit;
|
||||
|
||||
if (bResult == false)
|
||||
{
|
||||
delete pInfo;
|
||||
continue;
|
||||
|
||||
if (pInfo->m_bEncrypt) return false;
|
||||
else continue;
|
||||
}
|
||||
|
||||
m_arUsers.push_back(pInfo);
|
||||
@ -104,13 +108,16 @@ public:
|
||||
|
||||
pInfo = NULL;
|
||||
}
|
||||
if (m_arUsers.empty() == false)
|
||||
{
|
||||
if (m_arUsers[0]->m_bEncrypt == false)
|
||||
{
|
||||
m_arUsers[0]->FromDocument();
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
bool LoadDocument(std::wstring strFolderMem)
|
||||
{
|
||||
if (m_arUsers.empty()) return false;
|
||||
|
||||
m_arUsers[0]->ReadExtenalObjects(strFolderMem);
|
||||
m_arUsers[0]->FromDocument();
|
||||
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
@ -47,6 +47,9 @@ CPPTUserInfo::CPPTUserInfo() : CDocument(),
|
||||
m_mapMasters(),
|
||||
m_mapNotes(),
|
||||
m_mapSlides(),
|
||||
m_bEncrypt(false),
|
||||
m_pStorageDecrypt(NULL),
|
||||
m_pDecryptor(NULL),
|
||||
m_arOffsetPictures()
|
||||
{
|
||||
m_pDocumentInfo = NULL;
|
||||
@ -58,7 +61,6 @@ CPPTUserInfo::CPPTUserInfo() : CDocument(),
|
||||
m_nWriteSlideTimeOffset = 0.0;
|
||||
m_nWriteSlideTime = 0.0;
|
||||
|
||||
m_strFileDirectory = _T("");
|
||||
m_bIsSetupEmpty = false;
|
||||
|
||||
m_bRtl = false;
|
||||
@ -78,6 +80,9 @@ CPPTUserInfo::~CPPTUserInfo()
|
||||
void CPPTUserInfo::Clear()
|
||||
{
|
||||
CDocument::Clear();
|
||||
|
||||
RELEASEOBJECT(m_pDecryptor);
|
||||
RELEASEOBJECT(m_pStorageDecrypt);
|
||||
|
||||
for (std::map<DWORD, CRecordSlide*>::iterator pPair = m_mapSlides.begin(); pPair != m_mapSlides.end(); ++pPair)
|
||||
{
|
||||
@ -128,7 +133,7 @@ void CPPTUserInfo::Clear()
|
||||
m_arOffsetPictures.clear();
|
||||
}
|
||||
|
||||
bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStream, std::wstring strFolderMem)
|
||||
bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStream)
|
||||
{
|
||||
m_oUser.FromAtom(pUser);
|
||||
|
||||
@ -150,7 +155,7 @@ bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStr
|
||||
oPersist.ToMap(&m_mapOffsetInPIDs);
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::map<DWORD, DWORD>::iterator pPair = m_mapOffsetInPIDs.find(m_oUser.m_nEncryptRef);
|
||||
|
||||
|
||||
if (pPair != m_mapOffsetInPIDs.end())
|
||||
{
|
||||
StreamUtils::StreamSeek(pPair->second, pStream);
|
||||
@ -161,26 +166,69 @@ bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStr
|
||||
m_bEncrypt = true;
|
||||
m_oEncryptionHeader.ReadFromStream(oHeader, pStream);
|
||||
|
||||
return true;
|
||||
m_pDecryptor = new CRYPT::ECMADecryptor();
|
||||
m_pDecryptor->SetCryptData(m_oEncryptionHeader.crypt_data_aes);
|
||||
|
||||
if (m_strPassword.empty())
|
||||
{
|
||||
if (m_pDecryptor->SetPassword(L"VelvetSweatshop") == false)
|
||||
return false;
|
||||
}
|
||||
else if (m_pDecryptor->SetPassword(m_strPassword) == false)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
std::wstring sTemp = m_strTmpDirectory + FILE_SEPARATOR_STR + L"~tempFile.ppt";
|
||||
|
||||
m_pStorageDecrypt = new POLE::Storage(sTemp.c_str());
|
||||
m_pStorageDecrypt->open(true, true);
|
||||
}
|
||||
}
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
pPair = m_mapOffsetInPIDs.find(m_oUser.m_nDocumentRef);
|
||||
|
||||
ReadDocumentPersists(pStream);
|
||||
return true;
|
||||
}
|
||||
|
||||
void CPPTUserInfo::DecryptStream(POLE::Stream *pStream, int block)
|
||||
{
|
||||
int size = pStream->size() - pStream->tell();
|
||||
|
||||
POLE::Stream *pStreamTmp = new POLE::Stream(m_pStorageDecrypt, "Tmp" + std::to_string(m_arStreamDecrypt.size() + 1), true, size);
|
||||
unsigned char* data_stream = new unsigned char[size];
|
||||
|
||||
pStream->read(data_stream, size);
|
||||
m_pDecryptor->Decrypt((char*)data_stream, size, block);
|
||||
pStreamTmp->write(data_stream, size);
|
||||
pStreamTmp->flush();
|
||||
pStreamTmp->seek(0);
|
||||
|
||||
m_arStreamDecrypt.push_back(CFStreamPtr(new CFStream(pStreamTmp)));
|
||||
}
|
||||
|
||||
bool CPPTUserInfo::ReadDocumentPersists(POLE::Stream* pStream)
|
||||
{
|
||||
SRecordHeader oHeader;
|
||||
std::map<DWORD, DWORD>::iterator pPair = m_mapOffsetInPIDs.find(m_oUser.m_nDocumentRef);
|
||||
|
||||
if (pPair == m_mapOffsetInPIDs.end())
|
||||
return false;
|
||||
|
||||
StreamUtils::StreamSeek(pPair->second, pStream);
|
||||
oHeader.ReadFromStream(pStream);
|
||||
DWORD offset_stream = pPair->second;
|
||||
|
||||
StreamUtils::StreamSeek(offset_stream, pStream);
|
||||
|
||||
POLE::Stream * pStreamTmp = pStream;
|
||||
if (m_pDecryptor)
|
||||
{
|
||||
DecryptStream(pStream, m_oUser.m_nDocumentRef);
|
||||
pStreamTmp = m_arStreamDecrypt.back()->stream_;
|
||||
}
|
||||
oHeader.ReadFromStream(pStreamTmp);
|
||||
if (RECORD_TYPE_DOCUMENT != oHeader.RecType)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
m_oDocument.ReadFromStream(oHeader, pStream);
|
||||
|
||||
Clear();
|
||||
m_oDocument.ReadFromStream(oHeader, pStreamTmp);
|
||||
|
||||
std::map<DWORD, DWORD>::iterator nIndexPsrRef;
|
||||
|
||||
@ -190,13 +238,19 @@ bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStr
|
||||
|
||||
if (nIndexPsrRef != m_mapOffsetInPIDs.end())
|
||||
{
|
||||
long offset = (long)nIndexPsrRef->second;
|
||||
offset_stream = nIndexPsrRef->second;
|
||||
|
||||
StreamUtils::StreamSeek(offset, pStream);
|
||||
|
||||
oHeader.ReadFromStream(pStream);
|
||||
StreamUtils::StreamSeek(offset_stream, pStream);
|
||||
POLE::Stream *pStreamTmp = pStream;
|
||||
if (m_pDecryptor)
|
||||
{
|
||||
DecryptStream(pStream, m_oDocument.m_arMasterPersists[index].m_nPsrRef);
|
||||
pStreamTmp = m_arStreamDecrypt.back()->stream_;
|
||||
}
|
||||
oHeader.ReadFromStream(pStreamTmp);
|
||||
|
||||
CRecordSlide* pSlide = new CRecordSlide();
|
||||
pSlide->ReadFromStream(oHeader, pStream);
|
||||
pSlide->ReadFromStream(oHeader, pStreamTmp);
|
||||
pSlide->m_oPersist = m_oDocument.m_arMasterPersists[index];
|
||||
|
||||
pSlide->m_Index = m_mapMasters.size();
|
||||
@ -215,12 +269,19 @@ bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStr
|
||||
|
||||
if (m_mapOffsetInPIDs.end() != nIndexPsrRef)
|
||||
{
|
||||
long offset = (long)nIndexPsrRef->second;
|
||||
StreamUtils::StreamSeek(offset, pStream);
|
||||
|
||||
oHeader.ReadFromStream(pStream);
|
||||
offset_stream = nIndexPsrRef->second;
|
||||
StreamUtils::StreamSeek(offset_stream, pStream);
|
||||
|
||||
POLE::Stream *pStreamTmp = pStream;
|
||||
if (m_pDecryptor)
|
||||
{
|
||||
DecryptStream(pStream, m_oDocument.m_arNotePersists[index].m_nPsrRef);
|
||||
pStreamTmp = m_arStreamDecrypt.back()->stream_;
|
||||
}
|
||||
oHeader.ReadFromStream(pStreamTmp);
|
||||
|
||||
CRecordSlide* pSlide = new CRecordSlide();
|
||||
pSlide->ReadFromStream(oHeader, pStream);
|
||||
pSlide->ReadFromStream(oHeader, pStreamTmp);
|
||||
pSlide->m_oPersist = m_oDocument.m_arNotePersists[index];
|
||||
|
||||
pSlide->m_Index = m_mapNotes.size();
|
||||
@ -240,14 +301,19 @@ bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStr
|
||||
|
||||
if (m_mapOffsetInPIDs.end() != nIndexPsrRef)
|
||||
{
|
||||
long offset = (long)nIndexPsrRef->second;
|
||||
offset_stream = (long)nIndexPsrRef->second;
|
||||
StreamUtils::StreamSeek(offset_stream, pStream);
|
||||
|
||||
StreamUtils::StreamSeek(offset, pStream);
|
||||
|
||||
oHeader.ReadFromStream(pStream);
|
||||
POLE::Stream *pStreamTmp = pStream;
|
||||
if (m_pDecryptor)
|
||||
{
|
||||
DecryptStream(pStream, m_oDocument.m_arSlidePersists[index].m_nPsrRef);
|
||||
pStreamTmp = m_arStreamDecrypt.back()->stream_;
|
||||
}
|
||||
oHeader.ReadFromStream(pStreamTmp);
|
||||
|
||||
CRecordSlide* pSlide = new CRecordSlide();
|
||||
pSlide->ReadFromStream(oHeader, pStream);
|
||||
pSlide->ReadFromStream(oHeader, pStreamTmp);
|
||||
pSlide->m_oPersist = m_oDocument.m_arSlidePersists[index];
|
||||
|
||||
pSlide->m_Index = m_mapSlides.size(); // in m_arrSlidesOrder
|
||||
@ -283,14 +349,19 @@ bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStr
|
||||
|
||||
if (m_mapOffsetInPIDs.end() != nIndexPsrRef)
|
||||
{
|
||||
long offset = (long)nIndexPsrRef->second;
|
||||
offset_stream = nIndexPsrRef->second;
|
||||
StreamUtils::StreamSeek(offset_stream, pStream);
|
||||
|
||||
StreamUtils::StreamSeek(offset, pStream);
|
||||
|
||||
oHeader.ReadFromStream(pStream);
|
||||
POLE::Stream *pStreamTmp = pStream;
|
||||
if (m_pDecryptor)
|
||||
{
|
||||
DecryptStream(pStream, oArrayDoc[0]->m_nNotesMasterPersistIDRef);
|
||||
pStreamTmp = m_arStreamDecrypt.back()->stream_;
|
||||
}
|
||||
oHeader.ReadFromStream(pStreamTmp);
|
||||
|
||||
CRecordSlide* pSlide = new CRecordSlide();
|
||||
pSlide->ReadFromStream(oHeader, pStream);
|
||||
pSlide->ReadFromStream(oHeader, pStreamTmp);
|
||||
pSlide->m_oPersist.m_nPsrRef = oArrayDoc[0]->m_nNotesMasterPersistIDRef;
|
||||
pSlide->m_Index = 0;
|
||||
|
||||
@ -300,24 +371,32 @@ bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStr
|
||||
|
||||
if (m_mapOffsetInPIDs.end() != nIndexPsrRef)
|
||||
{
|
||||
long offset = (long)nIndexPsrRef->second;
|
||||
offset_stream = nIndexPsrRef->second;
|
||||
StreamUtils::StreamSeek(offset_stream, pStream);
|
||||
|
||||
StreamUtils::StreamSeek(offset, pStream);
|
||||
|
||||
oHeader.ReadFromStream(pStream);
|
||||
POLE::Stream *pStreamTmp = pStream;
|
||||
if (m_pDecryptor)
|
||||
{
|
||||
DecryptStream(pStream, oArrayDoc[0]->m_nHandoutMasterPersistIDRef);
|
||||
pStreamTmp = m_arStreamDecrypt.back()->stream_;
|
||||
}
|
||||
oHeader.ReadFromStream(pStreamTmp);
|
||||
|
||||
CRecordSlide* pSlide = new CRecordSlide();
|
||||
pSlide->ReadFromStream(oHeader, pStream);
|
||||
pSlide->ReadFromStream(oHeader, pStreamTmp);
|
||||
pSlide->m_oPersist.m_nPsrRef = oArrayDoc[0]->m_nHandoutMasterPersistIDRef;
|
||||
pSlide->m_Index = 0;
|
||||
|
||||
m_mapHandoutMasters.insert( std::pair<DWORD, CRecordSlide*>(0, pSlide ));
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
//--------------------------------------------------------------------------------------------
|
||||
void CPPTUserInfo::ReadExtenalObjects(std::wstring strFolderMem)
|
||||
{
|
||||
// так... теперь берем всю инфу о ExObject -----------------------------
|
||||
m_oExMedia.m_strPresentationDirectory = strFolderMem;
|
||||
m_oExMedia.m_strSourceDirectory = m_strFileDirectory;
|
||||
|
||||
NSPresentationEditor::CExFilesInfo oInfo;
|
||||
|
||||
@ -364,20 +443,12 @@ bool CPPTUserInfo::ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStr
|
||||
|
||||
m_arrFonts.push_back(oFont);
|
||||
}
|
||||
|
||||
//FromDocument();
|
||||
// FromDocument - должен вызываться после того, как загрузятся все (!!!) юзеры
|
||||
|
||||
// теперь заполним пустые картинки
|
||||
//std::vector<CRecordBlipStoreContainer*> oArray;
|
||||
m_oDocument.GetRecordsByType(&m_arrBlipStore, true, true);
|
||||
if (0 < m_arrBlipStore.size())
|
||||
{
|
||||
m_bIsSetupEmpty = TRUE;
|
||||
m_arrBlipStore[0]->SetUpPicturesInfos(&m_arOffsetPictures);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void CPPTUserInfo::FromDocument()
|
||||
|
||||
@ -50,7 +50,11 @@ public:
|
||||
|
||||
CEncryptionHeader m_oEncryptionHeader;
|
||||
bool m_bEncrypt;
|
||||
|
||||
std::wstring m_strPassword;
|
||||
CRYPT::ECMADecryptor* m_pDecryptor;
|
||||
POLE::Storage* m_pStorageDecrypt;
|
||||
std::vector<CFStreamPtr> m_arStreamDecrypt; // на каждый Persist свой ... оО
|
||||
|
||||
std::map<DWORD, CRecordSlide*> m_mapSlides;
|
||||
std::map<DWORD, CRecordSlide*> m_mapMasters;
|
||||
std::map<DWORD, CRecordSlide*> m_mapNotes;
|
||||
@ -105,7 +109,7 @@ public:
|
||||
std::vector<int> m_arOffsetPictures;
|
||||
bool m_bIsSetupEmpty;
|
||||
|
||||
std::wstring m_strFileDirectory;
|
||||
std::wstring m_strTmpDirectory;
|
||||
|
||||
// вся инфа о ex - файлах
|
||||
CExMedia m_oExMedia;
|
||||
@ -122,7 +126,12 @@ public:
|
||||
|
||||
void Clear();
|
||||
|
||||
bool ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStream, std::wstring strFolderMem);
|
||||
bool ReadFromStream(CRecordUserEditAtom* pUser, POLE::Stream* pStream);
|
||||
bool ReadDocumentPersists(POLE::Stream* pStream);
|
||||
void ReadExtenalObjects(std::wstring strFolderMem);
|
||||
|
||||
void DecryptStream(POLE::Stream *pStream, int block);
|
||||
|
||||
void FromDocument();
|
||||
|
||||
void NormalizeCoords(long lWidth, long lHeight);
|
||||
@ -299,7 +308,6 @@ public:
|
||||
}
|
||||
return _T("blank");
|
||||
}
|
||||
|
||||
|
||||
void AddAnimation (DWORD dwSlideID, double Width, double Height, IElement* pElement);
|
||||
void AddAudioTransition (DWORD dwSlideID, CTransition* pTransition, const std::wstring& strFilePath);
|
||||
|
||||
268
ASCOfficePPTFile/PPTFormatLib/Reader/PPTFileReader.cpp
Normal file
268
ASCOfficePPTFile/PPTFormatLib/Reader/PPTFileReader.cpp
Normal file
@ -0,0 +1,268 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2017
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
#include "PPTFileReader.h"
|
||||
|
||||
#include "../../../ASCOfficeXlsFile2/source/XlsFormat/Crypt/Decryptor.h"
|
||||
#include "../../../ASCOfficeXlsFile2/source/XlsFormat/Logic/SummaryInformationStream/SummaryInformation.h"
|
||||
|
||||
#include "../../../DesktopEditor/common/Directory.h"
|
||||
#include "../Records/Drawing/ArtBlip.h"
|
||||
|
||||
#define CURRENT_USER_STREAM "Current User"
|
||||
|
||||
#define DOCUMENT_STREAM "PowerPoint Document"
|
||||
|
||||
#define PICTURE_STREAM "Pictures"
|
||||
#define HEADER_STREAM "Header"
|
||||
|
||||
#define PP97_DUALSTORAGE "PP97_DUALSTORAGE"
|
||||
|
||||
#define ENCRYPTED_SUMMARY_STREAM "EncryptedSummary"
|
||||
#define DOCUMENT_SUMMARY_STREAM "DocumentSummaryInformation"
|
||||
|
||||
CPPTFileReader::CPPTFileReader(POLE::Storage *pStorage, std::wstring strTemp):
|
||||
m_pStorage(pStorage),
|
||||
m_bIsPPTFile(false),
|
||||
m_nPresentationCodePage(1250),
|
||||
m_pDocumentStream(NULL), m_pPictureStream(NULL), m_pDocumentSummaryStream(NULL), m_pEncryptedSummaryStream(NULL),
|
||||
m_strTmpDirectory(strTemp),
|
||||
m_oDocumentInfo()
|
||||
{
|
||||
m_bDualStorage = false;
|
||||
|
||||
POLE::Stream *pStm = new POLE::Stream( m_pStorage, CURRENT_USER_STREAM);
|
||||
|
||||
if ( ReadCurrentUser(pStm) )
|
||||
{
|
||||
m_bIsPPTFile = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
RELEASEOBJECT(pStm);
|
||||
|
||||
std::string stream_name = std::string(PP97_DUALSTORAGE) + std::string("/") + std::string(CURRENT_USER_STREAM);
|
||||
pStm = new POLE::Stream( m_pStorage, stream_name);
|
||||
|
||||
if (pStm == NULL)
|
||||
return;
|
||||
|
||||
m_bDualStorage = true;
|
||||
if ( ReadCurrentUser(pStm))
|
||||
{
|
||||
m_bIsPPTFile = true;
|
||||
}
|
||||
}
|
||||
|
||||
RELEASEOBJECT(pStm);
|
||||
|
||||
if (0 == m_strTmpDirectory.length())
|
||||
{
|
||||
m_strTmpDirectory = NSDirectory::GetTempPath();
|
||||
}
|
||||
|
||||
m_strTmpDirectory = NSDirectory::CreateDirectoryWithUniqueName(m_strTmpDirectory);
|
||||
|
||||
}
|
||||
CPPTFileReader::~CPPTFileReader()
|
||||
{
|
||||
RELEASEOBJECT(m_pStorage);
|
||||
|
||||
NSDirectory::DeleteDirectory(m_strTmpDirectory);
|
||||
}
|
||||
|
||||
bool CPPTFileReader::IsPowerPoint()
|
||||
{
|
||||
return m_bIsPPTFile;
|
||||
}
|
||||
bool CPPTFileReader::IsEncrypted()
|
||||
{
|
||||
if (m_oDocumentInfo.m_arUsers.empty())
|
||||
return m_oDocumentInfo.m_oCurrentUser.m_bIsEncrypt; //wps не выставляет флаг!
|
||||
|
||||
return m_oDocumentInfo.m_arUsers[0]->m_bEncrypt;
|
||||
}
|
||||
|
||||
bool CPPTFileReader::ReadPersists()
|
||||
{
|
||||
CFStreamPtr pStream = GetDocumentStream();
|
||||
if (!pStream) return false;
|
||||
|
||||
if (m_oDocumentInfo.ReadFromStream(&m_oCurrentUser, pStream->stream_) == false) return false;
|
||||
}
|
||||
void CPPTFileReader::ReadDocument()
|
||||
{
|
||||
ReadPictures();
|
||||
m_oDocumentInfo.LoadDocument(m_strTmpDirectory);
|
||||
}
|
||||
|
||||
bool CPPTFileReader::ReadCurrentUser(POLE::Stream *pStm)
|
||||
{
|
||||
if (!pStm) return false;
|
||||
|
||||
SRecordHeader oHeader;
|
||||
bool isPP = false;
|
||||
|
||||
if( oHeader.ReadFromStream(pStm))
|
||||
{
|
||||
m_oCurrentUser.ReadFromStream(oHeader, pStm);
|
||||
|
||||
isPP = (m_oCurrentUser.m_nSize == 0x00000014 && (m_oCurrentUser.m_nLenUserName <= 255));
|
||||
}
|
||||
|
||||
return isPP;
|
||||
}
|
||||
|
||||
CFStreamPtr CPPTFileReader::GetDocumentStream()
|
||||
{
|
||||
if (!m_pDocumentStream)
|
||||
{
|
||||
m_pDocumentStream = GetStreamByName(DOCUMENT_STREAM);
|
||||
}
|
||||
return m_pDocumentStream;
|
||||
}
|
||||
CFStreamPtr CPPTFileReader::GetPictureStream()
|
||||
{
|
||||
if (!m_pPictureStream)
|
||||
{
|
||||
m_pPictureStream = GetStreamByName(PICTURE_STREAM);
|
||||
}
|
||||
return m_pPictureStream;
|
||||
}
|
||||
CFStreamPtr CPPTFileReader::GetStreamByName(const std::string & name)
|
||||
{
|
||||
if (!m_bIsPPTFile)
|
||||
return CFStreamPtr();
|
||||
|
||||
std::string stream_name;
|
||||
|
||||
if (m_bDualStorage) stream_name = std::string(PP97_DUALSTORAGE) + std::string("/");
|
||||
|
||||
POLE::Stream *pStream = new POLE::Stream(m_pStorage, stream_name + name);
|
||||
|
||||
if (pStream->fail())
|
||||
{
|
||||
RELEASEOBJECT(pStream);
|
||||
return CFStreamPtr();
|
||||
}
|
||||
return CFStreamPtr( new CFStream(pStream));
|
||||
}
|
||||
CFStreamPtr CPPTFileReader::GetEncryptedSummaryStream()
|
||||
{
|
||||
if (m_pEncryptedSummaryStream == NULL)
|
||||
{
|
||||
m_pEncryptedSummaryStream = GetStreamByName(ENCRYPTED_SUMMARY_STREAM);
|
||||
}
|
||||
return m_pEncryptedSummaryStream;
|
||||
}
|
||||
|
||||
CFStreamPtr CPPTFileReader::GetDocumentSummaryStream()
|
||||
{
|
||||
if (!m_pDocumentSummaryStream)
|
||||
{
|
||||
m_pDocumentSummaryStream = GetStreamByName(DOCUMENT_SUMMARY_STREAM);
|
||||
}
|
||||
return m_pDocumentSummaryStream;
|
||||
}
|
||||
void CPPTFileReader::ReadEncryptedSummary()
|
||||
{
|
||||
CFStreamPtr pStream = GetEncryptedSummaryStream();
|
||||
if (!pStream) return;
|
||||
|
||||
SRecordHeader oHeader;
|
||||
|
||||
if (oHeader.ReadFromStream(pStream) == false )
|
||||
{
|
||||
return;
|
||||
}
|
||||
CRecordEncryptedSummary info;
|
||||
|
||||
info.ReadFromStream(oHeader, pStream);
|
||||
}
|
||||
|
||||
void CPPTFileReader::ReadDocumentSummary()
|
||||
{
|
||||
CFStreamPtr pStream = GetDocumentSummaryStream();
|
||||
if (!pStream) return;
|
||||
|
||||
OLEPS::SummaryInformation doc_summary_info(pStream);
|
||||
|
||||
m_nPresentationCodePage = doc_summary_info.GetCodePage();
|
||||
|
||||
if (m_nPresentationCodePage == 0)
|
||||
m_nPresentationCodePage = 1250;
|
||||
}
|
||||
|
||||
void CPPTFileReader::ReadPictures()
|
||||
{
|
||||
if (m_oDocumentInfo.m_arUsers.empty()) return;
|
||||
|
||||
CFStreamPtr pStream = GetPictureStream();
|
||||
if (!pStream) return;
|
||||
|
||||
CRYPT::ECMADecryptor *pDecryptor = m_oDocumentInfo.m_arUsers[0]->m_pDecryptor;
|
||||
|
||||
while (true)
|
||||
{
|
||||
if (pStream->isEOF())
|
||||
break;
|
||||
|
||||
int pos = pStream->getStreamPointer();
|
||||
|
||||
SRecordHeader oHeader;
|
||||
if (pDecryptor)
|
||||
{
|
||||
BYTE pHeader[8];
|
||||
pStream->read(pHeader, 8);
|
||||
|
||||
pDecryptor->Decrypt((char*)pHeader, 8, 0);
|
||||
|
||||
unsigned short rec =0;
|
||||
memcpy(&rec, pHeader + 0, 2);
|
||||
memcpy(&oHeader.RecType,pHeader + 2, 2);
|
||||
memcpy(&oHeader.RecLen, pHeader + 4, 4);
|
||||
|
||||
oHeader.RecInstance = rec >> 4;
|
||||
oHeader.RecVersion = rec - (oHeader.RecInstance << 4);
|
||||
}
|
||||
else
|
||||
oHeader.ReadFromStream(pStream->stream_);
|
||||
|
||||
CRecordOfficeArtBlip art_blip;
|
||||
art_blip.m_strTmpDirectory = m_strTmpDirectory;
|
||||
art_blip.m_oDocumentInfo = &m_oDocumentInfo;
|
||||
|
||||
art_blip.ReadFromStream(oHeader, pStream->stream_);
|
||||
m_oDocumentInfo.m_mapStoreImageFile[ pos ] = art_blip.m_sFileName;
|
||||
|
||||
pStream->seekFromBegin(pos + oHeader.RecLen + 8);
|
||||
}
|
||||
}
|
||||
@ -31,215 +31,48 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "../../../ASCOfficeXlsFile2/source/XlsFormat/Crypt/Decryptor.h"
|
||||
#include "../../../DesktopEditor/common/Directory.h"
|
||||
#include "../Records/Drawing/ArtBlip.h"
|
||||
|
||||
#include "PPTDocumentInfo.h"
|
||||
|
||||
#define CURRENT_USER_STREAM "Current User"
|
||||
|
||||
#define DOCUMENT_STREAM "PowerPoint Document"
|
||||
|
||||
#define PICTURE_STREAM "Pictures"
|
||||
#define HEADER_STREAM "Header"
|
||||
|
||||
#define PP97_DUALSTORAGE "PP97_DUALSTORAGE"
|
||||
|
||||
#define ENCRYPTION_STREAM "EncryptedSummary"
|
||||
using namespace XLS;
|
||||
|
||||
class CPPTFileReader
|
||||
{
|
||||
public:
|
||||
CPPTFileReader(POLE::Storage *pStg, std::wstring strTemp):
|
||||
m_pPowerPointStg(pStg),
|
||||
m_bIsPPTFile(false),
|
||||
m_pDocStream(NULL),
|
||||
m_pPictureStream(NULL),
|
||||
m_lImagesCount(0),
|
||||
m_strMemoryForder(strTemp),
|
||||
m_oDocumentInfo()
|
||||
{
|
||||
m_bDualStorage = false;
|
||||
|
||||
POLE::Stream *pStm = new POLE::Stream( m_pPowerPointStg, CURRENT_USER_STREAM);
|
||||
|
||||
if ( ReadCurrentUser(pStm) )
|
||||
{
|
||||
m_bIsPPTFile = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
RELEASEOBJECT(pStm);
|
||||
|
||||
std::string stream_name = std::string(PP97_DUALSTORAGE) + std::string("/") + std::string(CURRENT_USER_STREAM);
|
||||
pStm = new POLE::Stream( m_pPowerPointStg, stream_name);
|
||||
|
||||
if (pStm == NULL)
|
||||
return;
|
||||
|
||||
m_bDualStorage = true;
|
||||
if ( ReadCurrentUser(pStm))
|
||||
{
|
||||
m_bIsPPTFile = true;
|
||||
}
|
||||
}
|
||||
|
||||
RELEASEOBJECT(pStm);
|
||||
|
||||
if (0 == m_strMemoryForder.length())
|
||||
{
|
||||
m_strMemoryForder = NSDirectory::GetTempPath();
|
||||
}
|
||||
|
||||
m_strMemoryForder = NSDirectory::CreateDirectoryWithUniqueName(m_strMemoryForder);
|
||||
|
||||
}
|
||||
~CPPTFileReader()
|
||||
{
|
||||
RELEASEOBJECT(m_pDocStream);
|
||||
RELEASEOBJECT(m_pPictureStream);
|
||||
|
||||
RELEASEOBJECT(m_pPowerPointStg);
|
||||
|
||||
NSDirectory::DeleteDirectory(m_strMemoryForder);
|
||||
}
|
||||
|
||||
bool IsPowerPoint()
|
||||
{
|
||||
return m_bIsPPTFile;
|
||||
}
|
||||
bool IsEncrypted()
|
||||
{
|
||||
if (m_oDocumentInfo.m_arUsers.empty())
|
||||
return m_oDocumentInfo.m_oCurrentUser.m_bIsEncrypt; //wps не выставляет флаг!
|
||||
|
||||
return &m_oDocumentInfo.m_arUsers[0]->m_bEncrypt;
|
||||
}
|
||||
CEncryptionHeader* GetEncryptionHeader()
|
||||
{
|
||||
if (m_oDocumentInfo.m_arUsers.empty()) return NULL;
|
||||
|
||||
return &m_oDocumentInfo.m_arUsers[0]->m_oEncryptionHeader;
|
||||
}
|
||||
bool ReadPersistDirectory()
|
||||
{
|
||||
// нужно вызывать РОВНО один раз...
|
||||
bool bRes = SavePictures();
|
||||
|
||||
return m_oDocumentInfo.ReadFromStream(&m_oCurrentUser, GetDocStream(), m_strMemoryForder);
|
||||
}
|
||||
|
||||
void ReadSlideList()
|
||||
{
|
||||
if (m_oDocumentInfo.m_arUsers.size() > 0)
|
||||
{
|
||||
DWORD nPID = m_oDocumentInfo.m_arUsers[0]->m_oUser.m_nDocumentRef;
|
||||
std::map<DWORD, DWORD>::iterator pPair = m_oDocumentInfo.m_arUsers[0]->m_mapOffsetInPIDs.find(nPID);
|
||||
|
||||
if (pPair == m_oDocumentInfo.m_arUsers[0]->m_mapOffsetInPIDs.end()) return;
|
||||
|
||||
DWORD offset = pPair->second;
|
||||
StreamUtils::StreamSeek((long)offset, GetDocStream());
|
||||
}
|
||||
}
|
||||
|
||||
CPPTFileReader(POLE::Storage *pStorage, std::wstring strTemp);
|
||||
~CPPTFileReader();
|
||||
bool IsPowerPoint();
|
||||
bool IsEncrypted();
|
||||
bool ReadPersists();
|
||||
void ReadDocument();
|
||||
protected:
|
||||
|
||||
bool ReadCurrentUser(POLE::Stream *pStm)
|
||||
{
|
||||
if (!pStm) return false;
|
||||
CFStreamPtr GetDocumentStream();
|
||||
CFStreamPtr GetPictureStream();
|
||||
CFStreamPtr GetEncryptedSummaryStream();
|
||||
CFStreamPtr GetDocumentSummaryStream();
|
||||
|
||||
CFStreamPtr GetStreamByName(const std::string & name);
|
||||
|
||||
SRecordHeader oHeader;
|
||||
bool isPP = false;
|
||||
|
||||
if( oHeader.ReadFromStream(pStm))
|
||||
{
|
||||
m_oCurrentUser.ReadFromStream(oHeader, pStm);
|
||||
|
||||
isPP = (m_oCurrentUser.m_nSize == 0x00000014 && (m_oCurrentUser.m_nLenUserName <= 255));
|
||||
}
|
||||
|
||||
return isPP;
|
||||
}
|
||||
|
||||
POLE::Stream* GetDocStream()
|
||||
{
|
||||
if (m_pDocStream == NULL)
|
||||
{
|
||||
if (!m_bIsPPTFile)
|
||||
return NULL;
|
||||
|
||||
std::string stream_name;
|
||||
|
||||
if (m_bDualStorage) stream_name = std::string(PP97_DUALSTORAGE) + std::string("/");
|
||||
|
||||
m_pDocStream = new POLE::Stream(m_pPowerPointStg, stream_name + DOCUMENT_STREAM);
|
||||
}
|
||||
return m_pDocStream;
|
||||
}
|
||||
POLE::Stream* GetPictureStream()
|
||||
{
|
||||
if (m_pPictureStream == NULL)
|
||||
{
|
||||
if (!m_bIsPPTFile)
|
||||
return NULL;
|
||||
|
||||
std::string stream_name;
|
||||
|
||||
if (m_bDualStorage) stream_name = std::string(PP97_DUALSTORAGE) + std::string("/");
|
||||
|
||||
m_pPictureStream = new POLE::Stream(m_pPowerPointStg, stream_name + PICTURE_STREAM);
|
||||
}
|
||||
return m_pPictureStream;
|
||||
}
|
||||
|
||||
bool SavePictures()
|
||||
{
|
||||
POLE::Stream* pStream = GetPictureStream();
|
||||
|
||||
if (NULL == pStream)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
SRecordHeader oHeader;
|
||||
ULONG nRd = 0;
|
||||
m_lImagesCount = 0;
|
||||
|
||||
// удаление картинок при завершении программы
|
||||
|
||||
while (true)
|
||||
{
|
||||
if (oHeader.ReadFromStream(pStream) == false )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
CRecordOfficeArtBlip art_blip;
|
||||
art_blip.m_strMemoryForder = m_strMemoryForder;
|
||||
art_blip.m_oDocumentInfo = &m_oDocumentInfo;
|
||||
|
||||
art_blip.ReadFromStream(oHeader, pStream);
|
||||
|
||||
}
|
||||
return true;
|
||||
}
|
||||
bool ReadCurrentUser(POLE::Stream *pStm);
|
||||
void ReadEncryptedSummary();
|
||||
void ReadDocumentSummary();
|
||||
void ReadPictures();
|
||||
|
||||
private:
|
||||
bool m_bDualStorage;
|
||||
CRecordCurrentUserAtom m_oCurrentUser;
|
||||
POLE::Stream * m_pDocStream;
|
||||
POLE::Stream * m_pPictureStream;
|
||||
|
||||
XLS::CFStreamPtr m_pDocumentStream;
|
||||
XLS::CFStreamPtr m_pPictureStream;
|
||||
XLS::CFStreamPtr m_pDocumentSummaryStream;
|
||||
XLS::CFStreamPtr m_pEncryptedSummaryStream;
|
||||
|
||||
bool m_bIsPPTFile;
|
||||
|
||||
public:
|
||||
POLE::Storage* m_pPowerPointStg;
|
||||
std::wstring m_strMemoryForder;
|
||||
|
||||
POLE::Storage* m_pStorage;
|
||||
std::wstring m_strTmpDirectory;
|
||||
std::vector<bool> m_arLoadImageFlags;
|
||||
DWORD m_lImagesCount;
|
||||
|
||||
CPPTDocumentInfo m_oDocumentInfo;
|
||||
int m_nPresentationCodePage;
|
||||
};
|
||||
|
||||
@ -33,8 +33,10 @@
|
||||
|
||||
#include "ReadStructures.h"
|
||||
|
||||
#include <zlib.h>
|
||||
#include "../../../ASCOfficeDocFile/DocDocxConverter/MemoryStream.h"
|
||||
#include "../../../OfficeCryptReader/source/CryptTransform.h"
|
||||
|
||||
#include <zlib.h>
|
||||
|
||||
using namespace NSPresentationEditor;
|
||||
|
||||
@ -639,22 +641,31 @@ namespace NSPresentationEditor
|
||||
}
|
||||
}
|
||||
//------------------------------------------------------------------------------------
|
||||
void CMetaHeader::FromStream(POLE::Stream* pStream)
|
||||
void CMetaHeader::FromStream(POLE::Stream* pStream, CRYPT::ECMADecryptor *pDecryptor)
|
||||
{
|
||||
cbSize = StreamUtils::ReadDWORD(pStream);
|
||||
BYTE pData[34];
|
||||
pStream->read(pData, 34);
|
||||
|
||||
rcBounds.left = StreamUtils::ReadLONG(pStream);
|
||||
rcBounds.top = StreamUtils::ReadLONG(pStream);
|
||||
rcBounds.right = StreamUtils::ReadLONG(pStream);
|
||||
rcBounds.bottom = StreamUtils::ReadLONG(pStream);
|
||||
if (pDecryptor)
|
||||
{
|
||||
pDecryptor->Decrypt((char*)pData, 34, 0);
|
||||
}
|
||||
MemoryStream memStream(pData, 34, false);
|
||||
|
||||
ptSize.x = StreamUtils::ReadLONG(pStream);
|
||||
ptSize.y = StreamUtils::ReadLONG(pStream);
|
||||
cbSize = memStream.ReadUInt32();
|
||||
|
||||
rcBounds.left = memStream.ReadInt32();
|
||||
rcBounds.top = memStream.ReadInt32();
|
||||
rcBounds.right = memStream.ReadInt32();
|
||||
rcBounds.bottom = memStream.ReadInt32();
|
||||
|
||||
cbSave = StreamUtils::ReadDWORD(pStream);
|
||||
ptSize.x = memStream.ReadInt32();
|
||||
ptSize.y = memStream.ReadInt32();
|
||||
|
||||
compression = StreamUtils::ReadBYTE(pStream);
|
||||
filter = StreamUtils::ReadBYTE(pStream);
|
||||
cbSave = memStream.ReadUInt32();
|
||||
|
||||
compression = memStream.ReadByte();
|
||||
filter = memStream.ReadByte();
|
||||
}
|
||||
|
||||
void CMetaHeader::ToEMFHeader(Gdiplus::ENHMETAHEADER3* pHeader)
|
||||
|
||||
@ -43,6 +43,10 @@ namespace NSZLib
|
||||
bool Decompress(const BYTE* pSrcBuffer, const ULONG& lSrcBufferLen,
|
||||
BYTE* pDstBuffer, ULONG& lDstBufferLen);
|
||||
}
|
||||
namespace CRYPT
|
||||
{
|
||||
class ECMADecryptor;
|
||||
}
|
||||
/**************************************************************
|
||||
теперь все структуры...
|
||||
которые участвуют в записях
|
||||
@ -90,11 +94,11 @@ struct SFileIdCluster
|
||||
}
|
||||
};
|
||||
#if !defined(_WIN32) && !defined (_WIN64)
|
||||
typedef struct tagPOINT
|
||||
{
|
||||
long x;
|
||||
long y;
|
||||
} POINT;
|
||||
typedef struct tagPOINT
|
||||
{
|
||||
long x;
|
||||
long y;
|
||||
} POINT;
|
||||
|
||||
typedef struct tagSIZE
|
||||
{
|
||||
@ -170,7 +174,7 @@ public:
|
||||
CMetaHeader()
|
||||
{
|
||||
}
|
||||
void FromStream(POLE::Stream* pStream);
|
||||
void FromStream(POLE::Stream* pStream, CRYPT::ECMADecryptor *pDecryptor = NULL);
|
||||
|
||||
void ToEMFHeader (Gdiplus::ENHMETAHEADER3* pHeader);
|
||||
void ToWMFHeader (Gdiplus::WmfPlaceableFileHeader* pHeader);
|
||||
|
||||
@ -35,6 +35,97 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
std::wstring CUnknownRecord::ReadStringW(const CFStreamPtr &pStream, int lLen)
|
||||
{
|
||||
if (!pStream) return (L"");
|
||||
|
||||
unsigned char* pData = new unsigned char[2 * (lLen + 1)];
|
||||
memset (pData, 0, 2 * (lLen + 1));
|
||||
|
||||
pStream->read(pData, 2 * lLen);
|
||||
|
||||
if (sizeof(wchar_t) == 4)
|
||||
{
|
||||
ConversionResult eUnicodeConversionResult;
|
||||
UTF32 *pStrUtf32 = new UTF32 [lLen + 1];
|
||||
pStrUtf32[lLen] = 0 ;
|
||||
|
||||
const UTF16 *pStrUtf16_Conv = (const UTF16 *) pData;
|
||||
UTF32 *pStrUtf32_Conv = pStrUtf32;
|
||||
|
||||
eUnicodeConversionResult = ConvertUTF16toUTF32 ( &pStrUtf16_Conv
|
||||
, &pStrUtf16_Conv[lLen]
|
||||
, &pStrUtf32_Conv
|
||||
, &pStrUtf32 [lLen]
|
||||
, strictConversion);
|
||||
|
||||
if (conversionOK != eUnicodeConversionResult)
|
||||
{
|
||||
delete [] pStrUtf32;
|
||||
return (L"");
|
||||
}
|
||||
std::wstring res((wchar_t*)pStrUtf32, lLen);
|
||||
if (pStrUtf32) delete [] pStrUtf32;
|
||||
return res;
|
||||
}
|
||||
else
|
||||
{
|
||||
std::wstring str((wchar_t*)pData);
|
||||
delete[] pData;
|
||||
return str;
|
||||
}
|
||||
|
||||
}
|
||||
std::string CUnknownRecord::ReadStringA(const CFStreamPtr &pStream, int lLen)
|
||||
{
|
||||
if (!pStream) return ("");
|
||||
|
||||
char* pData = new char[lLen + 1];
|
||||
|
||||
pStream->read((unsigned char*)pData, lLen);
|
||||
|
||||
pData[lLen] = 0;
|
||||
|
||||
std::string str(pData, lLen);
|
||||
|
||||
delete[] pData;
|
||||
return str;
|
||||
}
|
||||
|
||||
void CRecordsContainer::ReadFromStream(SRecordHeader & oHeader, const CFStreamPtr &pStream)
|
||||
{
|
||||
m_oHeader = oHeader;
|
||||
m_arRecords.clear();
|
||||
|
||||
LONG lPosition = pStream->getStreamPointer();
|
||||
|
||||
m_oHeader = oHeader;
|
||||
|
||||
UINT lCurLen = 0;
|
||||
ULONG lReadLen = 0;
|
||||
SRecordHeader oRec;
|
||||
|
||||
while (lCurLen < m_oHeader.RecLen)
|
||||
{
|
||||
if (oRec.ReadFromStream(pStream) == FALSE )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
IRecord* pRecord = CreateByType(oRec);
|
||||
pRecord->ReadFromStream(oRec, pStream);
|
||||
|
||||
m_arRecords.push_back(pRecord);
|
||||
lCurLen += (8 + oRec.RecLen);
|
||||
}
|
||||
if (lCurLen != m_oHeader.RecLen)
|
||||
{
|
||||
// нужно разобраться, что тут такое!!!
|
||||
LONG lPosition = 0;
|
||||
pStream->seekFromBegin(lPosition + m_oHeader.RecLen);
|
||||
}
|
||||
}
|
||||
|
||||
void CRecordsContainer::ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
||||
{
|
||||
m_oHeader = oHeader;
|
||||
|
||||
@ -34,46 +34,77 @@
|
||||
#include "PPTFileDefines.h"
|
||||
#include "../Reader/ReadStructures.h"
|
||||
#include "../../../ASCOfficePPTXFile/Editor/Drawing/Shapes/BaseShape/PPTShape/Enums.h"
|
||||
#include "../../../ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStream.h"
|
||||
#include "../../../Common/3dParty/pole/pole.h"
|
||||
#include "../../../OfficeCryptReader/source/CryptTransform.h"
|
||||
|
||||
using namespace NSPresentationEditor;
|
||||
using namespace XLS;
|
||||
|
||||
struct SRecordHeader
|
||||
class SRecordHeader
|
||||
{
|
||||
BYTE RecVersion;
|
||||
USHORT RecInstance;
|
||||
USHORT RecType;
|
||||
UINT RecLen;
|
||||
public:
|
||||
unsigned char RecVersion;
|
||||
unsigned short RecInstance;
|
||||
unsigned short RecType;
|
||||
_UINT32 RecLen;
|
||||
|
||||
SRecordHeader()
|
||||
void Clear()
|
||||
{
|
||||
RecVersion = 0;
|
||||
RecInstance = RecType = 0;
|
||||
RecInstance = 0;
|
||||
RecType = 0;
|
||||
RecLen = 0;
|
||||
}
|
||||
SRecordHeader()
|
||||
{
|
||||
Clear();
|
||||
}
|
||||
bool ReadFromStream(const CFStreamPtr &pStream)
|
||||
{
|
||||
Clear();
|
||||
|
||||
if (pStream->isEOF()) return FALSE;
|
||||
POLE::uint64 nRd = 0;
|
||||
|
||||
unsigned short rec =0;
|
||||
pStream->read((unsigned char*)&(rec), 2);
|
||||
|
||||
RecInstance = rec >> 4;
|
||||
RecVersion = rec - (RecInstance << 4);
|
||||
|
||||
*pStream >> RecType >> RecLen;
|
||||
|
||||
unsigned long sz = pStream->getStreamSize() - pStream->getStreamPointer();
|
||||
|
||||
if (RecLen > sz )
|
||||
{
|
||||
RecLen = sz;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ReadFromStream(POLE::Stream * pStream)
|
||||
{
|
||||
RecVersion = 0;
|
||||
RecInstance = RecType = 0;
|
||||
RecLen = 0;
|
||||
Clear();
|
||||
if (!pStream) return false;
|
||||
|
||||
POLE::uint64 nRd = 0;
|
||||
|
||||
unsigned short rec =0;
|
||||
nRd = pStream->read((unsigned char*)&(rec), 2);
|
||||
|
||||
if (nRd != 2) return FALSE;
|
||||
if (nRd != 2) return false;
|
||||
|
||||
//RecVersion = rec & 0xFF0F;
|
||||
RecInstance = rec >> 4;
|
||||
RecVersion = rec - (RecInstance<<4);
|
||||
RecVersion = rec - (RecInstance<<4);
|
||||
|
||||
nRd = pStream->read((unsigned char*)&(RecType), 2);
|
||||
|
||||
nRd = pStream->read((unsigned char*)&(RecLen), 4);
|
||||
|
||||
POLE::uint64 sz = pStream->size()-pStream->tell();
|
||||
POLE::uint64 sz = pStream->size() - pStream->tell();
|
||||
|
||||
if (RecLen > sz )
|
||||
{
|
||||
@ -116,8 +147,8 @@ public:
|
||||
SRecordHeader m_oHeader;
|
||||
|
||||
public:
|
||||
// читаем из файла
|
||||
virtual ~IRecord(){}
|
||||
virtual void ReadFromStream(SRecordHeader & oHeader, const CFStreamPtr &pStream) = 0;
|
||||
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream) = 0;
|
||||
};
|
||||
|
||||
@ -134,17 +165,26 @@ public:
|
||||
~CUnknownRecord()
|
||||
{
|
||||
}
|
||||
|
||||
virtual void ReadFromStream(SRecordHeader & oHeader, const CFStreamPtr &pStream)
|
||||
{
|
||||
m_oHeader = oHeader;
|
||||
|
||||
pStream->seekFromCurForward(m_oHeader.RecLen);
|
||||
}
|
||||
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
||||
{
|
||||
m_oHeader = oHeader;
|
||||
|
||||
StreamUtils::StreamSkip((long)m_oHeader.RecLen, pStream);
|
||||
}
|
||||
|
||||
std::wstring ReadStringW(const CFStreamPtr &pStream, int size);
|
||||
std::string ReadStringA(const CFStreamPtr &pStream, int size);
|
||||
};
|
||||
|
||||
IRecord* CreateByType(SRecordHeader oHeader);
|
||||
|
||||
class CRecordsContainer : public IRecord
|
||||
class CRecordsContainer : public CUnknownRecord
|
||||
{
|
||||
protected:
|
||||
std::vector<IRecord*> m_arRecords;
|
||||
@ -173,6 +213,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
virtual void ReadFromStream(SRecordHeader & oHeader, const CFStreamPtr &pStream);
|
||||
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream);
|
||||
|
||||
template <typename T>
|
||||
|
||||
@ -315,7 +315,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct BuildAtom : public IRecord
|
||||
struct BuildAtom : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
@ -346,7 +346,7 @@ namespace Animations
|
||||
bool fExpanded;
|
||||
bool fUIExpanded;
|
||||
};
|
||||
struct ParaBuildAtom : public IRecord
|
||||
struct ParaBuildAtom : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
@ -395,7 +395,7 @@ namespace Animations
|
||||
|
||||
DWORD delayTime;
|
||||
};
|
||||
struct LevelInfoAtom : public IRecord
|
||||
struct LevelInfoAtom : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
@ -429,7 +429,7 @@ namespace Animations
|
||||
IRecord* timeNode; // ExtTimeNodeContainer
|
||||
};
|
||||
|
||||
struct ParaBuildContainer : public IRecord
|
||||
struct ParaBuildContainer : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
|
||||
@ -499,7 +499,7 @@ namespace Animations
|
||||
std::vector <ParaBuildLevel*> rgParaBuildLevel;
|
||||
};
|
||||
|
||||
struct BuildListContainer : public IRecord
|
||||
struct BuildListContainer : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
|
||||
@ -575,7 +575,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct TimeVariant : public IRecord
|
||||
struct TimeVariant : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -709,7 +709,7 @@ namespace Animations
|
||||
std::wstring stringValue;
|
||||
};
|
||||
|
||||
struct TimeStringListContainer : public IRecord
|
||||
struct TimeStringListContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -744,7 +744,7 @@ namespace Animations
|
||||
std::vector <TimeVariantString> m_Values;
|
||||
};
|
||||
// structures for ExtTimeNodeContainer
|
||||
struct TimeNodeAtom : public IRecord
|
||||
struct TimeNodeAtom : public CUnknownRecord
|
||||
{
|
||||
static const DWORD RT_TimeSequenceData = 0xF141;
|
||||
|
||||
@ -808,7 +808,7 @@ namespace Animations
|
||||
bool m_bDurationProperty;
|
||||
};
|
||||
|
||||
struct TimeSequenceDataAtom : public IRecord
|
||||
struct TimeSequenceDataAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -938,7 +938,7 @@ namespace Animations
|
||||
};
|
||||
|
||||
|
||||
struct TimePropertyList4TimeNodeContainer : public IRecord
|
||||
struct TimePropertyList4TimeNodeContainer : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
//static const DWORD RT_TimePropertyList = 0xF13D; // Specifies a TimePropertyList4TimeNodeContainer or TimePropertyList4TimeBehavior.
|
||||
@ -1113,7 +1113,7 @@ namespace Animations
|
||||
TimeEffectDir m_EffectDir;
|
||||
};
|
||||
|
||||
struct TimePropertyList4TimeBehavior : public IRecord
|
||||
struct TimePropertyList4TimeBehavior : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
//static const DWORD RT_TimePropertyList = 0xF13D; // Specifies a TimePropertyList4TimeNodeContainer or TimePropertyList4TimeBehavior.
|
||||
@ -1156,7 +1156,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct VisualShapeAtom : public IRecord
|
||||
struct VisualShapeAtom : public CUnknownRecord
|
||||
{
|
||||
// Привязка анимации через этот объект к ID объекту
|
||||
|
||||
@ -1191,7 +1191,7 @@ namespace Animations
|
||||
DWORD m_nData2;
|
||||
};
|
||||
|
||||
struct VisualPageAtom : public IRecord
|
||||
struct VisualPageAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1216,7 +1216,7 @@ namespace Animations
|
||||
TimeVisualElementEnum m_Type;
|
||||
};
|
||||
|
||||
struct ClientVisualElementContainer : public IRecord
|
||||
struct ClientVisualElementContainer : public CUnknownRecord
|
||||
{
|
||||
|
||||
ClientVisualElementContainer ()
|
||||
@ -1269,7 +1269,7 @@ namespace Animations
|
||||
bool m_bVisualShapeAtom;
|
||||
};
|
||||
|
||||
struct TimeBehaviorAtom : public IRecord
|
||||
struct TimeBehaviorAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1310,7 +1310,7 @@ namespace Animations
|
||||
DWORD m_nBehaviorTransform;
|
||||
};
|
||||
|
||||
struct TimeBehaviorContainer : public IRecord
|
||||
struct TimeBehaviorContainer : public CUnknownRecord
|
||||
{
|
||||
TimeBehaviorContainer ()
|
||||
{
|
||||
@ -1452,7 +1452,7 @@ namespace Animations
|
||||
ClientVisualElementContainer clientVisualElement;
|
||||
};
|
||||
|
||||
struct TimeEffectBehaviorAtom : public IRecord
|
||||
struct TimeEffectBehaviorAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1492,7 +1492,7 @@ namespace Animations
|
||||
DWORD m_nEffectTransition;
|
||||
};
|
||||
|
||||
struct TimeEffectBehaviorContainer : public IRecord
|
||||
struct TimeEffectBehaviorContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1562,7 +1562,7 @@ namespace Animations
|
||||
TimeBehaviorContainer m_oBehavior;
|
||||
|
||||
};
|
||||
struct TimeConditionAtom : public IRecord
|
||||
struct TimeConditionAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1593,7 +1593,7 @@ namespace Animations
|
||||
LONG m_nTimeDelay;
|
||||
};
|
||||
|
||||
struct TimeConditionContainer : public IRecord
|
||||
struct TimeConditionContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1634,7 +1634,7 @@ namespace Animations
|
||||
ClientVisualElementContainer m_oVisualElement;
|
||||
};
|
||||
|
||||
struct TimeIterateDataAtom: public IRecord
|
||||
struct TimeIterateDataAtom: public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
@ -1675,7 +1675,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct TimeMotionBehaviorAtom : public IRecord
|
||||
struct TimeMotionBehaviorAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1730,7 +1730,7 @@ namespace Animations
|
||||
DWORD m_nBehaviorOrigin;
|
||||
};
|
||||
|
||||
struct TimeMotionBehaviorContainer : public IRecord
|
||||
struct TimeMotionBehaviorContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1784,7 +1784,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct TimeSetBehaviorAtom : public IRecord
|
||||
struct TimeSetBehaviorAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1817,7 +1817,7 @@ namespace Animations
|
||||
TimeAnimateBehaviorValueTypeEnum m_ValueType;
|
||||
};
|
||||
|
||||
struct TimeSetBehaviorContainer : public IRecord
|
||||
struct TimeSetBehaviorContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1858,7 +1858,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct TimeAnimateBehaviorAtom : public IRecord
|
||||
struct TimeAnimateBehaviorAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1903,7 +1903,7 @@ namespace Animations
|
||||
TimeAnimateBehaviorValueTypeEnum m_ValueType;
|
||||
};
|
||||
|
||||
struct TimeAnimationValueAtom : public IRecord
|
||||
struct TimeAnimationValueAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -1958,7 +1958,7 @@ namespace Animations
|
||||
TimeVariantString m_VarFormula;
|
||||
};
|
||||
|
||||
struct TimeAnimationValueListContainer : public IRecord
|
||||
struct TimeAnimationValueListContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -2004,7 +2004,7 @@ namespace Animations
|
||||
std::vector<TimeAnimationEntry> m_arrEntry;
|
||||
};
|
||||
|
||||
struct TimeAnimateBehaviorContainer : public IRecord
|
||||
struct TimeAnimateBehaviorContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -2069,7 +2069,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct TimeRotationBehaviorAtom : public IRecord
|
||||
struct TimeRotationBehaviorAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -2106,7 +2106,7 @@ namespace Animations
|
||||
float fTo;
|
||||
DWORD rotationDirection; // 0 - rotate clockwise, 1 - rotate counter clockwise
|
||||
};
|
||||
struct TimeRotationBehaviorContainer : public IRecord
|
||||
struct TimeRotationBehaviorContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -2136,7 +2136,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct TimeScaleBehaviorAtom : public IRecord
|
||||
struct TimeScaleBehaviorAtom : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -2181,7 +2181,7 @@ namespace Animations
|
||||
bool fZoomContents;
|
||||
};
|
||||
|
||||
struct TimeScaleBehaviorContainer : public IRecord
|
||||
struct TimeScaleBehaviorContainer : public CUnknownRecord
|
||||
{
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
{
|
||||
@ -2237,7 +2237,7 @@ namespace Animations
|
||||
}
|
||||
};
|
||||
|
||||
struct TimeColorBehaviorAtom: public IRecord
|
||||
struct TimeColorBehaviorAtom: public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
@ -2278,7 +2278,7 @@ namespace Animations
|
||||
TimeAnimateColor colorTo;
|
||||
};
|
||||
|
||||
struct TimeColorBehaviorContainer : public IRecord
|
||||
struct TimeColorBehaviorContainer : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
@ -2308,7 +2308,7 @@ namespace Animations
|
||||
|
||||
namespace Animations
|
||||
{
|
||||
struct TimeModifierAtom : public IRecord
|
||||
struct TimeModifierAtom : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
virtual void ReadFromStream ( SRecordHeader & oHeader, POLE::Stream* pStream )
|
||||
@ -2335,7 +2335,7 @@ namespace Animations
|
||||
float value;
|
||||
};
|
||||
|
||||
struct SlaveContainer : public IRecord
|
||||
struct SlaveContainer : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
|
||||
@ -2464,7 +2464,7 @@ namespace Animations
|
||||
bool haveExtTimeContainer;
|
||||
};
|
||||
|
||||
struct ExtTimeNodeContainer : public IRecord
|
||||
struct ExtTimeNodeContainer : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
|
||||
@ -2818,7 +2818,7 @@ namespace Animations
|
||||
bool haveBuildList;
|
||||
};
|
||||
|
||||
struct SlideTime10Atom : public IRecord
|
||||
struct SlideTime10Atom : public CUnknownRecord
|
||||
{
|
||||
static const DWORD RT_SlideTime10Atom = 0x2EEB;
|
||||
|
||||
@ -2853,7 +2853,7 @@ namespace Animations
|
||||
SYSTEMTIME m_SystemTime;
|
||||
};
|
||||
|
||||
struct SlideFlags10Atom : public IRecord
|
||||
struct SlideFlags10Atom : public CUnknownRecord
|
||||
{
|
||||
static const DWORD RT_SlideFlags10Atom = 0x2EEA;
|
||||
|
||||
@ -2885,7 +2885,7 @@ namespace Animations
|
||||
bool m_bOverrideMasterAnimation; // A bit that specifies whether the slide does not follow the animations on the main master slide or title master slide.
|
||||
};
|
||||
|
||||
struct HashCode10Atom : public IRecord
|
||||
struct HashCode10Atom : public CUnknownRecord
|
||||
{
|
||||
//static const DWORD RT_HashCodeAtom = 0x2B00;
|
||||
|
||||
@ -3756,7 +3756,7 @@ namespace Animations
|
||||
};
|
||||
}
|
||||
|
||||
struct PP10SlideBinaryTagExtension : public IRecord
|
||||
struct PP10SlideBinaryTagExtension : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
|
||||
@ -3824,7 +3824,7 @@ public:
|
||||
Animations::BuildListContainer* buildListContainer; // OPTIONAL
|
||||
};
|
||||
|
||||
struct SlideProgTagsContainer : public IRecord
|
||||
struct SlideProgTagsContainer : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
@ -36,8 +36,6 @@ class CRecordCString : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
std::wstring m_strText;
|
||||
|
||||
public:
|
||||
|
||||
CRecordCString()
|
||||
{
|
||||
|
||||
@ -32,6 +32,35 @@
|
||||
#pragma once
|
||||
#include "../../../ASCOfficeXlsFile2/source/XlsFormat/Crypt/Decryptor.h"
|
||||
|
||||
class CRecordEncryptedSummary : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
CRecordEncryptedSummary(){}
|
||||
~CRecordEncryptedSummary(){}
|
||||
|
||||
DWORD StreamOffset;
|
||||
DWORD StreamSize;
|
||||
unsigned short Block;
|
||||
unsigned char NameSize;
|
||||
bool fStream;
|
||||
std::wstring StreamName;
|
||||
|
||||
virtual void ReadFromStream(SRecordHeader & oHeader, const CFStreamPtr &pStream)
|
||||
{
|
||||
m_oHeader = oHeader;
|
||||
|
||||
unsigned char flags;
|
||||
|
||||
*pStream >> StreamOffset >> StreamSize >> Block >> NameSize >> flags;
|
||||
|
||||
fStream = GETBIT(flags, 0);
|
||||
|
||||
if (NameSize > 0 && NameSize < 0xff)
|
||||
{
|
||||
StreamName = ReadStringW(pStream, NameSize);
|
||||
}
|
||||
}
|
||||
};
|
||||
class CEncryptionHeader : public CUnknownRecord
|
||||
{
|
||||
public:
|
||||
@ -40,13 +69,8 @@ public:
|
||||
CRYPT::_ecmaCryptData crypt_data_aes;
|
||||
bool bStandard;
|
||||
|
||||
CEncryptionHeader()
|
||||
{
|
||||
}
|
||||
|
||||
~CEncryptionHeader()
|
||||
{
|
||||
}
|
||||
CEncryptionHeader(){}
|
||||
~CEncryptionHeader(){}
|
||||
|
||||
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
||||
{
|
||||
@ -141,6 +165,8 @@ public:
|
||||
case 0x6801:
|
||||
crypt_data_aes.cipherAlgorithm = CRYPT_METHOD::RC4;
|
||||
crypt_data_aes.keySize = KeySize / 8;
|
||||
if (crypt_data_aes.keySize == 0)
|
||||
crypt_data_aes.keySize = 5; // 40 bit
|
||||
break;
|
||||
case 0x660E:
|
||||
crypt_data_aes.cipherAlgorithm = CRYPT_METHOD::AES_ECB;
|
||||
|
||||
@ -39,194 +39,198 @@
|
||||
|
||||
void CRecordOfficeArtBlip::ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
||||
{
|
||||
CMetaFileBuffer oMetaFile;
|
||||
if ((oHeader.RecVersion == PSFLAG_CONTAINER) || ((oHeader.RecVersion & 0x0F) == 0x0F)) return;
|
||||
|
||||
CRYPT::ECMADecryptor *pDecryptor = m_oDocumentInfo ? m_oDocumentInfo->m_arUsers[0]->m_pDecryptor : NULL;
|
||||
|
||||
CMetaFileBuffer oMetaFile;
|
||||
std::wstring sExt = L".jpg";
|
||||
int lOffset = 0;
|
||||
|
||||
int pos = pStream->tell();
|
||||
|
||||
if ((oHeader.RecVersion != PSFLAG_CONTAINER) && ((oHeader.RecVersion & 0x0F) != 0x0F))
|
||||
switch (oHeader.RecType)
|
||||
{
|
||||
int lOffset = 0;
|
||||
|
||||
switch (oHeader.RecType)
|
||||
case RECORD_TYPE_ESCHER_BLIP_EMF:
|
||||
{
|
||||
case RECORD_TYPE_ESCHER_BLIP_EMF:
|
||||
{
|
||||
if (0x03D4 == oHeader.RecInstance) lOffset = 16;
|
||||
else if (0x03D5 == oHeader.RecInstance) lOffset = 32;
|
||||
if (0x03D4 == oHeader.RecInstance) lOffset = 16;
|
||||
else if (0x03D5 == oHeader.RecInstance) lOffset = 32;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
lOffset += 34;
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
lOffset += 34;
|
||||
|
||||
oMetaFile.m_bIsValid = TRUE;
|
||||
oMetaFile.m_sExtension = L".emf";
|
||||
|
||||
CMetaHeader oMetaHeader;
|
||||
oMetaHeader.FromStream(pStream);
|
||||
|
||||
Gdiplus::ENHMETAHEADER3 oEmfHeader;
|
||||
oMetaHeader.ToEMFHeader(&oEmfHeader);
|
||||
|
||||
oMetaFile.SetHeader(NULL, 0);
|
||||
|
||||
BYTE* pData = new BYTE[oHeader.RecLen - lOffset];
|
||||
pStream->read(pData, oHeader.RecLen - lOffset);
|
||||
|
||||
oMetaFile.SetData(pData, oMetaHeader.cbSave, oMetaHeader.cbSize, (bool)(oMetaHeader.compression != 0xFE) );
|
||||
|
||||
}break;
|
||||
case RECORD_TYPE_ESCHER_BLIP_WMF:
|
||||
{
|
||||
if (0x0216 == oHeader.RecInstance) lOffset = 16;
|
||||
else if (0x0217 == oHeader.RecInstance) lOffset = 32;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
lOffset += 34;
|
||||
|
||||
oMetaFile.m_bIsValid = TRUE;
|
||||
oMetaFile.m_sExtension = L".wmf";
|
||||
|
||||
CMetaHeader oMetaHeader;
|
||||
oMetaHeader.FromStream(pStream);
|
||||
Gdiplus::WmfPlaceableFileHeader oWmfHeader;
|
||||
oMetaHeader.ToWMFHeader(&oWmfHeader);
|
||||
|
||||
LONG lLenHeader = 22;
|
||||
BYTE* pMetaHeader = new BYTE[lLenHeader]; // удалится в oMetaFile
|
||||
memcpy(pMetaHeader, (void*)(&oWmfHeader), lLenHeader);
|
||||
|
||||
oMetaFile.SetHeader(pMetaHeader, lLenHeader);
|
||||
|
||||
BYTE* pData = new BYTE[oHeader.RecLen - lOffset];
|
||||
pStream->read(pData, oHeader.RecLen - lOffset);
|
||||
|
||||
oMetaFile.SetData(pData, oMetaHeader.cbSave, oMetaHeader.cbSize, (bool)(oMetaHeader.compression != 0xFE) );
|
||||
|
||||
}break;
|
||||
case RECORD_TYPE_ESCHER_BLIP_PICT://Medwoche.ppt , (483)
|
||||
{
|
||||
if (0x0542 == oHeader.RecInstance) lOffset = 16;
|
||||
else if (0x0543 == oHeader.RecInstance) lOffset = 32;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
lOffset += 34;
|
||||
|
||||
oMetaFile.m_bIsValid = TRUE;
|
||||
oMetaFile.m_sExtension = L".wmf";//L".pct"; - ВРЕМЕННО пока не сделана конвертация pct(pic) хоть во что нито !!!
|
||||
|
||||
CMetaHeader oMetaHeader;
|
||||
oMetaHeader.FromStream(pStream); //отдельно вынесенный заголовок.. "форматный" находится в блоке данных
|
||||
|
||||
BYTE* pData = new BYTE[oHeader.RecLen - lOffset];
|
||||
pStream->read(pData, oHeader.RecLen - lOffset);
|
||||
|
||||
oMetaFile.SetData(pData, oMetaHeader.cbSave, oMetaHeader.cbSize, (bool)(oMetaHeader.compression != 0xFE) );
|
||||
}break;
|
||||
case RECORD_TYPE_ESCHER_BLIP_JPEG:
|
||||
{
|
||||
if (0x046A == oHeader.RecInstance || 0x06E2 == oHeader.RecInstance) lOffset = 17;
|
||||
else if (0x046B == oHeader.RecInstance || 0x06E3 == oHeader.RecInstance) lOffset = 33;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
sExt = _T(".jpg");
|
||||
break;
|
||||
}
|
||||
case RECORD_TYPE_ESCHER_BLIP_PNG:
|
||||
{
|
||||
if (0x06E0 == oHeader.RecInstance) lOffset = 17;
|
||||
else if (0x06E1 == oHeader.RecInstance) lOffset = 33;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
sExt = _T(".png");
|
||||
break;
|
||||
}
|
||||
case RECORD_TYPE_ESCHER_BLIP_DIB:
|
||||
{
|
||||
if (0x07A8 == oHeader.RecInstance) lOffset = 17;
|
||||
else if (0x07A9 == oHeader.RecInstance) lOffset = 33;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
oMetaFile.m_bIsValid = TRUE;
|
||||
oMetaFile.m_sExtension = L".emf";
|
||||
|
||||
sExt = _T(".bmp");
|
||||
break;
|
||||
}
|
||||
case RECORD_TYPE_ESCHER_BLIP_TIFF:
|
||||
{
|
||||
if (0x06E4 == oHeader.RecInstance) lOffset = 17;
|
||||
else if (0x06E5 == oHeader.RecInstance) lOffset = 33;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
sExt = _T(".tif");
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
int nImagesCount = 0;
|
||||
if (m_oDocumentInfo)
|
||||
{
|
||||
nImagesCount = m_oDocumentInfo->m_mapStoreImageFile.size();
|
||||
}
|
||||
//else nImagesCount = generate uniq name
|
||||
|
||||
if (oMetaFile.m_bIsValid)
|
||||
{
|
||||
std::wstring strFile = L"Image " +std::to_wstring(nImagesCount + 1) + oMetaFile.m_sExtension;
|
||||
|
||||
CFile fileMeta;
|
||||
HRESULT hr = fileMeta.CreateFile(m_strMemoryForder + FILE_SEPARATOR_STR + strFile);
|
||||
|
||||
if (hr == S_OK)
|
||||
{
|
||||
oMetaFile.ToFile(&fileMeta);
|
||||
fileMeta.CloseFile();
|
||||
}
|
||||
m_sFileName = strFile;
|
||||
}
|
||||
else
|
||||
{
|
||||
BYTE* pImage = new BYTE[oHeader.RecLen - lOffset];
|
||||
|
||||
pStream->read(pImage, oHeader.RecLen - lOffset);
|
||||
|
||||
std::wstring strFile = L"Image " + std::to_wstring(nImagesCount + 1) + sExt;
|
||||
CMetaHeader oMetaHeader;
|
||||
oMetaHeader.FromStream(pStream, pDecryptor);
|
||||
|
||||
CFile fileImage;
|
||||
HRESULT hr = fileImage.CreateFile(m_strMemoryForder + FILE_SEPARATOR_STR + strFile);
|
||||
if (hr == S_OK)
|
||||
{
|
||||
if (RECORD_TYPE_ESCHER_BLIP_DIB == oHeader.RecType)
|
||||
{
|
||||
WORD vtType = 0x4D42;
|
||||
fileImage.WriteFile((void*)&vtType, 2);
|
||||
DWORD dwLen = oHeader.RecLen - lOffset;
|
||||
fileImage.WriteFile((void*)&dwLen, 4);
|
||||
DWORD dwRes = 0;
|
||||
fileImage.WriteFile((void*)&dwRes, 4);
|
||||
DWORD dwOffset = 2;
|
||||
fileImage.WriteFile((void*)&dwOffset, 4);
|
||||
}
|
||||
fileImage.WriteFile((void*)pImage, oHeader.RecLen - lOffset);
|
||||
fileImage.CloseFile();
|
||||
}
|
||||
if (pImage)delete[] pImage;
|
||||
pImage = NULL;
|
||||
Gdiplus::ENHMETAHEADER3 oEmfHeader;
|
||||
oMetaHeader.ToEMFHeader(&oEmfHeader);
|
||||
|
||||
m_sFileName = strFile;
|
||||
}
|
||||
int dwOffset = pos - 8;
|
||||
|
||||
if (m_oDocumentInfo)
|
||||
oMetaFile.SetHeader(NULL, 0);
|
||||
|
||||
BYTE* pData = new BYTE[oHeader.RecLen - lOffset];
|
||||
pStream->read(pData, oHeader.RecLen - lOffset);
|
||||
if (pDecryptor)
|
||||
{
|
||||
pDecryptor->Decrypt((char*)pData, oHeader.RecLen - lOffset, 0);
|
||||
}
|
||||
oMetaFile.SetData(pData, oMetaHeader.cbSave, oMetaHeader.cbSize, (bool)(oMetaHeader.compression != 0xFE) );
|
||||
|
||||
}break;
|
||||
case RECORD_TYPE_ESCHER_BLIP_WMF:
|
||||
{
|
||||
m_oDocumentInfo->m_mapStoreImageFile[dwOffset ] = m_sFileName;
|
||||
if (0x0216 == oHeader.RecInstance) lOffset = 16;
|
||||
else if (0x0217 == oHeader.RecInstance) lOffset = 32;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
lOffset += 34;
|
||||
|
||||
oMetaFile.m_bIsValid = TRUE;
|
||||
oMetaFile.m_sExtension = L".wmf";
|
||||
|
||||
CMetaHeader oMetaHeader;
|
||||
oMetaHeader.FromStream(pStream, pDecryptor);
|
||||
|
||||
Gdiplus::WmfPlaceableFileHeader oWmfHeader;
|
||||
oMetaHeader.ToWMFHeader(&oWmfHeader);
|
||||
|
||||
LONG lLenHeader = 22;
|
||||
BYTE* pMetaHeader = new BYTE[lLenHeader]; // удалится в oMetaFile
|
||||
memcpy(pMetaHeader, (void*)(&oWmfHeader), lLenHeader);
|
||||
|
||||
oMetaFile.SetHeader(pMetaHeader, lLenHeader);
|
||||
|
||||
BYTE* pData = new BYTE[oHeader.RecLen - lOffset];
|
||||
pStream->read(pData, oHeader.RecLen - lOffset);
|
||||
if (pDecryptor)
|
||||
{
|
||||
pDecryptor->Decrypt((char*)pData, oHeader.RecLen - lOffset, 0);
|
||||
}
|
||||
oMetaFile.SetData(pData, oMetaHeader.cbSave, oMetaHeader.cbSize, (bool)(oMetaHeader.compression != 0xFE) );
|
||||
|
||||
}break;
|
||||
case RECORD_TYPE_ESCHER_BLIP_PICT://Medwoche.ppt , (483)
|
||||
{
|
||||
if (0x0542 == oHeader.RecInstance) lOffset = 16;
|
||||
else if (0x0543 == oHeader.RecInstance) lOffset = 32;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
lOffset += 34;
|
||||
|
||||
oMetaFile.m_bIsValid = TRUE;
|
||||
oMetaFile.m_sExtension = L".wmf";//L".pct"; - ВРЕМЕННО пока не сделана конвертация pct(pic) хоть во что нито !!!
|
||||
|
||||
CMetaHeader oMetaHeader;
|
||||
oMetaHeader.FromStream(pStream, pDecryptor); //отдельно вынесенный заголовок.. "форматный" находится в блоке данных
|
||||
|
||||
BYTE* pData = new BYTE[oHeader.RecLen - lOffset];
|
||||
pStream->read(pData, oHeader.RecLen - lOffset);
|
||||
if (pDecryptor)
|
||||
{
|
||||
pDecryptor->Decrypt((char*)pData, oHeader.RecLen - lOffset, 0);
|
||||
}
|
||||
oMetaFile.SetData(pData, oMetaHeader.cbSave, oMetaHeader.cbSize, (bool)(oMetaHeader.compression != 0xFE) );
|
||||
}break;
|
||||
case RECORD_TYPE_ESCHER_BLIP_JPEG:
|
||||
{
|
||||
if (0x046A == oHeader.RecInstance || 0x06E2 == oHeader.RecInstance) lOffset = 17;
|
||||
else if (0x046B == oHeader.RecInstance || 0x06E3 == oHeader.RecInstance) lOffset = 33;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
sExt = _T(".jpg");
|
||||
break;
|
||||
}
|
||||
case RECORD_TYPE_ESCHER_BLIP_PNG:
|
||||
{
|
||||
if (0x06E0 == oHeader.RecInstance) lOffset = 17;
|
||||
else if (0x06E1 == oHeader.RecInstance) lOffset = 33;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
sExt = _T(".png");
|
||||
break;
|
||||
}
|
||||
case RECORD_TYPE_ESCHER_BLIP_DIB:
|
||||
{
|
||||
if (0x07A8 == oHeader.RecInstance) lOffset = 17;
|
||||
else if (0x07A9 == oHeader.RecInstance) lOffset = 33;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
sExt = _T(".bmp");
|
||||
break;
|
||||
}
|
||||
case RECORD_TYPE_ESCHER_BLIP_TIFF:
|
||||
{
|
||||
if (0x06E4 == oHeader.RecInstance) lOffset = 17;
|
||||
else if (0x06E5 == oHeader.RecInstance) lOffset = 33;
|
||||
|
||||
StreamUtils::StreamSkip(lOffset, pStream);
|
||||
|
||||
sExt = _T(".tif");
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
int nImagesCount = 0;
|
||||
if (m_oDocumentInfo)
|
||||
{
|
||||
nImagesCount = m_oDocumentInfo->m_mapStoreImageFile.size();
|
||||
}
|
||||
//else nImagesCount = generate uniq name
|
||||
|
||||
if (oMetaFile.m_bIsValid)
|
||||
{
|
||||
std::wstring strFile = L"Image " +std::to_wstring(nImagesCount + 1) + oMetaFile.m_sExtension;
|
||||
|
||||
CFile fileMeta;
|
||||
HRESULT hr = fileMeta.CreateFile(m_strTmpDirectory + FILE_SEPARATOR_STR + strFile);
|
||||
|
||||
if (hr == S_OK)
|
||||
{
|
||||
oMetaFile.ToFile(&fileMeta);
|
||||
fileMeta.CloseFile();
|
||||
}
|
||||
m_sFileName = strFile;
|
||||
}
|
||||
else
|
||||
{
|
||||
BYTE* pImage = new BYTE[oHeader.RecLen - lOffset];
|
||||
|
||||
pStream->read(pImage, oHeader.RecLen - lOffset);
|
||||
if (pDecryptor)
|
||||
{
|
||||
pDecryptor->Decrypt((char*)pImage, oHeader.RecLen - lOffset, 0);
|
||||
}
|
||||
std::wstring strFile = L"Image " + std::to_wstring(nImagesCount + 1) + sExt;
|
||||
|
||||
CFile fileImage;
|
||||
HRESULT hr = fileImage.CreateFile(m_strTmpDirectory + FILE_SEPARATOR_STR + strFile);
|
||||
if (hr == S_OK)
|
||||
{
|
||||
if (RECORD_TYPE_ESCHER_BLIP_DIB == oHeader.RecType)
|
||||
{
|
||||
WORD vtType = 0x4D42;
|
||||
fileImage.WriteFile((void*)&vtType, 2);
|
||||
DWORD dwLen = oHeader.RecLen - lOffset;
|
||||
fileImage.WriteFile((void*)&dwLen, 4);
|
||||
DWORD dwRes = 0;
|
||||
fileImage.WriteFile((void*)&dwRes, 4);
|
||||
DWORD dwOffset = 2;
|
||||
fileImage.WriteFile((void*)&dwOffset, 4);
|
||||
}
|
||||
fileImage.WriteFile((void*)pImage, oHeader.RecLen - lOffset);
|
||||
fileImage.CloseFile();
|
||||
}
|
||||
if (pImage)delete[] pImage;
|
||||
pImage = NULL;
|
||||
|
||||
m_sFileName = strFile;
|
||||
}
|
||||
}
|
||||
|
||||
@ -42,7 +42,7 @@ public:
|
||||
CPPTDocumentInfo * m_oDocumentInfo;
|
||||
|
||||
std::wstring m_sFileName;
|
||||
std::wstring m_strMemoryForder;
|
||||
std::wstring m_strTmpDirectory;
|
||||
|
||||
CRecordOfficeArtBlip()
|
||||
{
|
||||
|
||||
@ -486,6 +486,10 @@
|
||||
RelativePath="..\Reader\PPTFileDefines.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\Reader\PPTFileReader.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\Reader\PPTFileReader.h"
|
||||
>
|
||||
|
||||
@ -1155,8 +1155,8 @@ namespace NSBinPptxRW
|
||||
str = L"<Relationship Id=\"rId" + std::to_wstring(m_lNextRelsID++) +
|
||||
L"\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/notesSlide\" Target=\"../notesSlides/notesSlide" +
|
||||
std::to_wstring(nIndexNotes + 1) + L".xml\"/>";
|
||||
m_pWriter->WriteString(str);
|
||||
}
|
||||
m_pWriter->WriteString(str);
|
||||
}
|
||||
void CRelsGenerator::StartNotes(int nIndexSlide)
|
||||
{
|
||||
@ -1209,10 +1209,14 @@ namespace NSBinPptxRW
|
||||
|
||||
m_pWriter->WriteString(strRels);
|
||||
}
|
||||
void CRelsGenerator::EndPresentationRels(const bool& bIsCommentsAuthors = false)
|
||||
void CRelsGenerator::EndPresentationRels(const bool& bIsCommentsAuthors = false, const bool& bIsNotesMaster)
|
||||
{
|
||||
std::wstring strRels0 = L"<Relationship Id=\"rId" + std::to_wstring(m_lNextRelsID++) +
|
||||
L"\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/notesMaster\" Target=\"notesMasters/notesMaster1.xml\"/>";
|
||||
if (bIsNotesMaster)
|
||||
{
|
||||
std::wstring strRels0 = L"<Relationship Id=\"rId" + std::to_wstring(m_lNextRelsID++) +
|
||||
L"\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/notesMaster\" Target=\"notesMasters/notesMaster1.xml\"/>";
|
||||
m_pWriter->WriteString(strRels0);
|
||||
}
|
||||
std::wstring strRels1 = L"<Relationship Id=\"rId" + std::to_wstring(m_lNextRelsID++) +
|
||||
L"\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/presProps\" Target=\"presProps.xml\" />";
|
||||
std::wstring strRels2 = L"<Relationship Id=\"rId" + std::to_wstring(m_lNextRelsID++) +
|
||||
@ -1220,7 +1224,6 @@ namespace NSBinPptxRW
|
||||
std::wstring strRels3 = L"<Relationship Id=\"rId" + std::to_wstring(m_lNextRelsID++) +
|
||||
L"\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/viewProps\" Target=\"viewProps.xml\" />";
|
||||
|
||||
m_pWriter->WriteString(strRels0);
|
||||
m_pWriter->WriteString(strRels1);
|
||||
m_pWriter->WriteString(strRels2);
|
||||
m_pWriter->WriteString(strRels3);
|
||||
|
||||
@ -419,7 +419,7 @@ namespace NSBinPptxRW
|
||||
int WriteRels (const std::wstring& bsType, const std::wstring& bsTarget, const std::wstring& bsTargetMode);
|
||||
int WriteHyperlink (const std::wstring& strLink, const bool& bIsActionInit);
|
||||
|
||||
void EndPresentationRels (const bool& bIsCommentsAuthors);
|
||||
void EndPresentationRels (const bool& bIsCommentsAuthors, const bool& bIsNotesMaster = false);
|
||||
int GetNextId ();
|
||||
void CloseRels ();
|
||||
|
||||
|
||||
@ -109,15 +109,14 @@ namespace NSPresentationEditor
|
||||
class CExMedia
|
||||
{
|
||||
public:
|
||||
std::wstring m_strPresentationDirectory;
|
||||
std::wstring m_strSourceDirectory;
|
||||
std::wstring m_strPresentationDirectory;
|
||||
|
||||
std::vector<CExFilesInfo> m_arVideos;
|
||||
std::vector<CExFilesInfo> m_arImages;
|
||||
std::vector<CExFilesInfo> m_arAudios;
|
||||
std::vector<CExFilesInfo> m_arHyperlinks;
|
||||
std::vector<CExFilesInfo> m_arVideos;
|
||||
std::vector<CExFilesInfo> m_arImages;
|
||||
std::vector<CExFilesInfo> m_arAudios;
|
||||
std::vector<CExFilesInfo> m_arHyperlinks;
|
||||
|
||||
std::vector<CExFilesInfo> m_arAudioCollection;
|
||||
std::vector<CExFilesInfo> m_arAudioCollection;
|
||||
|
||||
public:
|
||||
void Clear()
|
||||
@ -131,8 +130,6 @@ namespace NSPresentationEditor
|
||||
public:
|
||||
CExMedia() : m_arVideos(), m_arImages(), m_arAudios()
|
||||
{
|
||||
m_strPresentationDirectory = _T("");
|
||||
m_strSourceDirectory = _T("");
|
||||
}
|
||||
|
||||
CExMedia(const CExMedia& oSrc)
|
||||
@ -143,7 +140,6 @@ namespace NSPresentationEditor
|
||||
CExMedia& operator=(const CExMedia& oSrc)
|
||||
{
|
||||
m_strPresentationDirectory = oSrc.m_strPresentationDirectory;
|
||||
m_strSourceDirectory = oSrc.m_strSourceDirectory;
|
||||
|
||||
for (size_t i=0; i < oSrc.m_arVideos.size(); i++)
|
||||
m_arVideos.push_back(oSrc.m_arVideos[i]);
|
||||
|
||||
@ -165,23 +165,6 @@ public:
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// std::wstring ToString()
|
||||
// {
|
||||
// std::wstring str = _T("");
|
||||
// str.Format(_T("%d,%d,%d,%d"), (long)m_ePID, (long)m_bIsBlip, (long)m_bComplex, (long)m_lValue);
|
||||
// // не будем ничего писать - а то xml - не распознаются
|
||||
// /*if (m_bComplex)
|
||||
// {
|
||||
// std::wstring strProp = CDirectory::BYTEArrayToString(m_pOptions, m_lValue);
|
||||
// if (NSOfficeDrawing::pibName == m_ePID)
|
||||
// {
|
||||
// strProp = (std::wstring)CDirectory::BYTEArrayToStringW(m_pOptions, m_lValue);
|
||||
// }
|
||||
// str += _T(" options=") + strProp;
|
||||
// }*/
|
||||
// return _T("<Property command='") + str + _T("'/>");
|
||||
// }
|
||||
};
|
||||
|
||||
// А вот контейнер пропертей
|
||||
|
||||
@ -180,10 +180,11 @@ namespace NSBinPptxRW
|
||||
CXmlWriter oXmlWriter;
|
||||
|
||||
// первым делом определим количество необходимого. если хоть одно из этих чисел - ноль, то ппту не корректный
|
||||
LONG nCountThemes = 0;
|
||||
LONG nCountMasters = 0;
|
||||
LONG nCountLayouts = 0;
|
||||
LONG nCountSlides = 0;
|
||||
LONG nCountThemes = 0;
|
||||
LONG nCountMasters = 0;
|
||||
LONG nCountLayouts = 0;
|
||||
LONG nCountSlides = 0;
|
||||
bool bNotesMasterPresent = false;
|
||||
|
||||
pPair = m_mainTables.find(NSMainTables::Themes);
|
||||
if (m_mainTables.end() != pPair)
|
||||
@ -544,6 +545,7 @@ namespace NSBinPptxRW
|
||||
m_oReader.m_pRels->Clear();
|
||||
m_oReader.m_pRels->StartNotesMaster(m_arSlideMasters_Theme.size());
|
||||
|
||||
bNotesMasterPresent = true;
|
||||
if (lCount > 0)
|
||||
{
|
||||
m_arNotesMasters.back().fromPPTY(&m_oReader);
|
||||
@ -782,13 +784,16 @@ namespace NSBinPptxRW
|
||||
}
|
||||
|
||||
m_oReader.m_pRels->WriteSlides(nCountSlides);
|
||||
m_oReader.m_pRels->EndPresentationRels(m_oPresentation.commentAuthors.is_init());
|
||||
|
||||
m_oPresentation.notesMasterIdLst.clear();
|
||||
m_oPresentation.notesMasterIdLst.push_back(PPTX::Logic::XmlId());
|
||||
m_oPresentation.notesMasterIdLst[0].m_name = _T("notesMasterId");
|
||||
m_oPresentation.notesMasterIdLst[0].rid = (size_t)nCurrentRels;
|
||||
|
||||
if (bNotesMasterPresent)
|
||||
{
|
||||
m_oPresentation.notesMasterIdLst.push_back(PPTX::Logic::XmlId());
|
||||
m_oPresentation.notesMasterIdLst[0].m_name = _T("notesMasterId");
|
||||
m_oPresentation.notesMasterIdLst[0].rid = (size_t)nCurrentRels;
|
||||
++nCurrentRels;
|
||||
}
|
||||
m_oReader.m_pRels->EndPresentationRels(m_oPresentation.commentAuthors.is_init(), bNotesMasterPresent);
|
||||
m_oReader.m_pRels->CloseRels();
|
||||
|
||||
oXmlWriter.ClearNoAttack();
|
||||
|
||||
@ -70,10 +70,10 @@ CFRecord::CFRecord(CFStreamPtr stream, GlobalWorkbookInfoPtr global_info)
|
||||
case rt_RRDHead:
|
||||
break;
|
||||
case rt_BoundSheet8:
|
||||
global_info->decryptor->Decrypt(data_ + sizeof(unsigned int), size_ - sizeof(unsigned int), rec_data_pos + sizeof(unsigned int));
|
||||
global_info->decryptor->Decrypt(data_ + sizeof(unsigned int), size_ - sizeof(unsigned int), rec_data_pos + sizeof(unsigned int), 1024);
|
||||
break;
|
||||
default:
|
||||
global_info->decryptor->Decrypt(data_, size_, rec_data_pos);
|
||||
global_info->decryptor->Decrypt(data_, size_, rec_data_pos, 1024);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -96,9 +96,8 @@ public:
|
||||
void appendDelayedItems(const ReceiverItems& receiver_items_from_record, const SourceItems& source_items_from_record);
|
||||
void applyDelayedItems();
|
||||
|
||||
|
||||
POLE::Stream *stream_;
|
||||
private:
|
||||
POLE::Stream * stream_;
|
||||
CFStream::ReceiverItems receiver_items;
|
||||
CFStream::SourceItems source_items;
|
||||
};
|
||||
|
||||
@ -34,10 +34,8 @@
|
||||
namespace CRYPT
|
||||
{
|
||||
|
||||
|
||||
BiffDecoderBase::BiffDecoderBase(int BLOCKSIZE) : mbValid(false)
|
||||
BiffDecoderBase::BiffDecoderBase() : mbValid(false)
|
||||
{
|
||||
RCF_BLOCKSIZE = BLOCKSIZE;
|
||||
}
|
||||
|
||||
|
||||
@ -51,34 +49,29 @@ bool BiffDecoderBase::verifyPassword(const std::wstring& rPassword)
|
||||
mbValid = implVerify(rPassword);
|
||||
return mbValid;
|
||||
}
|
||||
|
||||
|
||||
void BiffDecoderBase::decode(unsigned char* pnDestData, const unsigned char* pnSrcData, const long nStreamPos, const unsigned short nBytes)
|
||||
void BiffDecoderBase::decode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long block_index)
|
||||
{
|
||||
if(pnDestData && pnSrcData && (nBytes> 0))
|
||||
{
|
||||
if(mbValid)
|
||||
implDecode(pnDestData, pnSrcData, nStreamPos, nBytes);
|
||||
implDecode(pnDestData, pnSrcData, nBytes, block_index);
|
||||
else
|
||||
memcpy(pnDestData, pnSrcData, nBytes);
|
||||
}}
|
||||
|
||||
void BiffDecoderBase::decode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long nStreamPos, const unsigned short block_size)
|
||||
{
|
||||
if(pnDestData && pnSrcData && (nBytes> 0))
|
||||
{
|
||||
if(mbValid)
|
||||
implDecode(pnDestData, pnSrcData, nBytes, nStreamPos, block_size);
|
||||
else
|
||||
memcpy(pnDestData, pnSrcData, nBytes);
|
||||
}
|
||||
}
|
||||
|
||||
/** Returns the block index of the passed stream position for RCF decryption. */
|
||||
int BiffDecoderBase::lclGetRcfBlock(long nStreamPos)
|
||||
{
|
||||
return static_cast<int>(nStreamPos / RCF_BLOCKSIZE);
|
||||
}
|
||||
|
||||
/** Returns the offset of the passed stream position in a block for RCF decryption. */
|
||||
int BiffDecoderBase::lclGetRcfOffset(long nStreamPos)
|
||||
{
|
||||
return static_cast<int>(nStreamPos % RCF_BLOCKSIZE);
|
||||
}
|
||||
|
||||
|
||||
BiffDecoder_RCF::BiffDecoder_RCF(unsigned char pnSalt[16], unsigned char pnVerifier[16], unsigned char pnVerifierHash[16], int BlockSize)
|
||||
: BiffDecoderBase(BlockSize),
|
||||
BiffDecoder_RCF::BiffDecoder_RCF(unsigned char pnSalt[16], unsigned char pnVerifier[16], unsigned char pnVerifierHash[16])
|
||||
:
|
||||
maPassword(16, 0),
|
||||
maSalt(pnSalt, pnSalt + 16),
|
||||
maVerifier(pnVerifier, pnVerifier + 16),
|
||||
@ -107,28 +100,37 @@ bool BiffDecoder_RCF::implVerify(const std::wstring& rPassword)
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void BiffDecoder_RCF::implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const long nStreamPos, const unsigned short nBytes)
|
||||
void BiffDecoder_RCF::implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long block_index)
|
||||
{
|
||||
unsigned char* pnCurrDest = pnDestData;
|
||||
const unsigned char* pnCurrSrc = pnSrcData;
|
||||
long nCurrPos = nStreamPos;
|
||||
unsigned short nBytesLeft = nBytes;
|
||||
while(nBytesLeft> 0)
|
||||
maCodec.startBlock(block_index);
|
||||
maCodec.decode(pnDestData, pnSrcData, static_cast<int>(nBytes));
|
||||
}
|
||||
void BiffDecoder_RCF::implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long nStreamPos, const unsigned short block_size)
|
||||
{
|
||||
unsigned char* pnCurrDest = pnDestData;
|
||||
const unsigned char* pnCurrSrc = pnSrcData;
|
||||
long nCurrPos = nStreamPos;
|
||||
unsigned short nBytesLeft = nBytes;
|
||||
|
||||
while(nBytesLeft > 0)
|
||||
{
|
||||
// initialize codec for current stream position
|
||||
maCodec.startBlock(lclGetRcfBlock(nCurrPos));
|
||||
maCodec.skip(lclGetRcfOffset(nCurrPos));
|
||||
maCodec.startBlock (nCurrPos / block_size);
|
||||
|
||||
const long offset = nCurrPos % block_size;
|
||||
maCodec.skip (offset);
|
||||
|
||||
// decode the block
|
||||
unsigned short nBlockLeft = static_cast<unsigned short>(get_BLOCKSIZE() - lclGetRcfOffset(nCurrPos));
|
||||
unsigned short nBlockLeft = static_cast<unsigned short>(block_size - offset);
|
||||
unsigned short nDecBytes = nBytesLeft < nBlockLeft ? nBytesLeft : nBlockLeft;
|
||||
|
||||
maCodec.decode(pnCurrDest, pnCurrSrc, static_cast<int>(nDecBytes));
|
||||
|
||||
// prepare for next block
|
||||
pnCurrDest += nDecBytes;
|
||||
pnCurrSrc += nDecBytes;
|
||||
nCurrPos += nDecBytes;
|
||||
pnCurrDest += nDecBytes;
|
||||
pnCurrSrc += nDecBytes;
|
||||
nCurrPos += nDecBytes;
|
||||
|
||||
nBytesLeft = nBytesLeft - nDecBytes;
|
||||
}
|
||||
}
|
||||
|
||||
@ -44,12 +44,10 @@ namespace CRYPT
|
||||
class BiffDecoderBase
|
||||
{
|
||||
public:
|
||||
explicit BiffDecoderBase(int BLOCKSIZE);
|
||||
explicit BiffDecoderBase();
|
||||
virtual ~BiffDecoderBase();
|
||||
|
||||
int get_BLOCKSIZE(){return RCF_BLOCKSIZE;}
|
||||
|
||||
/** Implementation of the ::comphelper::IDocPasswordVerifier interface,
|
||||
/** Implementation of the ::comphelper::IDocPasswordVerifier interface,
|
||||
calls the new virtual function implVerify(). */
|
||||
virtual bool verifyPassword( const std::wstring& rPassword );
|
||||
|
||||
@ -57,21 +55,18 @@ public:
|
||||
inline bool isValid() const { return mbValid; }
|
||||
|
||||
/** Decodes nBytes unsigned chars and writes encrypted data into the buffer pnDestData. */
|
||||
void decode(unsigned char* pnDestData, const unsigned char* pnSrcData, const long nStreamPos, const unsigned short nBytes);
|
||||
|
||||
int lclGetRcfBlock(long nStreamPos);
|
||||
int lclGetRcfOffset(long nStreamPos);
|
||||
virtual void decode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long nStreamPos, const unsigned short block_size);
|
||||
virtual void decode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long block_index);
|
||||
|
||||
private:
|
||||
|
||||
int RCF_BLOCKSIZE;
|
||||
|
||||
/** Derived classes implement password verification and initialization of
|
||||
the decoder. */
|
||||
virtual bool implVerify(const std::wstring& rPassword) = 0;
|
||||
|
||||
/** Implementation of decryption of a memory block. */
|
||||
virtual void implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const long nStreamPos, const unsigned short nBytes) = 0;
|
||||
virtual void implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long nStreamPos, const unsigned short block_size) = 0;
|
||||
virtual void implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long block_index) = 0;
|
||||
|
||||
private:
|
||||
bool mbValid; /// True = decoder is correctly initialized.
|
||||
@ -83,7 +78,7 @@ typedef ::boost::shared_ptr<BiffDecoderBase> BiffDecoderRef;
|
||||
class BiffDecoder_RCF : public BiffDecoderBase
|
||||
{
|
||||
public:
|
||||
explicit BiffDecoder_RCF(unsigned char pnSalt[ 16 ], unsigned char pnVerifier[ 16 ], unsigned char pnVerifierHash[ 16 ], int BlockSize);
|
||||
explicit BiffDecoder_RCF(unsigned char pnSalt[ 16 ], unsigned char pnVerifier[ 16 ], unsigned char pnVerifierHash[ 16 ]);
|
||||
|
||||
private:
|
||||
|
||||
@ -91,14 +86,14 @@ private:
|
||||
virtual bool implVerify(const std::wstring& rPassword);
|
||||
|
||||
/** Implementation of decryption of a memory block. */
|
||||
virtual void implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const long nStreamPos, const unsigned short nBytes);
|
||||
virtual void implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long nStreamPos, const unsigned short block_size);
|
||||
virtual void implDecode(unsigned char* pnDestData, const unsigned char* pnSrcData, const unsigned short nBytes, const long block_index);
|
||||
|
||||
private:
|
||||
BinaryCodec_RCF maCodec; /// Cipher algorithm implementation.
|
||||
BinaryCodec_RCF maCodec; /// Cipher algorithm implementation.
|
||||
std::vector<unsigned short> maPassword;
|
||||
std::vector<unsigned char> maSalt;
|
||||
std::vector<unsigned char> maVerifier;
|
||||
std::vector<unsigned char> maVerifierHash;
|
||||
std::vector<unsigned char> maSalt;
|
||||
std::vector<unsigned char> maVerifier;
|
||||
std::vector<unsigned char> maVerifierHash;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -143,7 +143,7 @@ public:
|
||||
private:
|
||||
CipherARCFOUR mhCipher;
|
||||
DigestMD5 mhDigest;
|
||||
unsigned char mpnDigestValue[DigestMD5::RTL_DIGEST_LENGTH_MD5];
|
||||
unsigned char mpnDigestValue[DigestMD5::RTL_DIGEST_LENGTH_MD5];
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -68,8 +68,8 @@ namespace CRYPT
|
||||
{
|
||||
public:
|
||||
|
||||
virtual void Encrypt(char* data, const size_t size) = 0;
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long stream_pos) = 0;
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long stream_pos, const size_t block_size) = 0;
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long block_index) = 0;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
|
||||
@ -37,18 +37,20 @@
|
||||
|
||||
namespace CRYPT
|
||||
{
|
||||
RC4Decryptor::RC4Decryptor(_rc4CryptData & header, std::wstring _password, int _type) :
|
||||
crypt(new RC4Crypt(header, _password, _type))
|
||||
RC4Decryptor::RC4Decryptor(_rc4CryptData & header, std::wstring _password) :
|
||||
crypt(new RC4Crypt(header, _password))
|
||||
{
|
||||
crypt_data = header;
|
||||
type = _type;
|
||||
}
|
||||
|
||||
void RC4Decryptor::Decrypt(char* data, const size_t size, const unsigned long stream_pos)
|
||||
void RC4Decryptor::Decrypt(char* data, const size_t size, const unsigned long stream_pos, const size_t block_size)
|
||||
{
|
||||
crypt->Decrypt(data, size, stream_pos);
|
||||
crypt->Decrypt(data, size, stream_pos, block_size);
|
||||
}
|
||||
void RC4Decryptor::Decrypt(char* data, const size_t size, const unsigned long block_index)
|
||||
{
|
||||
crypt->Decrypt(data, size, block_index);
|
||||
}
|
||||
|
||||
bool RC4Decryptor::IsVerify()
|
||||
{
|
||||
return crypt->IsVerify();
|
||||
@ -57,7 +59,7 @@ namespace CRYPT
|
||||
bool RC4Decryptor::SetPassword(std::wstring password)
|
||||
{
|
||||
crypt.reset();
|
||||
crypt = CryptPtr(new RC4Crypt(crypt_data, password, type));
|
||||
crypt = CryptPtr(new RC4Crypt(crypt_data, password));
|
||||
|
||||
if (crypt) return crypt->IsVerify();
|
||||
else return false;
|
||||
|
||||
@ -40,15 +40,16 @@ namespace CRYPT
|
||||
class RC4Decryptor : public Decryptor
|
||||
{
|
||||
public:
|
||||
RC4Decryptor(_rc4CryptData & header, std::wstring password, int type);
|
||||
RC4Decryptor(_rc4CryptData & header, std::wstring password);
|
||||
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long stream_pos);
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long stream_pos, const size_t block_size);
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long block_index);
|
||||
|
||||
virtual bool SetPassword(std::wstring password);
|
||||
|
||||
virtual bool IsVerify();
|
||||
|
||||
private:
|
||||
int type;
|
||||
CryptPtr crypt;
|
||||
_rc4CryptData crypt_data;
|
||||
};
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
namespace CRYPT
|
||||
{
|
||||
|
||||
RC4Crypt::RC4Crypt(CRYPT::_rc4CryptData & data, std::wstring password, int type)
|
||||
RC4Crypt::RC4Crypt(CRYPT::_rc4CryptData & data, std::wstring password)
|
||||
{
|
||||
m_VerifyPassword = false;
|
||||
|
||||
@ -46,18 +46,11 @@ RC4Crypt::RC4Crypt(CRYPT::_rc4CryptData & data, std::wstring password, int type)
|
||||
CopyDWORDs2Bytes(data.EncryptedVerifier.b1 , data.EncryptedVerifier.b2, data.EncryptedVerifier.b3, data.EncryptedVerifier.b4, pnVerifier);
|
||||
CopyDWORDs2Bytes(data.EncryptedVerifierHash.b1, data.EncryptedVerifierHash.b2, data.EncryptedVerifierHash.b3, data.EncryptedVerifierHash.b4, pnVerifierHash);
|
||||
|
||||
int BlockSize = 1024;
|
||||
if (type == 1) BlockSize = 512;
|
||||
|
||||
mxDecoder.reset(new BiffDecoder_RCF(pnSalt, pnVerifier, pnVerifierHash, BlockSize));
|
||||
mxDecoder.reset(new BiffDecoder_RCF(pnSalt, pnVerifier, pnVerifierHash));
|
||||
|
||||
m_VerifyPassword = mxDecoder->verifyPassword(password);
|
||||
}
|
||||
|
||||
void RC4Crypt::Encrypt(char* data, const size_t size)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool RC4Crypt::IsVerify()
|
||||
{
|
||||
@ -87,18 +80,33 @@ void RC4Crypt::CopyDWORDs2Bytes(const unsigned int b1, const unsigned int b2, co
|
||||
byte_array[15] = static_cast<unsigned char>((b4 & 0xff000000) >> 24);
|
||||
}
|
||||
|
||||
void RC4Crypt::Decrypt(char* data, const size_t size, const unsigned long stream_pos)
|
||||
void RC4Crypt::Decrypt(char* data, const size_t size, const unsigned long block_index)
|
||||
{
|
||||
static unsigned char quick_buf[256];
|
||||
if(size <= 256)
|
||||
{
|
||||
mxDecoder->decode( quick_buf, reinterpret_cast<unsigned char*>(data), stream_pos, size );
|
||||
static unsigned char quick_buf[256];
|
||||
mxDecoder->decode( quick_buf, reinterpret_cast<unsigned char*>(data), size, block_index );
|
||||
memcpy(data, quick_buf, size);
|
||||
}
|
||||
else
|
||||
{
|
||||
boost::scoped_array<unsigned char> out_data(new unsigned char[size]);
|
||||
mxDecoder->decode( out_data.get(), reinterpret_cast<unsigned char*>(data), stream_pos, size );
|
||||
mxDecoder->decode( out_data.get(), reinterpret_cast<unsigned char*>(data), size, block_index );
|
||||
memcpy(data, out_data.get(), size);
|
||||
}
|
||||
}
|
||||
void RC4Crypt::Decrypt(char* data, const size_t size, const unsigned long stream_pos, const size_t block_size)
|
||||
{
|
||||
if(size <= 256)
|
||||
{
|
||||
static unsigned char quick_buf[256];
|
||||
mxDecoder->decode( quick_buf, reinterpret_cast<unsigned char*>(data), size, stream_pos, block_size );
|
||||
memcpy(data, quick_buf, size);
|
||||
}
|
||||
else
|
||||
{
|
||||
boost::scoped_array<unsigned char> out_data(new unsigned char[size]);
|
||||
mxDecoder->decode( out_data.get(), reinterpret_cast<unsigned char*>(data), size, stream_pos, block_size );
|
||||
memcpy(data, out_data.get(), size);
|
||||
}
|
||||
}
|
||||
|
||||
@ -41,10 +41,10 @@ namespace CRYPT
|
||||
class RC4Crypt : public Crypt
|
||||
{
|
||||
public:
|
||||
RC4Crypt(CRYPT::_rc4CryptData & data, std::wstring password, int type);
|
||||
RC4Crypt(CRYPT::_rc4CryptData & data, std::wstring password);
|
||||
|
||||
virtual void Encrypt(char* data, const size_t size);
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long stream_pos);
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long stream_pos, const size_t block_size);
|
||||
virtual void Decrypt(char* data, const size_t size, const unsigned long block_index);
|
||||
|
||||
virtual bool IsVerify();
|
||||
|
||||
|
||||
@ -56,11 +56,6 @@ void CrtMlFrt::readFields(CFRecord& record)
|
||||
Log::error("CrtMlFrt record is not implemented.");
|
||||
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
//
|
||||
// if (cb > 0)
|
||||
// {
|
||||
// //XmlTkChain
|
||||
// }
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -54,7 +54,6 @@ void DBQueryExt::readFields(CFRecord& record)
|
||||
{
|
||||
#pragma message("####################### DBQueryExt record is not implemented")
|
||||
Log::error("DBQueryExt record is not implemented.");
|
||||
//record >> some_value;
|
||||
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
}
|
||||
|
||||
@ -52,8 +52,7 @@ BaseObjectPtr DCon::clone()
|
||||
|
||||
void DCon::readFields(CFRecord& record)
|
||||
{
|
||||
#pragma message("####################### DCon record is not implemented")
|
||||
//record >> iiftab >> fLeftCat >> fTopCat >> fLinkConsole;
|
||||
record >> iiftab >> fLeftCat >> fTopCat >> fLinkConsole;
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -36,8 +36,6 @@
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of DCon record in BIFF8
|
||||
class DCon: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(DCon)
|
||||
|
||||
@ -53,9 +53,17 @@ BaseObjectPtr DConBin::clone()
|
||||
|
||||
void DConBin::readFields(CFRecord& record)
|
||||
{
|
||||
#pragma message("####################### DConBin record is not implemented")
|
||||
Log::error("DConBin record is not implemented.");
|
||||
//record >> some_value;
|
||||
unsigned short reserved1;
|
||||
unsigned char reserved2;
|
||||
record >> nBuiltin >> reserved1 >> reserved2 >> cchFile;
|
||||
|
||||
if (cchFile > 0 && cchFile < 0xffff)
|
||||
{
|
||||
stFile.setSize(cchFile);
|
||||
record >> stFile;
|
||||
}
|
||||
|
||||
// skip unused
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
}
|
||||
|
||||
|
||||
@ -32,12 +32,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of DConBin record in BIFF8
|
||||
class DConBin: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(DConBin)
|
||||
@ -48,11 +47,13 @@ public:
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeDConBin;
|
||||
static const ElementType type = typeDConBin;
|
||||
|
||||
unsigned char nBuiltin;
|
||||
unsigned short cchFile;
|
||||
XLUnicodeStringNoCch stFile;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -54,7 +54,6 @@ void DbOrParamQry::readFields(CFRecord& record)
|
||||
{
|
||||
#pragma message("####################### DbOrParamQry record is not implemented")
|
||||
Log::error("DbOrParamQry record is not implemented.");
|
||||
//record >> some_value;
|
||||
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
}
|
||||
|
||||
@ -52,9 +52,9 @@ BaseObjectPtr ExtString::clone()
|
||||
|
||||
void ExtString::readFields(CFRecord& record)
|
||||
{
|
||||
#pragma message("####################### ExtString record is not implemented")
|
||||
Log::error("ExtString record is not implemented.");
|
||||
//record >> some_value;
|
||||
record >> frtHeaderOld >> string;
|
||||
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -32,12 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/FrtHeaderOld.h"
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of ExtString record in BIFF8
|
||||
class ExtString: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(ExtString)
|
||||
@ -47,12 +47,13 @@ public:
|
||||
~ExtString();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeExtString;
|
||||
static const ElementType type = typeExtString;
|
||||
|
||||
FrtHeaderOld frtHeaderOld;
|
||||
XLUnicodeString string;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -55,13 +55,14 @@ void ExternName::readFields(CFRecord& record)
|
||||
{
|
||||
unsigned short flags;
|
||||
record >> flags;
|
||||
fBuiltIn = GETBIT(flags, 0);
|
||||
|
||||
fBuiltIn = GETBIT(flags, 0);
|
||||
fWantAdvise = GETBIT(flags, 1);
|
||||
fWantPict = GETBIT(flags, 2);
|
||||
fOle = GETBIT(flags, 3);
|
||||
fOleLink = GETBIT(flags, 4);
|
||||
cf = GETBITS(flags, 5, 14);
|
||||
fIcon = GETBIT(flags, 15);
|
||||
fWantPict = GETBIT(flags, 2);
|
||||
fOle = GETBIT(flags, 3);
|
||||
fOleLink = GETBIT(flags, 4);
|
||||
cf = GETBITS(flags, 5, 14);
|
||||
fIcon = GETBIT(flags, 15);
|
||||
|
||||
if(0x3A01 == supbook_cch) // UDF reference on a XLL or COM add-in.
|
||||
{
|
||||
@ -69,9 +70,6 @@ void ExternName::readFields(CFRecord& record)
|
||||
}
|
||||
else
|
||||
{
|
||||
#pragma message("####################### ExternName record is not implemented")
|
||||
Log::error("ExternName record is not implemented.");
|
||||
|
||||
if(fOle && !fOleLink) // DDE data item
|
||||
{
|
||||
body = BiffStructurePtr(new ExternDdeLinkNoOper);
|
||||
|
||||
@ -79,7 +79,7 @@ void FilePass::readFields(CFRecord& record)
|
||||
if (cryptHeaderPtr->bStandard)
|
||||
{
|
||||
record.getGlobalWorkbookInfo()->decryptor =
|
||||
CRYPT::DecryptorPtr(new CRYPT::RC4Decryptor(cryptHeaderPtr->crypt_data_rc4, record.getGlobalWorkbookInfo()->password, 2));
|
||||
CRYPT::DecryptorPtr(new CRYPT::RC4Decryptor(cryptHeaderPtr->crypt_data_rc4, record.getGlobalWorkbookInfo()->password));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@ -52,9 +52,7 @@ BaseObjectPtr FnGrp12::clone()
|
||||
|
||||
void FnGrp12::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
record >> astFnGrp;
|
||||
record >> frtHeader >> astFnGrp;
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -32,13 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include <Logic/Biff_structures/BiffString.h>
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of FnGrp12 record in BIFF8
|
||||
class FnGrp12: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(FnGrp12)
|
||||
@ -48,14 +47,14 @@ public:
|
||||
~FnGrp12();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeFnGrp12;
|
||||
static const ElementType type = typeFnGrp12;
|
||||
|
||||
//-----------------------------
|
||||
XLUnicodeString astFnGrp;
|
||||
FrtHeader frtHeader;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -52,11 +52,8 @@ BaseObjectPtr ForceFullCalculation::clone()
|
||||
|
||||
void ForceFullCalculation::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
|
||||
_UINT32 temp;
|
||||
record >> temp;
|
||||
record >> frtHeader >> temp;
|
||||
|
||||
fNoDeps = temp;
|
||||
}
|
||||
|
||||
@ -32,12 +32,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of ForceFullCalculation record in BIFF8
|
||||
class ForceFullCalculation: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(ForceFullCalculation)
|
||||
@ -51,10 +50,11 @@ public:
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeForceFullCalculation;
|
||||
static const ElementType type = typeForceFullCalculation;
|
||||
|
||||
//-----------------------------
|
||||
bool fNoDeps;
|
||||
bool fNoDeps;
|
||||
FrtHeader frtHeader;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -52,10 +52,9 @@ BaseObjectPtr GUIDTypeLib::clone()
|
||||
|
||||
void GUIDTypeLib::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
_GUID_ guid_num;
|
||||
record >> guid_num;
|
||||
|
||||
record >> frtHeader >> guid_num;
|
||||
guid = STR::guid2bstr(guid_num);
|
||||
}
|
||||
|
||||
|
||||
@ -32,12 +32,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of GUIDTypeLib record in BIFF8
|
||||
class GUIDTypeLib: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(GUIDTypeLib)
|
||||
@ -47,16 +46,14 @@ public:
|
||||
~GUIDTypeLib();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeGUIDTypeLib;
|
||||
static const ElementType type = typeGUIDTypeLib;
|
||||
|
||||
//-----------------------------
|
||||
std::wstring guid;
|
||||
|
||||
|
||||
std::wstring guid;
|
||||
FrtHeader frtHeader;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -35,7 +35,6 @@
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
// Logical representation of IMDATA record in BIFF5
|
||||
class IMDATA: public BiffRecordContinued
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(IMDATA)
|
||||
@ -45,11 +44,10 @@ public:
|
||||
~IMDATA();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeIMDATA;
|
||||
static const ElementType type = typeIMDATA;
|
||||
|
||||
_UINT16 cf;
|
||||
_UINT16 env;
|
||||
|
||||
@ -52,8 +52,8 @@ BaseObjectPtr MDB::clone()
|
||||
|
||||
void MDB::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
record >> frtHeader;
|
||||
|
||||
while(!record.isEOF())
|
||||
{
|
||||
MDirPtr element(new MDir);
|
||||
|
||||
@ -32,13 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include <Logic/Biff_structures/MDir.h>
|
||||
#include "../Biff_structures/MDir.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of MDB record in BIFF8
|
||||
class MDB: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(MDB)
|
||||
@ -48,11 +47,11 @@ public:
|
||||
~MDB();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
//-----------------------------
|
||||
BiffStructurePtrVector rgmdir;
|
||||
BiffStructurePtrVector rgmdir;
|
||||
FrtHeader frtHeader;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -52,11 +52,9 @@ BaseObjectPtr MDTInfo::clone()
|
||||
|
||||
void MDTInfo::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
|
||||
_UINT32 flags;
|
||||
record >> flags;
|
||||
|
||||
record >> frtHeader >> flags;
|
||||
|
||||
fGhostRow = GETBIT(flags, 0);
|
||||
fGhostCol = GETBIT(flags, 1);
|
||||
|
||||
@ -32,13 +32,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include <Logic/Biff_structures/BiffString.h>
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of MDTInfo record in BIFF8
|
||||
class MDTInfo: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(MDTInfo)
|
||||
@ -48,7 +48,6 @@ public:
|
||||
~MDTInfo();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
//-----------------------------
|
||||
@ -79,7 +78,8 @@ public:
|
||||
bool fAdjust;
|
||||
bool fCellMeta;
|
||||
|
||||
LPWideString stName;
|
||||
LPWideString stName;
|
||||
FrtHeader frtHeader;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -52,9 +52,7 @@ BaseObjectPtr MDXKPI::clone()
|
||||
|
||||
void MDXKPI::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
record >> istrConnName >> tfnSrc >> kpiprop >> istrKPIName >> istrMbrKPI;
|
||||
record >> frtHeader >> istrConnName >> tfnSrc >> kpiprop >> istrKPIName >> istrMbrKPI;
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -32,12 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of MDXKPI record in BIFF8
|
||||
class MDXKPI: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(MDXKPI)
|
||||
@ -47,7 +47,6 @@ public:
|
||||
~MDXKPI();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
//-----------------------------
|
||||
@ -56,6 +55,7 @@ public:
|
||||
unsigned char kpiprop;
|
||||
_INT32 istrKPIName;
|
||||
_INT32 istrMbrKPI;
|
||||
FrtHeader frtHeader;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -50,12 +50,9 @@ BaseObjectPtr MDXProp::clone()
|
||||
return BaseObjectPtr(new MDXProp(*this));
|
||||
}
|
||||
|
||||
|
||||
void MDXProp::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
record >> istrConnName >> tfnSrc >> istrMbr >> istrProp;
|
||||
record >> frtHeader >> istrConnName >> tfnSrc >> istrMbr >> istrProp;
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -32,12 +32,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of MDXProp record in BIFF8
|
||||
class MDXProp: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(MDXProp)
|
||||
@ -47,14 +46,14 @@ public:
|
||||
~MDXProp();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
//-----------------------------
|
||||
_INT32 istrConnName;
|
||||
_INT32 istrConnName;
|
||||
unsigned char tfnSrc;
|
||||
_UINT32 istrMbr;
|
||||
_UINT32 istrProp;
|
||||
_UINT32 istrMbr;
|
||||
_UINT32 istrProp;
|
||||
FrtHeader frtHeader;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -50,12 +50,10 @@ BaseObjectPtr MDXSet::clone()
|
||||
return BaseObjectPtr(new MDXSet(*this));
|
||||
}
|
||||
|
||||
|
||||
void MDXSet::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
record >> istrConnName >> tfnSrc >> sso >> istrSetDef >> cistr;
|
||||
record >> frtHeader >> istrConnName >> tfnSrc >> sso >> istrSetDef >> cistr;
|
||||
|
||||
while(!record.isEOF())
|
||||
{
|
||||
MDXStrIndexPtr element(new MDXStrIndex);
|
||||
|
||||
@ -32,13 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include <Logic/Biff_structures/MDXStrIndex.h>
|
||||
#include "../Biff_structures/MDXStrIndex.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of MDXSet record in BIFF8
|
||||
class MDXSet: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(MDXSet)
|
||||
@ -48,16 +47,16 @@ public:
|
||||
~MDXSet();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
//-----------------------------
|
||||
_INT32 istrConnName;
|
||||
unsigned char tfnSrc;
|
||||
unsigned char sso;
|
||||
_UINT32 istrSetDef;
|
||||
_INT32 cistr;
|
||||
BiffStructurePtrVector rgistr;
|
||||
_INT32 istrConnName;
|
||||
unsigned char tfnSrc;
|
||||
unsigned char sso;
|
||||
_UINT32 istrSetDef;
|
||||
_INT32 cistr;
|
||||
BiffStructurePtrVector rgistr;
|
||||
FrtHeader frtHeader;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -50,12 +50,9 @@ BaseObjectPtr MDXStr::clone()
|
||||
return BaseObjectPtr(new MDXStr(*this));
|
||||
}
|
||||
|
||||
|
||||
void MDXStr::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
record >> st;
|
||||
record >> frtHeader >> st;
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -32,13 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include <Logic/Biff_structures/BiffString.h>
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of MDXStr record in BIFF8
|
||||
class MDXStr: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(MDXStr)
|
||||
@ -52,7 +51,8 @@ public:
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
//-----------------------------
|
||||
LPWideString st;
|
||||
LPWideString st;
|
||||
FrtHeader frtHeader;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -50,12 +50,10 @@ BaseObjectPtr MDXTuple::clone()
|
||||
return BaseObjectPtr(new MDXTuple(*this));
|
||||
}
|
||||
|
||||
|
||||
void MDXTuple::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
record >> istrConnName >> tfnSrc >> cistr;
|
||||
record >> frtHeader >> istrConnName >> tfnSrc >> cistr;
|
||||
|
||||
while(!record.isEOF())
|
||||
{
|
||||
MDXStrIndexPtr element(new MDXStrIndex);
|
||||
|
||||
@ -32,13 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include <Logic/Biff_structures/MDXStrIndex.h>
|
||||
#include "../Biff_structures/MDXStrIndex.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of MDXTuple record in BIFF8
|
||||
class MDXTuple: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(MDXTuple)
|
||||
@ -48,18 +47,17 @@ public:
|
||||
~MDXTuple();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeMDXTuple;
|
||||
|
||||
//-----------------------------
|
||||
_INT32 istrConnName;
|
||||
unsigned char tfnSrc;
|
||||
_INT32 cistr;
|
||||
BiffStructurePtrVector rgistr;
|
||||
|
||||
_INT32 istrConnName;
|
||||
unsigned char tfnSrc;
|
||||
_INT32 cistr;
|
||||
BiffStructurePtrVector rgistr;
|
||||
FrtHeader frtHeader;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -44,7 +44,6 @@ NameFnGrp12::~NameFnGrp12()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
BaseObjectPtr NameFnGrp12::clone()
|
||||
{
|
||||
return BaseObjectPtr(new NameFnGrp12(*this));
|
||||
@ -52,9 +51,7 @@ BaseObjectPtr NameFnGrp12::clone()
|
||||
|
||||
void NameFnGrp12::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
record >> cachName >> fgrp >> rgach;
|
||||
record >> frtHeader >> cachName >> fgrp >> rgach;
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -32,13 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include <Logic/Biff_structures/BiffString.h>
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of NameFnGrp12 record in BIFF8
|
||||
class NameFnGrp12: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(NameFnGrp12)
|
||||
@ -48,15 +47,14 @@ public:
|
||||
~NameFnGrp12();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
//-----------------------------
|
||||
_UINT16 cachName;
|
||||
_UINT16 fgrp;
|
||||
_UINT16 cachName;
|
||||
_UINT16 fgrp;
|
||||
|
||||
XLUnicodeString rgach;
|
||||
|
||||
FrtHeader frtHeader;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -44,7 +44,6 @@ NamePublish::~NamePublish()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
BaseObjectPtr NamePublish::clone()
|
||||
{
|
||||
return BaseObjectPtr(new NamePublish(*this));
|
||||
@ -52,10 +51,10 @@ BaseObjectPtr NamePublish::clone()
|
||||
|
||||
void NamePublish::readFields(CFRecord& record)
|
||||
{
|
||||
record.skipNunBytes(12);
|
||||
#pragma message("############################ frtHeader skipped here")
|
||||
unsigned short flags;
|
||||
record >> flags >> strName;
|
||||
|
||||
record >> frtHeader >> flags >> strName;
|
||||
|
||||
fPublished = GETBIT(flags, 0);
|
||||
fWorkbookParam = GETBIT(flags, 0);
|
||||
}
|
||||
|
||||
@ -32,13 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include <Logic/Biff_structures/BiffString.h>
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
#include "../Biff_structures/FrtHeader.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of NamePublish record in BIFF8
|
||||
class NamePublish: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(NamePublish)
|
||||
@ -48,17 +47,17 @@ public:
|
||||
~NamePublish();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeNamePublish;
|
||||
|
||||
//-----------------------------
|
||||
bool fPublished;
|
||||
bool fWorkbookParam;
|
||||
bool fPublished;
|
||||
bool fWorkbookParam;
|
||||
|
||||
XLUnicodeString strName;
|
||||
FrtHeader frtHeader;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -52,9 +52,20 @@ BaseObjectPtr Qsir::clone()
|
||||
|
||||
void Qsir::readFields(CFRecord& record)
|
||||
{
|
||||
#pragma message("####################### Qsir record is not implemented")
|
||||
Log::error("Qsir record is not implemented.");
|
||||
//record >> some_value;
|
||||
_UINT32 flags;
|
||||
|
||||
record >> frtRefHeaderU >> cbQsirSaved >> cbQsifSaved >> flags >> iSortCustom >> cQsif >> cpstDeleted >> idFieldNext >> ccolExtraLeft >> ccolExtraRight;
|
||||
record >> idList >> rgbTitle;
|
||||
|
||||
fPersist = GETBIT(flags, 0);
|
||||
fPersistSort = GETBIT(flags, 1);
|
||||
fPersistAutoFilter = GETBIT(flags, 2);
|
||||
fSorted = GETBIT(flags, 20);
|
||||
fCaseSensSort = GETBIT(flags, 21);
|
||||
fHdrRowSort = GETBIT(flags, 22);
|
||||
fidWrapped = GETBIT(flags, 23);
|
||||
fTitlesOld = GETBIT(flags, 25);
|
||||
wVerBeforeRefreshAlert = GETBITS(flags, 26, 30);
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -32,12 +32,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/FrtRefHeaderU.h"
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of Qsir record in BIFF8
|
||||
class Qsir: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(Qsir)
|
||||
@ -47,11 +47,32 @@ public:
|
||||
~Qsir();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeQsir;
|
||||
static const ElementType type = typeQsir;
|
||||
|
||||
FrtRefHeaderU frtRefHeaderU;
|
||||
unsigned short cbQsirSaved;
|
||||
unsigned short cbQsifSaved;
|
||||
bool fPersist;
|
||||
bool fPersistSort;
|
||||
bool fPersistAutoFilter;
|
||||
bool fSorted;
|
||||
bool fCaseSensSort;
|
||||
bool fHdrRowSort;
|
||||
bool fidWrapped;
|
||||
bool fTitlesOld;
|
||||
unsigned char wVerBeforeRefreshAlert;
|
||||
_UINT32 iSortCustom;
|
||||
_UINT32 cQsif;
|
||||
_UINT32 cpstDeleted;
|
||||
_UINT32 idFieldNext;
|
||||
unsigned short ccolExtraLeft;
|
||||
unsigned short ccolExtraRight;
|
||||
_UINT32 idList; //options
|
||||
|
||||
XLUnicodeString rgbTitle;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -36,8 +36,6 @@
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of RealTimeData record in BIFF8
|
||||
class RealTimeData: public BiffRecordContinued
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(RealTimeData)
|
||||
@ -47,12 +45,10 @@ public:
|
||||
~RealTimeData();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeRealTimeData;
|
||||
|
||||
static const ElementType type = typeRealTimeData;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -35,6 +35,19 @@
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
BiffStructurePtr XLUnicodeStringSegmentedSXADDL::clone()
|
||||
{
|
||||
return BiffStructurePtr(new XLUnicodeStringSegmentedSXADDL(*this));
|
||||
}
|
||||
void XLUnicodeStringSegmentedSXADDL::load(CFRecord& record)
|
||||
{
|
||||
unsigned short reserved;
|
||||
record >> cchTotal >> reserved;
|
||||
|
||||
record >> string;
|
||||
}
|
||||
//-----------------------------------------
|
||||
|
||||
SXAddl::SXAddl()
|
||||
{
|
||||
}
|
||||
@ -58,6 +71,10 @@ void SXAddl::readFields(CFRecord& record)
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
}
|
||||
//-------------------------------------------------------------------------------------------------------
|
||||
BaseObjectPtr SXAddl_SXCCache_SXDId::clone()
|
||||
{
|
||||
return BaseObjectPtr(new SXAddl_SXCCache_SXDId(*this));
|
||||
}
|
||||
void SXAddl_SXCCache_SXDId::readFields(CFRecord& record)
|
||||
{
|
||||
m_SXAddlHdr.load(record);
|
||||
@ -65,7 +82,11 @@ void SXAddl_SXCCache_SXDId::readFields(CFRecord& record)
|
||||
short reserved;
|
||||
record >> idCache >> reserved;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
BaseObjectPtr SXAddl_SXCCache_SXDEnd::clone()
|
||||
{
|
||||
return BaseObjectPtr(new SXAddl_SXCCache_SXDEnd(*this));
|
||||
}
|
||||
void SXAddl_SXCCache_SXDEnd::readFields(CFRecord& record)
|
||||
{
|
||||
m_SXAddlHdr.load(record);
|
||||
@ -74,7 +95,26 @@ void SXAddl_SXCCache_SXDEnd::readFields(CFRecord& record)
|
||||
short reserved2;
|
||||
record >> reserved1 >> reserved2;
|
||||
}
|
||||
//----------------------------------------------------------------------------
|
||||
BaseObjectPtr Continue_SxaddlSxString::clone()
|
||||
{
|
||||
return BaseObjectPtr(new Continue_SxaddlSxString(*this));
|
||||
}
|
||||
|
||||
void Continue_SxaddlSxString::readFields(CFRecord& record)
|
||||
{
|
||||
m_SXAddlHdr.load(record);
|
||||
|
||||
int sz = record.getDataSize() - record.getRdPtr();
|
||||
|
||||
if (sz > 0)
|
||||
record >> stContinue;
|
||||
}
|
||||
//----------------------------------------------------------------------------
|
||||
BaseObjectPtr SXAddl_SXCCache_SXDVer10Info::clone()
|
||||
{
|
||||
return BaseObjectPtr(new SXAddl_SXCCache_SXDVer10Info(*this));
|
||||
}
|
||||
void SXAddl_SXCCache_SXDVer10Info::readFields(CFRecord& record)
|
||||
{
|
||||
m_SXAddlHdr.load(record);
|
||||
@ -90,6 +130,11 @@ void SXAddl_SXCCache_SXDVer10Info::readFields(CFRecord& record)
|
||||
|
||||
record >> reserved2;
|
||||
}
|
||||
//----------------------------------------------------------------------------
|
||||
BaseObjectPtr SXAddl_SXCCache_SXDInfo12::clone()
|
||||
{
|
||||
return BaseObjectPtr(new SXAddl_SXCCache_SXDInfo12(*this));
|
||||
}
|
||||
void SXAddl_SXCCache_SXDInfo12::readFields(CFRecord& record)
|
||||
{
|
||||
m_SXAddlHdr.load(record);
|
||||
@ -103,6 +148,11 @@ void SXAddl_SXCCache_SXDInfo12::readFields(CFRecord& record)
|
||||
fSrvSupportAttribDrill = GETBIT(flags, 1);
|
||||
fSrvSupportSubQuery = GETBIT(flags, 2);
|
||||
}
|
||||
//----------------------------------------------------------------------------
|
||||
BaseObjectPtr SXAddl_SXCCache_SXDVerSXMacro::clone()
|
||||
{
|
||||
return BaseObjectPtr(new SXAddl_SXCCache_SXDVerSXMacro(*this));
|
||||
}
|
||||
void SXAddl_SXCCache_SXDVerSXMacro::readFields(CFRecord& record)
|
||||
{
|
||||
m_SXAddlHdr.load(record);
|
||||
@ -112,6 +162,17 @@ void SXAddl_SXCCache_SXDVerSXMacro::readFields(CFRecord& record)
|
||||
|
||||
record >> dwVer >> reserved1 >> reserved2 >> reserved3;
|
||||
}
|
||||
//----------------------------------------------------------------------------
|
||||
BaseObjectPtr SXAddl_SXCView_SXDId::clone()
|
||||
{
|
||||
return BaseObjectPtr(new SXAddl_SXCView_SXDId(*this));
|
||||
}
|
||||
void SXAddl_SXCView_SXDId::readFields(CFRecord& record)
|
||||
{
|
||||
m_SXAddlHdr.load(record);
|
||||
|
||||
record >> stName;
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
|
||||
@ -32,12 +32,29 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
class XLUnicodeStringSegmentedSXADDL : public BiffStructure
|
||||
{
|
||||
BASE_STRUCTURE_DEFINE_CLASS_NAME(XLUnicodeStringSegmentedSXADDL)
|
||||
public:
|
||||
|
||||
XLUnicodeStringSegmentedSXADDL(){}
|
||||
~XLUnicodeStringSegmentedSXADDL(){}
|
||||
|
||||
BiffStructurePtr clone();
|
||||
|
||||
virtual void load(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeStringSegmentedSXADDL;
|
||||
|
||||
_UINT32 cchTotal;
|
||||
XLUnicodeString string;
|
||||
};
|
||||
|
||||
// Logical representation of SXAddl record in BIFF8
|
||||
class SXAddl: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(SXAddl)
|
||||
@ -57,9 +74,8 @@ public:
|
||||
|
||||
SXAddl();
|
||||
~SXAddl();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
virtual BaseObjectPtr clone();
|
||||
virtual void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeSXAddl;
|
||||
@ -68,8 +84,10 @@ public:
|
||||
class Continue_SxaddlSxString : public SXAddl
|
||||
{
|
||||
public:
|
||||
//virtual void readFields(CFRecord& record);
|
||||
|
||||
virtual void readFields(CFRecord& record);
|
||||
virtual BaseObjectPtr clone();
|
||||
|
||||
XLUnicodeStringSegmentedSXADDL stContinue;
|
||||
};
|
||||
class SXAddl_SXCAutoSort_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCAutoSort_SXDId : public SXAddl {};
|
||||
@ -77,12 +95,14 @@ class SXAddl_SXCCache_SXDEnd : public SXAddl
|
||||
{
|
||||
public:
|
||||
virtual void readFields(CFRecord& record);
|
||||
virtual BaseObjectPtr clone();
|
||||
};
|
||||
|
||||
class SXAddl_SXCCache_SXDId : public SXAddl
|
||||
{
|
||||
public:
|
||||
virtual void readFields(CFRecord& record);
|
||||
virtual BaseObjectPtr clone();
|
||||
|
||||
_UINT32 idCache;
|
||||
};
|
||||
@ -92,6 +112,7 @@ class SXAddl_SXCCache_SXDInfo12 : public SXAddl
|
||||
public:
|
||||
|
||||
virtual void readFields(CFRecord& record);
|
||||
virtual BaseObjectPtr clone();
|
||||
|
||||
bool fSheetData;
|
||||
bool fSrvSupportAttribDrill;
|
||||
@ -108,6 +129,7 @@ class SXAddl_SXCCache_SXDVer10Info : public SXAddl
|
||||
public:
|
||||
|
||||
virtual void readFields(CFRecord& record);
|
||||
virtual BaseObjectPtr clone();
|
||||
|
||||
_INT32 citmGhostMax;
|
||||
unsigned char bVerCacheLastRefresh;
|
||||
@ -119,8 +141,8 @@ public:
|
||||
class SXAddl_SXCCache_SXDVerSXMacro : public SXAddl
|
||||
{
|
||||
public:
|
||||
|
||||
virtual void readFields(CFRecord& record);
|
||||
virtual BaseObjectPtr clone();
|
||||
|
||||
unsigned char dwVer;
|
||||
};
|
||||
@ -134,11 +156,13 @@ class SXAddl_SXCCacheField_SXDIfdbMpMapCount: public SXAddl {};
|
||||
class SXAddl_SXCCacheField_SXDProperty : public SXAddl {};
|
||||
class SXAddl_SXCCacheField_SXDPropName : public SXAddl {};
|
||||
class SXAddl_SXCCacheField_SXDSxrmitmCount : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCCacheItem_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCCacheItem_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCCacheItem_SXDItmMpMapCount : public SXAddl {};
|
||||
class SXAddl_SXCCacheItem_SXDItmMpropMap : public SXAddl {};
|
||||
class SXAddl_SXCCacheItem_SXDSxrmitmDisp : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCField12_SXDAutoshow : public SXAddl {};
|
||||
class SXAddl_SXCField12_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCField12_SXDId : public SXAddl {};
|
||||
@ -146,16 +170,20 @@ class SXAddl_SXCField12_SXDISXTH : public SXAddl {};
|
||||
class SXAddl_SXCField12_SXDMemberCaption : public SXAddl {};
|
||||
class SXAddl_SXCField12_SXDVer12Info : public SXAddl {};
|
||||
class SXAddl_SXCField12_SXDVerUpdInv : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCField_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCField_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCField_SXDVer10Info : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCGroup_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCGroup_SXDGrpInfo : public SXAddl {};
|
||||
class SXAddl_SXCGroup_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCGroup_SXDMember : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCGrpLevel_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCGrpLevel_SXDGrpLevelInfo : public SXAddl {};
|
||||
class SXAddl_SXCGrpLevel_SXDId : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCHierarchy_SXDDisplayFolder : public SXAddl {};
|
||||
class SXAddl_SXCHierarchy_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCHierarchy_SXDFilterMember : public SXAddl {};
|
||||
@ -175,13 +203,16 @@ class SXAddl_SXCHierarchy_SXDProperty : public SXAddl {};
|
||||
class SXAddl_SXCHierarchy_SXDSXSetParentUnique : public SXAddl {};
|
||||
class SXAddl_SXCHierarchy_SXDUserCaption : public SXAddl {};
|
||||
class SXAddl_SXCHierarchy_SXDVerUpdInv : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCQsi_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCQsi_SXDId : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCQuery_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCQuery_SXDReconnCond : public SXAddl {};
|
||||
class SXAddl_SXCQuery_SXDSrcConnFile : public SXAddl {};
|
||||
class SXAddl_SXCQuery_SXDSrcDataFile : public SXAddl {};
|
||||
class SXAddl_SXCQuery_SXDXMLSource : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCSXCondFmt_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCSXCondFmt_SXDSXCondFmt : public SXAddl {};
|
||||
class SXAddl_SXCSXCondFmts_SXDEnd : public SXAddl {};
|
||||
@ -189,10 +220,12 @@ class SXAddl_SXCSXCondFmts_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCSXDH_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCSXDH_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCSXDH_SXDSxdh : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCSXfilt_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCSXfilt_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCSXfilt_SXDSXfilt : public SXAddl {};
|
||||
class SXAddl_SXCSXfilt_SXDSXItm : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCSXFilter12_SXDCaption : public SXAddl {};
|
||||
class SXAddl_SXCSXFilter12_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCSXFilter12_SXDId : public SXAddl {};
|
||||
@ -205,21 +238,35 @@ class SXAddl_SXCSXFilter12_SXDXlsFilterValue1: public SXAddl {};
|
||||
class SXAddl_SXCSXFilter12_SXDXlsFilterValue2: public SXAddl {};
|
||||
class SXAddl_SXCSXFilters12_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCSXFilters12_SXDId : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCSXMg_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCSXMg_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCSXMg_SXDUserCaption : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCSXMgs_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCSXMgs_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCSXMgs_SXDMGrpSXDHMap : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCSXrule_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCSXrule_SXDId : public SXAddl {};
|
||||
class SXAddl_SXCSXrule_SXDSXrule : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCView_SXDCalcMember : public SXAddl {};
|
||||
class SXAddl_SXCView_SXDCalcMemString : public SXAddl {};
|
||||
class SXAddl_SXCView_SXDCompactColHdr : public SXAddl {};
|
||||
class SXAddl_SXCView_SXDCompactRwHdr : public SXAddl {};
|
||||
class SXAddl_SXCView_SXDEnd : public SXAddl {};
|
||||
class SXAddl_SXCView_SXDId : public SXAddl {};
|
||||
|
||||
class SXAddl_SXCView_SXDId : public SXAddl
|
||||
{
|
||||
public:
|
||||
|
||||
virtual void readFields(CFRecord& record);
|
||||
virtual BaseObjectPtr clone();
|
||||
|
||||
XLUnicodeStringSegmentedSXADDL stName;
|
||||
};
|
||||
|
||||
class SXAddl_SXCView_SXDSXPIIvmb : public SXAddl {};
|
||||
class SXAddl_SXCView_SXDTableStyleClient : public SXAddl {};
|
||||
class SXAddl_SXCView_SXDVer10Info : public SXAddl {};
|
||||
|
||||
@ -52,9 +52,13 @@ BaseObjectPtr SXDI::clone()
|
||||
|
||||
void SXDI::readFields(CFRecord& record)
|
||||
{
|
||||
Log::error("SXDI record is not implemented.");
|
||||
record >> isxvdData >> iiftab >> df >> isxvd >> isxvi >> ifmt >> cchName;
|
||||
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
if (cchName > 0 && cchName < 0xFFFF)
|
||||
{
|
||||
stName.setSize(cchName);
|
||||
record >> stName;
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -32,12 +32,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "BiffRecord.h"
|
||||
#include "../Biff_structures/BiffString.h"
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
|
||||
// Logical representation of SXDI record in BIFF8
|
||||
class SXDI: public BiffRecord
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(SXDI)
|
||||
@ -47,11 +46,19 @@ public:
|
||||
~SXDI();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeSXDI;
|
||||
static const ElementType type = typeSXDI;
|
||||
|
||||
short isxvdData;
|
||||
short iiftab;
|
||||
short df;
|
||||
short isxvd;
|
||||
short isxvi;
|
||||
unsigned short ifmt;
|
||||
unsigned short cchName;
|
||||
XLUnicodeStringNoCch stName;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -44,17 +44,45 @@ SXLI::~SXLI()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
BaseObjectPtr SXLI::clone()
|
||||
{
|
||||
return BaseObjectPtr(new SXLI(*this));
|
||||
}
|
||||
|
||||
void SXLI::readFields(CFRecord& record)
|
||||
{
|
||||
Log::error("SXLI record is not implemented.");
|
||||
{// 0 or 2 records SXLIItem
|
||||
int size_item = (record.getDataSize() - record.getRdPtr()) / 2;
|
||||
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
if (size_item < 8)
|
||||
{
|
||||
//??
|
||||
return;
|
||||
}
|
||||
|
||||
for (int k = 0; k < 2; k++)
|
||||
{
|
||||
SXLIItem item;
|
||||
|
||||
unsigned short flags;
|
||||
|
||||
record >> item.cSic >> item.itmType >> item.isxviMac >> flags;
|
||||
|
||||
item.fMultiDataName = GETBIT(flags, 0);
|
||||
item.iData = GETBITS(flags, 1, 8);
|
||||
item.fSbt = GETBIT(flags, 9);
|
||||
item.fBlock = GETBIT(flags, 10);
|
||||
item.fGrand = GETBIT(flags, 11);
|
||||
item.fMultiDataOnAxis = GETBIT(flags, 12);
|
||||
|
||||
int count = (size_item - 8) / 2;
|
||||
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
short val; record >> val;
|
||||
item.rgisxvi.push_back(val);
|
||||
}
|
||||
m_arItems.push_back(item);
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -35,9 +35,21 @@
|
||||
|
||||
namespace XLS
|
||||
{
|
||||
struct SXLIItem
|
||||
{
|
||||
short cSic;
|
||||
unsigned short itmType;
|
||||
short isxviMac;
|
||||
bool fMultiDataName;
|
||||
unsigned char iData;
|
||||
bool fSbt;
|
||||
bool fBlock;
|
||||
bool fGrand;
|
||||
bool fMultiDataOnAxis;
|
||||
|
||||
std::vector<short> rgisxvi;
|
||||
};
|
||||
|
||||
// Logical representation of SXLI record in BIFF8
|
||||
class SXLI: public BiffRecordContinued
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(SXLI)
|
||||
@ -47,12 +59,12 @@ public:
|
||||
~SXLI();
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeSXLI;
|
||||
|
||||
static const ElementType type = typeSXLI;
|
||||
|
||||
std::vector<SXLIItem> m_arItems;
|
||||
};
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -52,9 +52,15 @@ BaseObjectPtr SXPI::clone()
|
||||
|
||||
void SXPI::readFields(CFRecord& record)
|
||||
{
|
||||
Log::error("SXPI record is not implemented.");
|
||||
int size = (record.getDataSize() - record.getRdPtr()) / sizeof(SXPI_Item);
|
||||
|
||||
record.skipNunBytes(record.getDataSize() - record.getRdPtr());
|
||||
for (int i = 0; i < size; i++)
|
||||
{
|
||||
SXPI_Item item;
|
||||
record >> item.isxvd >> item.isxvi >> item.idObj;
|
||||
|
||||
m_arItems.push_back(item);
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace XLS
|
||||
|
||||
@ -36,8 +36,13 @@
|
||||
namespace XLS
|
||||
{
|
||||
|
||||
struct SXPI_Item
|
||||
{
|
||||
short isxvd;
|
||||
short isxvi;
|
||||
short idObj;
|
||||
};
|
||||
|
||||
// Logical representation of SXPI record in BIFF8
|
||||
class SXPI: public BiffRecordContinued
|
||||
{
|
||||
BIFF_RECORD_DEFINE_TYPE_INFO(SXPI)
|
||||
@ -48,11 +53,11 @@ public:
|
||||
|
||||
BaseObjectPtr clone();
|
||||
|
||||
|
||||
void readFields(CFRecord& record);
|
||||
|
||||
static const ElementType type = typeSXPI;
|
||||
static const ElementType type = typeSXPI;
|
||||
|
||||
std::vector<SXPI_Item> m_arItems;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user