/interpreter/tags/at_build150307/src/edu/vub/at/objects/symbiosis/JavaMethod.java

http://ambienttalk.googlecode.com/ · Java · 134 lines · 73 code · 16 blank · 45 comment · 7 complexity · 8a58ad25a608c365c84c26d28c56153d MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * JavaMethod.java created on 5-nov-2006 at 20:08:39
  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.eval.Evaluator;
  30. import edu.vub.at.exceptions.InterpreterException;
  31. import edu.vub.at.exceptions.XTypeMismatch;
  32. import edu.vub.at.objects.ATContext;
  33. import edu.vub.at.objects.ATMethod;
  34. import edu.vub.at.objects.ATObject;
  35. import edu.vub.at.objects.ATTable;
  36. import edu.vub.at.objects.coercion.NativeStripes;
  37. import edu.vub.at.objects.grammar.ATBegin;
  38. import edu.vub.at.objects.grammar.ATSymbol;
  39. import edu.vub.at.objects.mirrors.Reflection;
  40. import edu.vub.at.objects.natives.NATByRef;
  41. import edu.vub.at.objects.natives.NATTable;
  42. import edu.vub.at.objects.natives.NATText;
  43. import edu.vub.at.objects.natives.grammar.AGBegin;
  44. import java.lang.reflect.Method;
  45. /**
  46. * JavaMethod is a wrapper class encapsulating one or more java.lang.reflect.Method objects.
  47. * The receiver is to be supplied during method application.
  48. *
  49. * All methods in the choices array should be overloaded versions of the same method
  50. * (i.e. they should have the same selector). The choices array should never be empty!
  51. *
  52. * JavaMethod objects must be constant, they are globally cached for all actors to use.
  53. *
  54. * @author tvcutsem
  55. */
  56. public final class JavaMethod extends NATByRef implements ATMethod {
  57. protected final Method[] choices_;
  58. public JavaMethod(Method[] choices) {
  59. // assertion
  60. if (choices.length == 0) { throw new RuntimeException("assertion failed"); }
  61. choices_ = choices;
  62. }
  63. public ATObject base_apply(ATTable arguments, ATContext ctx) throws InterpreterException {
  64. ATObject wrapper = ctx.base_getSelf();
  65. Object receiver;
  66. if (wrapper.isJavaObjectUnderSymbiosis()) {
  67. receiver = wrapper.asJavaObjectUnderSymbiosis().getWrappedObject();
  68. } else {
  69. // static invocations do not require a receiver
  70. receiver = null;
  71. }
  72. return Symbiosis.symbioticInvocation(wrapper, receiver, choices_[0].getName(), this, arguments.asNativeTable().elements_);
  73. }
  74. public ATObject base_applyInScope(ATTable arguments, ATContext ctx) throws InterpreterException {
  75. return base_apply(arguments, ctx);
  76. }
  77. public ATBegin base_getBodyExpression() throws InterpreterException {
  78. // list all of the method signatures of the (possibly overloaded) Java method
  79. StringBuffer buff = new StringBuffer("Java implementation of: ");
  80. for (int i = 0; i < choices_.length; i++) {
  81. buff.append("\n");
  82. buff.append(choices_[i].toString());
  83. }
  84. buff.append("\n");
  85. return new AGBegin(NATTable.atValue(new ATObject[] { NATText.atValue(buff.toString()) }));
  86. }
  87. public ATSymbol base_getName() throws InterpreterException {
  88. return Reflection.downSelector(choices_[0].getName());
  89. }
  90. public ATTable base_getParameters() throws InterpreterException {
  91. return Evaluator._ANON_MTH_ARGS_;
  92. }
  93. public NATText meta_print() throws InterpreterException {
  94. return NATText.atValue("<java method:"+choices_[0].getName()+">");
  95. }
  96. public ATTable meta_getStripes() throws InterpreterException {
  97. return NATTable.of(NativeStripes._METHOD_);
  98. }
  99. public ATMethod asMethod() throws XTypeMismatch {
  100. return this;
  101. }
  102. public boolean isMethod() {
  103. return true;
  104. }
  105. /**
  106. * Two JavaMethod instances are equal if they both represent a set of methods
  107. * from the same declaring class with the same selector.
  108. */
  109. public boolean equals(Object other) {
  110. if (other instanceof JavaMethod) {
  111. JavaMethod mth = (JavaMethod) other;
  112. return (mth.choices_[0].getDeclaringClass().equals(choices_[0].getDeclaringClass())) &&
  113. (mth.choices_[0].getName().equals(choices_[0].getName()));
  114. } else {
  115. return false;
  116. }
  117. }
  118. }