1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
|
/*
* Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
* Copyright (c) 2011 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:
*
* - Redistribution of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistribution 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.
*
* Neither the name of Sun Microsystems, Inc. or the names of
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* This software is provided "AS IS," without a warranty of any kind. ALL
* EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
* INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
* MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
* ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
* DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR
* ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR
* DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
* DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
* ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
* SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*
* You acknowledge that this software is not designed or intended for use
* in the design, construction, operation or maintenance of any nuclear
* facility.
*
* Sun gratefully acknowledges that this software was originally authored
* and developed by Kenneth Bradley Russell and Christopher John Kline.
*/
package com.jogamp.common.os;
import java.io.File;
import java.lang.reflect.Method;
import java.net.URISyntaxException;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.StringTokenizer;
import jogamp.common.os.BionicDynamicLinker32bitImpl;
import jogamp.common.os.BionicDynamicLinker64BitImpl;
import jogamp.common.os.MacOSXDynamicLinkerImpl;
import jogamp.common.os.PlatformPropsImpl;
import jogamp.common.os.PosixDynamicLinkerImpl;
import jogamp.common.os.WindowsDynamicLinkerImpl;
import com.jogamp.common.ExceptionUtils;
import com.jogamp.common.util.IOUtil;
import com.jogamp.common.util.cache.TempJarCache;
/** Provides low-level, relatively platform-independent access to
shared ("native") libraries. The core library routines
<code>System.load()</code> and <code>System.loadLibrary()</code>
in general provide suitable functionality for applications using
native code, but are not flexible enough to support certain kinds
of glue code generation and deployment strategies. This class
supports direct linking of native libraries to other shared
objects not necessarily installed on the system (in particular,
via the use of dlopen(RTLD_GLOBAL) on Unix platforms) as well as
manual lookup of function names to support e.g. GlueGen's
ProcAddressTable glue code generation style without additional
supporting code needed in the generated library. */
public final class NativeLibrary implements DynamicLookupHelper {
private static final String[] prefixes;
private static final String[] suffixes;
private static final boolean isOSX;
static {
// Instantiate dynamic linker implementation
switch (PlatformPropsImpl.OS_TYPE) {
case WINDOWS:
prefixes = new String[] { "" };
suffixes = new String[] { ".dll" };
isOSX = false;
break;
case MACOS:
case IOS:
prefixes = new String[] { "lib" };
suffixes = new String[] { ".dylib", ".jnilib" };
isOSX = true;
break;
/*
case ANDROID:
case FREEBSD:
case SUNOS:
case HPUX:
case OPENKODE:
case LINUX: */
default:
prefixes = new String[] { "lib" };
suffixes = new String[] { ".so" };
isOSX = false;
break;
}
}
private final DynamicLinker dynLink;
// Platform-specific representation for the handle to the open
// library. This is an HMODULE on Windows and a void* (the result of
// a dlopen() call) on Unix and Mac OS X platforms.
private long libraryHandle;
// May as well keep around the path to the library we opened
private final String libraryPath;
private final boolean global;
// Private constructor to prevent arbitrary instances from floating around
private NativeLibrary(final DynamicLinker dynLink, final long libraryHandle, final String libraryPath, final boolean global) {
this.dynLink = dynLink;
this.libraryHandle = libraryHandle;
this.libraryPath = libraryPath;
this.global = global;
if (DEBUG) {
System.err.println("NativeLibrary.open(): Successfully loaded: " + this);
}
}
@Override
public final String toString() {
return "NativeLibrary[" + dynLink.getClass().getSimpleName() + ", " + libraryPath + ", 0x" + Long.toHexString(libraryHandle) + ", global " + global + "]";
}
/** Opens the given native library, assuming it has the same base
name on all platforms.
<p>
The {@code searchSystemPath} argument changes the behavior to
either use the default system path or not at all.
</p>
<p>
Assuming {@code searchSystemPath} is {@code true},
the {@code searchSystemPathFirst} argument changes the behavior to first
search the default system path rather than searching it last.
</p>
* @param libName library name, with or without prefix and suffix
* @param searchSystemPath if {@code true} library shall be searched in the system path <i>(default)</i>, otherwise {@code false}.
* @param searchSystemPathFirst if {@code true} system path shall be searched <i>first</i> <i>(default)</i>, rather than searching it last.
* if {@code searchSystemPath} is {@code false} this argument is ignored.
* @param loader {@link ClassLoader} to locate the library
* @param global if {@code true} allows system wide access of the loaded library, otherwise access is restricted to the process.
* @return {@link NativeLibrary} instance or {@code null} if library could not be loaded.
* @throws SecurityException if user is not granted access for the named library.
* @since 2.4.0
*/
public static final NativeLibrary open(final String libName,
final boolean searchSystemPath,
final boolean searchSystemPathFirst,
final ClassLoader loader, final boolean global) throws SecurityException {
return open(libName, libName, libName, searchSystemPath, searchSystemPathFirst, loader, global);
}
/** Opens the given native library, assuming it has the given base
names (no "lib" prefix or ".dll/.so/.dylib" suffix) on the
Windows, Unix and Mac OS X platforms, respectively, and in the
context of the specified ClassLoader, which is used to help find
the library in the case of e.g. Java Web Start.
<p>
The {@code searchSystemPath} argument changes the behavior to
either use the default system path or not at all.
</p>
<p>
Assuming {@code searchSystemPath} is {@code true},
the {@code searchSystemPathFirst} argument changes the behavior to first
search the default system path rather than searching it last.
</p>
Note that we do not currently handle DSO versioning on Unix.
Experience with JOAL and OpenAL has shown that it is extremely
problematic to rely on a specific .so version (for one thing,
ClassLoader.findLibrary on Unix doesn't work with files not
ending in .so, for example .so.0), and in general if this
dynamic loading facility is used correctly the version number
will be irrelevant.
* @param windowsLibName windows library name, with or without prefix and suffix
* @param unixLibName unix library name, with or without prefix and suffix
* @param macOSXLibName mac-osx library name, with or without prefix and suffix
* @param searchSystemPath if {@code true} library shall be searched in the system path <i>(default)</i>, otherwise {@code false}.
* @param searchSystemPathFirst if {@code true} system path shall be searched <i>first</i> <i>(default)</i>, rather than searching it last.
* if {@code searchSystemPath} is {@code false} this argument is ignored.
* @param loader {@link ClassLoader} to locate the library
* @param global if {@code true} allows system wide access of the loaded library, otherwise access is restricted to the process.
* @return {@link NativeLibrary} instance or {@code null} if library could not be loaded.
* @throws SecurityException if user is not granted access for the named library.
*/
public static final NativeLibrary open(final String windowsLibName,
final String unixLibName,
final String macOSXLibName,
final boolean searchSystemPath,
final boolean searchSystemPathFirst,
final ClassLoader loader, final boolean global) throws SecurityException {
final List<String> possiblePaths = enumerateLibraryPaths(windowsLibName,
unixLibName,
macOSXLibName,
searchSystemPath, searchSystemPathFirst,
loader);
Platform.initSingleton(); // loads native gluegen-rt library
final DynamicLinker dynLink;
switch (PlatformPropsImpl.OS_TYPE) {
case WINDOWS:
dynLink = new WindowsDynamicLinkerImpl();
break;
case MACOS:
case IOS:
dynLink = new MacOSXDynamicLinkerImpl();
break;
case ANDROID:
if( PlatformPropsImpl.CPU_ARCH.is32Bit ) {
dynLink = new BionicDynamicLinker32bitImpl();
} else {
dynLink = new BionicDynamicLinker64BitImpl();
}
break;
default:
dynLink = new PosixDynamicLinkerImpl();
break;
}
// Iterate down these and see which one if any we can actually find.
for (final Iterator<String> iter = possiblePaths.iterator(); iter.hasNext(); ) {
final String path = iter.next();
if (DEBUG) {
System.err.println("NativeLibrary.open(global "+global+"): Trying to load " + path);
}
long res;
Throwable t = null;
try {
if(global) {
res = dynLink.openLibraryGlobal(path, DEBUG);
} else {
res = dynLink.openLibraryLocal(path, DEBUG);
}
} catch (final Throwable t1) {
t = t1;
res = 0;
}
if ( 0 != res ) {
return new NativeLibrary(dynLink, res, path, global);
} else if( DEBUG ) {
if( null != t ) {
System.err.println("NativeLibrary.open: Caught "+t.getClass().getSimpleName()+": "+t.getMessage());
}
String errstr;
try {
errstr = dynLink.getLastError();
} catch (final Throwable t2) { errstr=null; }
System.err.println("NativeLibrary.open: Last error "+errstr);
if( null != t ) {
t.printStackTrace();
}
}
}
if (DEBUG) {
System.err.println("NativeLibrary.open(global "+global+"): Did not succeed in loading (" + windowsLibName + ", " + unixLibName + ", " + macOSXLibName + ")");
}
// For now, just return null to indicate the open operation didn't
// succeed (could also throw an exception if we could tell which
// of the openLibrary operations actually failed)
return null;
}
@Override
public final void claimAllLinkPermission() throws SecurityException {
dynLink.claimAllLinkPermission();
}
@Override
public final void releaseAllLinkPermission() throws SecurityException {
dynLink.releaseAllLinkPermission();
}
@Override
public final long dynamicLookupFunction(final String funcName) throws SecurityException {
if ( 0 == libraryHandle ) {
throw new RuntimeException("Library is not open");
}
return dynLink.lookupSymbol(libraryHandle, funcName);
}
@Override
public final boolean isFunctionAvailable(final String funcName) throws SecurityException {
if ( 0 == libraryHandle ) {
throw new RuntimeException("Library is not open");
}
return 0 != dynLink.lookupSymbol(libraryHandle, funcName);
}
/** Looks up the given function name in all loaded libraries.
* @throws SecurityException if user is not granted access for the named library.
*/
public final long dynamicLookupFunctionGlobal(final String funcName) throws SecurityException {
return dynLink.lookupSymbolGlobal(funcName);
}
/* pp */ final DynamicLinker getDynamicLinker() { return dynLink; }
/** Retrieves the low-level library handle from this NativeLibrary
object. On the Windows platform this is an HMODULE, and on Unix
and Mac OS X platforms the void* result of calling dlopen(). */
public final long getLibraryHandle() {
return libraryHandle;
}
/** Retrieves the path under which this library was opened. */
public final String getLibraryPath() {
return libraryPath;
}
/** Closes this native library. Further lookup operations are not
allowed after calling this method.
* @throws SecurityException if user is not granted access for the named library.
*/
public final void close() throws SecurityException {
if (DEBUG) {
System.err.println("NativeLibrary.close(): closing " + this);
}
if ( 0 == libraryHandle ) {
throw new RuntimeException("Library already closed");
}
final long handle = libraryHandle;
libraryHandle = 0;
dynLink.closeLibrary(handle, DEBUG);
if (DEBUG) {
System.err.println("NativeLibrary.close(): Successfully closed " + this);
ExceptionUtils.dumpStack(System.err);
}
}
/**
* Comparison of prefix and suffix of the given libName's basename
* is performed case insensitive <br>
*
* @param libName the full path library name with prefix and suffix
* @param isLowerCaseAlready indicates if libName is already lower-case
*
* @return basename of libName w/o path, ie. /usr/lib/libDrinkBeer.so -> DrinkBeer on Unix systems, but null on Windows.
*/
public static final String isValidNativeLibraryName(final String libName, final boolean isLowerCaseAlready) {
final String libBaseName;
try {
libBaseName = IOUtil.getBasename(libName);
} catch (final URISyntaxException uriEx) {
throw new IllegalArgumentException(uriEx);
}
final String libBaseNameLC = isLowerCaseAlready ? libBaseName : libBaseName.toLowerCase();
int prefixIdx = -1;
for(int i=0; i<prefixes.length && 0 > prefixIdx; i++) {
if (libBaseNameLC.startsWith(prefixes[i])) {
prefixIdx = i;
}
}
if( 0 <= prefixIdx ) {
for(int i=0; i<suffixes.length; i++) {
if (libBaseNameLC.endsWith(suffixes[i])) {
final int s = prefixes[prefixIdx].length();
final int e = suffixes[i].length();
return libBaseName.substring(s, libBaseName.length()-e);
}
}
}
return null;
}
/** Given the base library names (no prefixes/suffixes) for the
various platforms, enumerate the possible locations and names of
the indicated native library on the system not using the system path. */
public static final List<String> enumerateLibraryPaths(final String windowsLibName,
final String unixLibName,
final String macOSXLibName,
final ClassLoader loader) {
return enumerateLibraryPaths(windowsLibName, unixLibName, macOSXLibName,
false /* searchSystemPath */, false /* searchSystemPathFirst */,
loader);
}
/** Given the base library names (no prefixes/suffixes) for the
various platforms, enumerate the possible locations and names of
the indicated native library on the system using the system path. */
public static final List<String> enumerateLibraryPaths(final String windowsLibName,
final String unixLibName,
final String macOSXLibName,
final boolean searchSystemPathFirst,
final ClassLoader loader) {
return enumerateLibraryPaths(windowsLibName, unixLibName, macOSXLibName,
true /* searchSystemPath */, searchSystemPathFirst,
loader);
}
private static final List<String> enumerateLibraryPaths(final String windowsLibName,
final String unixLibName,
final String macOSXLibName,
final boolean searchSystemPath,
final boolean searchSystemPathFirst,
final ClassLoader loader) {
final List<String> paths = new ArrayList<String>();
final String libName = selectName(windowsLibName, unixLibName, macOSXLibName);
if (libName == null) {
return paths;
}
// Allow user's full path specification to override our building of paths
final File file = new File(libName);
if (file.isAbsolute()) {
paths.add(libName);
return paths;
}
final String[] baseNames = buildNames(libName);
if( searchSystemPath && searchSystemPathFirst ) {
// Add just the library names to use the OS's search algorithm
for (int i = 0; i < baseNames.length; i++) {
paths.add(baseNames[i]);
}
// Add probable Mac OS X-specific paths
if ( isOSX ) {
// Add historical location
addPaths("/Library/Frameworks/" + libName + ".Framework", baseNames, paths);
// Add current location
addPaths("/System/Library/Frameworks/" + libName + ".Framework", baseNames, paths);
}
}
// The idea to ask the ClassLoader to find the library is borrowed
// from the LWJGL library
final String clPath = findLibrary(libName, loader);
if (clPath != null) {
paths.add(clPath);
}
// Add entries from java.library.path
final String[] javaLibraryPaths =
AccessController.doPrivileged(new PrivilegedAction<String[]>() {
@Override
public String[] run() {
int count = 0;
final String usrPath = System.getProperty("java.library.path");
if(null != usrPath) {
count++;
}
final String sysPath;
if( searchSystemPath ) {
sysPath = System.getProperty("sun.boot.library.path");
if(null != sysPath) {
count++;
}
} else {
sysPath = null;
}
final String[] res = new String[count];
int i=0;
if( null != sysPath && searchSystemPathFirst ) {
res[i++] = sysPath;
}
if(null != usrPath) {
res[i++] = usrPath;
}
if( null != sysPath && !searchSystemPathFirst ) {
res[i++] = sysPath;
}
return res;
}
});
if ( null != javaLibraryPaths ) {
for( int i=0; i < javaLibraryPaths.length; i++ ) {
final StringTokenizer tokenizer = new StringTokenizer(javaLibraryPaths[i], File.pathSeparator);
while (tokenizer.hasMoreTokens()) {
addPaths(tokenizer.nextToken(), baseNames, paths);
}
}
}
// Add current working directory
final String userDir =
AccessController.doPrivileged(new PrivilegedAction<String>() {
@Override
public String run() {
return System.getProperty("user.dir");
}
});
addPaths(userDir, baseNames, paths);
// Add current working directory + natives/os-arch/ + library names
// to handle Bug 1145 cc1 using an unpacked fat-jar
addPaths(userDir+File.separator+"natives"+File.separator+PlatformPropsImpl.os_and_arch+File.separator, baseNames, paths);
if( searchSystemPath && !searchSystemPathFirst ) {
// Add just the library names to use the OS's search algorithm
for (int i = 0; i < baseNames.length; i++) {
paths.add(baseNames[i]);
}
// Add probable Mac OS X-specific paths
if ( isOSX ) {
// Add historical location
addPaths("/Library/Frameworks/" + libName + ".Framework", baseNames, paths);
// Add current location
addPaths("/System/Library/Frameworks/" + libName + ".Framework", baseNames, paths);
}
}
return paths;
}
private static final String selectName(final String windowsLibName,
final String unixLibName,
final String macOSXLibName) {
switch (PlatformPropsImpl.OS_TYPE) {
case WINDOWS:
return windowsLibName;
case MACOS:
case IOS:
return macOSXLibName;
default:
return unixLibName;
}
}
private static final String[] buildNames(final String libName) {
// If the library name already has the prefix / suffix added
// (principally because we want to force a version number on Unix
// operating systems) then just return the library name.
final String libBaseNameLC;
try {
libBaseNameLC = IOUtil.getBasename(libName).toLowerCase();
} catch (final URISyntaxException uriEx) {
throw new IllegalArgumentException(uriEx);
}
int prefixIdx = -1;
for(int i=0; i<prefixes.length && 0 > prefixIdx; i++) {
if (libBaseNameLC.startsWith(prefixes[i])) {
prefixIdx = i;
}
}
if( 0 <= prefixIdx ) {
for(int i=0; i<suffixes.length; i++) {
if (libBaseNameLC.endsWith(suffixes[i])) {
return new String[] { libName };
}
}
int suffixIdx = -1;
for(int i=0; i<suffixes.length && 0 > suffixIdx; i++) {
suffixIdx = libBaseNameLC.indexOf(suffixes[i]);
}
boolean ok = true;
if (suffixIdx >= 0) {
// Check to see if everything after it is a Unix version number
for (int i = suffixIdx + suffixes[0].length();
i < libName.length();
i++) {
final char c = libName.charAt(i);
if (!(c == '.' || (c >= '0' && c <= '9'))) {
ok = false;
break;
}
}
if (ok) {
return new String[] { libName };
}
}
}
final String[] res = new String[prefixes.length * suffixes.length + ( isOSX ? 1 : 0 )];
int idx = 0;
for (int i = 0; i < prefixes.length; i++) {
for (int j = 0; j < suffixes.length; j++) {
res[idx++] = prefixes[i] + libName + suffixes[j];
}
}
if ( isOSX ) {
// Plain library-base-name in Framework folder
res[idx++] = libName;
}
return res;
}
private static final void addPaths(final String path, final String[] baseNames, final List<String> paths) {
for (int j = 0; j < baseNames.length; j++) {
paths.add(path + File.separator + baseNames[j]);
}
}
private static boolean initializedFindLibraryMethod = false;
private static Method findLibraryMethod = null;
private static final String findLibraryImpl(final String libName, final ClassLoader loader) {
if (loader == null) {
return null;
}
if (!initializedFindLibraryMethod) {
AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
try {
findLibraryMethod = ClassLoader.class.getDeclaredMethod("findLibrary",
new Class[] { String.class });
findLibraryMethod.setAccessible(true);
} catch (final Exception e) {
// Fail silently disabling this functionality
}
initializedFindLibraryMethod = true;
return null;
}
});
}
if (findLibraryMethod != null) {
try {
return AccessController.doPrivileged(new PrivilegedAction<String>() {
@Override
public String run() {
try {
return (String) findLibraryMethod.invoke(loader, new Object[] { libName });
} catch (final Exception e) {
throw new RuntimeException(e);
}
}
});
} catch (final Exception e) {
if (DEBUG) {
e.printStackTrace();
}
// Fail silently and continue with other search algorithms
}
}
return null;
}
public static final String findLibrary(final String libName, final ClassLoader loader) {
String res = null;
if( TempJarCache.isInitialized(true) ) {
res = TempJarCache.findLibrary(libName);
if (DEBUG) {
System.err.println("NativeLibrary.findLibrary(<"+libName+">) (TempJarCache): "+res);
}
}
if(null == res) {
res = findLibraryImpl(libName, loader);
if (DEBUG) {
System.err.println("NativeLibrary.findLibrary(<"+libName+">, "+loader+") (CL): "+res);
}
}
return res;
}
}
|