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
|
/* -*- 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 "XMLIndexTemplateContext.hxx"
#include "XMLIndexSimpleEntryContext.hxx"
#include "XMLIndexSpanEntryContext.hxx"
#include "XMLIndexTabStopEntryContext.hxx"
#include "XMLIndexBibliographyEntryContext.hxx"
#include "XMLIndexChapterInfoEntryContext.hxx"
#include <xmloff/xmlictxt.hxx>
#include <xmloff/xmlimp.hxx>
#include <xmloff/txtimp.hxx>
#include <xmloff/xmlnamespace.hxx>
#include <xmloff/xmltoken.hxx>
#include <xmloff/xmluconv.hxx>
#include <xmloff/xmlement.hxx>
#include <tools/debug.hxx>
#include <rtl/ustring.hxx>
#include <sal/log.hxx>
#include <com/sun/star/container/XIndexReplace.hpp>
#include <com/sun/star/container/XNameContainer.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <algorithm>
using namespace ::xmloff::token;
using ::com::sun::star::beans::XPropertySet;
using ::com::sun::star::beans::PropertyValues;
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
using ::com::sun::star::uno::Any;
using ::com::sun::star::container::XIndexReplace;
XMLIndexTemplateContext::XMLIndexTemplateContext(
SvXMLImport& rImport,
Reference<XPropertySet> & rPropSet,
const SvXMLEnumMapEntry<sal_uInt16>* pLevelNameMap,
enum XMLTokenEnum eLevelAttrName,
std::span<const OUString> pLevelStylePropMap,
const bool* pAllowedTokenTypes,
bool bT )
: SvXMLImportContext(rImport)
, pOutlineLevelNameMap(pLevelNameMap)
, eOutlineLevelAttrName(eLevelAttrName)
, pOutlineLevelStylePropMap(pLevelStylePropMap)
, pAllowedTokenTypesMap(pAllowedTokenTypes)
, nOutlineLevel(1) // all indices have level 1 (0 is for header)
, bStyleNameOK(false)
, bOutlineLevelOK(false)
, bTOC( bT )
, rPropertySet(rPropSet)
{
DBG_ASSERT( ((XML_TOKEN_INVALID != eLevelAttrName) && (nullptr != pLevelNameMap))
|| ((XML_TOKEN_INVALID == eLevelAttrName) && (nullptr == pLevelNameMap)),
"need both, attribute name and value map, or neither" );
SAL_WARN_IF( nullptr == pAllowedTokenTypes, "xmloff", "need allowed tokens map" );
// no map for outline-level? then use 1
if (nullptr == pLevelNameMap)
{
nOutlineLevel = 1;
bOutlineLevelOK = true;
}
}
XMLIndexTemplateContext::~XMLIndexTemplateContext()
{
}
void XMLIndexTemplateContext::addTemplateEntry(
const PropertyValues& aValues)
{
aValueVector.push_back(aValues);
}
void XMLIndexTemplateContext::startFastElement(
sal_Int32 /*nElement*/,
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
{
// process two attributes: style-name, outline-level
for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
{
if(aIter.getToken() == XML_ELEMENT(TEXT, XML_STYLE_NAME))
{
// style name
sStyleName = aIter.toString();
bStyleNameOK = true;
}
else if (aIter.getToken() == XML_ELEMENT(TEXT, eOutlineLevelAttrName))
{
// we have an attr name! Then see if we have the attr, too.
// outline level
sal_uInt16 nTmp;
if (SvXMLUnitConverter::convertEnum(nTmp, aIter.toView(), pOutlineLevelNameMap))
{
nOutlineLevel = nTmp;
bOutlineLevelOK = true;
}
// else: illegal value -> ignore
}
// else: attribute not in text namespace -> ignore
}
}
void XMLIndexTemplateContext::endFastElement(sal_Int32 )
{
if (!bOutlineLevelOK)
return;
const sal_Int32 nCount = aValueVector.size();
Sequence<PropertyValues> aValueSequence(nCount);
std::copy(aValueVector.begin(), aValueVector.end(), aValueSequence.getArray());
// get LevelFormat IndexReplace ...
Any aAny = rPropertySet->getPropertyValue(u"LevelFormat"_ustr);
Reference<XIndexReplace> xIndexReplace;
aAny >>= xIndexReplace;
// ... and insert
xIndexReplace->replaceByIndex(nOutlineLevel, Any(aValueSequence));
if (!bStyleNameOK)
return;
const OUString pStyleProperty =
pOutlineLevelStylePropMap[nOutlineLevel];
DBG_ASSERT(!pStyleProperty.isEmpty(), "need property name");
if (pStyleProperty.isEmpty())
return;
OUString sDisplayStyleName =
GetImport().GetStyleDisplayName(
XmlStyleFamily::TEXT_PARAGRAPH,
sStyleName );
// #i50288#: Check if style exists
const Reference < css::container::XNameContainer > & rStyles =
GetImport().GetTextImport()->GetParaStyles();
if( rStyles.is() &&
rStyles->hasByName( sDisplayStyleName ) )
{
rPropertySet->setPropertyValue(
pStyleProperty, css::uno::Any(sDisplayStyleName));
}
}
namespace {
/// template token types; used for aTokenTypeMap parameter
enum TemplateTokenType
{
XML_TOK_INDEX_TYPE_ENTRY_TEXT = 0,
XML_TOK_INDEX_TYPE_TAB_STOP,
XML_TOK_INDEX_TYPE_TEXT,
XML_TOK_INDEX_TYPE_PAGE_NUMBER,
XML_TOK_INDEX_TYPE_CHAPTER,
XML_TOK_INDEX_TYPE_LINK_START,
XML_TOK_INDEX_TYPE_LINK_END,
XML_TOK_INDEX_TYPE_BIBLIOGRAPHY
};
}
SvXMLEnumMapEntry<TemplateTokenType> const aTemplateTokenTypeMap[] =
{
{ XML_INDEX_ENTRY_TEXT, XML_TOK_INDEX_TYPE_ENTRY_TEXT },
{ XML_INDEX_ENTRY_TAB_STOP, XML_TOK_INDEX_TYPE_TAB_STOP },
{ XML_INDEX_ENTRY_SPAN, XML_TOK_INDEX_TYPE_TEXT },
{ XML_INDEX_ENTRY_PAGE_NUMBER, XML_TOK_INDEX_TYPE_PAGE_NUMBER },
{ XML_INDEX_ENTRY_CHAPTER, XML_TOK_INDEX_TYPE_CHAPTER },
{ XML_INDEX_ENTRY_LINK_START, XML_TOK_INDEX_TYPE_LINK_START },
{ XML_INDEX_ENTRY_LINK_END, XML_TOK_INDEX_TYPE_LINK_END },
{ XML_INDEX_ENTRY_BIBLIOGRAPHY, XML_TOK_INDEX_TYPE_BIBLIOGRAPHY },
{ XML_TOKEN_INVALID, TemplateTokenType(0) }
};
css::uno::Reference< css::xml::sax::XFastContextHandler > XMLIndexTemplateContext::createFastChildContext(
sal_Int32 nElement,
const css::uno::Reference< css::xml::sax::XFastAttributeList >& )
{
SvXMLImportContext* pContext = nullptr;
if (IsTokenInNamespace(nElement, XML_NAMESPACE_TEXT) || IsTokenInNamespace(nElement, XML_NAMESPACE_LO_EXT))
{
TemplateTokenType nToken;
if (SvXMLUnitConverter::convertEnum(nToken, SvXMLImport::getNameFromToken(nElement),
aTemplateTokenTypeMap))
{
// can this index accept this kind of token?
if (pAllowedTokenTypesMap[nToken])
{
switch (nToken)
{
case XML_TOK_INDEX_TYPE_ENTRY_TEXT:
pContext = new XMLIndexSimpleEntryContext(
GetImport(), u"TokenEntryText"_ustr, *this);
break;
case XML_TOK_INDEX_TYPE_PAGE_NUMBER:
pContext = new XMLIndexSimpleEntryContext(
GetImport(), u"TokenPageNumber"_ustr, *this);
break;
case XML_TOK_INDEX_TYPE_LINK_START:
pContext = new XMLIndexSimpleEntryContext(
GetImport(), u"TokenHyperlinkStart"_ustr, *this);
break;
case XML_TOK_INDEX_TYPE_LINK_END:
pContext = new XMLIndexSimpleEntryContext(
GetImport(), u"TokenHyperlinkEnd"_ustr, *this);
break;
case XML_TOK_INDEX_TYPE_TEXT:
pContext = new XMLIndexSpanEntryContext(
GetImport(), *this);
break;
case XML_TOK_INDEX_TYPE_TAB_STOP:
pContext = new XMLIndexTabStopEntryContext(
GetImport(), *this);
break;
case XML_TOK_INDEX_TYPE_BIBLIOGRAPHY:
pContext = new XMLIndexBibliographyEntryContext(
GetImport(), *this);
break;
case XML_TOK_INDEX_TYPE_CHAPTER:
pContext = new XMLIndexChapterInfoEntryContext(
GetImport(), *this, bTOC );
break;
default:
// ignore!
break;
}
}
}
}
// ignore unknown
return pContext;
}
// maps for the XMLIndexTemplateContext constructor
// table of content and user defined index:
const SvXMLEnumMapEntry<sal_uInt16> aSvLevelNameTOCMap[] =
{
{ XML_1, 1 },
{ XML_2, 2 },
{ XML_3, 3 },
{ XML_4, 4 },
{ XML_5, 5 },
{ XML_6, 6 },
{ XML_7, 7 },
{ XML_8, 8 },
{ XML_9, 9 },
{ XML_10, 10 },
{ XML_TOKEN_INVALID, 0 }
};
constexpr OUString aLevelStylePropNameTOCMapArray[] =
{ u""_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel2"_ustr, u"ParaStyleLevel3"_ustr,
u"ParaStyleLevel4"_ustr, u"ParaStyleLevel5"_ustr, u"ParaStyleLevel6"_ustr,
u"ParaStyleLevel7"_ustr, u"ParaStyleLevel8"_ustr, u"ParaStyleLevel9"_ustr,
u"ParaStyleLevel10"_ustr, u""_ustr };
std::span<const OUString> const aLevelStylePropNameTOCMap = aLevelStylePropNameTOCMapArray;
const bool aAllowedTokenTypesTOC[] =
{
true, // XML_TOK_INDEX_TYPE_ENTRY_TEXT =
true, // XML_TOK_INDEX_TYPE_TAB_STOP,
true, // XML_TOK_INDEX_TYPE_TEXT,
true, // XML_TOK_INDEX_TYPE_PAGE_NUMBER,
true, // XML_TOK_INDEX_TYPE_CHAPTER,
true, // XML_TOK_INDEX_TYPE_LINK_START,
true, // XML_TOK_INDEX_TYPE_LINK_END,
false // XML_TOK_INDEX_TYPE_BIBLIOGRAPHY
};
const bool aAllowedTokenTypesUser[] =
{
true, // XML_TOK_INDEX_TYPE_ENTRY_TEXT =
true, // XML_TOK_INDEX_TYPE_TAB_STOP,
true, // XML_TOK_INDEX_TYPE_TEXT,
true, // XML_TOK_INDEX_TYPE_PAGE_NUMBER,
true, // XML_TOK_INDEX_TYPE_CHAPTER,
true, // XML_TOK_INDEX_TYPE_LINK_START,
true, // XML_TOK_INDEX_TYPE_LINK_END,
false // XML_TOK_INDEX_TYPE_BIBLIOGRAPHY
};
// alphabetical index
const SvXMLEnumMapEntry<sal_uInt16> aLevelNameAlphaMap[] =
{
{ XML_SEPARATOR, 1 },
{ XML_1, 2 },
{ XML_2, 3 },
{ XML_3, 4 },
{ XML_TOKEN_INVALID, 0 }
};
constexpr OUString aLevelStylePropNameAlphaMapArray[] =
{ u""_ustr, u"ParaStyleSeparator"_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel2"_ustr,
u"ParaStyleLevel3"_ustr, u""_ustr };
std::span<const OUString> const aLevelStylePropNameAlphaMap = aLevelStylePropNameAlphaMapArray;
const bool aAllowedTokenTypesAlpha[] =
{
true, // XML_TOK_INDEX_TYPE_ENTRY_TEXT =
true, // XML_TOK_INDEX_TYPE_TAB_STOP,
true, // XML_TOK_INDEX_TYPE_TEXT,
true, // XML_TOK_INDEX_TYPE_PAGE_NUMBER,
true, // XML_TOK_INDEX_TYPE_CHAPTER,
false, // XML_TOK_INDEX_TYPE_LINK_START,
false, // XML_TOK_INDEX_TYPE_LINK_END,
false // XML_TOK_INDEX_TYPE_BIBLIOGRAPHY
};
// bibliography index:
const SvXMLEnumMapEntry<sal_uInt16> aLevelNameBibliographyMap[] =
{
{ XML_ARTICLE, 1 },
{ XML_BOOK, 2 },
{ XML_BOOKLET, 3 },
{ XML_CONFERENCE, 4 },
{ XML_CUSTOM1, 5 },
{ XML_CUSTOM2, 6 },
{ XML_CUSTOM3, 7 },
{ XML_CUSTOM4, 8 },
{ XML_CUSTOM5, 9 },
{ XML_EMAIL, 10 },
{ XML_INBOOK, 11 },
{ XML_INCOLLECTION, 12 },
{ XML_INPROCEEDINGS, 13 },
{ XML_JOURNAL, 14 },
{ XML_MANUAL, 15 },
{ XML_MASTERSTHESIS, 16 },
{ XML_MISC, 17 },
{ XML_PHDTHESIS, 18 },
{ XML_PROCEEDINGS, 19 },
{ XML_TECHREPORT, 20 },
{ XML_UNPUBLISHED, 21 },
{ XML_WWW, 22 },
{ XML_TOKEN_INVALID, 0 }
};
// TODO: replace with real property names, when available
constexpr OUString aLevelStylePropNameBibliographyMapArray[] =
{
u""_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr,
u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr,
u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr,
u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr,
u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr,
u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr,
u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr, u"ParaStyleLevel1"_ustr,
u"ParaStyleLevel1"_ustr, u""_ustr };
std::span<const OUString> const aLevelStylePropNameBibliographyMap = aLevelStylePropNameBibliographyMapArray;
const bool aAllowedTokenTypesBibliography[] =
{
true, // XML_TOK_INDEX_TYPE_ENTRY_TEXT =
true, // XML_TOK_INDEX_TYPE_TAB_STOP,
true, // XML_TOK_INDEX_TYPE_TEXT,
true, // XML_TOK_INDEX_TYPE_PAGE_NUMBER,
false, // XML_TOK_INDEX_TYPE_CHAPTER,
false, // XML_TOK_INDEX_TYPE_LINK_START,
false, // XML_TOK_INDEX_TYPE_LINK_END,
true // XML_TOK_INDEX_TYPE_BIBLIOGRAPHY
};
// table, illustration and object index
// no name map
const SvXMLEnumMapEntry<sal_uInt16>* aLevelNameTableMap = nullptr;
constexpr OUString aLevelStylePropNameTableMapArray[] =
{ u""_ustr, u"ParaStyleLevel1"_ustr, u""_ustr };
std::span<const OUString> const aLevelStylePropNameTableMap = aLevelStylePropNameTableMapArray;
const bool aAllowedTokenTypesTable[] =
{
true, // XML_TOK_INDEX_TYPE_ENTRY_TEXT =
true, // XML_TOK_INDEX_TYPE_TAB_STOP,
true, // XML_TOK_INDEX_TYPE_TEXT,
true, // XML_TOK_INDEX_TYPE_PAGE_NUMBER,
true, // XML_TOK_INDEX_TYPE_CHAPTER,
true, // XML_TOK_INDEX_TYPE_LINK_START,
true, // XML_TOK_INDEX_TYPE_LINK_END,
false // XML_TOK_INDEX_TYPE_BIBLIOGRAPHY
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|