/interpreter/tags/at2dist030708/src/edu/vub/at/objects/symbiosis/JavaField.java

http://ambienttalk.googlecode.com/ · Java · 113 lines · 62 code · 15 blank · 36 comment · 5 complexity · fa2ad619ce3981d2afa0d680a96c29a0 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * JavaField.java created on 5-nov-2006 at 20:08:18
  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.XIllegalArgument;
  32. import edu.vub.at.objects.ATField;
  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.NativeTypeTags;
  37. import edu.vub.at.objects.grammar.ATSymbol;
  38. import edu.vub.at.objects.mirrors.Reflection;
  39. import edu.vub.at.objects.natives.NATByRef;
  40. import edu.vub.at.objects.natives.NATField;
  41. import edu.vub.at.objects.natives.NATNumber;
  42. import edu.vub.at.objects.natives.NATTable;
  43. import edu.vub.at.objects.natives.NATText;
  44. import java.lang.reflect.Field;
  45. /**
  46. * A JavaField is a simple wrapper around a native java.lang.reflect.Field
  47. *
  48. * @author tvcutsem
  49. */
  50. public final class JavaField extends NATByRef implements ATField {
  51. private final Object host_;
  52. private final Field field_;
  53. public JavaField(Object host, Field f) {
  54. host_ = host;
  55. field_ = f;
  56. }
  57. public ATSymbol base_name() {
  58. return Reflection.downSelector(field_.getName());
  59. }
  60. public ATObject base_readField() throws InterpreterException {
  61. return Symbiosis.readField(host_, field_);
  62. }
  63. public ATObject base_writeField(ATObject newValue) throws InterpreterException {
  64. Symbiosis.writeField(host_, field_, newValue);
  65. return Evaluator.getNil();
  66. }
  67. public NATText meta_print() throws InterpreterException {
  68. return NATText.atValue("<java field:"+field_+">");
  69. }
  70. public ATField asField() {
  71. return this;
  72. }
  73. /**
  74. * Fields can be re-initialized when installed in an object that is being cloned.
  75. * They expect the new owner of the field as the sole instance to their 'new' method
  76. */
  77. public ATObject meta_newInstance(ATTable initargs) throws InterpreterException {
  78. if (initargs.base_length() != NATNumber.ONE) {
  79. return super.meta_newInstance(initargs);
  80. } else {
  81. ATObject newhost = initargs.base_at(NATNumber.ONE);
  82. if (newhost.isJavaObjectUnderSymbiosis()) {
  83. return new JavaField(newhost.asJavaObjectUnderSymbiosis().getWrappedObject(), field_);
  84. } else {
  85. throw new XIllegalArgument("Java Field re-initialization requires a symbiotic Java object, given " + newhost);
  86. }
  87. }
  88. }
  89. public ATTable meta_typeTags() throws InterpreterException {
  90. return NATTable.of(NativeTypeTags._FIELD_);
  91. }
  92. public ATMethod base_accessor() throws InterpreterException {
  93. return NATField.accessorForField(this);
  94. }
  95. public ATMethod base_mutator() throws InterpreterException {
  96. return NATField.mutatorForField(this);
  97. }
  98. }