blob: 166652afe5e87676150ab770e3003dabe77171ab (
plain)
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
|
/* -*- 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 .
*/
#ifndef INCLUDED_OOX_CORE_RELATIONS_HXX
#define INCLUDED_OOX_CORE_RELATIONS_HXX
#include <cstddef>
#include <map>
#include <memory>
#include <string_view>
#include <oox/dllapi.h>
#include <rtl/ustring.hxx>
namespace oox::core {
/** Expands to an OUString containing an 'officeDocument' transitional relation type created
from the passed literal(!) ASCII(!) character array. */
#define CREATE_OFFICEDOC_RELATION_TYPE( ascii ) \
( u"http://schemas.openxmlformats.org/officeDocument/2006/relationships/" ascii )
/** Expands to an OUString containing an 'officeDocument' strict relation type created
from the passed literal(!) ASCII(!) character array. */
#define CREATE_OFFICEDOC_RELATION_TYPE_STRICT( ascii ) \
( "http://purl.oclc.org/ooxml/officeDocument/relationships/" ascii )
/** Expands to an OUString containing an MS Office specific relation type
created from the passed literal(!) ASCII(!) character array. */
#define CREATE_MSOFFICE_RELATION_TYPE( ascii ) \
( u"http://schemas.microsoft.com/office/2006/relationships/" ascii )
#define CREATE_XL_CONTENT_TYPE( ascii ) \
( "application/vnd.openxmlformats-officedocument.spreadsheetml." ascii "+xml" )
struct Relation
{
OUString maId;
OUString maType;
OUString maTarget;
bool mbExternal;
Relation() : mbExternal( false ) {}
};
class Relations;
typedef std::shared_ptr< Relations > RelationsRef;
class OOX_DLLPUBLIC Relations
{
public:
explicit Relations( const OUString& rFragmentPath );
size_t size() const { return maMap.size(); }
size_t count( const OUString& rId ) const { return maMap.count( rId ); }
::std::map< OUString, Relation >::const_iterator begin() const
{
return maMap.begin();
}
::std::map< OUString, Relation >::const_iterator end() const
{
return maMap.end();
}
template<class... Args>
void emplace(Args&&... args)
{
maMap.emplace(std::forward<Args>(args)...);
}
/** Returns the path of the fragment this relations collection is related to. */
const OUString& getFragmentPath() const { return maFragmentPath; }
/** Returns the relation with the passed relation identifier. */
const Relation* getRelationFromRelId( const OUString& rId ) const;
/** Returns the first relation with the passed type. */
const Relation* getRelationFromFirstType( std::u16string_view rType ) const;
/** Finds all relations associated with the passed type. */
RelationsRef getRelationsFromTypeFromOfficeDoc( std::u16string_view rType ) const;
/** Returns the external target of the relation with the passed relation identifier. */
OUString getExternalTargetFromRelId( const OUString& rRelId ) const;
/** Returns the internal target of the relation with the passed relation identifier. */
OUString getInternalTargetFromRelId( const OUString& rRelId ) const;
/** Returns the full fragment path for the target of the passed relation. */
OUString getFragmentPathFromRelation( const Relation& rRelation ) const;
/** Returns the full fragment path for the passed relation identifier. */
OUString getFragmentPathFromRelId( const OUString& rRelId ) const;
/** Returns the full fragment path for the first relation of the passed type. */
OUString getFragmentPathFromFirstType( std::u16string_view rType ) const;
OUString getFragmentPathFromFirstTypeFromOfficeDoc( std::u16string_view rType ) const;
private:
::std::map< OUString, Relation > maMap;
OUString maFragmentPath;
};
} // namespace oox::core
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|