pluotsorbet/native.js

89 строки
3.3 KiB
JavaScript
Исходник Обычный вид История

2014-07-13 01:07:11 +04:00
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* vim: set shiftwidth=4 tabstop=4 autoindent cindent expandtab: */
'use strict';
var Native = function() {
}
2014-07-13 11:00:11 +04:00
Native.prototype.invokeNative = function(caller, methodInfo) {
2014-07-13 10:13:53 +04:00
function pushType(type, value) {
if (type === "long" || type === "double") {
caller.stack.push2(value);
return;
2014-07-13 01:07:11 +04:00
}
2014-07-13 10:13:53 +04:00
caller.stack.push(value);
}
function popType(type) {
return (type === "long" || type === "double") ? caller.stack.pop2() : caller.stack.pop();
}
function popArgs(types) {
2014-07-13 11:12:33 +04:00
var argc = types.length;
if (!ACCESS_FLAGS.isStatic(methodInfo.access_flags))
++argc;
2014-07-13 10:13:53 +04:00
var args = Array(types.length);
2014-07-13 11:12:33 +04:00
for (var i=types.length-1, j=args.length-1; i >= 0; --i, --j)
args[j] = popType(types[i].type);
if (j >= 0)
args[0] = caller.stack.pop();
2014-07-13 10:13:53 +04:00
return args;
}
2014-07-13 11:00:11 +04:00
var signature = methodInfo.signature;
2014-07-13 10:13:53 +04:00
var args = popArgs(signature.IN);
2014-07-13 11:00:11 +04:00
if (!methodInfo.native)
methodInfo.native = this.getMethod(methodInfo);
2014-07-13 20:03:11 +04:00
var result = methodInfo.native.apply(caller, args);
2014-07-13 10:13:53 +04:00
if (signature.OUT.length)
pushType(signature.OUT[0], result);
2014-07-13 01:07:11 +04:00
}
2014-07-13 11:00:11 +04:00
Native.prototype.getMethod = function (methodInfo) {
var classInfo = methodInfo.classInfo;
var cp = classInfo.getConstantPool();
2014-07-13 11:12:33 +04:00
var className = classInfo.getClassName();
var methodName = cp[methodInfo.name_index].bytes;
var signature = cp[methodInfo.signature_index].bytes;
2014-07-13 10:13:53 +04:00
console.log("Native.getMethod", className, methodName, signature);
return this[className + "." + methodName + "." + signature];
}
Native.prototype["java/lang/System.arraycopy.(Ljava/lang/Object;ILjava/lang/Object;II)V"] = function (src, srcOffset, dst, dstOffset, length) {
2014-07-13 20:03:11 +04:00
console.log(src, srcOffset, dst, dstOffset, length);
if (!src || !dst) {
this.raiseException("java/lang/NullPointerException", "Cannot copy to/from a null array.");
return;
}
2014-07-13 20:03:11 +04:00
var proto = Object.getPrototypeOf(src);
if (proto !== Int8Array.prototype && proto !== Int16Array.prototype && proto !== Int32Array.prototype &&
proto !== Uint16Array.prototype && proto !== Float32Array.prototype && proto !== Float64Array.prototype &&
proto !== Array.prototype) {
this.raiseException("java/lang/ArrayStoreException", "Can only copy to/from array types.");
return;
}
if (proto !== Object.getPrototypeOf(dst)) {
this.raiseException("java/lang/ArrayStoreException", "Incompatible component types.");
return;
}
if (srcOffset < 0 || (srcOffset+length) > src.length || dstOffset < 0 || (dstOffset+length) > dst.length || length < 0) {
this.raiseException("java/lang/ArrayIndexOutOfBoundsException", "Invalid index.");
return;
}
if (proto === Array.prototype) {
// TODO: check casting
this.raiseException("java/lang/ArrayStoreException", "Invalid element type.");
return;
}
if (dst !== src || dstOffset < srcOffset) {
for (var n = 0; n < length; ++n)
dst[dstOffset++] = src[srcOffset++];
} else {
dstOffset += length;
srcOffset += length;
for (var n = 0; n < length; ++n)
dst[--dstOffset] = src[--srcOffset];
2014-07-13 10:13:53 +04:00
}
}