nss: upgrade to release 3.73
[LibreOffice.git] / ucb / source / ucp / webdav / SerfUri.hxx
blobf47b2892e207b1d938b01350c3633d06fc0a9ef1
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 .
21 #ifndef INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFURI_HXX
22 #define INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFURI_HXX
24 #include <apr_uri.h>
25 #include <rtl/ustring.hxx>
26 #include "DAVException.hxx"
28 namespace http_dav_ucp
31 #define DEFAULT_HTTP_PORT 80
32 #define DEFAULT_HTTPS_PORT 443
35 // SerfUri
36 // A URI implementation for use with the neon/expat library
38 class SerfUri
40 private:
41 apr_uri_t mAprUri;
42 OUString mURI;
43 OUString mScheme;
44 OUString mUserInfo;
45 OUString mHostName;
46 sal_Int32 mPort;
47 OUString mPath;
49 void init( const apr_uri_t * pUri );
50 void calculateURI ();
52 public:
53 /// @throws DAVException
54 explicit SerfUri( const OUString & inUri );
55 /// @throws DAVException
56 explicit SerfUri( const apr_uri_t * inUri );
58 bool operator== ( const SerfUri & rOther ) const;
59 bool operator!= ( const SerfUri & rOther ) const
60 { return !operator==( rOther ); }
62 apr_uri_t& getAprUri()
64 return mAprUri;
66 const OUString & GetURI() const
67 { return mURI; };
68 const OUString & GetScheme() const
69 { return mScheme; };
70 const OUString & GetUserInfo() const
71 { return mUserInfo; };
72 const OUString & GetHost() const
73 { return mHostName; };
74 sal_Int32 GetPort() const
75 { return mPort; };
76 const OUString & GetPath() const
77 { return mPath; };
79 OUString GetPathBaseName() const;
81 OUString GetPathBaseNameUnescaped() const;
83 void SetScheme (const OUString& scheme)
84 { mScheme = scheme; calculateURI (); };
86 void AppendPath (const OUString& rPath);
88 static OUString escapeSegment( const OUString& segment );
89 static OUString unescape( const OUString& string );
91 // "host:port", omit ":port" for port 80 and 443
92 static OUString makeConnectionEndPointString(
93 const OUString & rHostName,
94 int nPort );
95 OUString makeConnectionEndPointString() const
96 { return makeConnectionEndPointString( GetHost(), GetPort() ); }
99 } // namespace http_dav_ucp
101 #endif // INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFURI_HXX
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */