1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <com/sun/star/i18n/XBreakIterator.hpp>
#include <com/sun/star/i18n/ScriptType.hpp>
#include <sfx2/objsh.hxx>
#include <vcl/font.hxx>
#include <tools/urlobj.hxx>
#include <svl/itemset.hxx>
#include <svtools/ctrltool.hxx>
#include <svx/svdotext.hxx>
#include <editeng/outlobj.hxx>
#include "scitems.hxx"
#include <editeng/fhgtitem.hxx>
#include <editeng/flstitem.hxx>
#include <editeng/colritem.hxx>
#include <editeng/eeitem.hxx>
#include <editeng/flditem.hxx>
#include <editeng/escapementitem.hxx>
#include <editeng/svxfont.hxx>
#include "document.hxx"
#include "docpool.hxx"
#include "formulacell.hxx"
#include "editutil.hxx"
#include "patattr.hxx"
#include "scmatrix.hxx"
#include "xestyle.hxx"
#include "fprogressbar.hxx"
#include "xltracer.hxx"
#include "xecontent.hxx"
#include "xelink.hxx"
#include "xehelper.hxx"
using ::com::sun::star::uno::Reference;
using ::com::sun::star::i18n::XBreakIterator;
// Export progress bar ========================================================
XclExpProgressBar::XclExpProgressBar( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
mxProgress( new ScfProgressBar( rRoot.GetDocShell(), STR_SAVE_DOC ) ),
mpSubProgress( nullptr ),
mpSubRowCreate( nullptr ),
mpSubRowFinal( nullptr ),
mnSegRowFinal( SCF_INV_SEGMENT ),
mnRowCount( 0 )
{
}
XclExpProgressBar::~XclExpProgressBar()
{
}
void XclExpProgressBar::Initialize()
{
const ScDocument& rDoc = GetDoc();
const XclExpTabInfo& rTabInfo = GetTabInfo();
SCTAB nScTabCount = rTabInfo.GetScTabCount();
// *** segment: creation of ROW records *** -------------------------------
sal_Int32 nSegRowCreate = mxProgress->AddSegment( 2000 );
mpSubRowCreate = &mxProgress->GetSegmentProgressBar( nSegRowCreate );
maSubSegRowCreate.resize( nScTabCount, SCF_INV_SEGMENT );
for( SCTAB nScTab = 0; nScTab < nScTabCount; ++nScTab )
{
if( rTabInfo.IsExportTab( nScTab ) )
{
SCCOL nLastUsedScCol;
SCROW nLastUsedScRow;
rDoc.GetTableArea( nScTab, nLastUsedScCol, nLastUsedScRow );
sal_Size nSegSize = static_cast< sal_Size >( nLastUsedScRow + 1 );
maSubSegRowCreate[ nScTab ] = mpSubRowCreate->AddSegment( nSegSize );
}
}
// *** segment: writing all ROW records *** -------------------------------
mnSegRowFinal = mxProgress->AddSegment( 1000 );
// sub progress bar and segment are created later in ActivateFinalRowsSegment()
}
void XclExpProgressBar::IncRowRecordCount()
{
++mnRowCount;
}
void XclExpProgressBar::ActivateCreateRowsSegment()
{
OSL_ENSURE( (0 <= GetCurrScTab()) && (GetCurrScTab() < GetTabInfo().GetScTabCount()),
"XclExpProgressBar::ActivateCreateRowsSegment - invalid sheet" );
sal_Int32 nSeg = maSubSegRowCreate[ GetCurrScTab() ];
OSL_ENSURE( nSeg != SCF_INV_SEGMENT, "XclExpProgressBar::ActivateCreateRowsSegment - invalid segment" );
if( nSeg != SCF_INV_SEGMENT )
{
mpSubProgress = mpSubRowCreate;
mpSubProgress->ActivateSegment( nSeg );
}
else
mpSubProgress = nullptr;
}
void XclExpProgressBar::ActivateFinalRowsSegment()
{
if( !mpSubRowFinal && (mnRowCount > 0) )
{
mpSubRowFinal = &mxProgress->GetSegmentProgressBar( mnSegRowFinal );
mpSubRowFinal->AddSegment( mnRowCount );
}
mpSubProgress = mpSubRowFinal;
if( mpSubProgress )
mpSubProgress->Activate();
}
void XclExpProgressBar::Progress()
{
if( mpSubProgress && !mpSubProgress->IsFull() )
mpSubProgress->Progress();
}
// Calc->Excel cell address/range conversion ==================================
namespace {
/** Fills the passed Excel address with the passed Calc cell coordinates without checking any limits. */
inline void lclFillAddress( XclAddress& rXclPos, SCCOL nScCol, SCROW nScRow )
{
rXclPos.mnCol = static_cast< sal_uInt16 >( nScCol );
rXclPos.mnRow = static_cast< sal_uInt32 >( nScRow );
}
} // namespace
XclExpAddressConverter::XclExpAddressConverter( const XclExpRoot& rRoot ) :
XclAddressConverterBase( rRoot.GetTracer(), rRoot.GetXclMaxPos() )
{
}
// cell address ---------------------------------------------------------------
bool XclExpAddressConverter::CheckAddress( const ScAddress& rScPos, bool bWarn )
{
// ScAddress::operator<=() doesn't do what we want here
bool bValidCol = (0 <= rScPos.Col()) && (rScPos.Col() <= maMaxPos.Col());
bool bValidRow = (0 <= rScPos.Row()) && (rScPos.Row() <= maMaxPos.Row());
bool bValidTab = (0 <= rScPos.Tab()) && (rScPos.Tab() <= maMaxPos.Tab());
bool bValid = bValidCol && bValidRow && bValidTab;
if( !bValid )
{
mbColTrunc |= !bValidCol;
mbRowTrunc |= !bValidRow;
}
if( !bValid && bWarn )
{
mbTabTrunc |= (rScPos.Tab() > maMaxPos.Tab()); // do not warn for deleted refs
mrTracer.TraceInvalidAddress( rScPos, maMaxPos );
}
return bValid;
}
bool XclExpAddressConverter::ConvertAddress( XclAddress& rXclPos,
const ScAddress& rScPos, bool bWarn )
{
bool bValid = CheckAddress( rScPos, bWarn );
if( bValid )
lclFillAddress( rXclPos, rScPos.Col(), rScPos.Row() );
return bValid;
}
XclAddress XclExpAddressConverter::CreateValidAddress( const ScAddress& rScPos, bool bWarn )
{
XclAddress aXclPos( ScAddress::UNINITIALIZED );
if( !ConvertAddress( aXclPos, rScPos, bWarn ) )
lclFillAddress( aXclPos, ::std::min( rScPos.Col(), maMaxPos.Col() ), ::std::min( rScPos.Row(), maMaxPos.Row() ) );
return aXclPos;
}
// cell range -----------------------------------------------------------------
bool XclExpAddressConverter::CheckRange( const ScRange& rScRange, bool bWarn )
{
return CheckAddress( rScRange.aStart, bWarn ) && CheckAddress( rScRange.aEnd, bWarn );
}
bool XclExpAddressConverter::ValidateRange( ScRange& rScRange, bool bWarn )
{
rScRange.PutInOrder();
// check start position
bool bValidStart = CheckAddress( rScRange.aStart, bWarn );
if( bValidStart )
{
// check & correct end position
ScAddress& rScEnd = rScRange.aEnd;
if( !CheckAddress( rScEnd, bWarn ) )
{
rScEnd.SetCol( ::std::min( rScEnd.Col(), maMaxPos.Col() ) );
rScEnd.SetRow( ::std::min( rScEnd.Row(), maMaxPos.Row() ) );
rScEnd.SetTab( ::std::min( rScEnd.Tab(), maMaxPos.Tab() ) );
}
}
return bValidStart;
}
bool XclExpAddressConverter::ConvertRange( XclRange& rXclRange,
const ScRange& rScRange, bool bWarn )
{
// check start position
bool bValidStart = CheckAddress( rScRange.aStart, bWarn );
if( bValidStart )
{
lclFillAddress( rXclRange.maFirst, rScRange.aStart.Col(), rScRange.aStart.Row() );
// check & correct end position
SCCOL nScCol2 = rScRange.aEnd.Col();
SCROW nScRow2 = rScRange.aEnd.Row();
if( !CheckAddress( rScRange.aEnd, bWarn ) )
{
nScCol2 = ::std::min( nScCol2, maMaxPos.Col() );
nScRow2 = ::std::min( nScRow2, maMaxPos.Row() );
}
lclFillAddress( rXclRange.maLast, nScCol2, nScRow2 );
}
return bValidStart;
}
// cell range list ------------------------------------------------------------
void XclExpAddressConverter::ValidateRangeList( ScRangeList& rScRanges, bool bWarn )
{
for ( size_t nRange = rScRanges.size(); nRange > 0; )
{
ScRange* pScRange = rScRanges[ --nRange ];
if( !CheckRange( *pScRange, bWarn ) )
delete rScRanges.Remove(nRange);
}
}
void XclExpAddressConverter::ConvertRangeList( XclRangeList& rXclRanges,
const ScRangeList& rScRanges, bool bWarn )
{
rXclRanges.clear();
for( size_t nPos = 0, nCount = rScRanges.size(); nPos < nCount; ++nPos )
{
if( const ScRange* pScRange = rScRanges[ nPos ] )
{
XclRange aXclRange( ScAddress::UNINITIALIZED );
if( ConvertRange( aXclRange, *pScRange, bWarn ) )
rXclRanges.push_back( aXclRange );
}
}
}
// EditEngine->String conversion ==============================================
namespace {
OUString lclGetUrlRepresentation( const SvxURLField& rUrlField )
{
const OUString& aRepr = rUrlField.GetRepresentation();
// no representation -> use URL
return aRepr.isEmpty() ? rUrlField.GetURL() : aRepr;
}
} // namespace
XclExpHyperlinkHelper::XclExpHyperlinkHelper( const XclExpRoot& rRoot, const ScAddress& rScPos ) :
XclExpRoot( rRoot ),
maScPos( rScPos ),
mbMultipleUrls( false )
{
}
XclExpHyperlinkHelper::~XclExpHyperlinkHelper()
{
}
OUString XclExpHyperlinkHelper::ProcessUrlField( const SvxURLField& rUrlField )
{
OUString aUrlRepr;
if( GetBiff() == EXC_BIFF8 ) // no HLINK records in BIFF2-BIFF7
{
// there was/is already a HLINK record
mbMultipleUrls = static_cast< bool >(mxLinkRec);
mxLinkRec.reset( new XclExpHyperlink( GetRoot(), rUrlField, maScPos ) );
if( const OUString* pRepr = mxLinkRec->GetRepr() )
aUrlRepr = *pRepr;
// add URL to note text
maUrlList = ScGlobal::addToken( maUrlList, rUrlField.GetURL(), '\n' );
}
// no hyperlink representation from Excel HLINK record -> use it from text field
return aUrlRepr.isEmpty() ? lclGetUrlRepresentation(rUrlField) : aUrlRepr;
}
bool XclExpHyperlinkHelper::HasLinkRecord() const
{
return !mbMultipleUrls && mxLinkRec;
}
XclExpHyperlinkHelper::XclExpHyperlinkRef XclExpHyperlinkHelper::GetLinkRecord()
{
if( HasLinkRecord() )
return mxLinkRec;
return XclExpHyperlinkRef();
}
namespace {
/** Creates a new formatted string from the passed unformatted string.
Creates a Unicode string or a byte string, depending on the current BIFF
version contained in the passed XclExpRoot object. May create a formatted
string object, if the text contains different script types.
@param pCellAttr
Cell attributes used for font formatting.
@param nFlags
Modifiers for string export.
@param nMaxLen
The maximum number of characters to store in this string.
@return
The new string object.
*/
XclExpStringRef lclCreateFormattedString(
const XclExpRoot& rRoot, const OUString& rText, const ScPatternAttr* pCellAttr,
XclStrFlags nFlags, sal_uInt16 nMaxLen )
{
/* Create an empty Excel string object with correctly initialized BIFF mode,
because this function only uses Append() functions that require this. */
XclExpStringRef xString = XclExpStringHelper::CreateString( rRoot, EMPTY_OUSTRING, nFlags, nMaxLen );
// script type handling
Reference< XBreakIterator > xBreakIt = rRoot.GetDoc().GetBreakIterator();
namespace ApiScriptType = ::com::sun::star::i18n::ScriptType;
// #i63255# get script type for leading weak characters
sal_Int16 nLastScript = XclExpStringHelper::GetLeadingScriptType( rRoot, rText );
// font buffer and cell item set
XclExpFontBuffer& rFontBuffer = rRoot.GetFontBuffer();
const SfxItemSet& rItemSet = pCellAttr ? pCellAttr->GetItemSet() : rRoot.GetDoc().GetDefPattern()->GetItemSet();
// process all script portions
sal_Int32 nPortionPos = 0;
sal_Int32 nTextLen = rText.getLength();
while( nPortionPos < nTextLen )
{
// get script type and end position of next script portion
sal_Int16 nScript = xBreakIt->getScriptType( rText, nPortionPos );
sal_Int32 nPortionEnd = xBreakIt->endOfScript( rText, nPortionPos, nScript );
// reuse previous script for following weak portions
if( nScript == ApiScriptType::WEAK )
nScript = nLastScript;
// construct font from current text portion
SvxFont aFont( XclExpFontHelper::GetFontFromItemSet( rRoot, rItemSet, nScript ) );
// Excel start position of this portion
sal_Int32 nXclPortionStart = xString->Len();
// add portion text to Excel string
XclExpStringHelper::AppendString( *xString, rRoot, rText.copy( nPortionPos, nPortionEnd - nPortionPos ) );
if( nXclPortionStart < xString->Len() )
{
// insert font into buffer
sal_uInt16 nFontIdx = rFontBuffer.Insert( aFont, EXC_COLOR_CELLTEXT );
// insert font index into format run vector
xString->AppendFormat( nXclPortionStart, nFontIdx );
}
// go to next script portion
nLastScript = nScript;
nPortionPos = nPortionEnd;
}
return xString;
}
/** Creates a new formatted string from an edit engine text object.
Creates a Unicode string or a byte string, depending on the current BIFF
version contained in the passed XclExpRoot object.
@param rEE
The edit engine in use. The text object must already be set.
@param nFlags
Modifiers for string export.
@param nMaxLen
The maximum number of characters to store in this string.
@return
The new string object.
*/
XclExpStringRef lclCreateFormattedString(
const XclExpRoot& rRoot, EditEngine& rEE, XclExpHyperlinkHelper* pLinkHelper,
XclStrFlags nFlags, sal_uInt16 nMaxLen )
{
/* Create an empty Excel string object with correctly initialized BIFF mode,
because this function only uses Append() functions that require this. */
XclExpStringRef xString = XclExpStringHelper::CreateString( rRoot, EMPTY_OUSTRING, nFlags, nMaxLen );
// font buffer and helper item set for edit engine -> Calc item conversion
XclExpFontBuffer& rFontBuffer = rRoot.GetFontBuffer();
SfxItemSet aItemSet( *rRoot.GetDoc().GetPool(), ATTR_PATTERN_START, ATTR_PATTERN_END );
// script type handling
Reference< XBreakIterator > xBreakIt = rRoot.GetDoc().GetBreakIterator();
namespace ApiScriptType = ::com::sun::star::i18n::ScriptType;
// #i63255# get script type for leading weak characters
sal_Int16 nLastScript = XclExpStringHelper::GetLeadingScriptType( rRoot, rEE.GetText() );
// process all paragraphs
sal_Int32 nParaCount = rEE.GetParagraphCount();
for( sal_Int32 nPara = 0; nPara < nParaCount; ++nPara )
{
ESelection aSel( nPara, 0 );
OUString aParaText( rEE.GetText( nPara ) );
std::vector<sal_Int32> aPosList;
rEE.GetPortions( nPara, aPosList );
// process all portions in the paragraph
for( std::vector<sal_Int32>::const_iterator it(aPosList.begin()); it != aPosList.end(); ++it )
{
aSel.nEndPos = *it;
OUString aXclPortionText = aParaText.copy( aSel.nStartPos, aSel.nEndPos - aSel.nStartPos );
aItemSet.ClearItem();
SfxItemSet aEditSet( rEE.GetAttribs( aSel ) );
ScPatternAttr::GetFromEditItemSet( aItemSet, aEditSet );
// get escapement value
short nEsc = GETITEM( aEditSet, SvxEscapementItem, EE_CHAR_ESCAPEMENT ).GetEsc();
// process text fields
bool bIsHyperlink = false;
if( aSel.nStartPos + 1 == aSel.nEndPos )
{
// test if the character is a text field
const SfxPoolItem* pItem;
if( aEditSet.GetItemState( EE_FEATURE_FIELD, false, &pItem ) == SfxItemState::SET )
{
const SvxFieldData* pField = static_cast< const SvxFieldItem* >( pItem )->GetField();
if( const SvxURLField* pUrlField = dynamic_cast<const SvxURLField*>( pField ) )
{
// convert URL field to string representation
aXclPortionText = pLinkHelper ?
pLinkHelper->ProcessUrlField( *pUrlField ) :
lclGetUrlRepresentation( *pUrlField );
bIsHyperlink = true;
}
else
{
OSL_FAIL( "lclCreateFormattedString - unknown text field" );
aXclPortionText.clear();
}
}
}
// Excel start position of this portion
sal_Int32 nXclPortionStart = xString->Len();
// add portion text to Excel string
XclExpStringHelper::AppendString( *xString, rRoot, aXclPortionText );
if( (nXclPortionStart < xString->Len()) || (aParaText.isEmpty()) )
{
/* Construct font from current edit engine text portion. Edit engine
creates different portions for different script types, no need to loop. */
sal_Int16 nScript = xBreakIt->getScriptType( aXclPortionText, 0 );
if( nScript == ApiScriptType::WEAK )
nScript = nLastScript;
SvxFont aFont( XclExpFontHelper::GetFontFromItemSet( rRoot, aItemSet, nScript ) );
nLastScript = nScript;
// add escapement
aFont.SetEscapement( nEsc );
// modify automatic font color for hyperlinks
if( bIsHyperlink && (GETITEM( aItemSet, SvxColorItem, ATTR_FONT_COLOR ).GetValue().GetColor() == COL_AUTO) )
aFont.SetColor( Color( COL_LIGHTBLUE ) );
// insert font into buffer
sal_uInt16 nFontIdx = rFontBuffer.Insert( aFont, EXC_COLOR_CELLTEXT );
// insert font index into format run vector
xString->AppendFormat( nXclPortionStart, nFontIdx );
}
aSel.nStartPos = aSel.nEndPos;
}
// add trailing newline (important for correct character index calculation)
if( nPara + 1 < nParaCount )
XclExpStringHelper::AppendChar( *xString, rRoot, '\n' );
}
return xString;
}
} // namespace
XclExpStringRef XclExpStringHelper::CreateString(
const XclExpRoot& rRoot, const OUString& rString, XclStrFlags nFlags, sal_uInt16 nMaxLen )
{
XclExpStringRef xString( new XclExpString );
if( rRoot.GetBiff() == EXC_BIFF8 )
xString->Assign( rString, nFlags, nMaxLen );
else
xString->AssignByte( rString, rRoot.GetTextEncoding(), nFlags, nMaxLen );
return xString;
}
XclExpStringRef XclExpStringHelper::CreateString(
const XclExpRoot& rRoot, sal_Unicode cChar, XclStrFlags nFlags, sal_uInt16 nMaxLen )
{
XclExpStringRef xString = CreateString( rRoot, EMPTY_OUSTRING, nFlags, nMaxLen );
AppendChar( *xString, rRoot, cChar );
return xString;
}
void XclExpStringHelper::AppendString( XclExpString& rXclString, const XclExpRoot& rRoot, const OUString& rString )
{
if( rRoot.GetBiff() == EXC_BIFF8 )
rXclString.Append( rString );
else
rXclString.AppendByte( rString, rRoot.GetTextEncoding() );
}
void XclExpStringHelper::AppendChar( XclExpString& rXclString, const XclExpRoot& rRoot, sal_Unicode cChar )
{
if( rRoot.GetBiff() == EXC_BIFF8 )
rXclString.Append( OUString(cChar) );
else
rXclString.AppendByte( cChar, rRoot.GetTextEncoding() );
}
XclExpStringRef XclExpStringHelper::CreateCellString(
const XclExpRoot& rRoot, const OUString& rString, const ScPatternAttr* pCellAttr,
XclStrFlags nFlags, sal_uInt16 nMaxLen )
{
return lclCreateFormattedString(rRoot, rString, pCellAttr, nFlags, nMaxLen);
}
XclExpStringRef XclExpStringHelper::CreateCellString(
const XclExpRoot& rRoot, const EditTextObject& rEditText, const ScPatternAttr* pCellAttr,
XclExpHyperlinkHelper& rLinkHelper, XclStrFlags nFlags, sal_uInt16 nMaxLen )
{
XclExpStringRef xString;
// formatted cell
ScEditEngineDefaulter& rEE = rRoot.GetEditEngine();
bool bOldUpdateMode = rEE.GetUpdateMode();
rEE.SetUpdateMode( true );
// default items
const SfxItemSet& rItemSet = pCellAttr ? pCellAttr->GetItemSet() : rRoot.GetDoc().GetDefPattern()->GetItemSet();
SfxItemSet* pEEItemSet = new SfxItemSet( rEE.GetEmptyItemSet() );
ScPatternAttr::FillToEditItemSet( *pEEItemSet, rItemSet );
rEE.SetDefaults( pEEItemSet ); // edit engine takes ownership
// create the string
rEE.SetText(rEditText);
xString = lclCreateFormattedString( rRoot, rEE, &rLinkHelper, nFlags, nMaxLen );
rEE.SetUpdateMode( bOldUpdateMode );
return xString;
}
XclExpStringRef XclExpStringHelper::CreateString(
const XclExpRoot& rRoot, const SdrTextObj& rTextObj,
XclStrFlags nFlags )
{
XclExpStringRef xString;
if( const OutlinerParaObject* pParaObj = rTextObj.GetOutlinerParaObject() )
{
EditEngine& rEE = rRoot.GetDrawEditEngine();
bool bOldUpdateMode = rEE.GetUpdateMode();
rEE.SetUpdateMode( true );
// create the string
rEE.SetText( pParaObj->GetTextObject() );
xString = lclCreateFormattedString( rRoot, rEE, nullptr, nFlags, EXC_STR_MAXLEN );
rEE.SetUpdateMode( bOldUpdateMode );
// limit formats - TODO: BIFF dependent
if( !xString->IsEmpty() )
{
xString->LimitFormatCount( EXC_MAXRECSIZE_BIFF8 / 8 - 1 );
xString->AppendTrailingFormat( EXC_FONT_APP );
}
}
else
{
OSL_FAIL( "XclExpStringHelper::CreateString - textbox without para object" );
// create BIFF dependent empty Excel string
xString = CreateString( rRoot, EMPTY_OUSTRING, nFlags );
}
return xString;
}
XclExpStringRef XclExpStringHelper::CreateString(
const XclExpRoot& rRoot, const EditTextObject& rEditObj,
XclStrFlags nFlags )
{
XclExpStringRef xString;
EditEngine& rEE = rRoot.GetDrawEditEngine();
bool bOldUpdateMode = rEE.GetUpdateMode();
rEE.SetUpdateMode( true );
rEE.SetText( rEditObj );
xString = lclCreateFormattedString( rRoot, rEE, nullptr, nFlags, EXC_STR_MAXLEN );
rEE.SetUpdateMode( bOldUpdateMode );
// limit formats - TODO: BIFF dependent
if( !xString->IsEmpty() )
{
xString->LimitFormatCount( EXC_MAXRECSIZE_BIFF8 / 8 - 1 );
xString->AppendTrailingFormat( EXC_FONT_APP );
}
return xString;
}
sal_Int16 XclExpStringHelper::GetLeadingScriptType( const XclExpRoot& rRoot, const OUString& rString )
{
namespace ApiScriptType = ::com::sun::star::i18n::ScriptType;
Reference< XBreakIterator > xBreakIt = rRoot.GetDoc().GetBreakIterator();
sal_Int32 nStrPos = 0;
sal_Int32 nStrLen = rString.getLength();
sal_Int16 nScript = ApiScriptType::WEAK;
while( (nStrPos < nStrLen) && (nScript == ApiScriptType::WEAK) )
{
nScript = xBreakIt->getScriptType( rString, nStrPos );
nStrPos = xBreakIt->endOfScript( rString, nStrPos, nScript );
}
return (nScript == ApiScriptType::WEAK) ? rRoot.GetDefApiScript() : nScript;
}
// Header/footer conversion ===================================================
XclExpHFConverter::XclExpHFConverter( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
mrEE( rRoot.GetHFEditEngine() ),
mnTotalHeight( 0 )
{
}
void XclExpHFConverter::GenerateString(
const EditTextObject* pLeftObj,
const EditTextObject* pCenterObj,
const EditTextObject* pRightObj )
{
maHFString.clear();
mnTotalHeight = 0;
AppendPortion( pLeftObj, 'L' );
AppendPortion( pCenterObj, 'C' );
AppendPortion( pRightObj, 'R' );
}
void XclExpHFConverter::AppendPortion( const EditTextObject* pTextObj, sal_Unicode cPortionCode )
{
if( !pTextObj ) return;
OUString aText;
sal_Int32 nHeight = 0;
SfxItemSet aItemSet( *GetDoc().GetPool(), ATTR_PATTERN_START, ATTR_PATTERN_END );
// edit engine
bool bOldUpdateMode = mrEE.GetUpdateMode();
mrEE.SetUpdateMode( true );
mrEE.SetText( *pTextObj );
// font information
XclFontData aFontData, aNewData;
if( const XclExpFont* pFirstFont = GetFontBuffer().GetFont( EXC_FONT_APP ) )
{
aFontData = pFirstFont->GetFontData();
(aFontData.mnHeight += 10) /= 20; // using pt here, not twips
}
else
aFontData.mnHeight = 10;
const FontList* pFontList = nullptr;
if( SfxObjectShell* pDocShell = GetDocShell() )
{
if( const SvxFontListItem* pInfoItem = static_cast< const SvxFontListItem* >(
pDocShell->GetItem( SID_ATTR_CHAR_FONTLIST ) ) )
pFontList = pInfoItem->GetFontList();
}
sal_Int32 nParaCount = mrEE.GetParagraphCount();
for( sal_Int32 nPara = 0; nPara < nParaCount; ++nPara )
{
ESelection aSel( nPara, 0 );
OUString aParaText;
sal_Int32 nParaHeight = 0;
std::vector<sal_Int32> aPosList;
mrEE.GetPortions( nPara, aPosList );
for( std::vector<sal_Int32>::const_iterator it( aPosList.begin() ); it != aPosList.end(); ++it )
{
aSel.nEndPos = *it;
if( aSel.nStartPos < aSel.nEndPos )
{
// --- font attributes ---
vcl::Font aFont;
aItemSet.ClearItem();
SfxItemSet aEditSet( mrEE.GetAttribs( aSel ) );
ScPatternAttr::GetFromEditItemSet( aItemSet, aEditSet );
ScPatternAttr::GetFont( aFont, aItemSet, SC_AUTOCOL_RAW );
// font name and style
aNewData.maName = XclTools::GetXclFontName( aFont.GetFamilyName() );
aNewData.mnWeight = (aFont.GetWeight() > WEIGHT_NORMAL) ? EXC_FONTWGHT_BOLD : EXC_FONTWGHT_NORMAL;
aNewData.mbItalic = (aFont.GetItalic() != ITALIC_NONE);
bool bNewFont = !(aFontData.maName == aNewData.maName);
bool bNewStyle = (aFontData.mnWeight != aNewData.mnWeight) ||
(aFontData.mbItalic != aNewData.mbItalic);
if( bNewFont || (bNewStyle && pFontList) )
{
aParaText = "&\"" + OUString(aNewData.maName);
if( pFontList )
{
FontMetric aFontMetric( pFontList->Get(
aNewData.maName,
(aNewData.mnWeight > EXC_FONTWGHT_NORMAL) ? WEIGHT_BOLD : WEIGHT_NORMAL,
aNewData.mbItalic ? ITALIC_NORMAL : ITALIC_NONE ) );
aNewData.maStyle = pFontList->GetStyleName( aFontMetric );
if( !aNewData.maStyle.isEmpty() )
aParaText += "," + aNewData.maStyle;
}
aParaText += "\"";
}
// height
// is calculated wrong in ScPatternAttr::GetFromEditItemSet, because already in twips and not 100thmm
// -> get it directly from edit engine item set
aNewData.mnHeight = ulimit_cast< sal_uInt16 >( GETITEM( aEditSet, SvxFontHeightItem, EE_CHAR_FONTHEIGHT ).GetHeight() );
(aNewData.mnHeight += 10) /= 20;
bool bFontHtChanged = (aFontData.mnHeight != aNewData.mnHeight);
if( bFontHtChanged )
aParaText += "&" + OUString::number( aNewData.mnHeight );
// update maximum paragraph height, convert to twips
nParaHeight = ::std::max< sal_Int32 >( nParaHeight, aNewData.mnHeight * 20 );
// underline
aNewData.mnUnderline = EXC_FONTUNDERL_NONE;
switch( aFont.GetUnderline() )
{
case LINESTYLE_NONE: aNewData.mnUnderline = EXC_FONTUNDERL_NONE; break;
case LINESTYLE_SINGLE: aNewData.mnUnderline = EXC_FONTUNDERL_SINGLE; break;
case LINESTYLE_DOUBLE: aNewData.mnUnderline = EXC_FONTUNDERL_DOUBLE; break;
default: aNewData.mnUnderline = EXC_FONTUNDERL_SINGLE;
}
if( aFontData.mnUnderline != aNewData.mnUnderline )
{
sal_uInt8 nTmpUnderl = (aNewData.mnUnderline == EXC_FONTUNDERL_NONE) ?
aFontData.mnUnderline : aNewData.mnUnderline;
(nTmpUnderl == EXC_FONTUNDERL_SINGLE)? aParaText += "&U" : aParaText += "&E";
}
// strikeout
aNewData.mbStrikeout = (aFont.GetStrikeout() != STRIKEOUT_NONE);
if( aFontData.mbStrikeout != aNewData.mbStrikeout )
aParaText += "&S";
// super/sub script
const SvxEscapementItem& rEscapeItem = GETITEM( aEditSet, SvxEscapementItem, EE_CHAR_ESCAPEMENT );
aNewData.SetScEscapement( rEscapeItem.GetEsc() );
if( aFontData.mnEscapem != aNewData.mnEscapem )
{
switch(aNewData.mnEscapem)
{
// close the previous super/sub script.
case EXC_FONTESC_NONE: (aFontData.mnEscapem == EXC_FONTESC_SUPER) ? aParaText += "&X" : aParaText += "&Y"; break;
case EXC_FONTESC_SUPER: aParaText += "&X"; break;
case EXC_FONTESC_SUB: aParaText += "&Y"; break;
default: break;
}
}
aFontData = aNewData;
// --- text content or text fields ---
const SfxPoolItem* pItem;
if( (aSel.nStartPos + 1 == aSel.nEndPos) && // fields are single characters
(aEditSet.GetItemState( EE_FEATURE_FIELD, false, &pItem ) == SfxItemState::SET) )
{
if( const SvxFieldData* pFieldData = static_cast< const SvxFieldItem* >( pItem )->GetField() )
{
if( dynamic_cast<const SvxPageField*>( pFieldData) != nullptr )
aParaText += "&P";
else if( dynamic_cast<const SvxPagesField*>( pFieldData) != nullptr )
aParaText += "&N";
else if( dynamic_cast<const SvxDateField*>( pFieldData) != nullptr )
aParaText += "&D";
else if( dynamic_cast<const SvxTimeField*>( pFieldData) != nullptr || dynamic_cast<const SvxExtTimeField*>( pFieldData) != nullptr )
aParaText += "&T";
else if( dynamic_cast<const SvxTableField*>( pFieldData) != nullptr )
aParaText += "&A";
else if( dynamic_cast<const SvxFileField*>( pFieldData) != nullptr ) // title -> file name
aParaText += "&F";
else if( const SvxExtFileField* pFileField = dynamic_cast<const SvxExtFileField*>( pFieldData ) )
{
switch( pFileField->GetFormat() )
{
case SVXFILEFORMAT_NAME_EXT:
case SVXFILEFORMAT_NAME:
aParaText += "&F";
break;
case SVXFILEFORMAT_PATH:
aParaText += "&Z";
break;
case SVXFILEFORMAT_FULLPATH:
aParaText += "&Z&F";
break;
default:
OSL_FAIL( "XclExpHFConverter::AppendPortion - unknown file field" );
}
}
}
}
else
{
OUString aPortionText( mrEE.GetText( aSel ) );
aPortionText = aPortionText.replaceAll( "&", "&&" );
// #i17440# space between font height and numbers in text
if( bFontHtChanged && aParaText.getLength() && !aPortionText.isEmpty() )
{
sal_Unicode cLast = aParaText[ aParaText.getLength() - 1 ];
sal_Unicode cFirst = aPortionText[0];
if( ('0' <= cLast) && (cLast <= '9') && ('0' <= cFirst) && (cFirst <= '9') )
aParaText += " ";
}
aParaText += aPortionText;
}
}
aSel.nStartPos = aSel.nEndPos;
}
aText = ScGlobal::addToken( aText, aParaText, '\n' );
if( nParaHeight == 0 )
nParaHeight = aFontData.mnHeight * 20; // points -> twips
nHeight += nParaHeight;
}
mrEE.SetUpdateMode( bOldUpdateMode );
if( !aText.isEmpty() )
{
maHFString += "&" + OUString(cPortionCode) + aText;
mnTotalHeight = ::std::max( mnTotalHeight, nHeight );
}
}
// URL conversion =============================================================
namespace {
/** Encodes special parts of the URL, i.e. directory separators and volume names.
@param pTableName Pointer to a table name to be encoded in this URL, or 0. */
OUString lclEncodeDosUrl(
XclBiff eBiff, const OUString& rUrl, const OUString& rBase, const OUString* pTableName)
{
OUStringBuffer aBuf;
if (!rUrl.isEmpty())
{
OUString aOldUrl = rUrl;
aBuf.append(EXC_URLSTART_ENCODED);
if ( aOldUrl.getLength() > 2 && aOldUrl.copy(0,2) == "\\\\" )
{
// UNC
aBuf.append(EXC_URL_DOSDRIVE).append('@');
aOldUrl = aOldUrl.copy(2);
}
else if ( aOldUrl.getLength() > 2 && aOldUrl.copy(1,2) == ":\\" )
{
// drive letter
sal_Unicode cThisDrive = rBase.isEmpty() ? ' ' : rBase[0];
sal_Unicode cDrive = aOldUrl[0];
if (cThisDrive == cDrive)
// This document and the referenced document are under the same drive.
aBuf.append(EXC_URL_DRIVEROOT);
else
aBuf.append(EXC_URL_DOSDRIVE).append(cDrive);
aOldUrl = aOldUrl.copy(3);
}
else
{
// URL probably points to a document on a Unix-like file system
aBuf.append(EXC_URL_DRIVEROOT);
}
// directories
sal_Int32 nPos = -1;
while((nPos = aOldUrl.indexOf('\\')) != -1)
{
if ( aOldUrl.copy(0,2) == ".." )
// parent dir (NOTE: the MS-XLS spec doesn't mention this, and
// Excel seems confused by this token).
aBuf.append(EXC_URL_PARENTDIR);
else
aBuf.append(aOldUrl.copy(0,nPos)).append(EXC_URL_SUBDIR);
aOldUrl = aOldUrl.copy(nPos + 1);
}
// file name
if (pTableName) // enclose file name in brackets if table name follows
aBuf.append('[').append(aOldUrl).append(']');
else
aBuf.append(aOldUrl);
}
else // empty URL -> self reference
{
switch( eBiff )
{
case EXC_BIFF5:
aBuf.append(pTableName ? EXC_URLSTART_SELFENCODED : EXC_URLSTART_SELF);
break;
case EXC_BIFF8:
DBG_ASSERT( pTableName, "lclEncodeDosUrl - sheet name required for BIFF8" );
aBuf.append(EXC_URLSTART_SELF);
break;
default:
DBG_ERROR_BIFF();
}
}
// table name
if (pTableName)
aBuf.append(*pTableName);
// VirtualPath must be shorter than 255 chars ([MS-XLS].pdf 2.5.277)
// It's better to truncate, than generate invalid file that Excel cannot open.
if (aBuf.getLength() > 255)
aBuf.setLength(255);
return aBuf.makeStringAndClear();
}
} // namespace
OUString XclExpUrlHelper::EncodeUrl( const XclExpRoot& rRoot, const OUString& rAbsUrl, const OUString* pTableName )
{
OUString aDosUrl = INetURLObject(rAbsUrl).getFSysPath(INetURLObject::FSYS_DOS);
OUString aDosBase = INetURLObject(rRoot.GetBasePath()).getFSysPath(INetURLObject::FSYS_DOS);
return lclEncodeDosUrl(rRoot.GetBiff(), aDosUrl, aDosBase, pTableName);
}
OUString XclExpUrlHelper::EncodeDde( const OUString& rApplic, const OUString& rTopic )
{
OUStringBuffer aBuf;
aBuf.append(rApplic).append(EXC_DDE_DELIM).append(rTopic);
return aBuf.makeStringAndClear();
}
// Cached Value Lists =========================================================
XclExpCachedMatrix::XclExpCachedMatrix( const ScMatrix& rMatrix )
: mrMatrix( rMatrix )
{
mrMatrix.IncRef();
}
XclExpCachedMatrix::~XclExpCachedMatrix()
{
mrMatrix.DecRef();
}
void XclExpCachedMatrix::GetDimensions( SCSIZE & nCols, SCSIZE & nRows ) const
{
mrMatrix.GetDimensions( nCols, nRows );
OSL_ENSURE( nCols && nRows, "XclExpCachedMatrix::GetDimensions - empty matrix" );
OSL_ENSURE( nCols <= 256, "XclExpCachedMatrix::GetDimensions - too many columns" );
}
sal_Size XclExpCachedMatrix::GetSize() const
{
SCSIZE nCols, nRows;
GetDimensions( nCols, nRows );
/* The returned size may be wrong if the matrix contains strings. The only
effect is that the export stream has to update a wrong record size which is
faster than to iterate through all cached values and calculate their sizes. */
return 3 + 9 * (nCols * nRows);
}
void XclExpCachedMatrix::Save( XclExpStream& rStrm ) const
{
SCSIZE nCols, nRows;
GetDimensions( nCols, nRows );
if( rStrm.GetRoot().GetBiff() <= EXC_BIFF5 )
// in BIFF2-BIFF7: 256 columns represented by 0 columns
rStrm << static_cast< sal_uInt8 >( nCols ) << static_cast< sal_uInt16 >( nRows );
else
// in BIFF8: columns and rows decreaed by 1
rStrm << static_cast< sal_uInt8 >( nCols - 1 ) << static_cast< sal_uInt16 >( nRows - 1 );
for( SCSIZE nRow = 0; nRow < nRows; ++nRow )
{
for( SCSIZE nCol = 0; nCol < nCols; ++nCol )
{
ScMatrixValue nMatVal = mrMatrix.Get( nCol, nRow );
if( SC_MATVAL_EMPTY == nMatVal.nType )
{
rStrm.SetSliceSize( 9 );
rStrm << EXC_CACHEDVAL_EMPTY;
rStrm.WriteZeroBytes( 8 );
}
else if( ScMatrix::IsNonValueType( nMatVal.nType ) )
{
XclExpString aStr( nMatVal.GetString().getString(), EXC_STR_DEFAULT );
rStrm.SetSliceSize( 6 );
rStrm << EXC_CACHEDVAL_STRING << aStr;
}
else if( SC_MATVAL_BOOLEAN == nMatVal.nType )
{
sal_Int8 nBool = sal_Int8(nMatVal.GetBoolean());
rStrm.SetSliceSize( 9 );
rStrm << EXC_CACHEDVAL_BOOL << nBool;
rStrm.WriteZeroBytes( 7 );
}
else if( sal_uInt16 nScError = nMatVal.GetError() )
{
sal_Int8 nError ( XclTools::GetXclErrorCode( nScError ) );
rStrm.SetSliceSize( 9 );
rStrm << EXC_CACHEDVAL_ERROR << nError;
rStrm.WriteZeroBytes( 7 );
}
else
{
rStrm.SetSliceSize( 9 );
rStrm << EXC_CACHEDVAL_DOUBLE << nMatVal.fVal;
}
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|