merge the formfield patch from ooo-build
[ooovba.git] / svtools / source / java / javacontext.cxx
blob97f8663639605c3ac3069e39adcb12b8c076f290
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: javacontext.cxx,v $
10 * $Revision: 1.9 $
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_svtools.hxx"
33 #include "com/sun/star/uno/Any.hxx"
34 #include "com/sun/star/uno/Type.hxx"
35 #include <svtools/svtdata.hxx>
36 #include <svtools/javacontext.hxx>
37 #include <svtools/javainteractionhandler.hxx>
39 using namespace com::sun::star::uno;
40 using namespace com::sun::star::task;
41 namespace svt
44 JavaContext::JavaContext( const Reference< XCurrentContext > & ctx )
46 m_aRefCount(0),
47 m_xNextContext( ctx ),
48 m_bShowErrorsOnce(false)
52 JavaContext::JavaContext( const Reference< XCurrentContext > & ctx,
53 bool bShowErrorsOnce)
54 : m_aRefCount(0),
55 m_xNextContext( ctx ),
56 m_bShowErrorsOnce(bShowErrorsOnce)
60 JavaContext::~JavaContext()
64 Any SAL_CALL JavaContext::queryInterface(const Type& aType )
65 throw (RuntimeException)
67 if (aType == getCppuType(reinterpret_cast<Reference<XInterface>*>(0)))
68 return Any(Reference<XInterface>(static_cast<XInterface*>(this)));
69 else if (aType == getCppuType(reinterpret_cast<Reference<XCurrentContext>*>(0)))
70 return Any(Reference<XCurrentContext>( static_cast<XCurrentContext*>(this)));
71 return Any();
74 void SAL_CALL JavaContext::acquire( ) throw ()
76 osl_incrementInterlockedCount( &m_aRefCount );
79 void SAL_CALL JavaContext::release( ) throw ()
81 if (! osl_decrementInterlockedCount( &m_aRefCount ))
82 delete this;
85 Any SAL_CALL JavaContext::getValueByName( const ::rtl::OUString& Name) throw (RuntimeException)
87 Any retVal;
89 if ( 0 == Name.compareToAscii( JAVA_INTERACTION_HANDLER_NAME ))
92 osl::MutexGuard aGuard(osl::Mutex::getGlobalMutex());
93 if (!m_xHandler.is())
94 m_xHandler = Reference< XInteractionHandler >(
95 new JavaInteractionHandler(m_bShowErrorsOnce));
97 retVal = makeAny(m_xHandler);
100 else if( m_xNextContext.is() )
102 // Call next context in chain if found
103 retVal = m_xNextContext->getValueByName( Name );
105 return retVal;