1*6998d047SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*6998d047SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*6998d047SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*6998d047SAndrew Rist  * distributed with this work for additional information
6*6998d047SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*6998d047SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*6998d047SAndrew Rist  * "License"); you may not use this file except in compliance
9*6998d047SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*6998d047SAndrew Rist  *
11*6998d047SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*6998d047SAndrew Rist  *
13*6998d047SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*6998d047SAndrew Rist  * software distributed under the License is distributed on an
15*6998d047SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*6998d047SAndrew Rist  * KIND, either express or implied.  See the License for the
17*6998d047SAndrew Rist  * specific language governing permissions and limitations
18*6998d047SAndrew Rist  * under the License.
19*6998d047SAndrew Rist  *
20*6998d047SAndrew Rist  *************************************************************/
21*6998d047SAndrew Rist 
22*6998d047SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _FRAMEWORK_SCRIPT_PROTOCOLHANDLER_SCRIPTING_CONTEXT_HXX_
25cdf0e10cSrcweir #define _FRAMEWORK_SCRIPT_PROTOCOLHANDLER_SCRIPTING_CONTEXT_HXX_
26cdf0e10cSrcweir 
27cdf0e10cSrcweir 
28cdf0e10cSrcweir #include <osl/mutex.hxx>
29cdf0e10cSrcweir #include <rtl/ustring.hxx>
30cdf0e10cSrcweir #include <cppuhelper/implbase1.hxx>
31cdf0e10cSrcweir #include <comphelper/uno3.hxx>
32cdf0e10cSrcweir #include <comphelper/propertycontainer.hxx>
33cdf0e10cSrcweir #include <comphelper/proparrhlp.hxx>
34cdf0e10cSrcweir 
35cdf0e10cSrcweir #include <cppuhelper/implbase1.hxx>
36cdf0e10cSrcweir #include <cppuhelper/weak.hxx>
37cdf0e10cSrcweir #include <com/sun/star/lang/XServiceInfo.hpp>
38cdf0e10cSrcweir #include <com/sun/star/uno/RuntimeException.hpp>
39cdf0e10cSrcweir #include <com/sun/star/uno/RuntimeException.hpp>
40cdf0e10cSrcweir #include <com/sun/star/beans/XPropertySet.hpp>
41cdf0e10cSrcweir #include <comphelper/broadcasthelper.hxx>
42cdf0e10cSrcweir namespace func_provider
43cdf0e10cSrcweir {
44cdf0e10cSrcweir // for simplification
45cdf0e10cSrcweir #define css ::com::sun::star
46cdf0e10cSrcweir 
47cdf0e10cSrcweir //Typedefs
48cdf0e10cSrcweir //=============================================================================
49cdf0e10cSrcweir //typedef ::cppu::WeakImplHelper1< css::beans::XPropertySet > ScriptingContextImpl_BASE;
50cdf0e10cSrcweir 
51cdf0e10cSrcweir class ScriptingContext : public ::comphelper::OMutexAndBroadcastHelper, public ::comphelper::OPropertyContainer,
52cdf0e10cSrcweir                          public ::comphelper::OPropertyArrayUsageHelper< ScriptingContext >,  public css::lang::XTypeProvider, public ::cppu::OWeakObject
53cdf0e10cSrcweir {
54cdf0e10cSrcweir 
55cdf0e10cSrcweir public:
56cdf0e10cSrcweir     ScriptingContext( const css::uno::Reference< css::uno::XComponentContext > & xContext );
57cdf0e10cSrcweir     ~ScriptingContext();
58cdf0e10cSrcweir     // XInterface
59cdf0e10cSrcweir 
queryInterface(const css::uno::Type & rType)60cdf0e10cSrcweir     css::uno::Any SAL_CALL queryInterface( const css::uno::Type& rType )
61cdf0e10cSrcweir         throw( css::uno::RuntimeException )
62cdf0e10cSrcweir     {
63cdf0e10cSrcweir         css::uno::Any aRet( OPropertySetHelper::queryInterface( rType ) );
64cdf0e10cSrcweir         return (aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ));
65cdf0e10cSrcweir     }
acquire()66cdf0e10cSrcweir     void SAL_CALL acquire() throw() { ::cppu::OWeakObject::acquire(); }
release()67cdf0e10cSrcweir     void SAL_CALL release() throw() { ::cppu::OWeakObject::release(); }
68cdf0e10cSrcweir     // XPropertySet
69cdf0e10cSrcweir     virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  )
70cdf0e10cSrcweir             throw ( css::uno::RuntimeException );
71cdf0e10cSrcweir     //XTypeProvider
72cdf0e10cSrcweir     DECLARE_XTYPEPROVIDER( )
73cdf0e10cSrcweir 
74cdf0e10cSrcweir protected:
75cdf0e10cSrcweir 
76cdf0e10cSrcweir     // OPropertySetHelper
77cdf0e10cSrcweir     virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper(  );
78cdf0e10cSrcweir 
79cdf0e10cSrcweir     // OPropertyArrayUsageHelper
80cdf0e10cSrcweir     virtual ::cppu::IPropertyArrayHelper* createArrayHelper(  ) const;
81cdf0e10cSrcweir private:
82cdf0e10cSrcweir     css::uno::Reference< css::uno::XComponentContext > m_xContext;
83cdf0e10cSrcweir 
84cdf0e10cSrcweir 
85cdf0e10cSrcweir };
86cdf0e10cSrcweir } // func_provider
87cdf0e10cSrcweir #endif //_FRAMEWORK_SCRIPT_PROVIDER_XFUNCTIONPROVIDER_HXX_
88