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 "interactionhandler.hxx"
28 : #include "requeststringresolver.hxx"
29 : #include "passwordcontainer.hxx"
30 :
31 : using namespace com::sun::star::uno;
32 : using namespace com::sun::star::lang;
33 : using namespace com::sun::star::registry;
34 :
35 :
36 :
37 12 : extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL uui_component_getFactory(sal_Char const * pImplName,
38 : void * pServiceManager,
39 : void *)
40 : {
41 12 : if (!pImplName)
42 0 : return 0;
43 :
44 12 : void * pRet = 0;
45 :
46 : Reference< XMultiServiceFactory > xSMgr(
47 12 : reinterpret_cast< XMultiServiceFactory * >( pServiceManager ) );
48 24 : Reference< XSingleServiceFactory > xFactory;
49 :
50 : //////////////////////////////////////////////////////////////////////
51 : // UUI Interaction Handler.
52 : //////////////////////////////////////////////////////////////////////
53 :
54 12 : if ( rtl_str_compare(pImplName,
55 12 : UUIInteractionHandler::m_aImplementationName)
56 : == 0)
57 : {
58 24 : xFactory =
59 : cppu::createSingleFactory(
60 : static_cast< XMultiServiceFactory * >(pServiceManager),
61 : OUString::createFromAscii(
62 : UUIInteractionHandler::m_aImplementationName),
63 : &UUIInteractionHandler::createInstance,
64 12 : UUIInteractionHandler::getSupportedServiceNames_static());
65 : }
66 :
67 : //////////////////////////////////////////////////////////////////////
68 : // UUI Interaction Request String Resolver.
69 : //////////////////////////////////////////////////////////////////////
70 :
71 0 : else if ( rtl_str_compare(pImplName,
72 0 : UUIInteractionRequestStringResolver::m_aImplementationName)
73 : == 0)
74 : {
75 0 : xFactory =
76 : cppu::createSingleFactory(
77 : static_cast< XMultiServiceFactory * >(pServiceManager),
78 : OUString::createFromAscii(
79 : UUIInteractionRequestStringResolver::m_aImplementationName),
80 : &UUIInteractionRequestStringResolver::createInstance,
81 0 : UUIInteractionRequestStringResolver::getSupportedServiceNames_static());
82 : }
83 :
84 : //////////////////////////////////////////////////////////////////////
85 : // UUI Password Container Interaction Handler.
86 : //////////////////////////////////////////////////////////////////////
87 :
88 0 : else if ( uui::PasswordContainerInteractionHandler::getImplementationName_Static().
89 0 : compareToAscii( pImplName ) == 0 )
90 : {
91 0 : xFactory =
92 0 : uui::PasswordContainerInteractionHandler::createServiceFactory( xSMgr );
93 : }
94 :
95 : //////////////////////////////////////////////////////////////////////
96 :
97 12 : if ( xFactory.is() )
98 : {
99 12 : xFactory->acquire();
100 12 : pRet = xFactory.get();
101 : }
102 :
103 24 : return pRet;
104 : }
105 :
106 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|