LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/framework/source/services - mediatypedetectionhelper.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 1 18 5.6 %
Date: 2013-07-09 Functions: 1 12 8.3 %
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             : #include <services/mediatypedetectionhelper.hxx>
      21             : #include <services.h>
      22             : #include <svl/inettype.hxx>
      23             : #include <tools/string.hxx>
      24             : #include <rtl/logfile.hxx>
      25             : 
      26             : namespace framework
      27             : {
      28             : 
      29             : using namespace ::com::sun::star        ;
      30             : using namespace ::rtl                   ;
      31             : 
      32             : //*****************************************************************************************************************
      33             : //  constructor
      34             : //*****************************************************************************************************************
      35           0 : MediaTypeDetectionHelper::MediaTypeDetectionHelper( const uno::Reference< lang::XMultiServiceFactory >& xFactory )
      36           0 :     : m_xFactory( xFactory )
      37             : {
      38           0 : }
      39             : 
      40             : //*****************************************************************************************************************
      41             : //  destructor
      42             : //*****************************************************************************************************************
      43           0 : MediaTypeDetectionHelper::~MediaTypeDetectionHelper()
      44             : {
      45           0 : }
      46             : 
      47          44 : DEFINE_XSERVICEINFO_ONEINSTANCESERVICE  (   MediaTypeDetectionHelper
      48             :                                         , ::cppu::OWeakObject
      49             :                                         , "com.sun.star.frame.MediaTypeDetectionHelper"
      50             :                                         , IMPLEMENTATIONNAME_MEDIATYPEDETECTIONHELPER
      51             :                                     )
      52             : 
      53           0 : DEFINE_INIT_SERVICE                 (   MediaTypeDetectionHelper,
      54             :                                         {
      55             :                                         }
      56             :                                     )
      57             : 
      58             : //*****************************************************************************************************************
      59             : //   XStringMapping
      60             : //*****************************************************************************************************************
      61             : 
      62           0 : sal_Bool SAL_CALL MediaTypeDetectionHelper::mapStrings(
      63             :         uno::Sequence< OUString >& rSeq )
      64             :         throw(uno::RuntimeException)
      65             : {
      66           0 :     sal_Bool bModified = sal_False;
      67           0 :     for( sal_Int32 i = rSeq.getLength(); i--; )
      68             :     {
      69             : 
      70           0 :         OUString& rUrl = rSeq[i];
      71           0 :         INetContentType eType = INetContentTypes::GetContentTypeFromURL( rUrl );
      72             : 
      73           0 :         OUString aType( INetContentTypes::GetContentType( eType ) );
      74           0 :         if (!aType.isEmpty())
      75             :         {
      76           0 :             rUrl = aType;
      77           0 :             bModified = sal_True;
      78             :         }
      79           0 :     }
      80           0 :     return bModified;
      81             : }
      82             : 
      83             : }   // namespace framework
      84             : 
      85             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10