mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 08:39:50 +08:00
505 lines
13 KiB
C++
505 lines
13 KiB
C++
/*
|
|
* (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 "TBD.h"
|
|
#include "XAS.h"
|
|
|
|
namespace ASCDocFileFormat
|
|
{
|
|
class PChgTabsAdd : public IOperand
|
|
{
|
|
public:
|
|
|
|
PChgTabsAdd() : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
this->sizeInBytes = sizeof(unsigned char);
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
}
|
|
}
|
|
|
|
explicit PChgTabsAdd( const vector<XAS>& _rgdxaAdd, const vector<TBD>& _rgtbdAdd ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
unsigned int cTabs = min( _rgdxaAdd.size(), _rgtbdAdd.size() );
|
|
|
|
if ( cTabs > MAX_RECORDS_NUMBER )
|
|
{
|
|
cTabs = MAX_RECORDS_NUMBER;
|
|
}
|
|
|
|
this->sizeInBytes = ( ( sizeof(XAS) * cTabs ) + ( sizeof(TBD) * cTabs ) + sizeof(unsigned char) );
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
|
|
unsigned int offset = 0;
|
|
|
|
this->bytes[offset] = (unsigned char)cTabs;
|
|
offset += sizeof(unsigned char);
|
|
|
|
for ( unsigned int i = 0; i < cTabs; i++ )
|
|
{
|
|
FormatUtils::SetBytes( ( this->bytes + offset ), (short)_rgdxaAdd[i] );
|
|
offset += sizeof(XAS);
|
|
}
|
|
|
|
for ( unsigned int i = 0; i < cTabs; i++ )
|
|
{
|
|
this->bytes[offset] = (unsigned char)_rgtbdAdd[i];
|
|
offset += sizeof(TBD);
|
|
}
|
|
}
|
|
}
|
|
|
|
PChgTabsAdd( const PChgTabsAdd& _pChgTabsAdd ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
if ( ( _pChgTabsAdd.bytes != NULL ) && ( _pChgTabsAdd.sizeInBytes != 0 ) )
|
|
{
|
|
this->sizeInBytes = _pChgTabsAdd.sizeInBytes;
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
memcpy( this->bytes, _pChgTabsAdd.bytes, this->sizeInBytes );
|
|
}
|
|
}
|
|
}
|
|
|
|
virtual ~PChgTabsAdd()
|
|
{
|
|
RELEASEARRAYOBJECTS (bytes);
|
|
}
|
|
|
|
virtual operator unsigned char*() const
|
|
{
|
|
return (unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual operator const unsigned char*() const
|
|
{
|
|
return (const unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual unsigned int Size() const
|
|
{
|
|
return this->sizeInBytes;
|
|
}
|
|
private:
|
|
|
|
unsigned char* bytes;
|
|
unsigned int sizeInBytes;
|
|
|
|
static const unsigned char MAX_RECORDS_NUMBER = 64;
|
|
};
|
|
|
|
class PChgTabsDel : public IOperand
|
|
{
|
|
public:
|
|
|
|
PChgTabsDel() : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
this->sizeInBytes = sizeof(unsigned char);
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
}
|
|
}
|
|
|
|
explicit PChgTabsDel( const vector<XAS>& _rgdxaDel ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
unsigned int cTabs = _rgdxaDel.size();
|
|
|
|
if ( cTabs > MAX_RECORDS_NUMBER )
|
|
{
|
|
cTabs = MAX_RECORDS_NUMBER;
|
|
}
|
|
|
|
this->sizeInBytes = ( ( sizeof(XAS) * cTabs ) + sizeof(unsigned char) );
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
|
|
unsigned int offset = 0;
|
|
|
|
this->bytes[offset] = (unsigned char)cTabs;
|
|
offset += sizeof(unsigned char);
|
|
|
|
for ( unsigned int i = 0; i < cTabs; i++ )
|
|
{
|
|
FormatUtils::SetBytes( ( this->bytes + offset ), (short)_rgdxaDel[i] );
|
|
offset += sizeof(XAS);
|
|
}
|
|
}
|
|
}
|
|
|
|
PChgTabsDel( const PChgTabsDel& _pChgTabsDel ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
if ( ( _pChgTabsDel.bytes != NULL ) && ( _pChgTabsDel.sizeInBytes != 0 ) )
|
|
{
|
|
this->sizeInBytes = _pChgTabsDel.sizeInBytes;
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
memcpy( this->bytes, _pChgTabsDel.bytes, this->sizeInBytes );
|
|
}
|
|
}
|
|
}
|
|
|
|
virtual ~PChgTabsDel()
|
|
{
|
|
RELEASEARRAYOBJECTS (bytes);
|
|
}
|
|
|
|
virtual operator unsigned char*() const
|
|
{
|
|
return (unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual operator const unsigned char*() const
|
|
{
|
|
return (const unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual unsigned int Size() const
|
|
{
|
|
return this->sizeInBytes;
|
|
}
|
|
private:
|
|
unsigned char* bytes;
|
|
unsigned int sizeInBytes;
|
|
|
|
static const unsigned char MAX_RECORDS_NUMBER = 64;
|
|
};
|
|
|
|
class PChgTabsDelClose : public IOperand
|
|
{
|
|
public:
|
|
|
|
PChgTabsDelClose() : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
this->sizeInBytes = sizeof(unsigned char);
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
}
|
|
}
|
|
|
|
explicit PChgTabsDelClose( const vector<short>& _rgdxaDel, const vector<XAS_plusOne>& _rgdxaClose ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
unsigned int cTabs = min( _rgdxaDel.size(), _rgdxaClose.size() );
|
|
|
|
if ( cTabs > MAX_RECORDS_NUMBER )
|
|
{
|
|
cTabs = MAX_RECORDS_NUMBER;
|
|
}
|
|
|
|
this->sizeInBytes = ( ( sizeof(short) * cTabs ) + ( sizeof(XAS_plusOne) * cTabs ) + sizeof(unsigned char) );
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
|
|
unsigned int offset = 0;
|
|
|
|
this->bytes[offset] = (unsigned char)cTabs;
|
|
offset += sizeof(unsigned char);
|
|
|
|
for ( unsigned int i = 0; i < cTabs; i++ )
|
|
{
|
|
FormatUtils::SetBytes( ( this->bytes + offset ), _rgdxaDel[i] );
|
|
offset += sizeof(short);
|
|
}
|
|
|
|
for ( unsigned int i = 0; i < cTabs; i++ )
|
|
{
|
|
FormatUtils::SetBytes( ( this->bytes + offset ), (short)_rgdxaClose[i] );
|
|
offset += sizeof(XAS_plusOne);
|
|
}
|
|
}
|
|
}
|
|
|
|
PChgTabsDelClose( const PChgTabsDelClose& _pChgTabsDelClose ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
if ( ( _pChgTabsDelClose.bytes != NULL ) && ( _pChgTabsDelClose.sizeInBytes != 0 ) )
|
|
{
|
|
this->sizeInBytes = _pChgTabsDelClose.sizeInBytes;
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
|
|
memcpy( this->bytes, _pChgTabsDelClose.bytes, this->sizeInBytes );
|
|
}
|
|
}
|
|
}
|
|
|
|
virtual ~PChgTabsDelClose()
|
|
{
|
|
RELEASEARRAYOBJECTS (bytes);
|
|
}
|
|
|
|
virtual operator unsigned char*() const
|
|
{
|
|
return (unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual operator const unsigned char*() const
|
|
{
|
|
return (const unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual unsigned int Size() const
|
|
{
|
|
return this->sizeInBytes;
|
|
}
|
|
private:
|
|
unsigned char* bytes;
|
|
unsigned int sizeInBytes;
|
|
|
|
static const unsigned char MAX_RECORDS_NUMBER = 64;
|
|
};
|
|
|
|
class PChgTabsOperand : public IOperand
|
|
{
|
|
public:
|
|
|
|
PChgTabsOperand() : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
this->DefaultInit();
|
|
}
|
|
|
|
explicit PChgTabsOperand( const PChgTabsDelClose& _pChgTabsDelClose, const PChgTabsAdd& _pChgTabsAdd ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
unsigned int cb = ( _pChgTabsDelClose.Size() + _pChgTabsAdd.Size() );
|
|
|
|
if ( ( cb >= MIN_SIZE_IN_BYTES ) && ( cb <= MAX_SIZE_IN_BYTES ) )
|
|
{
|
|
this->sizeInBytes = ( cb + sizeof(unsigned char) );
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
|
|
this->bytes[0] = (unsigned char)cb;
|
|
|
|
memcpy( ( this->bytes + sizeof(unsigned char) ), (unsigned char*)_pChgTabsDelClose, _pChgTabsDelClose.Size() );
|
|
memcpy( ( this->bytes + sizeof(unsigned char) + _pChgTabsDelClose.Size() ), (unsigned char*)_pChgTabsAdd, _pChgTabsAdd.Size() );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this->DefaultInit();
|
|
}
|
|
}
|
|
|
|
PChgTabsOperand( const PChgTabsOperand& _pChgTabsOperand ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
if ( ( _pChgTabsOperand.bytes != NULL ) && ( _pChgTabsOperand.sizeInBytes != 0 ) )
|
|
{
|
|
this->sizeInBytes = _pChgTabsOperand.sizeInBytes;
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
|
|
memcpy( this->bytes, _pChgTabsOperand.bytes, this->sizeInBytes );
|
|
}
|
|
}
|
|
}
|
|
|
|
virtual ~PChgTabsOperand()
|
|
{
|
|
RELEASEARRAYOBJECTS (bytes);
|
|
}
|
|
|
|
virtual operator unsigned char*() const
|
|
{
|
|
return (unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual operator const unsigned char*() const
|
|
{
|
|
return (const unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual unsigned int Size() const
|
|
{
|
|
return this->sizeInBytes;
|
|
}
|
|
private:
|
|
void DefaultInit()
|
|
{
|
|
this->sizeInBytes = ( MIN_SIZE_IN_BYTES + sizeof(unsigned char) );
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
this->bytes[0] = MIN_SIZE_IN_BYTES;
|
|
}
|
|
}
|
|
|
|
private:
|
|
|
|
unsigned char* bytes;
|
|
unsigned int sizeInBytes;
|
|
|
|
static const unsigned char MIN_SIZE_IN_BYTES = 2;
|
|
static const unsigned char MAX_SIZE_IN_BYTES = 255;
|
|
};
|
|
|
|
class PChgTabsPapxOperand : public IOperand
|
|
{
|
|
public:
|
|
|
|
PChgTabsPapxOperand() : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
this->DefaultInit();
|
|
}
|
|
|
|
explicit PChgTabsPapxOperand( const PChgTabsDel& _pChgTabsDel, const PChgTabsAdd& _pChgTabsAdd ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
unsigned int cb = ( _pChgTabsDel.Size() + _pChgTabsAdd.Size() );
|
|
|
|
if ( ( cb >= MIN_SIZE_IN_BYTES ) && ( cb <= MAX_SIZE_IN_BYTES ) )
|
|
{
|
|
this->sizeInBytes = ( cb + sizeof(unsigned char) );
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
|
|
this->bytes[0] = (unsigned char)cb;
|
|
|
|
memcpy( ( this->bytes + sizeof(unsigned char) ), (unsigned char*)_pChgTabsDel, _pChgTabsDel.Size() );
|
|
memcpy( ( this->bytes + sizeof(unsigned char) + _pChgTabsDel.Size() ), (unsigned char*)_pChgTabsAdd, _pChgTabsAdd.Size() );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this->DefaultInit();
|
|
}
|
|
}
|
|
|
|
PChgTabsPapxOperand( const PChgTabsPapxOperand& _pChgTabsPapxOperand ) : bytes(NULL), sizeInBytes(0)
|
|
{
|
|
if ( ( _pChgTabsPapxOperand.bytes != NULL ) && ( _pChgTabsPapxOperand.sizeInBytes != 0 ) )
|
|
{
|
|
this->sizeInBytes = _pChgTabsPapxOperand.sizeInBytes;
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
|
|
memcpy( this->bytes, _pChgTabsPapxOperand.bytes, this->sizeInBytes );
|
|
}
|
|
}
|
|
}
|
|
|
|
virtual ~PChgTabsPapxOperand()
|
|
{
|
|
RELEASEARRAYOBJECTS (bytes);
|
|
}
|
|
|
|
virtual operator unsigned char*() const
|
|
{
|
|
return (unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual operator const unsigned char*() const
|
|
{
|
|
return (const unsigned char*)(this->bytes);
|
|
}
|
|
|
|
virtual unsigned int Size() const
|
|
{
|
|
return this->sizeInBytes;
|
|
}
|
|
private:
|
|
|
|
void DefaultInit()
|
|
{
|
|
this->sizeInBytes = ( MIN_SIZE_IN_BYTES + sizeof(unsigned char) );
|
|
|
|
this->bytes = new unsigned char[this->sizeInBytes];
|
|
|
|
if ( this->bytes != NULL )
|
|
{
|
|
memset( this->bytes, 0, this->sizeInBytes );
|
|
this->bytes[0] = MIN_SIZE_IN_BYTES;
|
|
}
|
|
}
|
|
|
|
private:
|
|
unsigned char* bytes;
|
|
unsigned int sizeInBytes;
|
|
|
|
static const unsigned char MIN_SIZE_IN_BYTES = 2;
|
|
static const unsigned char MAX_SIZE_IN_BYTES = 255;
|
|
|
|
};
|
|
} |