pluotsorbet/native.js

60 строки
2.0 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) {
var args = Array(types.length);
console.log(types.length-1);
for (var i=types.length-1; i >= 0; --i)
args[i] = popType(types[i].type);
console.log("popArgs", types, args);
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);
var instance = null;
2014-07-13 11:00:11 +04:00
if (!ACCESS_FLAGS.isStatic(methodInfo.access_flags))
2014-07-13 10:13:53 +04:00
instance = this.stack.pop();
2014-07-13 11:00:11 +04:00
if (!methodInfo.native)
methodInfo.native = this.getMethod(methodInfo);
result = methodInfo.native.apply(instance, 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();
var className = cp[classInfo.name_index];
var methodName = cp[methodInfo.name_index];
var signature = cp[methodInfo.signature_index];
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) {
console.log(src, srcOffset, dst, dstOffset, length);
var srcProto = Object.getPrototypeOf(src);
var dstProto = Object.getPrototypeOf(dst);
if (srcProto === dstProto) {
}
}