/** * Copyright 2010 JogAmp Community. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * The views and conclusions contained in the software and documentation are those of the * authors and should not be interpreted as representing official policies, either expressed * or implied, of JogAmp Community. */ package com.jogamp.common.os; import java.util.List; import com.jogamp.common.util.RunnableExecutor; public interface DynamicLibraryBundleInfo { public static final boolean DEBUG = DynamicLibraryBundle.DEBUG; /** * Returns {@code true} if tool libraries shall be searched in the system path (default), otherwise {@code false}. * @since 2.4.0 */ public boolean searchToolLibInSystemPath(); /** * Returns {@code true} if system path shall be searched first (default), rather than searching it last. *
* If {@link #searchToolLibInSystemPath()} is {@code false} the return value is ignored. *
* @since 2.4.0 */ public boolean searchToolLibSystemPathFirst(); /** * If a {@link SecurityManager} is installed, user needs link permissions * for the named libraries. * * @return a list of Tool library names or alternative library name lists.GetProcAddressFuncnames, the first found function is being used.
glXGetProcAddressARB, glXGetProcAddressARB.
true
and if a {@link SecurityManager} is installed, user needs link permissions
* for all libraries, i.e. for new RuntimePermission("loadLibrary.*");
!
*
* @return true if the dynamic symbol lookup shall happen system wide, over all loaded libraries.
* Otherwise only the loaded native libraries are used for lookup, which shall be the default.
*/
public boolean shallLookupGlobal();
/**
* Returns a suitable {@link RunnableExecutor} implementation, which is being used
* to load the tool
and glue
native libraries.
* * This allows the generic {@link DynamicLibraryBundle} implementation to * load the native libraries on a designated thread. *
** An implementation may return {@link DynamicLibraryBundle#getDefaultRunnableExecutor()}. *
*/ public RunnableExecutor getLibLoaderExecutor(); }