LibreOffice
LibreOffice 24.2 SDK C/C++ API Reference
uri.h
Go to the documentation of this file.
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_H
25 #define INCLUDED_RTL_URI_H
26 
27 #include "sal/config.h"
28 
29 #include "rtl/textenc.h"
30 #include "rtl/ustring.h"
31 #include "sal/saldllapi.h"
32 #include "sal/types.h"
33 
34 #if defined __cplusplus
35 extern "C" {
36 #endif /* __cplusplus */
37 
49 typedef enum
50 {
56 
67 
78 
88 
98 
108 
118 
126 
128 }
130 
134 typedef enum
135 {
144 
155 
166 
173 
185 
187 }
189 
193 typedef enum
194 {
198 
207 
214 
221 
223 }
225 
237 SAL_DLLPUBLIC sal_Bool const * SAL_CALL rtl_getUriCharClass(rtl_UriCharClass eCharClass)
239 
274 SAL_DLLPUBLIC void SAL_CALL rtl_uriEncode(
275  rtl_uString * pText,
276  sal_Bool const * pCharClass,
277  rtl_UriEncodeMechanism eMechanism,
278  rtl_TextEncoding eCharset,
279  rtl_uString ** pResult)
281 
312 SAL_DLLPUBLIC void SAL_CALL rtl_uriDecode(
313  rtl_uString * pText,
314  rtl_UriDecodeMechanism eMechanism,
315  rtl_TextEncoding eCharset,
316  rtl_uString ** pResult)
318 
350  rtl_uString * pBaseUriRef,
351  rtl_uString * pRelUriRef,
352  rtl_uString ** pResult,
353  rtl_uString ** pException)
355 
356 #if defined __cplusplus
357 }
358 #endif /* __cplusplus */
359 
360 #endif // INCLUDED_RTL_URI_H
361 
362 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define SAL_THROW_EXTERN_C()
Nothrow specification for C functions.
Definition: types.h:334
The empty char class.
Definition: uri.h:55
The text is returned completely unmodified.
Definition: uri.h:197
All escape sequences ('' followed by two hex digits) are resolved in a first step; only those that re...
Definition: uri.h:165
Definition: uri.h:222
#define SAL_DLLPUBLIC
Definition: saldllapi.h:34
The text is returned in the form of an IURI (cf.
Definition: uri.h:206
The RFC 2396 <uric_no_slash> char class.
Definition: uri.h:77
rtl_UriCharClass
Various predefined URI &#39;char classes.
Definition: uri.h:49
The RFC 2396 <reg_name> char class.
Definition: uri.h:97
The char class for the values of uno URL parameters.
Definition: uri.h:125
The text is decoded.
Definition: uri.h:213
SAL_DLLPUBLIC void rtl_uriEncode(rtl_uString *pText, sal_Bool const *pCharClass, rtl_UriEncodeMechanism eMechanism, rtl_TextEncoding eCharset, rtl_uString **pResult) SAL_THROW_EXTERN_C()
Encode a text as (part of) a URI.
unsigned char sal_Bool
Definition: types.h:38
Definition: uri.h:186
rtl_UriDecodeMechanism
The mechanism describing how rtl_uriDecode() translates (part of) a URI into a Unicode string...
Definition: uri.h:193
sal_uInt16 rtl_TextEncoding
The various supported text encodings.
Definition: textenc.h:37
The RFC 2396 <userinfo> char class.
Definition: uri.h:107
The RFC 2396 <pchar> char class.
Definition: uri.h:117
Like rtl_UriEncodeKeepEscapes, but indicating failure when converting unmappable characters.
Definition: uri.h:184
Like rtl_UriEncodeIgnoreEscapes, but indicating failure when converting unmappable characters...
Definition: uri.h:172
SAL_DLLPUBLIC void rtl_uriDecode(rtl_uString *pText, rtl_UriDecodeMechanism eMechanism, rtl_TextEncoding eCharset, rtl_uString **pResult) SAL_THROW_EXTERN_C()
Decode (a part of) a URI.
SAL_DLLPUBLIC sal_Bool rtl_uriConvertRelToAbs(rtl_uString *pBaseUriRef, rtl_uString *pRelUriRef, rtl_uString **pResult, rtl_uString **pException) SAL_THROW_EXTERN_C()
Convert a relative URI reference into an absolute URI.
The RFC 2396 <rel_segment> char class.
Definition: uri.h:87
SAL_DLLPUBLIC sal_Bool const * rtl_getUriCharClass(rtl_UriCharClass eCharClass) SAL_THROW_EXTERN_C()
Map a predefined rtl_UriCharClass to a form usable by rtl_uriEncode().
#define SAL_MAX_ENUM
Definition: types.h:205
rtl_UriEncodeMechanism
The mechanism describing how escape sequences in the input of rtl_uriEncode() are handled...
Definition: uri.h:134
The RFC 2732 <uric> char class.
Definition: uri.h:66
Like rtl_UriDecodeWithCharset, but indicating failure when converting unmappable characters.
Definition: uri.h:220
All escape sequences (&#39;&#39; followed by two hex digits) are kept intact, even if they represent characte...
Definition: uri.h:154
The special meaning of &#39;&#39; is ignored (i.e., there are by definition no escape sequences in the input)...
Definition: uri.h:143