1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: pkguri.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
34 #include <rtl/ustring.hxx>
36 namespace package_ucp
{
38 //=========================================================================
40 #define PACKAGE_URL_SCHEME "vnd.sun.star.pkg"
41 #define PACKAGE_ZIP_URL_SCHEME "vnd.sun.star.zip"
42 #define PACKAGE_URL_SCHEME_LENGTH 16
44 //=========================================================================
48 mutable ::rtl::OUString m_aUri
;
49 mutable ::rtl::OUString m_aParentUri
;
50 mutable ::rtl::OUString m_aPackage
;
51 mutable ::rtl::OUString m_aPath
;
52 mutable ::rtl::OUString m_aName
;
53 mutable ::rtl::OUString m_aParam
;
54 mutable ::rtl::OUString m_aScheme
;
55 mutable bool m_bValid
;
61 PackageUri() : m_bValid( false ) {}
62 PackageUri( const ::rtl::OUString
& rPackageUri
)
63 : m_aUri( rPackageUri
), m_bValid( false ) {}
65 sal_Bool
isValid() const
66 { init(); return m_bValid
; }
68 const ::rtl::OUString
& getUri() const
69 { init(); return m_aUri
; }
71 void setUri( const ::rtl::OUString
& rPackageUri
)
72 { m_aPath
= ::rtl::OUString(); m_aUri
= rPackageUri
; m_bValid
= false; }
74 const ::rtl::OUString
& getParentUri() const
75 { init(); return m_aParentUri
; }
77 const ::rtl::OUString
& getPackage() const
78 { init(); return m_aPackage
; }
80 const ::rtl::OUString
& getPath() const
81 { init(); return m_aPath
; }
83 const ::rtl::OUString
& getName() const
84 { init(); return m_aName
; }
86 const ::rtl::OUString
& getParam() const
87 { init(); return m_aParam
; }
89 const ::rtl::OUString
& getScheme() const
90 { init(); return m_aScheme
; }
92 inline sal_Bool
isRootFolder() const;
95 inline sal_Bool
PackageUri::isRootFolder() const
98 return ( ( m_aPath
.getLength() == 1 ) &&
99 ( m_aPath
.getStr()[ 0 ] == sal_Unicode( '/' ) ) );