Files
mercury/java/runtime/Native.java.in
James Goddard 1e8afc7bee Implement some library predicates for Java using JNI.
Estimated hours taken: 13
Branches: main

Implement some library predicates for Java using JNI.

java/runtime/Native.java.in:
	A new class which uses JNI to provide any native functionality
	required by predicates of the standard library in Java.
	So far it only provides methods relating to timing.

java/runtime/Native.c:
	Source code, written in C, which implements all the native methods of
	mercury.runtime.Native.  Note that this implementation makes use of the
	existing C implementation of the equivalent functions.

java/runtime/Mmakefile:
	Rules for compiling a shared object from Native.c.

library/time.m:
	Implement the following predicates for Java using Native interface:
		time__c_clock/3
		time__clocks_per_sec/1
		time__times/7

library/benchmarking.m:
	Implement the following predicates for Java using Native interface:
		get_user_cpu_miliseconds/1

library/Mmakefile:
	Renamed to library/Mmakefile.in, so as to have access to FULLARCH
	constant.

library/Mmakefile.in:
	Added rules for incorporating the Native shared object.
2004-02-05 03:56:05 +00:00

122 lines
3.1 KiB
Java

//
// Copyright (C) 2004 The University of Melbourne.
// This file may only be copied under the terms of the GNU Library General
// Public License - see the file COPYING.LIB in the Mercury distribution.
//
//
// This class exists to provide any native functionality required by the Java
// implementation. It uses JNI to access a shared object which it searches
// for in all the directories listed in the current CLASSPATH.
//
// At the moment the only services provided are those relating to timing.
//
package mercury.runtime;
public class Native {
/*
** SHARED_OBJ is the name of the shared object which contains all the
** compiled native code.
*/
private static final java.lang.String SHARED_OBJ =
"Native.@EXT_FOR_SHARED_LIB@";
/*
** available and isAvailable() are true when native functionality
** is available. (ie SHARED_OBJ was loaded successfully)
*/
private static boolean available = false;
public static boolean isAvailable() {
return available;
}
static {
available = load_library();
}
/*
** load_library():
** Searches all the directories listed in the classpath,
** (including the directories containing each jar file) for
** the shared object SHARED_OBJ and attempts to load this file
** if found.
** Also searches in the subdirectory Constants.MR_FULLARCH.
** Returns true if successful, false otherwise.
*/
private static boolean load_library() {
java.util.StringTokenizer classpath =
new java.util.StringTokenizer(
java.lang.System.getProperty("java.class.path")
,java.lang.System.getProperty("path.separator")
);
while (classpath.hasMoreTokens()) {
java.io.File dir;
java.io.File entry = new java.io.File(
classpath.nextToken());
try {
if (entry.isDirectory()) {
dir = entry;
} else {
dir = entry.getParentFile();
}
if (dir == null) {
dir = new java.io.File("");
}
java.io.File match = new java.io.File(dir,
SHARED_OBJ);
if (match.exists() == false) {
dir = new java.io.File(dir,
mercury.runtime.Constants.
MR_FULLARCH);
match = new java.io.File(dir,
SHARED_OBJ);
}
java.lang.System.load(match.getAbsolutePath());
return true;
}
catch (java.lang.Exception e) {
continue;
}
} // while classpath.hasMoreTokens()
return false;
} // load_library()
/*
** clock():
** Calls clock() from the <time.h> library.
*/
public static native int clock();
/*
** clocks_per_sec():
** Returns the number of "clocks" per sec as defined by
** CLOCKS_PER_SEC.
*/
public static native int clocks_per_sec();
/*
** times():
** Calls times() from the <time.h> library. Results are returned
** in an int array of the form:
** { <return value>, utime, stime, cutime, cstime }
** If POSIX times are not available, <return value> will be set
** to -1, and the other values are undefined.
** Returns null if the array cannot be constructed.
*/
public static native int[] times();
/*
** get_user_cpu_miliseconds():
** Native method to return the CPU time consumed by the process,
** in miliseconds, from an arbitrary initial time.
*/
public static native int get_user_cpu_miliseconds();
}