/interpreter/tags/at2dist220411/src/edu/vub/at/objects/natives/grammar/AGSelection.java
Java | 105 lines | 43 code | 15 blank | 47 comment | 0 complexity | 4e5d0c1e44eb386084c3d909236074af MD5 | raw file
1/** 2 * AmbientTalk/2 Project 3 * AGSelection.java created on 26-jul-2006 at 16:16:07 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 */ 28package edu.vub.at.objects.natives.grammar; 29 30import edu.vub.at.exceptions.InterpreterException; 31import edu.vub.at.objects.ATContext; 32import edu.vub.at.objects.ATObject; 33import edu.vub.at.objects.grammar.ATExpression; 34import edu.vub.at.objects.grammar.ATSelection; 35import edu.vub.at.objects.grammar.ATSymbol; 36import edu.vub.at.objects.natives.NATText; 37import edu.vub.util.TempFieldGenerator; 38 39import java.util.HashSet; 40import java.util.Set; 41 42/** 43 * The native implementation of a selection AG element <tt>o.&m</tt>. 44 * @author tvcutsem 45 */ 46public final class AGSelection extends AGExpression implements ATSelection { 47 48 private final ATExpression rcvExp_; 49 private final ATSymbol selector_; 50 51 public AGSelection(ATExpression rcv, ATSymbol sel) { 52 rcvExp_ = rcv; 53 selector_ = sel; 54 } 55 56 public ATExpression base_receiverExpression() { return rcvExp_; } 57 58 public ATSymbol base_selector() { return selector_; } 59 60 /** 61 * To evaluate a selection, evaluate the receiver expression to an object and select 62 * the slot with the given name from that object. 63 * 64 * AGSEL(rcv,sel).eval(ctx) = rcv.eval(ctx).meta_select(sel) 65 * 66 * @return the value of the selected slot. 67 */ 68 public ATObject meta_eval(ATContext ctx) throws InterpreterException { 69 ATObject receiver = rcvExp_.meta_eval(ctx); 70 return receiver.meta_select(receiver, selector_); 71 } 72 73 /** 74 * Quoting a selection results in a new quoted selection. 75 * 76 * AGSEL(rcv,sel).quote(ctx) = AGSEL(rcv.quote(ctx), sel.quote(ctx)) 77 */ 78 public ATObject meta_quote(ATContext ctx) throws InterpreterException { 79 return new AGSelection(rcvExp_.meta_quote(ctx).asExpression(), 80 selector_.meta_quote(ctx).asSymbol()); 81 } 82 83 public NATText meta_print() throws InterpreterException { 84 return NATText.atValue(rcvExp_.meta_print().javaValue + ".&" + selector_.meta_print().javaValue); 85 } 86 87 public NATText impl_asUnquotedCode(TempFieldGenerator objectMap) throws InterpreterException { 88 return NATText.atValue(rcvExp_.impl_asUnquotedCode(objectMap).javaValue + ".&" + selector_.impl_asUnquotedCode(objectMap).javaValue); 89 } 90 91 /** 92 * FV(rcvExp.&selector) = FV(rcvExp) 93 */ 94 public Set impl_freeVariables() throws InterpreterException { 95 return rcvExp_.impl_freeVariables(); 96 } 97 98 99 public Set impl_quotedFreeVariables() throws InterpreterException { 100 Set qfv = rcvExp_.impl_quotedFreeVariables(); 101 qfv.addAll(selector_.impl_quotedFreeVariables()); 102 return qfv; 103 } 104 105}