LCOV - code coverage report
Current view: top level - uui/source - services.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 17 18 94.4 %
Date: 2015-06-13 12:38:46 Functions: 1 1 100.0 %
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 <com/sun/star/registry/XRegistryKey.hpp>
      21             : #include <cppu/macros.hxx>
      22             : #include <cppuhelper/factory.hxx>
      23             : #include <rtl/ustring.hxx>
      24             : #include <sal/types.h>
      25             : #include <uno/environment.h>
      26             : 
      27             : #include "requeststringresolver.hxx"
      28             : #include "passwordcontainer.hxx"
      29             : 
      30             : using namespace com::sun::star::uno;
      31             : using namespace com::sun::star::lang;
      32             : using namespace com::sun::star::registry;
      33             : 
      34             : 
      35             : 
      36           2 : extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL uui_component_getFactory(sal_Char const * pImplName,
      37             :                         void * pServiceManager,
      38             :                         void *)
      39             : {
      40           2 :     if (!pImplName)
      41           0 :         return 0;
      42             : 
      43           2 :     void * pRet = 0;
      44             : 
      45             :     Reference< XMultiServiceFactory > xSMgr(
      46           2 :         static_cast< XMultiServiceFactory * >( pServiceManager ) );
      47           4 :     Reference< XSingleServiceFactory > xFactory;
      48             : 
      49             : 
      50             :     // UUI Interaction Request String Resolver.
      51             : 
      52             : 
      53           2 :     if ( rtl_str_compare(pImplName,
      54           2 :                   UUIInteractionRequestStringResolver::m_aImplementationName)
      55             :           == 0)
      56             :     {
      57           2 :         xFactory =
      58             :             cppu::createSingleFactory(
      59             :                 static_cast< XMultiServiceFactory * >(pServiceManager),
      60             :                 OUString::createFromAscii(
      61             :                     UUIInteractionRequestStringResolver::m_aImplementationName),
      62             :                 &UUIInteractionRequestStringResolver::createInstance,
      63           1 :                 UUIInteractionRequestStringResolver::getSupportedServiceNames_static());
      64             :     }
      65             : 
      66             : 
      67             :     // UUI Password Container Interaction Handler.
      68             : 
      69             : 
      70           2 :     else if ( uui::PasswordContainerInteractionHandler::getImplementationName_Static().
      71           2 :                 equalsAscii( pImplName ) )
      72             :     {
      73           2 :         xFactory =
      74           1 :             uui::PasswordContainerInteractionHandler::createServiceFactory( xSMgr );
      75             :     }
      76             : 
      77             : 
      78             : 
      79           2 :     if ( xFactory.is() )
      80             :     {
      81           2 :         xFactory->acquire();
      82           2 :         pRet = xFactory.get();
      83             :     }
      84             : 
      85           4 :     return pRet;
      86             : }
      87             : 
      88             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11