/interpreter/tags/at2dist130208/src/edu/vub/at/objects/symbiosis/JavaClass.java

http://ambienttalk.googlecode.com/ · Java · 386 lines · 199 code · 41 blank · 146 comment · 21 complexity · 86c29b37a24fe177fc31d4abf3242ec0 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * JavaClass.java created on 3-nov-2006 at 10:54:38
  4. * (c) Programming Technology Lab, 2006 - 2007
  5. * Authors: Tom Van Cutsem & Stijn Mostinckx
  6. *
  7. * Permission is hereby granted, free of charge, to any person
  8. * obtaining a copy of this software and associated documentation
  9. * files (the "Software"), to deal in the Software without
  10. * restriction, including without limitation the rights to use,
  11. * copy, modify, merge, publish, distribute, sublicense, and/or
  12. * sell copies of the Software, and to permit persons to whom the
  13. * Software is furnished to do so, subject to the following
  14. * conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be
  17. * included in all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  21. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  23. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  24. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  25. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. package edu.vub.at.objects.symbiosis;
  29. import edu.vub.at.exceptions.InterpreterException;
  30. import edu.vub.at.exceptions.XArityMismatch;
  31. import edu.vub.at.exceptions.XDuplicateSlot;
  32. import edu.vub.at.exceptions.XTypeMismatch;
  33. import edu.vub.at.exceptions.XUnassignableField;
  34. import edu.vub.at.exceptions.XUndefinedSlot;
  35. import edu.vub.at.objects.ATBoolean;
  36. import edu.vub.at.objects.ATContext;
  37. import edu.vub.at.objects.ATField;
  38. import edu.vub.at.objects.ATMethod;
  39. import edu.vub.at.objects.ATNil;
  40. import edu.vub.at.objects.ATObject;
  41. import edu.vub.at.objects.ATTable;
  42. import edu.vub.at.objects.ATTypeTag;
  43. import edu.vub.at.objects.coercion.NativeTypeTags;
  44. import edu.vub.at.objects.grammar.ATSymbol;
  45. import edu.vub.at.objects.mirrors.PrimitiveMethod;
  46. import edu.vub.at.objects.mirrors.Reflection;
  47. import edu.vub.at.objects.natives.NATBoolean;
  48. import edu.vub.at.objects.natives.NATNumber;
  49. import edu.vub.at.objects.natives.NATObject;
  50. import edu.vub.at.objects.natives.NATTable;
  51. import edu.vub.at.objects.natives.NATText;
  52. import edu.vub.at.objects.natives.grammar.AGSymbol;
  53. import edu.vub.at.util.logging.Logging;
  54. import edu.vub.util.IdentityHashMap;
  55. import java.lang.ref.SoftReference;
  56. /**
  57. * A JavaClass instance represents a Java Class under symbiosis.
  58. *
  59. * Java classes are treated as AmbientTalk 'singleton' objects:
  60. *
  61. * - cloning a Java class results in the same Java class instance
  62. * - sending 'new' to a Java class invokes the constructor and returns a new instance of the class under symbiosis
  63. * - all static fields and methods of the Java class are reflected under symbiosis as fields and methods of the AT object
  64. *
  65. * A Java Class object that represents an interface can furthermore be used
  66. * as an AmbientTalk type. The type's name corresponds to the interface's full name.
  67. *
  68. * JavaClass instances are pooled (on a per-actor basis): there should exist only one JavaClass instance
  69. * for each Java class loaded into the JVM. Because the JVM ensures that a Java class
  70. * can only be loaded once, we can use the Java class wrapped by the JavaClass instance
  71. * as a unique key to identify its corresponding JavaClass instance.
  72. *
  73. * @author tvcutsem
  74. */
  75. public final class JavaClass extends NATObject implements ATTypeTag {
  76. /**
  77. * A thread-local hashmap pooling all of the JavaClass wrappers for
  78. * the current actor, referring to them using SOFT references, such
  79. * that unused wrappers can be GC-ed when running low on memory.
  80. */
  81. private static final ThreadLocal _JAVACLASS_POOL_ = new ThreadLocal() {
  82. protected synchronized Object initialValue() {
  83. return new IdentityHashMap();
  84. }
  85. };
  86. /**
  87. * Allocate a unique symbiont object for the given Java class.
  88. */
  89. public static final JavaClass wrapperFor(Class c) {
  90. IdentityHashMap map = (IdentityHashMap) _JAVACLASS_POOL_.get();
  91. if (map.containsKey(c)) {
  92. SoftReference ref = (SoftReference) map.get(c);
  93. JavaClass cls = (JavaClass) ref.get();
  94. if (cls != null) {
  95. return cls;
  96. } else {
  97. map.remove(c);
  98. cls = new JavaClass(c);
  99. map.put(c, new SoftReference(cls));
  100. return cls;
  101. }
  102. } else {
  103. JavaClass jc = new JavaClass(c);
  104. map.put(c, new SoftReference(jc));
  105. return jc;
  106. }
  107. }
  108. // primitive fields and method of a JavaClass wrapper
  109. private static final AGSymbol _PTS_NAME_ = AGSymbol.jAlloc("parentTypes");
  110. private static final AGSymbol _TNM_NAME_ = AGSymbol.jAlloc("typeName");
  111. /** def isSubtypeOf(type) { nil } */
  112. private static final PrimitiveMethod _PRIM_STP_ = new PrimitiveMethod(
  113. AGSymbol.jAlloc("isSubtypeOf"), NATTable.atValue(new ATObject[] { AGSymbol.jAlloc("type")})) {
  114. private static final long serialVersionUID = -6864350539143194204L;
  115. public ATObject base_apply(ATTable arguments, ATContext ctx) throws InterpreterException {
  116. if (!arguments.base_length().equals(NATNumber.ONE)) {
  117. throw new XArityMismatch("isSubtypeOf", 1, arguments.base_length().asNativeNumber().javaValue);
  118. }
  119. return ctx.base_lexicalScope().asJavaClassUnderSymbiosis().base_isSubtypeOf(arguments.base_at(NATNumber.ONE).asTypeTag());
  120. }
  121. };
  122. private final Class wrappedClass_;
  123. /**
  124. * A JavaClass wrapping a class c is an object that has the lexical scope as its lexical parent
  125. * and has NIL as its dynamic parent.
  126. *
  127. * If the JavaClass wraps a Java interface type, JavaClass instances are
  128. * also types.
  129. */
  130. private JavaClass(Class wrappedClass) {
  131. super(wrappedClass.isInterface() ?
  132. new ATTypeTag[] { NativeTypeTags._TYPETAG_, NativeTypeTags._ISOLATE_ } :
  133. NATObject._NO_TYPETAGS_);
  134. wrappedClass_ = wrappedClass;
  135. // add the two fields and one method needed for an ATTypeTag
  136. if (wrappedClass.isInterface()) {
  137. Class[] extendedInterfaces = wrappedClass_.getInterfaces();
  138. ATObject[] types = new ATObject[extendedInterfaces.length];
  139. for (int i = 0; i < extendedInterfaces.length; i++) {
  140. types[i] = JavaClass.wrapperFor(extendedInterfaces[i]);
  141. }
  142. try {
  143. super.meta_defineField(_PTS_NAME_, NATTable.atValue(types));
  144. super.meta_defineField(_TNM_NAME_, AGSymbol.jAlloc(wrappedClass_.getName()));
  145. super.meta_addMethod(_PRIM_STP_);
  146. } catch (InterpreterException e) {
  147. Logging.Actor_LOG.fatal("Error while initializing Java Class as type tag: " + wrappedClass.getName(), e);
  148. }
  149. }
  150. }
  151. /** return the class object denoted by this AmbientTalk symbiont */
  152. public Class getWrappedClass() { return wrappedClass_; }
  153. public JavaClass asJavaClassUnderSymbiosis() throws XTypeMismatch { return this; }
  154. public ATBoolean base__opeql__opeql_(ATObject comparand) throws InterpreterException {
  155. return NATBoolean.atValue(this.equals(comparand));
  156. }
  157. public boolean equals(Object other) {
  158. return ((other instanceof JavaClass) &&
  159. (wrappedClass_.equals(((JavaClass) other).wrappedClass_)));
  160. }
  161. /**
  162. * Fields can be defined within a symbiotic Java class object. They are added
  163. * to its AmbientTalk symbiont, but only if they do not clash with already
  164. * existing field names.
  165. */
  166. public ATNil meta_defineField(ATSymbol name, ATObject value) throws InterpreterException {
  167. if (Symbiosis.hasField(wrappedClass_, Reflection.upSelector(name), true)) {
  168. throw new XDuplicateSlot(name);
  169. } else {
  170. return super.meta_defineField(name, value);
  171. }
  172. }
  173. /**
  174. * Symbiotic Java class objects are singletons.
  175. */
  176. public ATObject meta_clone() throws InterpreterException { return this; }
  177. /**
  178. * aJavaClass.new(@args) == invoke a Java constructor
  179. * AmbientTalk objects can add a custom new method to the class in order to intercept
  180. * instance creation. The original instance can then be performed by invoking the old new(@args).
  181. *
  182. * For example, imagine we want to extend the class java.lang.Point with a 3D coordinate, e.g. a 'z' field:
  183. * <tt>
  184. * def Point := jlobby.java.awt.Point;
  185. * def oldnew := Point.new;
  186. * def Point.new(x,y,z) { // 'override' the new method
  187. * def point := oldnew(x,y); // invokes the Java constructor
  188. * def point.z := z; // adds a field dynamically to the new JavaObject wrapper
  189. * point; // important! new should return the newly created instance
  190. * }
  191. * def mypoint := Point.new(1,2,3);
  192. * </tt>
  193. */
  194. public ATObject meta_newInstance(ATTable initargs) throws InterpreterException {
  195. return Symbiosis.symbioticInstanceCreation(wrappedClass_, initargs.asNativeTable().elements_);
  196. }
  197. /**
  198. * Methods can be added to a symbiotic Java class object provided they do not already
  199. * exist in the Java class.
  200. */
  201. public ATNil meta_addMethod(ATMethod method) throws InterpreterException {
  202. ATSymbol name = method.base_name();
  203. if (Symbiosis.hasMethod(wrappedClass_, Reflection.upSelector(name), true)) {
  204. throw new XDuplicateSlot(name);
  205. } else {
  206. return super.meta_addMethod(method);
  207. }
  208. }
  209. /**
  210. * Fields can be grabbed from a symbiotic Java class object. Fields that correspond
  211. * to static fields in the Java class are returned as JavaField instances.
  212. */
  213. public ATField meta_grabField(ATSymbol fieldName) throws InterpreterException {
  214. try {
  215. return new JavaField(null,
  216. Symbiosis.getField(wrappedClass_, Reflection.upSelector(fieldName), true));
  217. } catch(XUndefinedSlot e) {
  218. return super.meta_grabField(fieldName);
  219. }
  220. }
  221. /**
  222. * Methods can be grabbed from a symbiotic Java class object. Methods that correspond
  223. * to static methods in the Java class are returned as JavaMethod instances.
  224. */
  225. public ATMethod meta_grabMethod(ATSymbol methodName) throws InterpreterException {
  226. JavaMethod choices = Symbiosis.getMethods(wrappedClass_, Reflection.upSelector(methodName), true);
  227. if (choices != null) {
  228. return choices;
  229. } else {
  230. return super.meta_grabMethod(methodName);
  231. }
  232. }
  233. /**
  234. * Querying a symbiotic Java class object for its fields results in a table containing
  235. * both 'native' static Java fields and the fields of its AT symbiont
  236. */
  237. public ATTable meta_listFields() throws InterpreterException {
  238. // instance fields of the wrapped object's class
  239. JavaField[] jFields = Symbiosis.getAllFields(null, wrappedClass_);
  240. // fields of the AT symbiont
  241. ATObject[] symbiontFields = super.meta_listFields().asNativeTable().elements_;
  242. return NATTable.atValue(NATTable.collate(jFields, symbiontFields));
  243. }
  244. /**
  245. * Querying a symbiotic Java class object for its methods results in a table containing
  246. * both 'native' static Java methods and the methods of its AT symbiont
  247. */
  248. public ATTable meta_listMethods() throws InterpreterException {
  249. // instance methods of the wrapped object's class
  250. JavaMethod[] jMethods = Symbiosis.getAllMethods(wrappedClass_, true);
  251. // methods of the AT symbiont
  252. ATObject[] symbiontMethods = super.meta_listMethods().asNativeTable().elements_;
  253. return NATTable.atValue(NATTable.collate(jMethods, symbiontMethods));
  254. }
  255. public ATBoolean meta_isCloneOf(ATObject original) throws InterpreterException {
  256. return NATBoolean.atValue(this == original);
  257. }
  258. public NATText meta_print() throws InterpreterException {
  259. return NATText.atValue("<java:"+wrappedClass_.toString()+">");
  260. }
  261. /**
  262. * Java class wrappers may be passed by-copy since Java Class
  263. * objects are serializable. Upon deserialization however, the
  264. * class wrapper returned will be the one local to the receiving
  265. * actor.
  266. */
  267. public ATObject meta_pass() throws InterpreterException {
  268. return this;
  269. }
  270. /**
  271. * A Java Class object remains unique within an actor.
  272. */
  273. public ATObject meta_resolve() throws InterpreterException {
  274. return wrapperFor(wrappedClass_);
  275. }
  276. /* ========================
  277. * == ATTypeTag Interface ==
  278. * ======================== */
  279. /**
  280. * If this class represents an interface type, parentTypes
  281. * are wrappers for all interfaces extended by this Java interface type
  282. */
  283. public ATTable base_superTypes() throws InterpreterException {
  284. return super.impl_invokeAccessor(this, _PTS_NAME_, NATTable.EMPTY).asTable();
  285. }
  286. public ATSymbol base_typeName() throws InterpreterException {
  287. return super.impl_invokeAccessor(this, _TNM_NAME_, NATTable.EMPTY).asSymbol();
  288. }
  289. /**
  290. * A Java interface type used as a type can only be a subtype of another
  291. * Java interface type used as a type, and only if this type is assignable
  292. * to the other type.
  293. */
  294. public ATBoolean base_isSubtypeOf(ATTypeTag other) throws InterpreterException {
  295. if (other instanceof JavaClass) {
  296. JavaClass otherClass = (JavaClass) other;
  297. // wrappedClass <: otherClass <=> otherClass >= wrappedClass
  298. return NATBoolean.atValue(otherClass.wrappedClass_.isAssignableFrom(wrappedClass_));
  299. } else {
  300. return NATBoolean._FALSE_;
  301. }
  302. }
  303. // IMPLEMENTATION INTERFACE
  304. /**
  305. * A symbiotic Java class object has all of the public static fields
  306. * of its Java class plus all of the fields defined in the AT symbiont.
  307. */
  308. protected boolean hasLocalField(ATSymbol atSelector) throws InterpreterException {
  309. return Symbiosis.hasField(wrappedClass_, Reflection.upSelector(atSelector), true) ||
  310. super.hasLocalField(atSelector);
  311. }
  312. /**
  313. * A symbiotic Java class object has all of the public static methods
  314. * of its Java class plus all of the methods defined in the AT symbiont.
  315. */
  316. protected boolean hasLocalMethod(ATSymbol atSelector) throws InterpreterException {
  317. return Symbiosis.hasMethod(wrappedClass_, Reflection.upSelector(atSelector), true) ||
  318. super.hasLocalMethod(atSelector);
  319. }
  320. protected ATObject getLocalField(ATSymbol selector) throws InterpreterException {
  321. try {
  322. return Symbiosis.readField(null, wrappedClass_, Reflection.upSelector(selector));
  323. } catch(XUndefinedSlot e) {
  324. return super.getLocalField(selector);
  325. }
  326. }
  327. protected ATMethod getLocalMethod(ATSymbol methodName) throws InterpreterException {
  328. JavaMethod choices = Symbiosis.getMethods(wrappedClass_, Reflection.upSelector(methodName), true);
  329. if (choices != null) {
  330. return choices;
  331. } else {
  332. return super.getLocalMethod(methodName);
  333. }
  334. }
  335. protected void setLocalField(ATSymbol selector, ATObject value) throws InterpreterException {
  336. try {
  337. Symbiosis.writeField(null, wrappedClass_, Reflection.upSelector(selector), value);
  338. } catch(XUndefinedSlot e) {
  339. super.setLocalField(selector, value);
  340. } catch(XUnassignableField e) {
  341. // field may have been final, in which case there 'is no such field'
  342. super.setLocalField(selector, value);
  343. }
  344. }
  345. }