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
|
/* -*- 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/uri/UriReferenceFactory.hpp>
#include <unotools/charclass.hxx>
#include <osl/diagnose.h>
#include <tools/urlobj.hxx>
#include <comphelper/processfactory.hxx>
#include <officecfg/Office/Common.hxx>
#include <txtfld.hxx>
#include <doc.hxx>
#include <IDocumentLayoutAccess.hxx>
#include <IDocumentMarkAccess.hxx>
#include <cntfrm.hxx>
#include <txtfrm.hxx>
#include <rootfrm.hxx>
#include <modeltoviewhelper.hxx>
#include <node.hxx>
#include <pam.hxx>
#include <txttxmrk.hxx>
#include <frmfmt.hxx>
#include <fmtfld.hxx>
#include <txmsrt.hxx>
#include <ndtxt.hxx>
#include <swtable.hxx>
#include <expfld.hxx>
#include <authfld.hxx>
#include <toxwrap.hxx>
#include <strings.hrc>
#include <reffld.hxx>
#include <docsh.hxx>
#include <utility>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
// Initialize strings
SwTOIOptions SwTOXSortTabBase::nOpt = SwTOIOptions::NONE;
SwTOXInternational::SwTOXInternational( LanguageType nLang, SwTOIOptions nOpt,
OUString aSortAlgorithm ) :
m_eLang( nLang ),
m_sSortAlgorithm(std::move(aSortAlgorithm)),
m_nOptions( nOpt )
{
Init();
}
SwTOXInternational::SwTOXInternational( const SwTOXInternational& rIntl ) :
m_eLang( rIntl.m_eLang ),
m_sSortAlgorithm(rIntl.m_sSortAlgorithm),
m_nOptions( rIntl.m_nOptions )
{
Init();
}
void SwTOXInternational::Init()
{
m_pIndexWrapper.reset( new IndexEntrySupplierWrapper() );
const lang::Locale aLcl( LanguageTag::convertToLocale( m_eLang ) );
m_pIndexWrapper->SetLocale( aLcl );
if(m_sSortAlgorithm.isEmpty())
{
Sequence < OUString > aSeq( m_pIndexWrapper->GetAlgorithmList( aLcl ));
if(aSeq.hasElements())
m_sSortAlgorithm = aSeq.getConstArray()[0];
}
if ( m_nOptions & SwTOIOptions::CaseSensitive )
m_pIndexWrapper->LoadAlgorithm( aLcl, m_sSortAlgorithm, 0 );
else
m_pIndexWrapper->LoadAlgorithm( aLcl, m_sSortAlgorithm, SW_COLLATOR_IGNORES );
m_oCharClass.emplace( LanguageTag( aLcl ) );
}
SwTOXInternational::~SwTOXInternational()
{
m_oCharClass.reset();
m_pIndexWrapper.reset();
}
OUString SwTOXInternational::ToUpper( const OUString& rStr, sal_Int32 nPos ) const
{
return m_oCharClass->uppercase( rStr, nPos, 1 );
}
bool SwTOXInternational::IsNumeric( const OUString& rStr ) const
{
return m_oCharClass->isNumeric( rStr );
}
sal_Int32 SwTOXInternational::Compare( const TextAndReading& rTaR1,
const lang::Locale& rLocale1,
const TextAndReading& rTaR2,
const lang::Locale& rLocale2 ) const
{
return m_pIndexWrapper->CompareIndexEntry( rTaR1.sText, rTaR1.sReading, rLocale1,
rTaR2.sText, rTaR2.sReading, rLocale2 );
}
OUString SwTOXInternational::GetIndexKey( const TextAndReading& rTaR,
const lang::Locale& rLocale ) const
{
return m_pIndexWrapper->GetIndexKey( rTaR.sText, rTaR.sReading, rLocale );
}
OUString SwTOXInternational::GetFollowingText( bool bMorePages ) const
{
return m_pIndexWrapper->GetFollowingText( bMorePages );
}
// SortElement for TOX entries
SwTOXSortTabBase::SwTOXSortTabBase( TOXSortType nTyp, const SwContentNode* pNd,
const SwTextTOXMark* pMark,
const SwTOXInternational* pInter,
const lang::Locale* pLocale )
: pTOXNd( nullptr ), pTextMark( pMark ), pTOXIntl( pInter ),
nPos( 0 ), nCntPos( 0 ), nType( o3tl::narrowing<sal_uInt16>(nTyp) )
, m_bValidText( false )
{
if ( pLocale )
aLocale = *pLocale;
if( !pNd )
return;
sal_Int32 n = 0;
if( pTextMark )
n = pTextMark->GetStart();
SwTOXSource aTmp( pNd, n, pTextMark && pTextMark->GetTOXMark().IsMainEntry() );
aTOXSources.push_back(aTmp);
nPos = pNd->GetIndex();
switch( nTyp )
{
case TOX_SORT_CONTENT:
case TOX_SORT_PARA:
case TOX_SORT_TABLE:
// If they are in a special areas, we should get the position at the
// body
if( nPos < pNd->GetNodes().GetEndOfExtras().GetIndex() )
{
// Then get the 'anchor' (body) position
Point aPt;
std::pair<Point, bool> tmp(aPt, false);
const SwContentFrame *const pFrame = pNd->getLayoutFrame(
pNd->GetDoc().getIDocumentLayoutAccess().GetCurrentLayout(),
nullptr, &tmp);
if( pFrame )
{
SwPosition aPos( *pNd );
const SwDoc& rDoc = pNd->GetDoc();
bool const bResult = GetBodyTextNode( rDoc, aPos, *pFrame );
OSL_ENSURE(bResult, "where is the text node");
nPos = aPos.GetNodeIndex();
nCntPos = aPos.GetContentIndex();
}
}
else
nCntPos = n;
break;
default: break;
}
}
std::pair<OUString, bool> SwTOXSortTabBase::GetURL(SwRootFrame const*const pLayout) const
{
OUString typeName;
SwTOXType const& rType(*pTextMark->GetTOXMark().GetTOXType());
switch (rType.GetType())
{
case TOX_INDEX:
typeName = "A";
break;
case TOX_CONTENT:
typeName = "C";
break;
case TOX_USER:
typeName = "U" + rType.GetTypeName();
break;
default:
assert(false); // other tox can't have toxmarks as source
break;
}
OUString const decodedUrl( // counter will be added by caller!
OUStringChar(toxMarkSeparator) + pTextMark->GetTOXMark().GetText(pLayout)
+ OUStringChar(toxMarkSeparator) + typeName
+ OUStringChar(cMarkSeparator) + "toxmark" );
return std::make_pair(decodedUrl, true);
}
bool SwTOXSortTabBase::IsFullPara() const
{
return false;
}
void SwTOXSortTabBase::FillText( SwTextNode& rNd, const SwContentIndex& rInsPos,
sal_uInt16, SwRootFrame const*const) const
{
rNd.InsertText( GetText().sText, rInsPos );
}
bool SwTOXSortTabBase::equivalent(const SwTOXSortTabBase& rCmp)
{
bool bRet = nPos == rCmp.nPos && nCntPos == rCmp.nCntPos &&
(!aTOXSources[0].pNd || !rCmp.aTOXSources[0].pNd ||
aTOXSources[0].pNd == rCmp.aTOXSources[0].pNd );
if( TOX_SORT_CONTENT == nType )
{
bRet = bRet && pTextMark && rCmp.pTextMark &&
pTextMark->GetStart() == rCmp.pTextMark->GetStart();
if( bRet )
{
// Both pointers exist -> compare text
// else -> compare AlternativeText
const sal_Int32 *pEnd = pTextMark->End();
const sal_Int32 *pEndCmp = rCmp.pTextMark->End();
bRet = ( ( pEnd && pEndCmp ) || ( !pEnd && !pEndCmp ) ) &&
pTOXIntl->IsEqual( GetText(), GetLocale(),
rCmp.GetText(), rCmp.GetLocale() );
}
}
return bRet;
}
bool SwTOXSortTabBase::sort_lt(const SwTOXSortTabBase& rCmp)
{
if( nPos < rCmp.nPos )
return true;
if( nPos == rCmp.nPos )
{
if( nCntPos < rCmp.nCntPos )
return true;
if( nCntPos == rCmp.nCntPos )
{
const SwNode* pFirst = aTOXSources[0].pNd;
const SwNode* pNext = rCmp.aTOXSources[0].pNd;
if( pFirst && pFirst == pNext )
{
if( TOX_SORT_CONTENT == nType && pTextMark && rCmp.pTextMark )
{
if( pTextMark->GetStart() < rCmp.pTextMark->GetStart() )
return true;
if( pTextMark->GetStart() == rCmp.pTextMark->GetStart() )
{
const sal_Int32 *pEnd = pTextMark->End();
const sal_Int32 *pEndCmp = rCmp.pTextMark->End();
// Both pointers exist -> compare text
// else -> compare AlternativeText
if( ( pEnd && pEndCmp ) || ( !pEnd && !pEndCmp ) )
{
return pTOXIntl->IsLess( GetText(), GetLocale(),
rCmp.GetText(), rCmp.GetLocale() );
}
if( pEnd && !pEndCmp )
return true;
}
}
}
else if( pFirst && pFirst->IsTextNode() &&
pNext && pNext->IsTextNode() )
return ::IsFrameBehind( *static_cast<const SwTextNode*>(pNext), nCntPos,
*static_cast<const SwTextNode*>(pFirst), nCntPos );
}
}
return false;
}
// Sorted keyword entry
SwTOXIndex::SwTOXIndex( const SwTextNode& rNd,
const SwTextTOXMark* pMark, SwTOIOptions nOptions,
sal_uInt8 nKyLevel,
const SwTOXInternational& rIntl,
const lang::Locale& rLocale )
: SwTOXSortTabBase( TOX_SORT_INDEX, &rNd, pMark, &rIntl, &rLocale ),
nKeyLevel(nKyLevel)
{
nPos = rNd.GetIndex();
nOpt = nOptions;
}
// Compare keywords. Only relates to the text.
bool SwTOXIndex::equivalent(const SwTOXSortTabBase& rCmpBase)
{
const SwTOXIndex& rCmp = static_cast<const SwTOXIndex&>(rCmpBase);
// Respect case taking dependencies into account
if(GetLevel() != rCmp.GetLevel() || nKeyLevel != rCmp.nKeyLevel)
return false;
OSL_ENSURE(pTextMark, "pTextMark == 0, No keyword");
bool bRet = pTOXIntl->IsEqual( GetText(), GetLocale(),
rCmp.GetText(), rCmp.GetLocale() );
// If we don't summarize we need to evaluate the Pos
if(bRet && !(GetOptions() & SwTOIOptions::SameEntry))
bRet = nPos == rCmp.nPos;
return bRet;
}
// operator, only depends on the text
bool SwTOXIndex::sort_lt(const SwTOXSortTabBase& rCmpBase)
{
OSL_ENSURE(pTextMark, "pTextMark == 0, No keyword");
const TextAndReading aMyTaR(GetText());
const TextAndReading& aOtherTaR(rCmpBase.GetText());
bool bRet = GetLevel() == rCmpBase.GetLevel() &&
pTOXIntl->IsLess( aMyTaR, GetLocale(),
aOtherTaR, rCmpBase.GetLocale() );
// If we don't summarize we need to evaluate the Pos
if( !bRet && !(GetOptions() & SwTOIOptions::SameEntry) )
{
bRet = pTOXIntl->IsEqual( aMyTaR, GetLocale(),
aOtherTaR, rCmpBase.GetLocale() ) &&
nPos < rCmpBase.nPos;
}
return bRet;
}
// The keyword itself
TextAndReading SwTOXIndex::GetText_Impl(SwRootFrame const*const pLayout) const
{
assert(pTextMark && "pTextMark == 0, No keyword");
const SwTOXMark& rTOXMark = pTextMark->GetTOXMark();
TextAndReading aRet;
switch(nKeyLevel)
{
case FORM_PRIMARY_KEY :
{
aRet.sText = rTOXMark.GetPrimaryKey();
aRet.sReading = rTOXMark.GetPrimaryKeyReading();
}
break;
case FORM_SECONDARY_KEY :
{
aRet.sText = rTOXMark.GetSecondaryKey();
aRet.sReading = rTOXMark.GetSecondaryKeyReading();
}
break;
case FORM_ENTRY :
{
aRet.sText = rTOXMark.GetText(pLayout);
aRet.sReading = rTOXMark.GetTextReading();
}
break;
}
// if SwTOIOptions::InitialCaps is set, first character is to be capitalized
if( SwTOIOptions::InitialCaps & nOpt && pTOXIntl && !aRet.sText.isEmpty())
{
aRet.sText = pTOXIntl->ToUpper( aRet.sText, 0 ) + aRet.sText.subView(1);
}
return aRet;
}
void SwTOXIndex::FillText( SwTextNode& rNd, const SwContentIndex& rInsPos, sal_uInt16,
SwRootFrame const*const pLayout) const
{
assert(!"sw_redlinehide: this is dead code, Bibliography only has SwTOXAuthority");
const sal_Int32* pEnd = pTextMark->End();
TextAndReading aRet;
if( pEnd && !pTextMark->GetTOXMark().IsAlternativeText() &&
!(GetOptions() & SwTOIOptions::KeyAsEntry))
{
aRet.sText = static_cast<const SwTextNode*>(aTOXSources[0].pNd)->GetExpandText(
pLayout,
pTextMark->GetStart(),
*pEnd - pTextMark->GetStart(),
false, false, false,
ExpandMode::ExpandFootnote
| (pLayout && pLayout->IsHideRedlines()
? ExpandMode::HideDeletions
: ExpandMode(0)));
if(SwTOIOptions::InitialCaps & nOpt && pTOXIntl && !aRet.sText.isEmpty())
{
aRet.sText = pTOXIntl->ToUpper( aRet.sText, 0 ) + aRet.sText.subView(1);
}
}
else
aRet = GetText();
rNd.InsertText( aRet.sText, rInsPos );
}
sal_uInt16 SwTOXIndex::GetLevel() const
{
assert(pTextMark && "pTextMark == 0, No keyword");
sal_uInt16 nForm = FORM_PRIMARY_KEY;
if( !(GetOptions() & SwTOIOptions::KeyAsEntry)&&
!pTextMark->GetTOXMark().GetPrimaryKey().isEmpty() )
{
nForm = FORM_SECONDARY_KEY;
if( !pTextMark->GetTOXMark().GetSecondaryKey().isEmpty() )
nForm = FORM_ENTRY;
}
return nForm;
}
// Key and separator
SwTOXCustom::SwTOXCustom(TextAndReading aKey,
sal_uInt16 nLevel,
const SwTOXInternational& rIntl,
const lang::Locale& rLocale )
: SwTOXSortTabBase( TOX_SORT_CUSTOM, nullptr, nullptr, &rIntl, &rLocale ),
m_aKey(std::move(aKey)), nLev(nLevel)
{
}
bool SwTOXCustom::equivalent(const SwTOXSortTabBase& rCmpBase)
{
return GetLevel() == rCmpBase.GetLevel() &&
pTOXIntl->IsEqual( GetText(), GetLocale(),
rCmpBase.GetText(), rCmpBase.GetLocale() );
}
bool SwTOXCustom::sort_lt(const SwTOXSortTabBase& rCmpBase)
{
return GetLevel() <= rCmpBase.GetLevel() &&
pTOXIntl->IsLess( GetText(), GetLocale(),
rCmpBase.GetText(), rCmpBase.GetLocale() );
}
sal_uInt16 SwTOXCustom::GetLevel() const
{
return nLev;
}
TextAndReading SwTOXCustom::GetText_Impl(SwRootFrame const*const) const
{
return m_aKey;
}
// Sorts the TOX entries
SwTOXContent::SwTOXContent( const SwTextNode& rNd, const SwTextTOXMark* pMark,
const SwTOXInternational& rIntl)
: SwTOXSortTabBase( TOX_SORT_CONTENT, &rNd, pMark, &rIntl )
{
}
// The content's text
TextAndReading SwTOXContent::GetText_Impl(SwRootFrame const*const pLayout) const
{
const sal_Int32* pEnd = pTextMark->End();
if( pEnd && !pTextMark->GetTOXMark().IsAlternativeText() )
{
return TextAndReading(
static_cast<const SwTextNode*>(aTOXSources[0].pNd)->GetExpandText(
pLayout,
pTextMark->GetStart(),
*pEnd - pTextMark->GetStart(),
false, false, false,
ExpandMode::ExpandFootnote
| (pLayout && pLayout->IsHideRedlines()
? ExpandMode::HideDeletions
: ExpandMode(0))),
pTextMark->GetTOXMark().GetTextReading());
}
return TextAndReading(pTextMark->GetTOXMark().GetAlternativeText(), OUString());
}
void SwTOXContent::FillText(SwTextNode& rNd, const SwContentIndex& rInsPos, sal_uInt16,
SwRootFrame const*const pLayout) const
{
assert(!"sw_redlinehide: this is dead code, Bibliography only has SwTOXAuthority");
const sal_Int32* pEnd = pTextMark->End();
if( pEnd && !pTextMark->GetTOXMark().IsAlternativeText() )
// sw_redlinehide: this probably won't HideDeletions
static_cast<const SwTextNode*>(aTOXSources[0].pNd)->CopyExpandText(
rNd, &rInsPos, pTextMark->GetStart(),
*pEnd - pTextMark->GetStart(), pLayout);
else
{
rNd.InsertText( GetText().sText, rInsPos );
}
}
// The level for displaying it
sal_uInt16 SwTOXContent::GetLevel() const
{
return pTextMark->GetTOXMark().GetLevel();
}
// TOX assembled from paragraphs
// Watch out for OLE/graphics when sorting!
// The position must not come from the document, but from the "anchor"!
SwTOXPara::SwTOXPara(SwContentNode& rNd, SwTOXElement eT, sal_uInt16 nLevel, OUString sSeqName)
: SwTOXSortTabBase( TOX_SORT_PARA, &rNd, nullptr, nullptr ),
eType( eT ),
m_nLevel(nLevel),
nStartIndex(0),
nEndIndex(-1),
m_sSequenceName(std::move( sSeqName ))
{
// tdf#123313 create any missing bookmarks *before* generating ToX nodes!
switch (eType)
{
case SwTOXElement::Template:
case SwTOXElement::OutlineLevel:
assert(rNd.IsTextNode());
rNd.GetDoc().getIDocumentMarkAccess()->getMarkForTextNode(
*rNd.GetTextNode(), IDocumentMarkAccess::MarkType::CROSSREF_HEADING_BOOKMARK);
break;
default:
break;
}
}
TextAndReading SwTOXPara::GetText_Impl(SwRootFrame const*const pLayout) const
{
const SwContentNode* pNd = aTOXSources[0].pNd;
switch( eType )
{
case SwTOXElement::Sequence:
if (nStartIndex != 0 || nEndIndex != -1)
{
// sw_redlinehide: "captions" are a rather fuzzily defined concept anyway
return TextAndReading(static_cast<const SwTextNode*>(pNd)->GetExpandText(
pLayout,
nStartIndex,
nEndIndex == -1 ? -1 : nEndIndex - nStartIndex,
false, false, false,
pLayout && pLayout->IsHideRedlines()
? ExpandMode::HideDeletions
: ExpandMode(0)),
OUString());
}
[[fallthrough]];
case SwTOXElement::Template:
case SwTOXElement::OutlineLevel:
{
assert(nStartIndex == 0);
assert(nEndIndex == -1);
return TextAndReading(sw::GetExpandTextMerged(
pLayout, *static_cast<const SwTextNode*>(pNd),
false, false, ExpandMode::HideInvisible | ExpandMode::HideDeletions),
OUString());
}
break;
case SwTOXElement::Ole:
case SwTOXElement::Graphic:
case SwTOXElement::Frame:
{
// Find the FlyFormat; the object/graphic name is there
SwFrameFormat* pFly = pNd->GetFlyFormat();
if( pFly )
return TextAndReading(pFly->GetName().toString(), OUString());
OSL_ENSURE( false, "Graphic/object without name" );
TranslateId pId = SwTOXElement::Ole == eType
? STR_OBJECT_DEFNAME
: SwTOXElement::Graphic == eType
? STR_GRAPHIC_DEFNAME
: STR_FRAME_DEFNAME;
return TextAndReading(SwResId(pId), OUString());
}
break;
default: break;
}
return TextAndReading();
}
void SwTOXPara::FillText( SwTextNode& rNd, const SwContentIndex& rInsPos, sal_uInt16,
SwRootFrame const*const pLayout) const
{
assert(!"sw_redlinehide: this is dead code, Bibliography only has SwTOXAuthority");
if( SwTOXElement::Template == eType || SwTOXElement::Sequence == eType || SwTOXElement::OutlineLevel == eType)
{
const SwTextNode* pSrc = static_cast<const SwTextNode*>(aTOXSources[0].pNd);
if (SwTOXElement::Sequence == eType
&& (nStartIndex != 0 || nEndIndex != -1))
{
pSrc->CopyExpandText( rNd, &rInsPos, nStartIndex,
nEndIndex == -1 ? -1 : nEndIndex - nStartIndex,
pLayout, false, true );
}
else
{
assert(nStartIndex == 0);
assert(nEndIndex == -1);
// sw_redlinehide: this probably won't HideDeletions
pSrc->CopyExpandText( rNd, &rInsPos, 0, -1,
pLayout, false, true );
if (pLayout && pLayout->HasMergedParas())
{
if (SwTextFrame const*const pFrame = static_cast<SwTextFrame*>(pSrc->getLayoutFrame(pLayout)))
{
if (sw::MergedPara const*const pMerged = pFrame->GetMergedPara())
{
// pSrc already copied above
assert(pSrc == pMerged->pParaPropsNode);
for (SwNodeOffset i = pSrc->GetIndex() + 1;
i <= pMerged->pLastNode->GetIndex(); ++i)
{
SwNode *const pTmp(pSrc->GetNodes()[i]);
if (pTmp->GetRedlineMergeFlag() == SwNode::Merge::NonFirst)
{
pTmp->GetTextNode()->CopyExpandText(
rNd, &rInsPos, 0, -1,
pLayout, false, false );
}
}
}
}
}
}
}
else
{
rNd.InsertText( GetText().sText.replace('\t', ' '), rInsPos );
}
}
sal_uInt16 SwTOXPara::GetLevel() const
{
sal_uInt16 nRet = m_nLevel;
const SwContentNode* pNd = aTOXSources[0].pNd;
if( SwTOXElement::OutlineLevel == eType && pNd->GetTextNode() )
{
const int nTmp = static_cast<const SwTextNode*>(pNd)->GetAttrOutlineLevel();
if(nTmp != 0 )
nRet = o3tl::narrowing<sal_uInt16>(nTmp);
}
return nRet;
}
std::pair<OUString, bool> SwTOXPara::GetURL(SwRootFrame const*const) const
{
OUString aText;
const SwContentNode* pNd = aTOXSources[0].pNd;
switch( eType )
{
case SwTOXElement::Template:
case SwTOXElement::OutlineLevel:
{
const SwTextNode * pTextNd = pNd->GetTextNode();
SwDoc& rDoc = const_cast<SwDoc&>( pTextNd->GetDoc() );
// tdf#123313: this *must not* create a bookmark, its Undo would
// be screwed! create it as preparatory step, in ctor!
::sw::mark::MarkBase const * const pMark = rDoc.getIDocumentMarkAccess()->getMarkForTextNode(
*pTextNd,
IDocumentMarkAccess::MarkType::CROSSREF_HEADING_BOOKMARK);
aText = "#" + pMark->GetName().toString();
}
break;
case SwTOXElement::Ole:
case SwTOXElement::Graphic:
case SwTOXElement::Frame:
{
// Find the FlyFormat; the object/graphic name is there
SwFrameFormat* pFly = pNd->GetFlyFormat();
if( pFly )
{
aText = "#" + pFly->GetName().toString() + OUStringChar(cMarkSeparator);
std::optional<OUString> pStr;
switch( eType )
{
case SwTOXElement::Ole: pStr = u"ole"_ustr; break;
case SwTOXElement::Graphic: pStr = u"graphic"_ustr; break;
case SwTOXElement::Frame: pStr = u"frame"_ustr; break;
default: break;
}
if( pStr )
aText += *pStr;
}
}
break;
case SwTOXElement::Sequence:
{
aText = "#" + m_sSequenceName + OUStringChar(cMarkSeparator)
+ "sequence";
}
break;
default: break;
}
return std::make_pair(aText, false);
}
bool SwTOXPara::IsFullPara() const
{
switch (eType)
{
case SwTOXElement::Sequence:
case SwTOXElement::Template:
case SwTOXElement::OutlineLevel:
return nStartIndex == 0 && nEndIndex == -1;
default:
return false;
}
}
// Table
SwTOXTable::SwTOXTable( const SwContentNode& rNd )
: SwTOXSortTabBase( TOX_SORT_TABLE, &rNd, nullptr, nullptr ),
nLevel(FORM_ALPHA_DELIMITER)
{
}
TextAndReading SwTOXTable::GetText_Impl(SwRootFrame const*const) const
{
const SwNode* pNd = aTOXSources[0].pNd;
if( pNd )
{
const SwTableNode* pTableNd =
pNd->FindTableNode();
if (pTableNd)
{
return TextAndReading(pTableNd->GetTable().GetFrameFormat()->GetName().toString(), OUString());
}
}
OSL_ENSURE( false, "Where's my table?" );
return TextAndReading(SwResId( STR_TABLE_DEFNAME ), OUString());
}
sal_uInt16 SwTOXTable::GetLevel() const
{
return nLevel;
}
std::pair<OUString, bool> SwTOXTable::GetURL(SwRootFrame const*const) const
{
const SwNode* pNd = aTOXSources[0].pNd;
if (!pNd)
return std::make_pair(OUString(), false);
pNd = pNd->FindTableNode();
if (!pNd)
return std::make_pair(OUString(), false);
const UIName sName = static_cast<const SwTableNode*>(pNd)->GetTable().GetFrameFormat()->GetName();
if ( sName.isEmpty() )
return std::make_pair(OUString(), false);
return std::make_pair("#" + sName.toString() + OUStringChar(cMarkSeparator) + "table", false);
}
SwTOXAuthority::SwTOXAuthority( const SwContentNode& rNd,
SwFormatField& rField, const SwTOXInternational& rIntl ) :
SwTOXSortTabBase( TOX_SORT_AUTHORITY, &rNd, nullptr, &rIntl ),
m_rField(rField)
{
if(rField.GetTextField())
nCntPos = rField.GetTextField()->GetStart();
}
sal_uInt16 SwTOXAuthority::GetLevel() const
{
OUString sText(static_cast<SwAuthorityField*>(m_rField.GetField())->GetFieldText(AUTH_FIELD_AUTHORITY_TYPE));
//#i18655# the level '0' is the heading level therefore the values are incremented here
sal_uInt16 nRet = 1;
if( pTOXIntl->IsNumeric( sText ) )
{
nRet = sText.toUInt32();
nRet++;
}
//illegal values are also set to 'ARTICLE' as non-numeric values are
if(nRet > AUTH_TYPE_END)
nRet = 1;
return nRet;
}
static OUString lcl_GetText(SwFormatField const& rField, SwRootFrame const*const pLayout)
{
return rField.GetField()->ExpandField(true, pLayout);
}
TextAndReading SwTOXAuthority::GetText_Impl(SwRootFrame const*const pLayout) const
{
return TextAndReading(lcl_GetText(m_rField, pLayout), OUString());
}
OUString SwTOXAuthority::GetText(sal_uInt16 nAuthField, const SwRootFrame* pLayout) const
{
SwAuthorityField* pField = static_cast<SwAuthorityField*>(m_rField.GetField());
OUString sText;
if(AUTH_FIELD_IDENTIFIER == nAuthField)
{
sText = lcl_GetText(m_rField, pLayout);
const SwAuthorityFieldType* pType = static_cast<const SwAuthorityFieldType*>(pField->GetTyp());
sal_Unicode cChar = pType->GetPrefix();
if(cChar && cChar != ' ')
sText = sText.copy(1);
cChar = pType->GetSuffix();
if(cChar && cChar != ' ')
sText = sText.copy(0, sText.getLength() - 1);
}
else if(AUTH_FIELD_AUTHORITY_TYPE == nAuthField)
{
sal_uInt16 nLevel = GetLevel();
if(nLevel)
sText = SwAuthorityFieldType::GetAuthTypeName(static_cast<ToxAuthorityType>(--nLevel));
}
else
sText = pField->GetFieldText(static_cast<ToxAuthorityField>(nAuthField));
return sText;
}
OUString SwTOXAuthority::GetSourceURL(const OUString& rText)
{
OUString aText = rText;
uno::Reference<uri::XUriReferenceFactory> xUriReferenceFactory
= uri::UriReferenceFactory::create(comphelper::getProcessComponentContext());
uno::Reference<uri::XUriReference> xUriRef;
try
{
xUriRef = xUriReferenceFactory->parse(aText);
}
catch (const uno::Exception& rException)
{
SAL_WARN("sw.core",
"SwTOXAuthority::GetSourceURL: failed to parse url: " << rException.Message);
}
if (xUriRef.is() && xUriRef->getFragment().startsWith("page="))
{
xUriRef->clearFragment();
aText = xUriRef->getUriReference();
}
return aText;
}
void SwTOXAuthority::FillText(SwTextNode& rNd, const SwContentIndex& rInsPos, sal_uInt16 nAuthField,
SwRootFrame const* const pLayout) const
{
OUString aText = GetText(nAuthField, pLayout);
if (nAuthField == AUTH_FIELD_URL)
{
aText = GetSourceURL(aText);
// Convert URL to a relative one if requested.
SwDoc* pDoc = static_cast<SwAuthorityFieldType*>(m_rField.GetField()->GetTyp())->GetDoc();
if (SwDocShell* pDocShell = pDoc->GetDocShell())
{
std::u16string_view aBaseURIScheme;
const OUString aBaseURL = pDocShell->getDocumentBaseURL();
sal_Int32 nSep = aBaseURL.indexOf(':');
if (nSep != -1)
{
aBaseURIScheme = aBaseURL.subView(0, nSep);
}
uno::Reference<uri::XUriReferenceFactory> xUriReferenceFactory
= uri::UriReferenceFactory::create(comphelper::getProcessComponentContext());
uno::Reference<uri::XUriReference> xUriRef;
try
{
xUriRef = xUriReferenceFactory->parse(aText);
}
catch (const uno::Exception& rException)
{
SAL_WARN("sw.core",
"SwTOXAuthority::FillText: failed to parse url: " << rException.Message);
}
bool bSaveRelFSys = officecfg::Office::Common::Save::URL::FileSystem::get();
if (xUriRef.is() && bSaveRelFSys && xUriRef->getScheme() == aBaseURIScheme)
{
aText = INetURLObject::GetRelURL(aBaseURL, aText);
}
}
}
rNd.InsertText(aText, rInsPos);
}
bool SwTOXAuthority::equivalent(const SwTOXSortTabBase& rCmp)
{
if (nType != rCmp.nType)
{
return false;
}
// Compare our SwAuthEntry and rCmp's SwAuthEntry, but the URL is considered equivalent, as long
// as it only differs in a page number, as that's still the same source.
const SwAuthEntry* pThis = static_cast<SwAuthorityField*>(m_rField.GetField())->GetAuthEntry();
const SwAuthEntry* pOther = static_cast<SwAuthorityField*>(
static_cast<const SwTOXAuthority&>(rCmp).m_rField.GetField())
->GetAuthEntry();
if (pThis == pOther)
{
return true;
}
for (int i = 0; i < AUTH_FIELD_END; ++i)
{
auto eField = static_cast<ToxAuthorityField>(i);
if (eField == AUTH_FIELD_URL)
{
if (GetSourceURL(pThis->GetAuthorField(AUTH_FIELD_URL))
!= GetSourceURL(pOther->GetAuthorField(AUTH_FIELD_URL)))
{
return false;
}
continue;
}
if (pThis->GetAuthorField(eField) != pOther->GetAuthorField(eField))
{
return false;
}
}
return true;
}
bool SwTOXAuthority::sort_lt(const SwTOXSortTabBase& rBase)
{
bool bRet = false;
SwAuthorityField* pField = static_cast<SwAuthorityField*>(m_rField.GetField());
SwAuthorityFieldType* pType = static_cast<SwAuthorityFieldType*>(
pField->GetTyp());
if(pType->IsSortByDocument())
bRet = SwTOXSortTabBase::sort_lt(rBase);
else
{
SwAuthorityField* pCmpField =
static_cast<SwAuthorityField*>(static_cast<const SwTOXAuthority&>(rBase).m_rField.GetField());
for(sal_uInt16 i = 0; i < pType->GetSortKeyCount(); i++)
{
const SwTOXSortKey* pKey = pType->GetSortKey(i);
const TextAndReading aMy(pField->GetFieldText(pKey->eField), OUString());
const TextAndReading aOther(pCmpField->GetFieldText(pKey->eField), OUString());
sal_Int32 nComp = pTOXIntl->Compare( aMy, GetLocale(),
aOther, rBase.GetLocale() );
if( nComp )
{
bRet = (-1 == nComp) == pKey->bSortAscending;
break;
}
}
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|