Line data Source code
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 : #ifndef INCLUDED_RTL_URI_HXX
21 : #define INCLUDED_RTL_URI_HXX
22 :
23 : #include <rtl/malformeduriexception.hxx>
24 : #include <rtl/uri.h>
25 : #include <rtl/textenc.h>
26 : #include <rtl/ustring.hxx>
27 : #include <sal/types.h>
28 :
29 : namespace rtl {
30 :
31 : /** A wrapper around the C functions from <rtl/uri.h>.
32 : */
33 : class Uri
34 : {
35 : public:
36 : /** A wrapper around rtl_uriEncode() from <rtl/uri.h> (see there), using
37 : an array of 128 booleans as char class.
38 : */
39 : static inline rtl::OUString encode(rtl::OUString const & rText,
40 : sal_Bool const * pCharClass,
41 : rtl_UriEncodeMechanism eMechanism,
42 : rtl_TextEncoding eCharset);
43 :
44 : /** A wrapper around rtl_uriEncode() from <rtl/uri.h> (see there), using
45 : a predefined rtl_UriCharClass enumeration member.
46 : */
47 : static inline rtl::OUString encode(rtl::OUString const & rText,
48 : rtl_UriCharClass eCharClass,
49 : rtl_UriEncodeMechanism eMechanism,
50 : rtl_TextEncoding eCharset);
51 :
52 : /** A wrapper around rtl_uriDecode() from <rtl/uri.h> (see there).
53 : */
54 : static inline rtl::OUString decode(rtl::OUString const & rText,
55 : rtl_UriDecodeMechanism eMechanism,
56 : rtl_TextEncoding eCharset);
57 :
58 : /** A wrapper around rtl_uriConvertRelToAbs() from <rtl/uri.h> (see there).
59 :
60 : @exception MalformedUriException
61 : Thrown in case rtl_uriConvertRelToAbs() signals an exception due to a
62 : malformed base URI.
63 : */
64 : static inline rtl::OUString convertRelToAbs(
65 : rtl::OUString const & rBaseUriRef, rtl::OUString const & rRelUriRef);
66 :
67 : private:
68 : Uri() SAL_DELETED_FUNCTION;
69 :
70 : Uri(Uri &) SAL_DELETED_FUNCTION;
71 :
72 : ~Uri() SAL_DELETED_FUNCTION;
73 :
74 : void operator =(Uri) SAL_DELETED_FUNCTION;
75 : };
76 :
77 1 : inline rtl::OUString Uri::encode(rtl::OUString const & rText,
78 : sal_Bool const * pCharClass,
79 : rtl_UriEncodeMechanism eMechanism,
80 : rtl_TextEncoding eCharset)
81 : {
82 1 : rtl::OUString aResult;
83 : rtl_uriEncode(const_cast< rtl::OUString & >(rText).pData,
84 : pCharClass,
85 : eMechanism,
86 : eCharset,
87 1 : &aResult.pData);
88 1 : return aResult;
89 : }
90 :
91 18338 : inline rtl::OUString Uri::encode(rtl::OUString const & rText,
92 : rtl_UriCharClass eCharClass,
93 : rtl_UriEncodeMechanism eMechanism,
94 : rtl_TextEncoding eCharset)
95 : {
96 18338 : rtl::OUString aResult;
97 : rtl_uriEncode(const_cast< rtl::OUString & >(rText).pData,
98 : rtl_getUriCharClass(eCharClass),
99 : eMechanism,
100 : eCharset,
101 18338 : &aResult.pData);
102 18338 : return aResult;
103 : }
104 :
105 145566 : inline rtl::OUString Uri::decode(rtl::OUString const & rText,
106 : rtl_UriDecodeMechanism eMechanism,
107 : rtl_TextEncoding eCharset)
108 : {
109 145566 : rtl::OUString aResult;
110 : rtl_uriDecode(const_cast< rtl::OUString & >(rText).pData,
111 : eMechanism,
112 : eCharset,
113 145566 : &aResult.pData);
114 145566 : return aResult;
115 : }
116 :
117 79922 : inline rtl::OUString Uri::convertRelToAbs(rtl::OUString const & rBaseUriRef,
118 : rtl::OUString const & rRelUriRef)
119 : {
120 79922 : rtl::OUString aResult;
121 159844 : rtl::OUString aException;
122 79922 : if (!rtl_uriConvertRelToAbs(
123 : const_cast< rtl::OUString & >(rBaseUriRef).pData,
124 : const_cast< rtl::OUString & >(rRelUriRef).pData, &aResult.pData,
125 79922 : &aException.pData))
126 1 : throw MalformedUriException(aException);
127 159842 : return aResult;
128 : }
129 :
130 : }
131 :
132 : #endif // INCLUDED_RTL_URI_HXX
133 :
134 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|