/interpreter/tags/reactive-pattern-matching/src/edu/vub/at/objects/coercion/Coercer.java

http://ambienttalk.googlecode.com/ · Java · 214 lines · 91 code · 20 blank · 103 comment · 25 complexity · 07972dcce6cd27534226a28bb0e102c2 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * Coercer.java created on 3-okt-2006 at 16:12:05
  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.coercion;
  29. import edu.vub.at.actors.eventloops.BlockingFuture;
  30. import edu.vub.at.actors.eventloops.EventLoop;
  31. import edu.vub.at.actors.eventloops.EventLoop.EventProcessor;
  32. import edu.vub.at.actors.natives.ELActor;
  33. import edu.vub.at.exceptions.XIllegalOperation;
  34. import edu.vub.at.exceptions.XTypeMismatch;
  35. import edu.vub.at.objects.ATObject;
  36. import edu.vub.at.objects.mirrors.Reflection;
  37. import edu.vub.at.objects.symbiosis.Symbiosis;
  38. import java.io.IOException;
  39. import java.io.Serializable;
  40. import java.lang.reflect.InvocationHandler;
  41. import java.lang.reflect.InvocationTargetException;
  42. import java.lang.reflect.Method;
  43. import java.lang.reflect.Proxy;
  44. /**
  45. * A coercer is a dynamic proxy which is used to 'cast' Ambienttalk base-level NATObjects to a certain ATxxx interface.
  46. * The dynamic proxy is responsible for transforming java calls to meta_invoke calls.
  47. *
  48. * For example, a method from an AT interface
  49. *
  50. * ATExpression base_expression() throws NATException
  51. *
  52. * receives the following implementation:
  53. *
  54. * ATExpression expression() throws NATException {
  55. * return principal.meta_invoke(principal, Reflection.downSelector("getExpression"), NATTable.EMPTY).asExpression();
  56. * }
  57. *
  58. * where principal is the original object 'coerced into' the given interface
  59. *
  60. * TODO: we should implement a mapping uniquely identifiying a Coercer per
  61. * ATObject, Interface pair, i.e. we must implement a Map:
  62. * (ATObject x Class) -> Coercer
  63. *
  64. * @author tvcutsem
  65. */
  66. public final class Coercer implements InvocationHandler, Serializable {
  67. private final ATObject principal_;
  68. // we have to remember which thread owned the principal
  69. private transient Thread wrappingThread_;
  70. private Coercer(ATObject principal, Thread owningThread) {
  71. principal_ = principal;
  72. wrappingThread_ = owningThread;
  73. }
  74. public String toString() {
  75. return "<coercer on: "+principal_+">";
  76. }
  77. /**
  78. * Try to coerce the given AmbientTalk object into the given Java type. This variant implicitly assumes that
  79. * the coercion is performed by the thread owning the object, which is the case when coercing arguments to a
  80. * Java method call or when passing an AmbientTalk object as a result.
  81. *
  82. * Note that the returned coercer object is also an instance of {@link ATObject} and
  83. * in the AmbientTalk world the coercer will behave as its coerced AT object.
  84. *
  85. * @param object the AmbientTalk object to coerce
  86. * @param type the class object representing the target type
  87. * @return a Java object <tt>o</tt> for which it holds that <tt>type.isInstance(o)</tt>
  88. * @throws XTypeMismatch if the coercion fails
  89. */
  90. public static final Object coerce(ATObject object, Class type) throws XTypeMismatch {
  91. return coerce(object, type, Thread.currentThread());
  92. }
  93. /**
  94. * Try to coerce the given AmbientTalk object into the given Java type, while explicitly providing the thread
  95. * which is the owning actor for the object.
  96. * <p>
  97. * This variant of coerce is provided explicitly to allow coercion to occur from a Java thread which is not the
  98. * owning actor of the object. This occurs when the coercion is performed explicitly on the return value of an
  99. * evaluation, after the latter has been finalized.
  100. *
  101. * @param object the AmbientTalk object to coerce
  102. * @param type the class object representing the target type
  103. * @param owningThread the owning Actor
  104. * @return a Java object <tt>o</tt> for which it holds that <tt>type.isInstance(o)</tt>
  105. * @throws XTypeMismatch if the coercion fails
  106. */
  107. public static final Object coerce(ATObject object, Class type, Thread owningThread) throws XTypeMismatch {
  108. if (type.isInstance(object)) { // object instanceof type
  109. return object; // no need to coerce
  110. } else if (type.isInterface()) {
  111. // see which class loader is required to load the interface
  112. // first try this thread's context class loader
  113. ClassLoader loader = Thread.currentThread().getContextClassLoader();
  114. try {
  115. Class.forName(type.getName(), false, loader);
  116. } catch(ClassNotFoundException e) {
  117. // if that fails, try the class loader that created the interface type
  118. loader = type.getClassLoader();
  119. }
  120. // note that the proxy implements both the required type
  121. // and the Symbiotic object marker interface to identify it as a wrapper
  122. return Proxy.newProxyInstance(loader,
  123. new Class[] { type, ATObject.class },
  124. new Coercer(object, owningThread));
  125. } else {
  126. throw new XTypeMismatch(type, object);
  127. }
  128. }
  129. public Object invoke(Object receiver, final Method method, Object[] arguments) throws Throwable {
  130. Class methodImplementor = method.getDeclaringClass();
  131. // handle toString, hashCode and equals in a dedicated fashion
  132. // similarly, handle any native AT methods by simply forwarding them to the native AT object
  133. if (methodImplementor == Object.class || methodImplementor == ATObject.class) {
  134. // invoke these methods on the principal rather than on the proxy
  135. try {
  136. return method.invoke(principal_, arguments);
  137. } catch (InvocationTargetException e) {
  138. throw e.getTargetException();
  139. }
  140. } else {
  141. final ATObject[] symbioticArgs;
  142. // support for variable-arity invocations from within AmbientTalk
  143. if ((arguments != null) && (arguments.length == 1) && (arguments[0] instanceof ATObject[])) {
  144. // no need to convert arguments
  145. symbioticArgs = (ATObject[]) arguments[0];
  146. } else {
  147. symbioticArgs = new ATObject[(arguments == null) ? 0 : arguments.length];
  148. for (int i = 0; i < symbioticArgs.length; i++) {
  149. symbioticArgs[i] = Symbiosis.javaToAmbientTalk(arguments[i]);
  150. }
  151. }
  152. // if the current thread is not an actor thread, treat the Java invocation
  153. // as a message send instead and enqueue it in my actor's thread
  154. if (Thread.currentThread() != wrappingThread_) {
  155. if (Thread.currentThread() instanceof EventProcessor) {
  156. // another event loop has direct access to this object, this means
  157. // an AT object has been shared between actors via Java, signal an error
  158. throw new XIllegalOperation("Detected illegal invocation of "+method.getName()+": sharing via Java level of object " + principal_);
  159. }
  160. ELActor owningActor = (ELActor) EventLoop.toEventLoop(wrappingThread_);
  161. // if the invoked method is part of an EventListener interface, treat the
  162. // invocation as a pure asynchronous message send, if the returntype is void
  163. if (Symbiosis.isEvent(method)) {
  164. // asynchronous symbiotic invocation
  165. owningActor.event_symbioticInvocation(principal_, method, symbioticArgs);
  166. return null; // void return type
  167. } else {
  168. // because a message send is asynchronous and Java threads work synchronously,
  169. // we'll have to make the Java thread wait for the result
  170. BlockingFuture future = owningActor.sync_event_symbioticInvocation(principal_, method, symbioticArgs);
  171. if (method.getReturnType().equals(BlockingFuture.class)) {
  172. // future-type symbiotic invocation
  173. return future;
  174. } else {
  175. // synchronous symbiotic invocation
  176. return future.get();
  177. }
  178. }
  179. } else {
  180. // perform an immediate symbiotic invocation
  181. ATObject result = Reflection.downInvocation(principal_, method, symbioticArgs);
  182. // properly 'cast' the returned object into the appropriate interface
  183. return Symbiosis.ambientTalkToJava(result, method.getReturnType());
  184. }
  185. }
  186. }
  187. /**
  188. * Upon deserialization, re-assign the thread to the actor deserializing this coercer
  189. */
  190. private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException {
  191. in.defaultReadObject();
  192. wrappingThread_ = Thread.currentThread();
  193. }
  194. }