blob: f47b2892e207b1d938b01350c3633d06fc0a9ef1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFURI_HXX
#define INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFURI_HXX
#include <apr_uri.h>
#include <rtl/ustring.hxx>
#include "DAVException.hxx"
namespace http_dav_ucp
{
#define DEFAULT_HTTP_PORT 80
#define DEFAULT_HTTPS_PORT 443
// SerfUri
// A URI implementation for use with the neon/expat library
class SerfUri
{
private:
apr_uri_t mAprUri;
OUString mURI;
OUString mScheme;
OUString mUserInfo;
OUString mHostName;
sal_Int32 mPort;
OUString mPath;
void init( const apr_uri_t * pUri );
void calculateURI ();
public:
/// @throws DAVException
explicit SerfUri( const OUString & inUri );
/// @throws DAVException
explicit SerfUri( const apr_uri_t * inUri );
bool operator== ( const SerfUri & rOther ) const;
bool operator!= ( const SerfUri & rOther ) const
{ return !operator==( rOther ); }
apr_uri_t& getAprUri()
{
return mAprUri;
}
const OUString & GetURI() const
{ return mURI; };
const OUString & GetScheme() const
{ return mScheme; };
const OUString & GetUserInfo() const
{ return mUserInfo; };
const OUString & GetHost() const
{ return mHostName; };
sal_Int32 GetPort() const
{ return mPort; };
const OUString & GetPath() const
{ return mPath; };
OUString GetPathBaseName() const;
OUString GetPathBaseNameUnescaped() const;
void SetScheme (const OUString& scheme)
{ mScheme = scheme; calculateURI (); };
void AppendPath (const OUString& rPath);
static OUString escapeSegment( const OUString& segment );
static OUString unescape( const OUString& string );
// "host:port", omit ":port" for port 80 and 443
static OUString makeConnectionEndPointString(
const OUString & rHostName,
int nPort );
OUString makeConnectionEndPointString() const
{ return makeConnectionEndPointString( GetHost(), GetPort() ); }
};
} // namespace http_dav_ucp
#endif // INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFURI_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|