1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_RTL_URI_HXX
21 #define INCLUDED_RTL_URI_HXX
23 #include "rtl/malformeduriexception.hxx"
25 #include "rtl/textenc.h"
26 #include "rtl/ustring.hxx"
27 #include "sal/types.h"
31 /** A wrapper around the C functions from <rtl/uri.h>.
36 /** A wrapper around rtl_uriEncode() from <rtl/uri.h> (see there), using
37 an array of 128 booleans as char class.
39 static inline rtl::OUString
encode(rtl::OUString
const & rText
,
40 sal_Bool
const * pCharClass
,
41 rtl_UriEncodeMechanism eMechanism
,
42 rtl_TextEncoding eCharset
);
44 /** A wrapper around rtl_uriEncode() from <rtl/uri.h> (see there), using
45 a predefined rtl_UriCharClass enumeration member.
47 static inline rtl::OUString
encode(rtl::OUString
const & rText
,
48 rtl_UriCharClass eCharClass
,
49 rtl_UriEncodeMechanism eMechanism
,
50 rtl_TextEncoding eCharset
);
52 /** A wrapper around rtl_uriDecode() from <rtl/uri.h> (see there).
54 static inline rtl::OUString
decode(rtl::OUString
const & rText
,
55 rtl_UriDecodeMechanism eMechanism
,
56 rtl_TextEncoding eCharset
);
58 /** A wrapper around rtl_uriConvertRelToAbs() from <rtl/uri.h> (see there).
60 @exception MalformedUriException
61 Thrown in case rtl_uriConvertRelToAbs() signals an exception due to a
64 static inline rtl::OUString
convertRelToAbs(
65 rtl::OUString
const & rBaseUriRef
, rtl::OUString
const & rRelUriRef
);
68 Uri() SAL_DELETED_FUNCTION
;
70 Uri(Uri
&) SAL_DELETED_FUNCTION
;
72 ~Uri() SAL_DELETED_FUNCTION
;
74 void operator =(Uri
) SAL_DELETED_FUNCTION
;
77 inline rtl::OUString
Uri::encode(rtl::OUString
const & rText
,
78 sal_Bool
const * pCharClass
,
79 rtl_UriEncodeMechanism eMechanism
,
80 rtl_TextEncoding eCharset
)
82 rtl::OUString aResult
;
83 rtl_uriEncode(const_cast< rtl::OUString
& >(rText
).pData
,
91 inline rtl::OUString
Uri::encode(rtl::OUString
const & rText
,
92 rtl_UriCharClass eCharClass
,
93 rtl_UriEncodeMechanism eMechanism
,
94 rtl_TextEncoding eCharset
)
96 rtl::OUString aResult
;
97 rtl_uriEncode(const_cast< rtl::OUString
& >(rText
).pData
,
98 rtl_getUriCharClass(eCharClass
),
105 inline rtl::OUString
Uri::decode(rtl::OUString
const & rText
,
106 rtl_UriDecodeMechanism eMechanism
,
107 rtl_TextEncoding eCharset
)
109 rtl::OUString aResult
;
110 rtl_uriDecode(const_cast< rtl::OUString
& >(rText
).pData
,
117 inline rtl::OUString
Uri::convertRelToAbs(rtl::OUString
const & rBaseUriRef
,
118 rtl::OUString
const & rRelUriRef
)
120 rtl::OUString aResult
;
121 rtl::OUString aException
;
122 if (!rtl_uriConvertRelToAbs(
123 const_cast< rtl::OUString
& >(rBaseUriRef
).pData
,
124 const_cast< rtl::OUString
& >(rRelUriRef
).pData
, &aResult
.pData
,
126 throw MalformedUriException(aException
);
132 #endif // INCLUDED_RTL_URI_HXX
134 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */