LibreOffice Module oox (master) 1
relationshandler.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <sal/config.h>
21
22#include <string_view>
23
25
26#include <sal/log.hxx>
28#include <oox/token/namespaces.hxx>
29#include <oox/token/tokens.hxx>
30
31namespace oox::core {
32
33using namespace ::com::sun::star::uno;
34using namespace ::com::sun::star::xml::sax;
35
36namespace {
37
38/* Build path to relations file from passed fragment path, e.g.:
39 'path/path/file.xml' -> 'path/path/_rels/file.xml.rels'
40 'file.xml' -> '_rels/file.xml.rels'
41 '' -> '_rels/.rels'
42 */
43OUString lclGetRelationsPath( std::u16string_view rFragmentPath )
44{
45 size_t nPathLen = rFragmentPath.rfind( '/' );
46 if (nPathLen == std::u16string_view::npos)
47 nPathLen = 0;
48 else
49 ++nPathLen;
50 return OUString::Concat(rFragmentPath.substr(0, nPathLen)) + // file path including slash
51 "_rels/" + // additional '_rels/' path
52 rFragmentPath.substr(nPathLen) + // file name after path
53 ".rels"; // '.rels' suffix
54}
55
56} // namespace
57
59 FragmentHandler( rFilter, lclGetRelationsPath( xRelations->getFragmentPath() ), xRelations ),
60 mxRelations( xRelations )
61{
62}
63
64Reference< XFastContextHandler > RelationsFragment::createFastChildContext(
65 sal_Int32 nElement, const Reference< XFastAttributeList >& rxAttribs )
66{
67 Reference< XFastContextHandler > xRet;
68 AttributeList aAttribs( rxAttribs );
69 switch( nElement )
70 {
71 case PR_TOKEN( Relationship ):
72 {
73 Relation aRelation;
74 aRelation.maId = aAttribs.getStringDefaulted( XML_Id);
75 aRelation.maType = aAttribs.getStringDefaulted( XML_Type);
76 aRelation.maTarget = aAttribs.getStringDefaulted( XML_Target);
77 if( !aRelation.maId.isEmpty() && !aRelation.maType.isEmpty() && !aRelation.maTarget.isEmpty() )
78 {
79 sal_Int32 nTargetMode = aAttribs.getToken( XML_TargetMode, XML_Internal );
80 SAL_WARN_IF( (nTargetMode != XML_Internal) && (nTargetMode != XML_External), "oox",
81 "RelationsFragment::createFastChildContext - unexpected target mode, assuming external" );
82 aRelation.mbExternal = nTargetMode != XML_Internal;
83
84 SAL_WARN_IF( mxRelations->count( aRelation.maId ) != 0, "oox",
85 "RelationsFragment::createFastChildContext - relation identifier exists already" );
86 mxRelations->emplace( aRelation.maId, aRelation );
87 }
88 }
89 break;
90 case PR_TOKEN( Relationships ):
91 xRet = getFastContextHandler();
92 break;
93 }
94 return xRet;
95}
96
97} // namespace oox::core
98
99/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provides access to attribute values of an element.
OUString getStringDefaulted(sal_Int32 nAttrToken) const
Returns the string value of the specified attribute, returns an empty string if attribute not present...
std::optional< sal_Int32 > getToken(sal_Int32 nAttrToken) const
Returns the token identifier of the value of the specified attribute.
css::uno::Reference< css::xml::sax::XFastContextHandler > getFastContextHandler()
Returns the com.sun.star.xml.sax.XFastContextHandler interface of this context.
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &rxAttribs) override
RelationsFragment(XmlFilterBase &rFilter, const RelationsRef &xRelations)
#define SAL_WARN_IF(condition, area, stream)
std::shared_ptr< Relations > RelationsRef
Definition: relations.hxx:63
Relationship