Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
Rhino JavaScript Java Library Source Code
Rhino JavaScript Java Library is an open-source implementation of JavaScript
written entirely in Java.
Rhino JavaScript Java Library Source Code files are provided in binary package (rhino-1.7.14.zip).
You can also browse the source code below:
✍: FYIcenter.com
⏎ org/mozilla/javascript/AccessorSlot.java
package org.mozilla.javascript;
/**
* This is a specialization of Slot to store various types of values that are retrieved dynamically
* using Java and JavaScript functions. Unlike LambdaSlot, the fact that these values are accessed
* and mutated by functions is visible via the slot's property descriptor.
*/
public class AccessorSlot extends Slot {
private static final long serialVersionUID = 1677840254177335827L;
AccessorSlot(Slot oldSlot) {
super(oldSlot);
}
// The Getter and Setter may each be of a different type (JavaScript function, Java
// function, or neither). So, use an abstraction to distinguish them.
transient Getter getter;
transient Setter setter;
@Override
boolean isValueSlot() {
return false;
}
@Override
boolean isSetterSlot() {
return true;
}
@Override
ScriptableObject getPropertyDescriptor(Context cx, Scriptable scope) {
// It sounds logical that this would be the same as the logic for a normal Slot,
// but the spec is super pedantic about things like the order of properties here,
// so we need special support here.
ScriptableObject desc = (ScriptableObject) cx.newObject(scope);
desc.setCommonDescriptorProperties(getAttributes(), getter == null && setter == null);
String fName = name == null ? "f" : name.toString();
if (getter != null) {
Function f = getter.asGetterFunction(fName, scope);
desc.defineProperty("get", f == null ? Undefined.instance : f, ScriptableObject.EMPTY);
}
if (setter != null) {
Function f = setter.asSetterFunction(fName, scope);
desc.defineProperty("set", f == null ? Undefined.instance : f, ScriptableObject.EMPTY);
}
return desc;
}
@Override
public boolean setValue(Object value, Scriptable owner, Scriptable start) {
if (setter == null) {
if (getter != null) {
throwNoSetterException(start, value);
return true;
}
} else {
return setter.setValue(value, owner, start);
}
return super.setValue(value, owner, start);
}
@Override
public Object getValue(Scriptable start) {
if (getter != null) {
return getter.getValue(start);
}
return super.getValue(start);
}
@Override
Function getSetterFunction(String name, Scriptable scope) {
if (setter == null) {
return null;
}
return setter.asSetterFunction(name, scope);
}
@Override
Function getGetterFunction(String name, Scriptable scope) {
if (getter == null) {
return null;
}
return getter.asGetterFunction(name, scope);
}
interface Getter {
Object getValue(Scriptable start);
Function asGetterFunction(final String name, final Scriptable scope);
}
/** This is a Getter that delegates to a Java function via a MemberBox. */
static final class MemberBoxGetter implements Getter {
final MemberBox member;
MemberBoxGetter(MemberBox member) {
this.member = member;
}
@Override
public Object getValue(Scriptable start) {
if (member.delegateTo == null) {
return member.invoke(start, ScriptRuntime.emptyArgs);
}
return member.invoke(member.delegateTo, new Object[] {start});
}
@Override
public Function asGetterFunction(String name, Scriptable scope) {
return member.asGetterFunction(name, scope);
}
}
/** This is a getter that delegates to a JavaScript function. */
static final class FunctionGetter implements Getter {
// The value of the function might actually be Undefined, so we need an Object here.
final Object target;
FunctionGetter(Object target) {
this.target = target;
}
@Override
public Object getValue(Scriptable start) {
if (target instanceof Function) {
Function t = (Function) target;
Context cx = Context.getContext();
return t.call(cx, t.getParentScope(), start, ScriptRuntime.emptyArgs);
}
return Undefined.instance;
}
@Override
public Function asGetterFunction(String name, Scriptable scope) {
return target instanceof Function ? (Function) target : null;
}
}
interface Setter {
boolean setValue(Object value, Scriptable owner, Scriptable start);
Function asSetterFunction(final String name, final Scriptable scope);
}
/** Invoke the setter on this slot via reflection using MemberBox. */
static final class MemberBoxSetter implements Setter {
final MemberBox member;
MemberBoxSetter(MemberBox member) {
this.member = member;
}
@Override
public boolean setValue(Object value, Scriptable owner, Scriptable start) {
Context cx = Context.getContext();
Class<?>[] pTypes = member.argTypes;
// XXX: cache tag since it is already calculated in
// defineProperty ?
Class<?> valueType = pTypes[pTypes.length - 1];
int tag = FunctionObject.getTypeTag(valueType);
Object actualArg = FunctionObject.convertArg(cx, start, value, tag);
if (member.delegateTo == null) {
member.invoke(start, new Object[] {actualArg});
} else {
member.invoke(member.delegateTo, new Object[] {start, actualArg});
}
return true;
}
@Override
public Function asSetterFunction(String name, Scriptable scope) {
return member.asSetterFunction(name, scope);
}
}
/**
* Invoke the setter as a JavaScript function, taking care that it might actually be Undefined.
*/
static final class FunctionSetter implements Setter {
final Object target;
FunctionSetter(Object target) {
this.target = target;
}
@Override
public boolean setValue(Object value, Scriptable owner, Scriptable start) {
if (target instanceof Function) {
Function t = (Function) target;
Context cx = Context.getContext();
t.call(cx, t.getParentScope(), start, new Object[] {value});
}
return true;
}
@Override
public Function asSetterFunction(String name, Scriptable scope) {
return target instanceof Function ? (Function) target : null;
}
}
}
⏎ org/mozilla/javascript/AccessorSlot.java
Or download all of them as a single archive file:
File name: rhino-1.7.14-sources.jar File size: 1029165 bytes Release date: 2022-01-06 Download
⇒ Example code to Test rhino-runtime-1.7.14.jar
⇐ Download Rhino JavaScript Binary Package
2022-05-03, ≈99🔥, 1💬
Popular Posts:
JDK 17 java.rmi.jmod is the JMOD file for JDK 17 RMI (Remote Method Invocation) module. JDK 17 RMI m...
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...
Woodstox 6.4.0 Source Code Files are provided at the Woodstox GitHub Website . You can download them...
JDK 17 java.naming.jmod is the JMOD file for JDK 17 Naming module. JDK 17 Naming module compiled cla...
JDK 11 java.naming.jmod is the JMOD file for JDK 11 Naming module. JDK 11 Naming module compiled cla...