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_UCB_SOURCE_UCP_PACKAGE_PKGURI_HXX
21 #define INCLUDED_UCB_SOURCE_UCP_PACKAGE_PKGURI_HXX
23 #include <rtl/ustring.hxx>
25 namespace package_ucp
{
29 #define PACKAGE_URL_SCHEME "vnd.sun.star.pkg"
30 #define PACKAGE_ZIP_URL_SCHEME "vnd.sun.star.zip"
31 #define PACKAGE_URL_SCHEME_LENGTH 16
37 mutable OUString m_aUri
;
38 mutable OUString m_aParentUri
;
39 mutable OUString m_aPackage
;
40 mutable OUString m_aPath
;
41 mutable OUString m_aName
;
42 mutable OUString m_aParam
;
43 mutable OUString m_aScheme
;
44 mutable bool m_bValid
;
50 PackageUri() : m_bValid( false ) {}
51 PackageUri( const OUString
& rPackageUri
)
52 : m_aUri( rPackageUri
), m_bValid( false ) {}
55 { init(); return m_bValid
; }
57 const OUString
& getUri() const
58 { init(); return m_aUri
; }
60 void setUri( const OUString
& rPackageUri
)
61 { m_aPath
.clear(); m_aUri
= rPackageUri
; m_bValid
= false; }
63 const OUString
& getParentUri() const
64 { init(); return m_aParentUri
; }
66 const OUString
& getPackage() const
67 { init(); return m_aPackage
; }
69 const OUString
& getPath() const
70 { init(); return m_aPath
; }
72 const OUString
& getName() const
73 { init(); return m_aName
; }
75 const OUString
& getParam() const
76 { init(); return m_aParam
; }
78 const OUString
& getScheme() const
79 { init(); return m_aScheme
; }
81 inline bool isRootFolder() const;
84 inline bool PackageUri::isRootFolder() const
87 return ( ( m_aPath
.getLength() == 1 ) &&
88 ( m_aPath
.getStr()[ 0 ] == sal_Unicode( '/' ) ) );
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */