2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-12 22:04:38 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2007-11-21 14:06:42 +00:00
|
|
|
|
2014-04-18 18:41:08 +02:00
|
|
|
#ifndef INCLUDED_CONNECTIVITY_SOURCE_INC_JAVA_CONTEXTCLASSLOADER_HXX
|
|
|
|
#define INCLUDED_CONNECTIVITY_SOURCE_INC_JAVA_CONTEXTCLASSLOADER_HXX
|
2007-11-21 14:06:42 +00:00
|
|
|
|
2017-10-23 22:43:41 +02:00
|
|
|
#include <java/GlobalRef.hxx>
|
2007-11-21 14:06:42 +00:00
|
|
|
|
|
|
|
namespace comphelper
|
|
|
|
{
|
2017-04-27 16:35:05 +01:00
|
|
|
class EventLogger;
|
2007-11-21 14:06:42 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 17:59:09 +01:00
|
|
|
|
2007-11-21 14:06:42 +00:00
|
|
|
namespace connectivity { namespace jdbc
|
|
|
|
{
|
|
|
|
class ContextClassLoaderScope
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** creates the instance. If isActive returns <FALSE/> afterwards, then an exception
|
2013-04-15 05:32:37 +02:00
|
|
|
happened in the JVM, which should be raised as UNO exception by the caller
|
2007-11-21 14:06:42 +00:00
|
|
|
|
|
|
|
@param environment
|
|
|
|
the current JNI environment
|
|
|
|
@param newClassLoader
|
|
|
|
the new class loader to set at the current thread
|
|
|
|
@param _rLoggerForErrors
|
|
|
|
the logger which should be passed to java_lang_object::ThrowLoggedSQLException in case
|
|
|
|
an error occurs
|
|
|
|
@param _rxErrorContext
|
|
|
|
the context which should be passed to java_lang_object::ThrowLoggedSQLException in case
|
|
|
|
an error occurs
|
|
|
|
|
|
|
|
*/
|
|
|
|
ContextClassLoaderScope(
|
|
|
|
JNIEnv& environment,
|
|
|
|
const GlobalRef< jobject >& newClassLoader,
|
2017-04-27 16:35:05 +01:00
|
|
|
const ::comphelper::EventLogger& _rLoggerForErrors,
|
2016-05-27 12:31:29 +02:00
|
|
|
const css::uno::Reference< css::uno::XInterface >& _rxErrorContext
|
2007-11-21 14:06:42 +00:00
|
|
|
);
|
|
|
|
|
2016-11-09 15:14:57 +02:00
|
|
|
~ContextClassLoaderScope();
|
2007-11-21 14:06:42 +00:00
|
|
|
|
|
|
|
bool isActive() const
|
|
|
|
{
|
|
|
|
return ( m_currentThread.is() )
|
2015-11-10 10:12:07 +01:00
|
|
|
&& ( m_setContextClassLoaderMethod != nullptr );
|
2007-11-21 14:06:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-11-01 09:48:16 +02:00
|
|
|
ContextClassLoaderScope(ContextClassLoaderScope const &) = delete;
|
|
|
|
ContextClassLoaderScope& operator =(ContextClassLoaderScope const &) = delete;
|
2007-11-21 14:06:42 +00:00
|
|
|
|
|
|
|
JNIEnv& m_environment;
|
|
|
|
LocalRef< jobject > m_currentThread;
|
|
|
|
LocalRef< jobject > m_oldContextClassLoader;
|
|
|
|
jmethodID m_setContextClassLoaderMethod;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} } // namespace connectivity::jdbc
|
2014-02-25 17:59:09 +01:00
|
|
|
|
2007-11-21 14:06:42 +00:00
|
|
|
|
2014-04-18 18:41:08 +02:00
|
|
|
#endif // INCLUDED_CONNECTIVITY_SOURCE_INC_JAVA_CONTEXTCLASSLOADER_HXX
|
2010-10-27 13:11:31 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|