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 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <XclImpChangeTrack.hxx>
21 #include <sot/storage.hxx>
22 #include <svl/numformat.hxx>
23 #include <svl/zforlist.hxx>
24 #include <svl/sharedstringpool.hxx>
25 #include <sal/log.hxx>
26 #include <chgviset.hxx>
27 #include <formulacell.hxx>
28 #include <chgtrack.hxx>
29 #include <xihelper.hxx>
31 #include <externalrefmgr.hxx>
32 #include <document.hxx>
33 #include <documentimport.hxx>
34 #include <excdefs.hxx>
37 XclImpChangeTrack::XclImpChangeTrack( const XclImpRoot
& rRoot
, const XclImpStream
& rBookStrm
) :
44 // Verify that the User Names stream exists before going any further. Excel adds both
45 // "Revision Log" and "User Names" streams when Change Tracking is active but the Revision log
46 // remains if Change Tracking is turned off.
47 tools::SvRef
<SotStorageStream
> xUserStrm
= OpenStream( EXC_STREAM_USERNAMES
);
51 xInStrm
= OpenStream( EXC_STREAM_REVLOG
);
55 sal_uInt64
const nStreamLen
= xInStrm
->TellEnd();
56 if( (xInStrm
->GetErrorCode() == ERRCODE_NONE
) && (nStreamLen
!= STREAM_SEEK_TO_END
) )
58 xInStrm
->Seek( STREAM_SEEK_TO_BEGIN
);
59 pStrm
.reset( new XclImpStream( *xInStrm
, GetRoot() ) );
60 pStrm
->CopyDecrypterFrom( rBookStrm
);
61 pChangeTrack
.reset(new ScChangeTrack( GetDoc() ));
63 sOldUsername
= pChangeTrack
->GetUser();
64 pChangeTrack
->SetUseFixDateTime( true );
70 XclImpChangeTrack::~XclImpChangeTrack()
76 void XclImpChangeTrack::DoAcceptRejectAction( ScChangeAction
* pAction
)
78 if( !pAction
) return;
79 switch( aRecHeader
.nAccept
)
82 pChangeTrack
->Accept( pAction
);
89 void XclImpChangeTrack::DoAcceptRejectAction( sal_uInt32 nFirst
, sal_uInt32 nLast
)
91 for( sal_uInt32 nIndex
= nFirst
; nIndex
<= nLast
; nIndex
++ )
92 DoAcceptRejectAction( pChangeTrack
->GetAction( nIndex
) );
95 void XclImpChangeTrack::DoInsertRange( const ScRange
& rRange
, bool bEndOfList
)
97 sal_uInt32 nFirst
= pChangeTrack
->GetActionMax() + 1;
98 pChangeTrack
->AppendInsert(rRange
, bEndOfList
);
99 sal_uInt32 nLast
= pChangeTrack
->GetActionMax();
100 DoAcceptRejectAction( nFirst
, nLast
);
103 void XclImpChangeTrack::DoDeleteRange( const ScRange
& rRange
)
105 sal_uLong nFirst
, nLast
;
106 pChangeTrack
->AppendDeleteRange( rRange
, &GetDoc() , nFirst
, nLast
);
107 DoAcceptRejectAction( nFirst
, nLast
);
110 SCTAB
XclImpChangeTrack::ReadTabNum()
112 return static_cast<SCTAB
>(GetTabInfo().GetCurrentIndex(
113 pStrm
->ReaduInt16(), nTabIdCount
));
116 void XclImpChangeTrack::ReadDateTime( DateTime
& rDateTime
)
119 sal_uInt8 nMonth
, nDay
, nHour
, nMin
, nSec
;
121 nYear
= pStrm
->ReaduInt16();
122 nMonth
= pStrm
->ReaduInt8();
123 nDay
= pStrm
->ReaduInt8();
124 nHour
= pStrm
->ReaduInt8();
125 nMin
= pStrm
->ReaduInt8();
126 nSec
= pStrm
->ReaduInt8();
128 rDateTime
.SetYear( nYear
);
129 rDateTime
.SetMonth( nMonth
);
130 rDateTime
.SetDay( nDay
);
131 rDateTime
.SetHour( nHour
);
132 rDateTime
.SetMin( nMin
);
133 rDateTime
.SetSec( nSec
);
134 rDateTime
.SetNanoSec( 0 );
137 bool XclImpChangeTrack::CheckRecord( sal_uInt16 nOpCode
)
139 if( (nOpCode
!= EXC_CHTR_OP_UNKNOWN
) && (aRecHeader
.nOpCode
!= nOpCode
) )
141 OSL_FAIL( "XclImpChangeTrack::CheckRecord - unknown action" );
144 return aRecHeader
.nIndex
!= 0;
147 void XclImpChangeTrack::Read3DTabRefInfo( SCTAB
& rFirstTab
, SCTAB
& rLastTab
, ExcelToSc8::ExternalTabInfo
& rExtInfo
)
149 if( LookAtuInt8() == 0x01 )
151 rExtInfo
.mbExternal
= false;
152 // internal ref - read tab num and return sc tab num (position in TABID list)
154 rFirstTab
= static_cast< SCTAB
>( GetTabInfo().GetCurrentIndex( pStrm
->ReaduInt16(), nTabIdCount
) );
155 sal_uInt8 nFillByte
= pStrm
->ReaduInt8();
156 rLastTab
= (nFillByte
== 0x00) ?
157 static_cast< SCTAB
>( GetTabInfo().GetCurrentIndex( pStrm
->ReaduInt16(), nTabIdCount
) ) : rFirstTab
;
161 // external ref - read doc and tab name and find sc tab num
163 OUString
aEncUrl( pStrm
->ReadUniString() );
166 XclImpUrlHelper::DecodeUrl( aUrl
, bSelf
, GetRoot(), aEncUrl
);
168 // - sheet name, always separated from URL
169 OUString
aTabName( pStrm
->ReadUniString() );
172 rExtInfo
.mbExternal
= true;
173 ScExternalRefManager
* pRefMgr
= GetDoc().GetExternalRefManager();
174 pRefMgr
->convertToAbsName(aUrl
);
175 rExtInfo
.mnFileId
= pRefMgr
->getExternalFileId(aUrl
);
176 rExtInfo
.maTabName
= aTabName
;
177 rFirstTab
= rLastTab
= 0;
181 void XclImpChangeTrack::ReadFormula( std::unique_ptr
<ScTokenArray
>& rpTokenArray
, const ScAddress
& rPosition
)
183 sal_uInt16 nFmlSize
= pStrm
->ReaduInt16();
185 // create a memory stream and copy the formula to be able to read simultaneously
186 // the formula and the additional 3D tab ref data following the formula
187 // here we have to simulate an Excel record to be able to use an XclImpStream...
188 // 2do: remove the stream member from formula converter and add it as a parameter
189 // to the Convert() routine (to prevent the construction/destruction of the
190 // converter in each formula)
191 SvMemoryStream aMemStrm
;
192 aMemStrm
.WriteUInt16( 0x0001 ).WriteUInt16( nFmlSize
);
193 size_t nRead
= pStrm
->CopyToStream( aMemStrm
, nFmlSize
);
195 // survive reading invalid streams!
196 // if we can't read as many bytes as required just don't use them and
197 // assume that this part is broken
198 if(nRead
!= nFmlSize
)
200 rpTokenArray
= nullptr;
205 XclImpStream
aFmlaStrm( aMemStrm
, GetRoot() );
206 aFmlaStrm
.StartNextRecord();
207 XclImpChTrFmlConverter
aFmlConv( GetRoot(), *this );
209 // read the formula, 3D tab refs from extended data
210 std::unique_ptr
<ScTokenArray
> pArray
;
211 aFmlConv
.Reset( rPosition
);
212 bool bOK
= (aFmlConv
.Convert( pArray
, aFmlaStrm
, nFmlSize
, false ) == ConvErr::OK
); // JEG : Check This
213 rpTokenArray
= (bOK
&& pArray
) ? std::move( pArray
) : nullptr;
217 void XclImpChangeTrack::ReadCell(
218 ScCellValue
& rCell
, sal_uInt32
& rFormat
, sal_uInt16 nFlags
, const ScAddress
& rPosition
)
222 switch( nFlags
& EXC_CHTR_TYPE_MASK
)
224 case EXC_CHTR_TYPE_EMPTY
:
226 case EXC_CHTR_TYPE_RK
:
228 double fValue
= XclTools::GetDoubleFromRK( pStrm
->ReadInt32() );
229 if( pStrm
->IsValid() )
231 rCell
.meType
= CELLTYPE_VALUE
;
232 rCell
.mfValue
= fValue
;
236 case EXC_CHTR_TYPE_DOUBLE
:
238 double fValue
= pStrm
->ReadDouble();
239 if( pStrm
->IsValid() )
241 rCell
.meType
= CELLTYPE_VALUE
;
242 rCell
.mfValue
= fValue
;
246 case EXC_CHTR_TYPE_STRING
:
248 OUString sString
= pStrm
->ReadUniString();
249 if( pStrm
->IsValid() )
251 rCell
.meType
= CELLTYPE_STRING
;
252 rCell
.mpString
= new svl::SharedString(GetDoc().GetSharedStringPool().intern(sString
));
256 case EXC_CHTR_TYPE_BOOL
:
258 double fValue
= static_cast<double>(pStrm
->ReaduInt16() != 0);
259 if( pStrm
->IsValid() )
261 rCell
.meType
= CELLTYPE_VALUE
;
262 rCell
.mfValue
= fValue
;
263 rFormat
= GetFormatter().GetStandardFormat( SvNumFormatType::LOGICAL
, ScGlobal::eLnge
);
267 case EXC_CHTR_TYPE_FORMULA
:
269 std::unique_ptr
<ScTokenArray
> pTokenArray
;
270 ReadFormula( pTokenArray
, rPosition
);
271 if( pStrm
->IsValid() && pTokenArray
)
273 rCell
.meType
= CELLTYPE_FORMULA
;
274 rCell
.mpFormula
= new ScFormulaCell(GetDoc(), rPosition
, std::move(pTokenArray
));
279 OSL_FAIL( "XclImpChangeTrack::ReadCell - unknown data type" );
283 void XclImpChangeTrack::ReadChTrInsert()
285 *pStrm
>> aRecHeader
;
286 if( !CheckRecord( EXC_CHTR_OP_UNKNOWN
) )
289 if( (aRecHeader
.nOpCode
!= EXC_CHTR_OP_INSROW
) &&
290 (aRecHeader
.nOpCode
!= EXC_CHTR_OP_INSCOL
) &&
291 (aRecHeader
.nOpCode
!= EXC_CHTR_OP_DELROW
) &&
292 (aRecHeader
.nOpCode
!= EXC_CHTR_OP_DELCOL
) )
294 OSL_FAIL( "XclImpChangeTrack::ReadChTrInsert - unknown action" );
299 aRange
.aStart
.SetTab( ReadTabNum() );
300 aRange
.aEnd
.SetTab( aRange
.aStart
.Tab() );
301 sal_uInt16 nFlags
= pStrm
->ReaduInt16();
302 bool bEndOfList
= (nFlags
& 0x0001); // row auto-inserted at the bottom.
303 Read2DRange( aRange
);
305 if( aRecHeader
.nOpCode
& EXC_CHTR_OP_COLFLAG
)
306 aRange
.aEnd
.SetRow( GetDocImport().getDoc().MaxRow() );
308 aRange
.aEnd
.SetCol( GetDocImport().getDoc().MaxCol() );
310 bool bValid
= pStrm
->IsValid();
311 if( FoundNestedMode() )
316 if( aRecHeader
.nOpCode
& EXC_CHTR_OP_DELFLAG
)
317 DoDeleteRange( aRange
);
319 DoInsertRange(aRange
, bEndOfList
);
323 void XclImpChangeTrack::ReadChTrInfo()
325 pStrm
->DisableDecryption();
327 OUString
sUsername( pStrm
->ReadUniString() );
328 if( !pStrm
->IsValid() ) return;
330 if( !sUsername
.isEmpty() )
331 pChangeTrack
->SetUser( sUsername
);
333 if( !pStrm
->IsValid() ) return;
335 DateTime
aDateTime( DateTime::EMPTY
);
336 ReadDateTime( aDateTime
);
337 if( pStrm
->IsValid() )
338 pChangeTrack
->SetFixDateTimeLocal( aDateTime
);
341 void XclImpChangeTrack::ReadChTrCellContent()
343 *pStrm
>> aRecHeader
;
344 if( !CheckRecord( EXC_CHTR_OP_CELL
) )
348 SCTAB nTab
= ReadTabNum();
349 aPosition
.SetTab( nTab
);
350 sal_uInt16 nValueType
;
351 nValueType
= pStrm
->ReaduInt16();
352 sal_uInt16 nOldValueType
= (nValueType
>> 3) & EXC_CHTR_TYPE_MASK
;
353 sal_uInt16 nNewValueType
= nValueType
& EXC_CHTR_TYPE_MASK
;
355 Read2DAddress( aPosition
);
357 nOldSize
= pStrm
->ReaduInt16();
358 SAL_WARN_IF( (nOldSize
== 0) != (nOldValueType
== EXC_CHTR_TYPE_EMPTY
),
360 "XclImpChangeTrack::ReadChTrCellContent - old value mismatch" );
362 switch( nValueType
& EXC_CHTR_TYPE_FORMATMASK
)
365 case 0x1100: pStrm
->Ignore( 16 ); break;
366 case 0x1300: pStrm
->Ignore( 8 ); break;
367 default: OSL_FAIL( "XclImpChangeTrack::ReadChTrCellContent - unknown format info" );
370 ScCellValue aOldCell
;
371 ScCellValue aNewCell
;
372 sal_uInt32 nOldFormat
;
373 sal_uInt32 nNewFormat
;
374 ReadCell(aOldCell
, nOldFormat
, nOldValueType
, aPosition
);
375 ReadCell(aNewCell
, nNewFormat
, nNewValueType
, aPosition
);
376 if( !pStrm
->IsValid() || (pStrm
->GetRecLeft() > 0) )
378 OSL_FAIL( "XclImpChangeTrack::ReadChTrCellContent - bytes left, action ignored" );
384 ScChangeActionContent
* pNewAction
=
385 pChangeTrack
->AppendContentOnTheFly(aPosition
, aOldCell
, aNewCell
, nOldFormat
, nNewFormat
);
386 DoAcceptRejectAction( pNewAction
);
390 void XclImpChangeTrack::ReadChTrTabId()
392 if( nTabIdCount
== 0 ) // read only 1st time, otherwise calculated by <ReadChTrInsertTab()>
393 nTabIdCount
= static_cast< sal_uInt16
>( pStrm
->GetRecLeft() >> 1 );
396 void XclImpChangeTrack::ReadChTrMoveRange()
398 *pStrm
>> aRecHeader
;
399 if( !CheckRecord( EXC_CHTR_OP_MOVE
) )
402 ScRange aSourceRange
;
404 aDestRange
.aStart
.SetTab( ReadTabNum() );
405 aDestRange
.aEnd
.SetTab( aDestRange
.aStart
.Tab() );
406 Read2DRange( aSourceRange
);
407 Read2DRange( aDestRange
);
408 aSourceRange
.aStart
.SetTab( ReadTabNum() );
409 aSourceRange
.aEnd
.SetTab( aSourceRange
.aStart
.Tab() );
411 bool bValid
= pStrm
->IsValid();
412 if( FoundNestedMode() )
417 pChangeTrack
->AppendMove( aSourceRange
, aDestRange
, nullptr );
418 DoAcceptRejectAction( pChangeTrack
->GetLast() );
422 void XclImpChangeTrack::ReadChTrInsertTab()
424 *pStrm
>> aRecHeader
;
425 if( CheckRecord( EXC_CHTR_OP_INSTAB
) )
427 SCTAB nTab
= ReadTabNum();
428 if( pStrm
->IsValid() )
431 DoInsertRange(ScRange(0, 0, nTab
, GetDocImport().getDoc().MaxCol(), GetDocImport().getDoc().MaxRow(), nTab
), false);
436 void XclImpChangeTrack::InitNestedMode()
438 OSL_ENSURE( eNestedMode
== nmBase
, "XclImpChangeTrack::InitNestedMode - unexpected nested mode" );
439 if( eNestedMode
== nmBase
)
440 eNestedMode
= nmFound
;
443 void XclImpChangeTrack::ReadNestedRecords()
445 OSL_ENSURE( eNestedMode
== nmFound
, "XclImpChangeTrack::StartNestedMode - missing nested mode" );
446 if( eNestedMode
== nmFound
)
448 eNestedMode
= nmNested
;
453 bool XclImpChangeTrack::EndNestedMode()
455 OSL_ENSURE( eNestedMode
!= nmBase
, "XclImpChangeTrack::EndNestedMode - missing nested mode" );
456 bool bReturn
= (eNestedMode
== nmNested
);
457 eNestedMode
= nmBase
;
461 void XclImpChangeTrack::ReadRecords()
463 bool bExitLoop
= false;
465 while( !bExitLoop
&& !bGlobExit
&& pStrm
->StartNextRecord() )
467 switch( pStrm
->GetRecId() )
469 case 0x000A: bGlobExit
= true; break;
470 case 0x0137: ReadChTrInsert(); break;
471 case 0x0138: ReadChTrInfo(); break;
472 case 0x013B: ReadChTrCellContent(); break;
473 case 0x013D: ReadChTrTabId(); break;
474 case 0x0140: ReadChTrMoveRange(); break;
475 case 0x014D: ReadChTrInsertTab(); break;
477 case 0x0150: InitNestedMode(); break;
479 case 0x0151: bExitLoop
= EndNestedMode(); break;
484 void XclImpChangeTrack::Apply()
488 pChangeTrack
->SetUser( sOldUsername
);
489 pChangeTrack
->SetUseFixDateTime( false );
491 GetDoc().SetChangeTrack( std::move(pChangeTrack
) );
493 ScChangeViewSettings aSettings
;
494 aSettings
.SetShowChanges( true );
495 GetDoc().SetChangeViewSettings( aSettings
);
500 XclImpChTrFmlConverter::XclImpChTrFmlConverter(
501 XclImpRoot
& rRoot
, XclImpChangeTrack
& rXclChTr
) :
503 rChangeTrack( rXclChTr
) {}
505 XclImpChTrFmlConverter::~XclImpChTrFmlConverter()
509 // virtual, called from ExcToSc8::Convert()
510 bool XclImpChTrFmlConverter::Read3DTabReference( sal_uInt16
/*nIxti*/, SCTAB
& rFirstTab
, SCTAB
& rLastTab
,
511 ExternalTabInfo
& rExtInfo
)
513 rChangeTrack
.Read3DTabRefInfo( rFirstTab
, rLastTab
, rExtInfo
);
517 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */