Coverage Report

Created: 2026-07-10 11:04

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/include/rtl/uri.hxx
Line
Count
Source
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
/*
21
 * This file is part of LibreOffice published API.
22
 */
23
24
#ifndef INCLUDED_RTL_URI_HXX
25
#define INCLUDED_RTL_URI_HXX
26
27
#include "rtl/malformeduriexception.hxx"
28
#include "rtl/uri.h"
29
#include "rtl/textenc.h"
30
#include "rtl/ustring.hxx"
31
#include "sal/types.h"
32
33
#if defined LIBO_INTERNAL_ONLY
34
#include <array>
35
#include <cassert>
36
#include <cstddef>
37
#include <string_view>
38
#include "config_global.h"
39
#endif
40
41
namespace rtl {
42
43
/** A wrapper around the C functions from <rtl/uri.h>.
44
 */
45
class Uri
46
{
47
public:
48
    /** A wrapper around rtl_uriEncode() from <rtl/uri.h> (see there), using
49
        an array of 128 booleans as char class.
50
     */
51
    static inline rtl::OUString encode(rtl::OUString const & rText,
52
                                       sal_Bool const * pCharClass,
53
                                       rtl_UriEncodeMechanism eMechanism,
54
                                       rtl_TextEncoding eCharset);
55
56
    /** A wrapper around rtl_uriEncode() from <rtl/uri.h> (see there), using
57
        a predefined rtl_UriCharClass enumeration member.
58
     */
59
    static inline rtl::OUString encode(rtl::OUString const & rText,
60
                                       rtl_UriCharClass eCharClass,
61
                                       rtl_UriEncodeMechanism eMechanism,
62
                                       rtl_TextEncoding eCharset);
63
64
    /** A wrapper around rtl_uriDecode() from <rtl/uri.h> (see there).
65
     */
66
    static inline rtl::OUString decode(rtl::OUString const & rText,
67
                                       rtl_UriDecodeMechanism eMechanism,
68
                                       rtl_TextEncoding eCharset);
69
70
    /** A wrapper around rtl_uriConvertRelToAbs() from <rtl/uri.h> (see there).
71
72
        @exception MalformedUriException
73
        Thrown in case rtl_uriConvertRelToAbs() signals an exception due to a
74
        malformed base URI.
75
     */
76
    static inline rtl::OUString convertRelToAbs(
77
        rtl::OUString const & rBaseUriRef, rtl::OUString const & rRelUriRef);
78
79
private:
80
    Uri() SAL_DELETED_FUNCTION;
81
82
    Uri(Uri &) SAL_DELETED_FUNCTION;
83
84
    ~Uri() SAL_DELETED_FUNCTION;
85
86
    void operator =(Uri) SAL_DELETED_FUNCTION;
87
};
88
89
inline rtl::OUString Uri::encode(rtl::OUString const & rText,
90
                                 sal_Bool const * pCharClass,
91
                                 rtl_UriEncodeMechanism eMechanism,
92
                                 rtl_TextEncoding eCharset)
93
102k
{
94
102k
    rtl::OUString aResult;
95
102k
    rtl_uriEncode(rText.pData,
96
102k
                  pCharClass,
97
102k
                  eMechanism,
98
102k
                  eCharset,
99
102k
                  &aResult.pData);
100
102k
    return aResult;
101
102k
}
102
103
inline rtl::OUString Uri::encode(rtl::OUString const & rText,
104
                                 rtl_UriCharClass eCharClass,
105
                                 rtl_UriEncodeMechanism eMechanism,
106
                                 rtl_TextEncoding eCharset)
107
275
{
108
275
    rtl::OUString aResult;
109
275
    rtl_uriEncode(rText.pData,
110
275
                  rtl_getUriCharClass(eCharClass),
111
275
                  eMechanism,
112
275
                  eCharset,
113
275
                  &aResult.pData);
114
275
    return aResult;
115
275
}
116
117
inline rtl::OUString Uri::decode(rtl::OUString const & rText,
118
                                 rtl_UriDecodeMechanism eMechanism,
119
                                 rtl_TextEncoding eCharset)
120
790k
{
121
790k
    rtl::OUString aResult;
122
790k
    rtl_uriDecode(rText.pData,
123
790k
                  eMechanism,
124
790k
                  eCharset,
125
790k
                  &aResult.pData);
126
790k
    return aResult;
127
790k
}
128
129
inline rtl::OUString Uri::convertRelToAbs(rtl::OUString const & rBaseUriRef,
130
                                          rtl::OUString const & rRelUriRef)
131
12.7k
{
132
12.7k
    rtl::OUString aResult;
133
12.7k
    rtl::OUString aException;
134
12.7k
    if (!rtl_uriConvertRelToAbs(
135
12.7k
            rBaseUriRef.pData,
136
12.7k
            rRelUriRef.pData, &aResult.pData,
137
12.7k
            &aException.pData))
138
8.73k
        throw MalformedUriException(aException);
139
4.00k
    return aResult;
140
12.7k
}
141
142
#if defined LIBO_INTERNAL_ONLY
143
144
constexpr std::size_t UriCharClassSize = 128;
145
146
// Create a char class (for use with rtl_uriEncode and rtl::Uri::encode), represented as a
147
// compile-time std::array, from an UTF-8 string literal.
148
//
149
// The given `unencoded` lists each ASCII character once that shall not be encoded.  (It uses an
150
// UTF-8 string type to emphasize that its characters' values are always interpreted as ASCII
151
// values.)
152
#if HAVE_CPP_CONSTEVAL
153
consteval
154
#else
155
constexpr
156
#endif
157
auto createUriCharClass(std::u8string_view unencoded)
158
0
{
159
0
    std::array<sal_Bool, UriCharClassSize> a = {};
160
0
    for (auto c: unencoded) {
161
0
        assert(!a[c]); // would presumably indicate a typo in the `unencoded` argument
162
0
        a[c] = true;
163
0
    }
164
0
    return a;
165
0
}
166
167
#endif
168
169
}
170
171
#endif // INCLUDED_RTL_URI_HXX
172
173
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */