pluotsorbet/override.js

261 строка
8.1 KiB
JavaScript
Исходник Обычный вид История

/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
'use strict';
var Override = {};
function JavaException(className, message) {
this.javaClassName = className;
this.message = message;
2014-09-24 23:55:17 +04:00
}
JavaException.prototype = Object.create(Error.prototype);
2014-09-24 23:55:17 +04:00
/**
* A simple wrapper for overriding JVM functions to avoid logic errors
* and simplify implementation:
*
* - Arguments are pushed off the stack based upon the number of
* arguments listed on `fn`.
*
* - The return value is automatically pushed back onto the stack, if
* the method signature does not return void. CAUTION: If you want to
* return a Long or Double, this code needs to be modified
* accordingly to do a `push2`. (Ideally, we'd just scrape the
* method signature and always do the right thing.)
*
* - The object reference ("this") is automatically bound to `fn`,
* unless you specify { static: true } in opts.
*
* - JavaException instances are caught and propagated as Java
exceptions; JS TypeError propagates as a NullPointerException.
*
* @param {string} key
* The fully-qualified JVM method signature.
* @param {function(args)} fn
* A function taking any number of args. The number of arguments
* this function takes is the number of args popped off of the stack.
* @param {object} opts
* { static: true } if the method is static (and should not receive
* and pop the `this` argument off the stack).
*/
function createAlternateImpl(object, key, fn) {
var retType = key[key.length - 1];
var numArgs = fn.length;
object[key] = function(ctx, stack, isStatic) {
var args = new Array(numArgs);
args[0] = ctx;
// NOTE: If your function accepts a Long/Double, you must specify
// two arguments (since they take up two stack positions); we
// could sugar this someday.
for (var i = numArgs - 1; i >= 1; i--) {
args[i] = stack.pop();
}
try {
var self = isStatic ? null : stack.pop();
var ret = fn.apply(self, args);
if (retType !== 'V') {
if (ret === true) {
stack.push(1);
} else if (ret === false) {
stack.push(0);
} else if (typeof ret === "string") {
stack.push(ctx.newString(ret));
} else if (retType === 'J' || retType === 'D') {
stack.push2(ret);
} else {
stack.push(ret);
}
}
} catch(e) {
if (e === VM.Pause || e === VM.Yield) {
throw e;
} else if (e.name === "TypeError") {
// JavaScript's TypeError is analogous to a NullPointerException.
ctx.raiseExceptionAndYield("java/lang/NullPointerException", e);
} else if (e.javaClassName) {
ctx.raiseExceptionAndYield(e.javaClassName, e.message);
} else {
console.error(e, e.stack);
ctx.raiseExceptionAndYield("java/lang/RuntimeException", e);
}
}
};
}
2014-09-25 23:14:32 +04:00
Override.create = createAlternateImpl.bind(null, Override);
Override.create("com/ibm/oti/connection/file/Connection.decode.(Ljava/lang/String;)Ljava/lang/String;", function(ctx, string) {
return decodeURIComponent(string.str);
});
Override.create("com/ibm/oti/connection/file/Connection.encode.(Ljava/lang/String;)Ljava/lang/String;", function(ctx, string) {
return string.str.replace(/[^a-zA-Z0-9-_\.!~\*\\'()/:]/g, encodeURIComponent);
});
Override.create("java/lang/Math.min.(II)I", function(ctx, a, b) {
return Math.min(a, b);
});
Override.create("java/io/ByteArrayOutputStream.write.([BII)V", function(ctx, b, off, len) {
if ((off < 0) || (off > b.length) || (len < 0) ||
((off + len) > b.length)) {
throw new JavaException("java/lang/IndexOutOfBoundsException");
}
if (len == 0) {
return;
}
var count = this.class.getField("I.count.I").get(this);
var buf = this.class.getField("I.buf.[B").get(this);
var newcount = count + len;
if (newcount > buf.length) {
var newbuf = ctx.newPrimitiveArray("B", Math.max(buf.length << 1, newcount));
newbuf.set(buf);
buf = newbuf;
this.class.getField("I.buf.[B").set(this, buf);
}
buf.set(b.subarray(off, off + len), count);
this.class.getField("I.count.I").set(this, newcount);
});
Override.create("java/io/ByteArrayOutputStream.write.(I)V", function(ctx, value) {
var count = this.class.getField("I.count.I").get(this);
var buf = this.class.getField("I.buf.[B").get(this);
var newcount = count + 1;
if (newcount > buf.length) {
var newbuf = ctx.newPrimitiveArray("B", Math.max(buf.length << 1, newcount));
newbuf.set(buf);
buf = newbuf;
this.class.getField("I.buf.[B").set(this, buf);
}
buf[count] = value;
this.class.getField("I.count.I").set(this, newcount);
});
Override.create("java/io/ByteArrayInputStream.<init>.([B)V", function(ctx, buf) {
if (!buf) {
throw new JavaException("java/lang/NullPointerException");
}
this.buf = buf;
this.pos = this.mark = 0;
this.count = buf.length;
});
Override.create("java/io/ByteArrayInputStream.<init>.([BII)V", function(ctx, buf, offset, length) {
if (!buf) {
throw new JavaException("java/lang/NullPointerException");
}
this.buf = buf;
this.pos = this.mark = offset;
this.count = (offset + length <= buf.length) ? (offset + length) : buf.length;
});
Override.create("java/io/ByteArrayInputStream.read.()I", function(ctx) {
return (this.pos < this.count) ? (this.buf[this.pos++] & 0xFF) : -1;
});
Override.create("java/io/ByteArrayInputStream.read.([BII)I", function(ctx, b, off, len) {
if (!b) {
throw new JavaException("java/lang/NullPointerException");
2014-09-27 07:58:43 +04:00
}
if ((off < 0) || (off > b.length) || (len < 0) ||
((off + len) > b.length)) {
throw new JavaException("java/lang/IndexOutOfBoundsException");
}
if (this.pos >= this.count) {
return -1;
}
if (this.pos + len > this.count) {
len = this.count - this.pos;
}
2014-09-27 07:58:43 +04:00
if (len === 0) {
return 0;
}
b.set(this.buf.subarray(this.pos, this.pos + len), off);
this.pos += len;
return len;
});
Override.create("java/io/ByteArrayInputStream.skip.(J)J", function(ctx, long, _) {
var n = long.toNumber();
if (this.pos + n > this.count) {
n = this.count - this.pos;
}
if (n < 0) {
return Long.fromNumber(0);
}
this.pos += n;
return Long.fromNumber(n);
});
Override.create("java/io/ByteArrayInputStream.available.()I", function(ctx) {
return this.count - this.pos;
});
Override.create("java/io/ByteArrayInputStream.mark.(I)V", function(ctx, readAheadLimit) {
this.mark = this.pos;
});
Override.create("java/io/ByteArrayInputStream.reset.()V", function(ctx) {
this.pos = this.mark;
});
// The following Permissions methods are overriden to avoid expensive calls to
// DomainPolicy.loadValues. This has the added benefit that we avoid many other
// computations.
Override.create("com/sun/midp/security/Permissions.forDomain.(Ljava/lang/String;)[[B", function(ctx, name) {
// NUMBER_OF_PERMISSIONS = PermissionsStrings.PERMISSION_STRINGS.length + 2
2014-10-01 06:29:25 +04:00
// The 2 is the two hardcoded MIPS and AMS permissions.
var NUMBER_OF_PERMISSIONS = 61;
var ALLOW = 1;
var maximums = ctx.newPrimitiveArray("B", NUMBER_OF_PERMISSIONS);
var defaults = ctx.newPrimitiveArray("B", NUMBER_OF_PERMISSIONS);
for (var i = 0; i < NUMBER_OF_PERMISSIONS; i++) {
maximums[i] = defaults[i] = ALLOW;
}
var permissions = ctx.newArray("[[B", 2);
permissions[0] = maximums;
permissions[1] = defaults;
return permissions;
});
// Always return true to make Java think the MIDlet domain is trusted.
Override.create("com/sun/midp/security/Permissions.isTrusted.(Ljava/lang/String;)Z", function(ctx, name) {
return true;
});
// Returns the ID of the permission. The callers will use this ID to check the
// permission in the permissions array returned by Permissions::forDomain.
Override.create("com/sun/midp/security/Permissions.getId.(Ljava/lang/String;)I", function(ctx, name) {
return 0;
});
// The Java code that uses this method doesn't actually use the return value, but
// passes it to Permissions.getId. So we can return anything.
Override.create("com/sun/midp/security/Permissions.getName.(I)Ljava/lang/String;", function(ctx, id) {
return "com.sun.midp";
});