merge the formfield patch from ooo-build
[ooovba.git] / configmgr / source / misc / providerfactory.hxx
blob5703b06738782e573b58ecc1d7e4e7fbe5535e56
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: providerfactory.hxx,v $
10 * $Revision: 1.10 $
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 #ifndef _CONFIGMGR_PROVIDER_FACTORY_HXX_
32 #define _CONFIGMGR_PROVIDER_FACTORY_HXX_
34 #include <cppuhelper/implbase1.hxx>
35 #include <com/sun/star/uno/XComponentContext.hpp>
36 #include <com/sun/star/lang/XSingleComponentFactory.hpp>
37 #include <com/sun/star/lang/XEventListener.hpp>
38 #include <com/sun/star/beans/NamedValue.hpp>
40 #include <com/sun/star/lang/IllegalArgumentException.hpp>
41 #include <com/sun/star/beans/PropertyValue.hpp>
42 #include <comphelper/stl_types.hxx>
44 //------------------------------------------------------------------------
45 namespace configmgr
47 //------------------------------------------------------------------------
48 namespace uno = ::com::sun::star::uno;
49 namespace lang = ::com::sun::star::lang;
50 namespace beans = ::com::sun::star::beans;
51 //------------------------------------------------------------------------
52 class ContextReader;
53 class ArgumentHelper;
54 //------------------------------------------------------------------------
55 //= OProviderFactory
56 //------------------------------------------------------------------------
57 /** a special factory for the configuration provider,
58 which maps creation arguments into a context.
60 class ProviderFactory : public cppu::WeakImplHelper1< lang::XSingleComponentFactory >
62 rtl::OUString const m_aImplementationName;
63 bool m_bAdmin;
65 public:
66 explicit
67 ProviderFactory(rtl::OUString const & aImplementationName, bool bAdmin);
68 ~ProviderFactory();
70 virtual uno::Reference< uno::XInterface >
71 SAL_CALL createInstanceWithContext(uno::Reference< uno::XComponentContext > const & xContext )
72 throw (uno::Exception, uno::RuntimeException);
74 virtual uno::Reference< uno::XInterface > SAL_CALL
75 createInstanceWithArgumentsAndContext( uno::Sequence < uno::Any > const & aArguments, uno::Reference< uno::XComponentContext > const & xContext )
76 throw (uno::Exception, uno::RuntimeException);
78 private:
79 uno::Reference< uno::XInterface > getProviderFromContext(uno::Reference< uno::XComponentContext > const & aContext);
80 uno::Reference< uno::XInterface > getProviderAlways(uno::Reference< uno::XComponentContext > const & xContext);
81 uno::Reference< uno::XInterface > createProviderWithArguments(uno::Reference< uno::XComponentContext > const & xContext, uno::Sequence < uno::Any > const & _aArguments);
82 uno::Reference< uno::XInterface > createProvider(uno::Reference< uno::XComponentContext > const & xContext,bool bAdmin);
83 uno::Reference< uno::XInterface > createProvider(uno::Reference< uno::XComponentContext > const & xContext);
84 sal_Int32 parseArguments(ArgumentHelper & aParser, uno::Sequence < beans::NamedValue > & rValues, uno::Sequence < uno::Any > const & _aArguments);
86 //------------------------------------------------------------------------
87 } // namespace configmgr
88 //------------------------------------------------------------------------
90 #endif // _CONFIGMGR_PROVIDER_FACTORY_HXX_