Bump version to 6.4-15
[LibreOffice.git] / include / rtl / uri.hxx
blob48f543b2535cacc628c1bde86a33f8583aee9155
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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"
24 #include "rtl/uri.h"
25 #include "rtl/textenc.h"
26 #include "rtl/ustring.hxx"
27 #include "sal/types.h"
29 namespace rtl {
31 /** A wrapper around the C functions from <rtl/uri.h>.
33 class Uri
35 public:
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
62 malformed base URI.
64 static inline rtl::OUString convertRelToAbs(
65 rtl::OUString const & rBaseUriRef, rtl::OUString const & rRelUriRef);
67 private:
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,
84 pCharClass,
85 eMechanism,
86 eCharset,
87 &aResult.pData);
88 return aResult;
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),
99 eMechanism,
100 eCharset,
101 &aResult.pData);
102 return aResult;
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,
111 eMechanism,
112 eCharset,
113 &aResult.pData);
114 return aResult;
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,
125 &aException.pData))
126 throw MalformedUriException(aException);
127 return aResult;
132 #endif // INCLUDED_RTL_URI_HXX
134 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */