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
|
/* -*- 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 <txtlists.hxx>
#include <comphelper/random.hxx>
#include <o3tl/safeint.hxx>
#include <tools/datetime.hxx>
#include <tools/long.hxx>
#include <sal/log.hxx>
#include <xmloff/txtimp.hxx>
#include <xmloff/xmlimp.hxx>
#include <xmloff/xmlnumi.hxx>
#include <com/sun/star/style/XStyle.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/container/XNameContainer.hpp>
#include "XMLTextListItemContext.hxx"
#include "XMLTextListBlockContext.hxx"
#include "txtparai.hxx"
using namespace ::com::sun::star;
XMLTextListsHelper::XMLTextListsHelper()
// Inconsistent behavior regarding lists (#i92811#)
{
}
void XMLTextListsHelper::PushListContext(
XMLTextListBlockContext *i_pListBlock)
{
mListStack.emplace(i_pListBlock,
static_cast<XMLTextListItemContext*>(nullptr),
static_cast<XMLNumberedParaContext*>(nullptr));
}
void XMLTextListsHelper::PushListContext(
XMLNumberedParaContext *i_pNumberedParagraph)
{
mListStack.emplace(
static_cast<XMLTextListBlockContext*>(nullptr),
static_cast<XMLTextListItemContext*>(nullptr), i_pNumberedParagraph);
}
void XMLTextListsHelper::PopListContext()
{
assert(mListStack.size());
if ( !mListStack.empty())
mListStack.pop();
}
void XMLTextListsHelper::ListContextTop(
XMLTextListBlockContext*& o_pListBlockContext,
XMLTextListItemContext*& o_pListItemContext,
XMLNumberedParaContext*& o_pNumberedParagraphContext )
{
if ( !mListStack.empty() ) {
o_pListBlockContext =
static_cast<XMLTextListBlockContext*>(std::get<0>(mListStack.top()).get());
o_pListItemContext =
static_cast<XMLTextListItemContext *>(std::get<1>(mListStack.top()).get());
o_pNumberedParagraphContext =
static_cast<XMLNumberedParaContext *>(std::get<2>(mListStack.top()).get());
}
}
void XMLTextListsHelper::SetListItem( XMLTextListItemContext *i_pListItem )
{
// may be cleared by ListBlockContext for upper list...
if (i_pListItem) {
assert(mListStack.size());
assert(std::get<0>(mListStack.top()).is() &&
"internal error: SetListItem: mListStack has no ListBlock");
assert(!std::get<1>(mListStack.top()).is() &&
"error: SetListItem: list item already exists");
}
if ( !mListStack.empty() ) {
std::get<1>(mListStack.top()) = i_pListItem;
}
}
// Handling for parameter <sListStyleDefaultListId> (#i92811#)
void XMLTextListsHelper::KeepListAsProcessed( const OUString& sListId,
const OUString& sListStyleName,
const OUString& sContinueListId,
const OUString& sListStyleDefaultListId )
{
if ( IsListProcessed( sListId ) )
{
assert(false &&
"<XMLTextListsHelper::KeepListAsProcessed(..)> - list id already added" );
return;
}
if ( !mpProcessedLists )
{
mpProcessedLists = std::make_unique<tMapForLists>();
}
(*mpProcessedLists)[ sListId ] = std::make_pair(sListStyleName, sContinueListId);
msLastProcessedListId = sListId;
msListStyleOfLastProcessedList = sListStyleName;
// Remember what is the last list id of this list style.
if (!mpStyleNameLastListIds)
{
mpStyleNameLastListIds = std::make_unique<std::map<OUString, OUString>>();
}
(*mpStyleNameLastListIds)[sListStyleName] = sListId;
// Inconsistent behavior regarding lists (#i92811#)
if ( sListStyleDefaultListId.isEmpty())
return;
if ( !mpMapListIdToListStyleDefaultListId )
{
mpMapListIdToListStyleDefaultListId = std::make_unique<tMapForLists>();
}
if ( !mpMapListIdToListStyleDefaultListId->contains( sListStyleName ) )
{
(*mpMapListIdToListStyleDefaultListId)[ sListStyleName ] =
::std::pair<OUString, OUString>(sListId, sListStyleDefaultListId);
}
}
bool XMLTextListsHelper::IsListProcessed( const OUString& sListId ) const
{
if ( !mpProcessedLists )
{
return false;
}
return mpProcessedLists->contains( sListId );
}
const OUString & XMLTextListsHelper::GetListStyleOfProcessedList(
const OUString& sListId ) const
{
if ( mpProcessedLists )
{
tMapForLists::const_iterator aIter = mpProcessedLists->find( sListId );
if ( aIter != mpProcessedLists->end() )
{
return (*aIter).second.first;
}
}
return EMPTY_OUSTRING;
}
const OUString & XMLTextListsHelper::GetContinueListIdOfProcessedList(
const OUString& sListId ) const
{
if ( mpProcessedLists )
{
tMapForLists::const_iterator aIter = mpProcessedLists->find( sListId );
if ( aIter != mpProcessedLists->end() )
{
return (*aIter).second.second;
}
}
return EMPTY_OUSTRING;
}
OUString XMLTextListsHelper::GenerateNewListId() const
{
static bool bHack = (getenv("LIBO_ONEWAY_STABLE_ODF_EXPORT") != nullptr);
OUString sTmpStr( u"list"_ustr );
if (bHack)
{
static sal_Int64 nIdCounter = SAL_CONST_INT64(5000000000);
sTmpStr += OUString::number(nIdCounter++);
}
else
{
// Value of xml:id in element <text:list> has to be a valid ID type (#i92478#)
DateTime aDateTime( DateTime::SYSTEM );
sal_Int64 n = aDateTime.GetTime();
n += aDateTime.GetDateUnsigned();
n += comphelper::rng::uniform_int_distribution(0, std::numeric_limits<int>::max());
// Value of xml:id in element <text:list> has to be a valid ID type (#i92478#)
sTmpStr += OUString::number( n );
}
OUString sNewListId( sTmpStr );
if ( mpProcessedLists )
{
tools::Long nHitCount = 0;
while ( mpProcessedLists->contains( sNewListId ) )
{
++nHitCount;
sNewListId = sTmpStr + OUString::number( nHitCount );
}
}
return sNewListId;
}
// Provide list id for a certain list block for import (#i92811#)
OUString XMLTextListsHelper::GetListIdForListBlock( XMLTextListBlockContext const & rListBlock )
{
OUString sListBlockListId( rListBlock.GetContinueListId() );
if ( sListBlockListId.isEmpty() )
{
sListBlockListId = rListBlock.GetListId();
}
if ( mpMapListIdToListStyleDefaultListId )
{
if ( !sListBlockListId.isEmpty() )
{
const OUString sListStyleName =
GetListStyleOfProcessedList( sListBlockListId );
tMapForLists::const_iterator aIter =
mpMapListIdToListStyleDefaultListId->find( sListStyleName );
if ( aIter != mpMapListIdToListStyleDefaultListId->end() )
{
if ( (*aIter).second.first == sListBlockListId )
{
sListBlockListId = (*aIter).second.second;
}
}
}
}
return sListBlockListId;
}
void XMLTextListsHelper::StoreLastContinuingList( const OUString& sListId,
const OUString& sContinuingListId )
{
if ( !mpContinuingLists )
{
mpContinuingLists = std::make_unique<tMapForContinuingLists>();
}
(*mpContinuingLists)[ sListId ] = sContinuingListId;
}
OUString XMLTextListsHelper::GetLastContinuingListId(
const OUString& sListId ) const
{
if ( mpContinuingLists )
{
tMapForContinuingLists::const_iterator aIter =
mpContinuingLists->find( sListId );
if ( aIter != mpContinuingLists->end() )
{
return (*aIter).second;
}
}
return sListId;
}
void XMLTextListsHelper::PushListOnStack( const OUString& sListId,
const OUString& sListStyleName )
{
if ( !mpListStack )
{
mpListStack = std::make_unique<tStackForLists>();
}
::std::pair< OUString, OUString >
aListData( sListId, sListStyleName );
mpListStack->push_back( aListData );
}
void XMLTextListsHelper::PopListFromStack()
{
if ( mpListStack &&
!mpListStack->empty() )
{
mpListStack->pop_back();
}
}
bool XMLTextListsHelper::EqualsToTopListStyleOnStack( std::u16string_view sListId ) const
{
return mpListStack && sListId == mpListStack->back().second;
}
OUString
XMLTextListsHelper::GetNumberedParagraphListId(
const sal_uInt16 i_Level,
std::u16string_view i_StyleName)
{
if (i_StyleName.empty()) {
SAL_INFO("xmloff.text", "invalid numbered-paragraph: no style-name");
}
if (!i_StyleName.empty()
&& (i_Level < mLastNumberedParagraphs.size())
&& (mLastNumberedParagraphs[i_Level].first == i_StyleName) )
{
assert(!mLastNumberedParagraphs[i_Level].second.isEmpty() &&
"internal error: numbered-paragraph style-name but no list-id?");
return mLastNumberedParagraphs[i_Level].second;
} else {
return GenerateNewListId();
}
}
static void
ClampLevel(uno::Reference<container::XIndexReplace> const& i_xNumRules,
sal_Int16 & io_rLevel)
{
assert(i_xNumRules.is());
if (i_xNumRules.is()) {
const sal_Int32 nLevelCount( i_xNumRules->getCount() );
if ( io_rLevel >= nLevelCount ) {
io_rLevel = sal::static_int_cast< sal_Int16 >(nLevelCount-1);
}
}
}
uno::Reference<container::XIndexReplace>
XMLTextListsHelper::EnsureNumberedParagraph(
SvXMLImport & i_rImport,
const OUString& i_ListId,
sal_Int16 & io_rLevel, const OUString& i_StyleName)
{
assert(!i_ListId.isEmpty());
assert(io_rLevel >= 0);
NumParaList_t & rNPList( mNPLists[i_ListId] );
const OUString none; // default
if ( rNPList.empty() ) {
// create default list style for top level
sal_Int16 lev(0);
rNPList.emplace_back(none,
MakeNumRule(i_rImport, nullptr, none, none, lev) );
}
// create num rule first because this might clamp the level...
uno::Reference<container::XIndexReplace> xNumRules;
if ((0 == io_rLevel) || rNPList.empty() || !i_StyleName.isEmpty()) {
// no parent to inherit from, or explicit style given => new numrules!
// index of parent: level - 1, but maybe that does not exist
const size_t parent( std::min(static_cast<size_t>(io_rLevel),
rNPList.size()) - 1 );
xNumRules = MakeNumRule(i_rImport,
io_rLevel > 0 ? rNPList[parent].second : nullptr,
io_rLevel > 0 ? rNPList[parent].first : none,
i_StyleName, io_rLevel);
} else {
// no style given, but has a parent => reuse parent numrules!
ClampLevel(rNPList.back().second, io_rLevel);
}
if (static_cast<sal_uInt16>(io_rLevel) + 1U > rNPList.size()) {
// new level: need to enlarge
for (size_t i = rNPList.size();
i < o3tl::make_unsigned(io_rLevel); ++i)
{
NumParaList_t::value_type const rule(rNPList.back());
rNPList.push_back(rule);
}
NumParaList_t::value_type const rule(rNPList.back());
rNPList.push_back(xNumRules.is()
? ::std::make_pair(i_StyleName, xNumRules)
: rule);
} else {
// old level: no need to enlarge; possibly shrink
if (xNumRules.is()) {
rNPList[io_rLevel] = std::make_pair(i_StyleName, xNumRules);
}
if (static_cast<sal_uInt16>(io_rLevel) + 1U < rNPList.size()) {
rNPList.erase(rNPList.begin() + io_rLevel + 1, rNPList.end());
}
}
// remember the list id
if (mLastNumberedParagraphs.size() <= o3tl::make_unsigned(io_rLevel)) {
mLastNumberedParagraphs.resize(io_rLevel+1);
}
mLastNumberedParagraphs[io_rLevel] = std::make_pair(i_StyleName, i_ListId);
return rNPList.back().second;
}
/** extracted from the XMLTextListBlockContext constructor */
uno::Reference<container::XIndexReplace>
XMLTextListsHelper::MakeNumRule(
SvXMLImport & i_rImport,
const uno::Reference<container::XIndexReplace>& i_rNumRule,
std::u16string_view i_ParentStyleName,
const OUString& i_StyleName,
sal_Int16 & io_rLevel,
bool* o_pRestartNumbering,
bool* io_pSetDefaults)
{
uno::Reference<container::XIndexReplace> xNumRules(i_rNumRule);
if ( !i_StyleName.isEmpty() && i_StyleName != i_ParentStyleName )
{
const OUString sDisplayStyleName(
i_rImport.GetStyleDisplayName( XmlStyleFamily::TEXT_LIST,
i_StyleName) );
const uno::Reference < container::XNameContainer >& rNumStyles(
i_rImport.GetTextImport()->GetNumberingStyles() );
if( rNumStyles.is() && rNumStyles->hasByName( sDisplayStyleName ) )
{
uno::Reference < style::XStyle > xStyle;
uno::Any any = rNumStyles->getByName( sDisplayStyleName );
any >>= xStyle;
uno::Reference< beans::XPropertySet > xPropSet( xStyle,
uno::UNO_QUERY );
any = xPropSet->getPropertyValue(u"NumberingRules"_ustr);
any >>= xNumRules;
}
else
{
const SvxXMLListStyleContext *pListStyle(
i_rImport.GetTextImport()->FindAutoListStyle( i_StyleName ) );
if( pListStyle )
{
xNumRules = pListStyle->GetNumRules();
if( !xNumRules.is() )
{
pListStyle->CreateAndInsertAuto();
xNumRules = pListStyle->GetNumRules();
}
}
}
}
bool bSetDefaults(io_pSetDefaults && *io_pSetDefaults);
if ( !xNumRules.is() )
{
// If no style name has been specified for this style and for any
// parent or if no num rule with the specified name exists,
// create a new one.
xNumRules =
SvxXMLListStyleContext::CreateNumRule( i_rImport.GetModel() );
SAL_INFO_IF(xNumRules.is(), "xmloff.core", "cannot create numrules");
if ( !xNumRules.is() )
return xNumRules;
// Because it is a new num rule, numbering must not be restarted.
if (o_pRestartNumbering) *o_pRestartNumbering = false;
bSetDefaults = true;
if (io_pSetDefaults) *io_pSetDefaults = bSetDefaults;
}
ClampLevel(xNumRules, io_rLevel);
if ( bSetDefaults )
{
// Because there is no list style sheet for this style, a default
// format must be set for any level of this num rule.
SvxXMLListStyleContext::SetDefaultStyle( xNumRules, io_rLevel,
false );
}
return xNumRules;
}
OUString XMLTextListsHelper::GetLastIdOfStyleName(const OUString& sListStyleName) const
{
if (!mpStyleNameLastListIds)
{
return {};
}
auto it = mpStyleNameLastListIds->find(sListStyleName);
if (it == mpStyleNameLastListIds->end())
{
return {};
}
return it->second;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|