merge the formfield patch from ooo-build
[ooovba.git] / comphelper / source / processfactory / processfactory.cxx
blobebbc31dd9109f345e96fd802fc2c787318091f34
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: processfactory.cxx,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_comphelper.hxx"
33 #include <osl/mutex.hxx>
34 #include <comphelper/processfactory.hxx>
35 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
37 #include "com/sun/star/beans/XPropertySet.hpp"
40 using namespace ::com::sun::star;
41 using namespace com::sun::star::uno;
42 using namespace com::sun::star::lang;
43 using namespace osl;
45 namespace comphelper
49 This function preserves only that the xProcessFactory variable will not be create when
50 the library is loaded.
52 Reference< XMultiServiceFactory > localProcessFactory( const Reference< XMultiServiceFactory >& xSMgr, sal_Bool bSet )
54 Guard< Mutex > aGuard( Mutex::getGlobalMutex() );
56 static Reference< XMultiServiceFactory > xProcessFactory;
57 if ( bSet )
59 xProcessFactory = xSMgr;
62 return xProcessFactory;
66 void setProcessServiceFactory(const Reference< XMultiServiceFactory >& xSMgr)
68 localProcessFactory( xSMgr, sal_True );
71 Reference< XMultiServiceFactory > getProcessServiceFactory()
73 Reference< XMultiServiceFactory> xReturn;
74 xReturn = localProcessFactory( xReturn, sal_False );
75 return xReturn;
78 Reference< XInterface > createProcessComponent( const ::rtl::OUString& _rServiceSpecifier ) SAL_THROW( ( RuntimeException ) )
80 Reference< XInterface > xComponent;
82 Reference< XMultiServiceFactory > xFactory( getProcessServiceFactory() );
83 if ( xFactory.is() )
84 xComponent = xFactory->createInstance( _rServiceSpecifier );
86 return xComponent;
89 Reference< XInterface > createProcessComponentWithArguments( const ::rtl::OUString& _rServiceSpecifier,
90 const Sequence< Any >& _rArgs ) SAL_THROW( ( RuntimeException ) )
92 Reference< XInterface > xComponent;
94 Reference< XMultiServiceFactory > xFactory( getProcessServiceFactory() );
95 if ( xFactory.is() )
96 xComponent = xFactory->createInstanceWithArguments( _rServiceSpecifier, _rArgs );
98 return xComponent;
101 Reference< XComponentContext > getProcessComponentContext()
103 Reference< XComponentContext > xRet;
104 uno::Reference<beans::XPropertySet> const xProps(
105 comphelper::getProcessServiceFactory(), uno::UNO_QUERY );
106 if (xProps.is()) {
107 try {
108 xRet.set( xProps->getPropertyValue( rtl::OUString(
109 RTL_CONSTASCII_USTRINGPARAM("DefaultContext") ) ),
110 uno::UNO_QUERY );
112 catch (beans::UnknownPropertyException const&) {
115 return xRet;
118 } // namespace comphelper
120 extern "C" {
121 uno::XComponentContext * comphelper_getProcessComponentContext()
123 uno::Reference<uno::XComponentContext> xRet;
124 xRet = ::comphelper::getProcessComponentContext();
125 if (xRet.is())
126 xRet->acquire();
127 return xRet.get();
129 } // extern "C"