LCOV - code coverage report
Current view: top level - ucbhelper/source/provider - contentidentifier.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 22 38 57.9 %
Date: 2014-11-03 Functions: 8 12 66.7 %
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             : 
      21             : /**************************************************************************
      22             :                                 TODO
      23             :  **************************************************************************
      24             : 
      25             :  *************************************************************************/
      26             : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
      27             : #include <ucbhelper/contentidentifier.hxx>
      28             : #include <cppuhelper/typeprovider.hxx>
      29             : #include <osl/mutex.hxx>
      30             : 
      31             : using namespace com::sun::star::uno;
      32             : using namespace com::sun::star::lang;
      33             : using namespace com::sun::star::ucb;
      34             : 
      35             : 
      36             : namespace ucbhelper
      37             : {
      38             : 
      39             : 
      40             : 
      41             : 
      42             : // struct ContentIdentifier_Impl.
      43             : 
      44             : 
      45             : 
      46             : 
      47         882 : struct ContentIdentifier_Impl
      48             : {
      49             :     OUString                          m_aContentId;
      50             :     OUString                          m_aProviderScheme;
      51             :     osl::Mutex                        m_aMutex;
      52             : 
      53             :     ContentIdentifier_Impl( const OUString& rURL );
      54             : };
      55             : 
      56             : 
      57             : 
      58             : // ContentIdentifier_Impl Implementation.
      59             : 
      60             : 
      61             : 
      62         882 : ContentIdentifier_Impl::ContentIdentifier_Impl(const OUString& rURL )
      63             : {
      64             :     // Normalize URL scheme ( it's case insensitive ).
      65             : 
      66             :     // The content provider scheme is the part before the first ':'
      67             :     // within the content id.
      68         882 :     sal_Int32 nPos = rURL.indexOf( ':', 0 );
      69         882 :     if ( nPos != -1 )
      70             :     {
      71         882 :         OUString aScheme( rURL.copy( 0, nPos ) );
      72         882 :         m_aProviderScheme = aScheme.toAsciiLowerCase();
      73         882 :         m_aContentId = rURL.replaceAt( 0, nPos, aScheme );
      74             :     }
      75         882 : }
      76             : 
      77             : 
      78             : 
      79             : // ContentIdentifier Implementation.
      80             : 
      81             : 
      82             : 
      83         882 : ContentIdentifier::ContentIdentifier( const OUString& rURL )
      84             : {
      85         882 :     m_pImpl = new ContentIdentifier_Impl( rURL );
      86         882 : }
      87             : 
      88             : 
      89             : // virtual
      90        2646 : ContentIdentifier::~ContentIdentifier()
      91             : {
      92         882 :     delete m_pImpl;
      93        1764 : }
      94             : 
      95             : 
      96             : 
      97             : // XInterface methods.
      98             : 
      99             : 
     100             : 
     101             : 
     102             : // virtual
     103        2570 : void SAL_CALL ContentIdentifier::acquire() throw()
     104             : {
     105        2570 :     OWeakObject::acquire();
     106        2570 : }
     107             : 
     108             : 
     109             : // virtual
     110        2570 : void SAL_CALL ContentIdentifier::release() throw()
     111             : {
     112        2570 :     OWeakObject::release();
     113        2570 : }
     114             : 
     115             : 
     116             : // virtual
     117             : Any SAL_CALL
     118           0 : ContentIdentifier::queryInterface( const Type & rType )
     119             :     throw ( RuntimeException, std::exception )
     120             : {
     121             :     Any aRet = cppu::queryInterface( rType,
     122             :                 static_cast< XTypeProvider * >( this ),
     123           0 :                 static_cast< XContentIdentifier * >( this ) );
     124             : 
     125           0 :     return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
     126             : }
     127             : 
     128             : 
     129             : 
     130             : // XTypeProvider methods.
     131             : 
     132             : 
     133             : 
     134             : // virtual
     135             : Sequence< sal_Int8 > SAL_CALL
     136           0 : ContentIdentifier::getImplementationId()
     137             :     throw( RuntimeException, std::exception )
     138             : {
     139           0 :     return css::uno::Sequence<sal_Int8>();
     140             : }
     141             : 
     142             : 
     143             : // virtual
     144             : Sequence< com::sun::star::uno::Type > SAL_CALL
     145           0 : ContentIdentifier::getTypes()
     146             :     throw( RuntimeException, std::exception )
     147             : {
     148             :     static cppu::OTypeCollection* pCollection = NULL;
     149           0 :       if ( !pCollection )
     150             :       {
     151           0 :         osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
     152           0 :         if ( !pCollection )
     153             :         {
     154             :             static cppu::OTypeCollection collection(
     155           0 :                     cppu::UnoType<XTypeProvider>::get(),
     156           0 :                     cppu::UnoType<XContentIdentifier>::get() );
     157           0 :             pCollection = &collection;
     158           0 :         }
     159             :     }
     160           0 :     return (*pCollection).getTypes();
     161             : }
     162             : 
     163             : 
     164             : 
     165             : // XContentIdentifier methods.
     166             : 
     167             : 
     168             : 
     169             : // virtual
     170        3020 : OUString SAL_CALL ContentIdentifier::getContentIdentifier()
     171             :     throw( RuntimeException, std::exception )
     172             : {
     173        3020 :     return m_pImpl->m_aContentId;
     174             : }
     175             : 
     176             : 
     177             : // virtual
     178           0 : OUString SAL_CALL ContentIdentifier::getContentProviderScheme()
     179             :     throw( RuntimeException, std::exception )
     180             : {
     181           0 :     return m_pImpl->m_aProviderScheme;
     182             : }
     183             : 
     184             : } /* namespace ucbhelper */
     185             : 
     186             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10