/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * 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 . */ #include #if defined __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wunknown-attributes" #endif #include #if defined __clang__ #pragma clang diagnostic pop #endif #include #include #include "juhx-export-types.hxx" // In retrospect, the reason to create a juh wrapper around the juhx library was // probably because java.lang.System.loadLibrary uses RTLD_LOCAL, so uniqueness // of GCC RTTI symbols needed for exception handling would not be guaranteed. #if ! defined SAL_DLLPREFIX #define SAL_DLLPREFIX "" #endif extern "C" { static javaunohelper::detail::Func_writeInfo * s_writeInfo; static javaunohelper::detail::Func_getFactory * s_getFactory; static javaunohelper::detail::Func_bootstrap * s_bootstrap; static bool s_inited = false; extern "C" { static void thisModule() {} } static bool inited_juhx( JNIEnv * jni_env ) { if (s_inited) return true; osl::Module aModule; if (!aModule.loadRelative(&thisModule, SAL_DLLPREFIX "juhx" SAL_DLLEXTENSION, SAL_LOADMODULE_LAZY | SAL_LOADMODULE_GLOBAL)) { jclass c = jni_env->FindClass( "java/lang/RuntimeException" ); jni_env->ThrowNew( c, "error loading " SAL_DLLPREFIX "juhx" SAL_DLLEXTENSION "!" ); return false; } else { OUString symbol = u"Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1writeInfo"_ustr; s_writeInfo = reinterpret_cast(aModule.getFunctionSymbol(symbol)); symbol = "Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1getFactory"; s_getFactory = reinterpret_cast(aModule.getFunctionSymbol(symbol)); symbol = "Java_com_sun_star_comp_helper_Bootstrap_cppuhelper_1bootstrap"; s_bootstrap = reinterpret_cast(aModule.getFunctionSymbol(symbol)); if (nullptr == s_writeInfo || nullptr == s_getFactory || nullptr == s_bootstrap) { jclass c = jni_env->FindClass( "java/lang/RuntimeException" ); jni_env->ThrowNew( c, "error resolving symbols of " SAL_DLLPREFIX "juhx" SAL_DLLEXTENSION "!" ); return false; } aModule.release(); } s_inited = true; return true; } SAL_DLLPUBLIC_EXPORT jboolean JNICALL Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1writeInfo( JNIEnv * pJEnv, jclass jClass, jstring jLibName, jobject jSMgr, jobject jRegKey, jobject loader ) { if (inited_juhx( pJEnv )) return (*s_writeInfo)( pJEnv, jClass, jLibName, jSMgr, jRegKey, loader ); return JNI_FALSE; } SAL_DLLPUBLIC_EXPORT jobject JNICALL Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1getFactory( JNIEnv * pJEnv, jclass jClass, jstring jLibName, jstring jImplName, jobject jSMgr, jobject jRegKey, jobject loader ) { if (inited_juhx( pJEnv )) return (*s_getFactory)( pJEnv, jClass, jLibName, jImplName, jSMgr, jRegKey, loader ); return nullptr; } SAL_DLLPUBLIC_EXPORT jobject JNICALL Java_com_sun_star_comp_helper_Bootstrap_cppuhelper_1bootstrap( JNIEnv * jni_env, jclass jClass, jstring juno_rc, jobjectArray jpairs, jobject loader ) { if (inited_juhx( jni_env )) return (*s_bootstrap)( jni_env, jClass, juno_rc, jpairs, loader ); return nullptr; } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ stro/collabora/dcm-6.2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-03-22tdf#154303 wina11y: Don't truncate 64-bit statesMichael Weghorn
2023-03-07tdf#154039 wina11y: Increase refcount for returned COM interfaceMichael Weghorn
2023-01-05Revert all the recent loplugin:unocast changesStephan Bergmann
2022-12-23loplugin:unocast (VCLXAccessibleComponent)Stephan Bergmann
2022-11-24Drop redundant -Wnon-virtual-dtorStephan Bergmann
2022-09-26tdf#117173 wina11y: Send EVENT_SYSTEM_ALERT when notification showsMichael Weghorn
2022-09-26tdf#119788 tdf#117173 add accessibility NOTIFICATION roleJim Raykowski
2022-09-17loplugin:loopvartoosmall (clang-cl)Stephan Bergmann
2022-09-16wina11y: Drop unused CMAccessible helper methodsMichael Weghorn
2022-09-10wina11y: Report actual app/toolkit name/versionMichael Weghorn
2022-09-09Simplify by using replaceAll in a loop (winaccessibility/AccTextBase)Julien Nabet
2022-09-02[API CHANGE] tdf#150683 a11y: Switch a11y child index to 64 bitMichael Weghorn
2022-09-01wina11y: Drop CEnumVariant::m_lLBound that's always 0Michael Weghorn
2022-08-31wina11y: Drop unused member and methods related to selectionMichael Weghorn
2022-08-31wina11y: Drop unused AccObjectWinManager::UpdateAccSelectionMichael Weghorn
2022-08-12Fix typoAndrea Gelmini
2022-08-05wina11y: Drop unused AccessibleKey{Binding,Stroke}.idlMichael Weghorn
2022-08-05wina11y: Drop unused Charset.idlMichael Weghorn
2022-08-05wina11y: Fix indentation of this lineMichael Weghorn
2022-08-05wina11y: Drop unused AccChildNode struct from defines.idlMichael Weghorn
2022-08-05wina11y: Drop extra location bookkeepingMichael Weghorn
2022-08-05wina11y: Drop AccObjectManagerAgent::UpdateLocationMichael Weghorn
2022-08-05wina11y: Implement IAccessibleTableCell::get{column,row}HeaderCellsMichael Weghorn
2022-08-05wina11y: Implement IAccessibleTableCell::get_tableMichael Weghorn
2022-08-05wina11y: Implement IAccessibleTableCell:get_rowColumnExtentsMichael Weghorn
2022-07-08[API CHANGE] Drop css::accessibility::XAccessibleStateSetNoel Grandin
2022-06-15wina11y: Drop implemenation for obsolete IAccessible::put_accNameMichael Weghorn
2022-05-03Just use Any ctor instead of makeAny in winaccessibilityStephan Bergmann