1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 #include <oox/ole/axbinarywriter.hxx>
11 #include <oox/ole/olehelper.hxx>
18 const sal_uInt32 AX_STRING_COMPRESSED
= 0x80000000;
22 AxAlignedOutputStream::AxAlignedOutputStream( BinaryOutputStream
& rOutStrm
) :
23 BinaryStreamBase( false ),
24 mpOutStrm( &rOutStrm
),
26 mnStrmSize( rOutStrm
.getRemaining() ),
27 mnWrappedBeginPos( rOutStrm
.tell() )
29 mbEof
= mbEof
|| rOutStrm
.isEof();
32 sal_Int64
AxAlignedOutputStream::size() const
34 return mpOutStrm
? mnStrmSize
: -1;
37 sal_Int64
AxAlignedOutputStream::tell() const
39 return mpOutStrm
? mnStrmPos
: -1;
42 void AxAlignedOutputStream::seek( sal_Int64 nPos
)
47 mpOutStrm
->seek( static_cast< sal_Int32
>( mnWrappedBeginPos
+ nPos
) );
48 mnStrmPos
= mpOutStrm
->tell() - mnWrappedBeginPos
;
52 void AxAlignedOutputStream::close()
58 void AxAlignedOutputStream::writeData( const StreamDataSequence
& orData
, size_t nAtomSize
)
60 mpOutStrm
->writeData( orData
, nAtomSize
);
61 mnStrmPos
= mpOutStrm
->tell() - mnWrappedBeginPos
;
64 void AxAlignedOutputStream::writeMemory( const void* opMem
, sal_Int32 nBytes
, size_t nAtomSize
)
66 mpOutStrm
->writeMemory( opMem
, nBytes
, nAtomSize
);
67 mnStrmPos
= mpOutStrm
->tell() - mnWrappedBeginPos
;
70 void AxAlignedOutputStream::pad( sal_Int32 nBytes
)
72 //PRESUMABLY we need to pad with 0's here as appropriate
73 css::uno::Sequence
< sal_Int8
> aData( nBytes
);
74 // ok we could be padding with rubbish here, but really that shouldn't matter
75 // set to 0(s), easier to not get fooled by 0's when looking at
77 memset( static_cast<void*>( aData
.getArray() ), 0, nBytes
);
78 mpOutStrm
->writeData( aData
);
79 mnStrmPos
= mpOutStrm
->tell() - mnWrappedBeginPos
;
82 void AxAlignedOutputStream::align( size_t nSize
)
84 pad( static_cast< sal_Int32
>( (nSize
- (mnStrmPos
% nSize
)) % nSize
) );
89 void lclWriteString( AxAlignedOutputStream
& rOutStrm
, OUString
const & rValue
, sal_uInt32 nSize
)
91 bool bCompressed
= getFlag( nSize
, AX_STRING_COMPRESSED
);
92 rOutStrm
.writeCompressedUnicodeArray( rValue
, bCompressed
);
97 AxBinaryPropertyWriter::ComplexProperty::~ComplexProperty()
101 bool AxBinaryPropertyWriter::PairProperty::writeProperty( AxAlignedOutputStream
& rOutStrm
)
103 rOutStrm
.WriteInt32(mrPairData
.first
).WriteInt32(mrPairData
.second
);
107 bool AxBinaryPropertyWriter::StringProperty::writeProperty( AxAlignedOutputStream
& rOutStrm
)
109 lclWriteString( rOutStrm
, mrValue
, mnSize
);
113 AxBinaryPropertyWriter::AxBinaryPropertyWriter( BinaryOutputStream
& rOutStrm
, bool b64BitPropFlags
) :
114 maOutStrm( rOutStrm
),
117 mb64BitPropFlags( b64BitPropFlags
)
119 sal_uInt16
nId( 0x0200 );
120 maOutStrm
.WriteUInt16(nId
);
121 mnBlockSize
= 0; // will be filled in the finalize method
123 maOutStrm
.WriteUInt16(nId
);
124 mnPropFlagsStart
= maOutStrm
.tell();
126 if( mb64BitPropFlags
)
127 maOutStrm
.WriteInt64( mnPropFlags
);
129 maOutStrm
.WriteUInt32( mnPropFlags
);
133 void AxBinaryPropertyWriter::writeBoolProperty( bool orbValue
)
135 // orbValue == bReverse false then we want to set the bit, e.g. don't skip
136 startNextProperty( !orbValue
);
139 void AxBinaryPropertyWriter::writePairProperty( AxPairData
& orPairData
)
142 maLargeProps
.push_back( ComplexPropVector::value_type( new PairProperty( orPairData
) ) );
145 void AxBinaryPropertyWriter::writeStringProperty( OUString
& orValue
)
147 sal_uInt32 nSize
= orValue
.getLength() * 2;
148 setFlag( nSize
, AX_STRING_COMPRESSED
, false );
149 maOutStrm
.writeAligned
< sal_uInt32
>( nSize
);
150 maLargeProps
.push_back( ComplexPropVector::value_type( new StringProperty( orValue
, nSize
) ) );
154 void AxBinaryPropertyWriter::finalizeExport()
156 // write large properties
157 maOutStrm
.align( 4 );
158 for (auto const& largeProp
: maLargeProps
)
162 largeProp
->writeProperty( maOutStrm
);
163 maOutStrm
.align( 4 );
166 mnBlockSize
= maOutStrm
.tell() - mnPropFlagsStart
;
168 // write stream properties (no stream alignment between properties!)
169 for (auto const& streamProp
: maStreamProps
)
173 streamProp
->writeProperty( maOutStrm
);
176 sal_Int64 nPos
= maOutStrm
.tell();
177 maOutStrm
.seek( mnPropFlagsStart
- sizeof( mnBlockSize
) );
179 maOutStrm
.WriteInt16( mnBlockSize
);
181 if( mb64BitPropFlags
)
182 maOutStrm
.WriteInt64( mnPropFlags
);
184 maOutStrm
.WriteUInt32( mnPropFlags
);
186 maOutStrm
.seek( nPos
);
189 bool AxBinaryPropertyWriter::ensureValid()
191 mbValid
= mbValid
&& !maOutStrm
.isEof();
195 void AxBinaryPropertyWriter::startNextProperty( bool bSkip
)
197 // if we are skipping then we clear the flag
198 setFlag( mnPropFlags
, mnNextProp
, !bSkip
);
205 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */