LCOV - code coverage report
Current view: top level - ucb/source/ucp/package - pkguri.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 21 25 84.0 %
Date: 2014-04-11 Functions: 11 14 78.6 %
Legend: Lines: hit not hit

          Line data    Source code
       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             : #ifndef _PKGURI_HXX
      21             : #define _PKGURI_HXX
      22             : 
      23             : #include <rtl/ustring.hxx>
      24             : 
      25             : namespace package_ucp {
      26             : 
      27             : 
      28             : 
      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
      32             : 
      33             : 
      34             : 
      35         122 : class PackageUri
      36             : {
      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;
      45             : 
      46             : private:
      47             :     void init() const;
      48             : 
      49             : public:
      50             :     PackageUri() : m_bValid( false ) {}
      51          72 :     PackageUri( const OUString & rPackageUri )
      52          72 :     : m_aUri( rPackageUri ), m_bValid( false ) {}
      53             : 
      54          27 :     sal_Bool isValid() const
      55          27 :     { init(); return m_bValid; }
      56             : 
      57          52 :     const OUString & getUri() const
      58          52 :     { init(); return m_aUri; }
      59             : 
      60           0 :     void setUri( const OUString & rPackageUri )
      61           0 :     { m_aPath = OUString(); m_aUri = rPackageUri; m_bValid = false; }
      62             : 
      63           0 :     const OUString & getParentUri() const
      64           0 :     { init(); return m_aParentUri; }
      65             : 
      66          81 :     const OUString & getPackage() const
      67          81 :     { init(); return m_aPackage; }
      68             : 
      69         114 :     const OUString & getPath() const
      70         114 :     { init(); return m_aPath; }
      71             : 
      72          33 :     const OUString & getName() const
      73          33 :     { init(); return m_aName; }
      74             : 
      75          33 :     const OUString & getParam() const
      76          33 :     { init(); return m_aParam; }
      77             : 
      78          41 :     const OUString & getScheme() const
      79          41 :     { init(); return m_aScheme; }
      80             : 
      81             :     inline sal_Bool isRootFolder() const;
      82             : };
      83             : 
      84          39 : inline sal_Bool PackageUri::isRootFolder() const
      85             : {
      86          39 :     init();
      87          59 :     return ( ( m_aPath.getLength() == 1 ) &&
      88          59 :              ( m_aPath.getStr()[ 0 ] == sal_Unicode( '/' ) ) );
      89             : }
      90             : 
      91             : }
      92             : 
      93             : #endif
      94             : 
      95             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10