Files
cappuccino/Foundation/CPPredicate/CPExpression_variable.j
T
Stephen Ierodiaconou 37323b811c Merge branch 'master' of git://github.com/280north/cappuccino into imports
Conflicts:
	Foundation/CPDecimalNumber.j
	Foundation/CPPredicate/CPComparisonPredicate.j
	Foundation/CPPredicate/CPCompoundPredicate.j
	Foundation/CPPredicate/CPExpression.j
	Foundation/CPPredicate/CPExpression_aggregate.j
	Foundation/CPPredicate/CPExpression_constant.j
	Foundation/CPPredicate/CPExpression_function.j
	Foundation/CPPredicate/CPExpression_keypath.j
	Foundation/CPPredicate/CPExpression_self.j
	Foundation/CPPredicate/CPExpression_set.j
	Foundation/CPPredicate/CPExpression_subquery.j
	Foundation/CPPredicate/CPExpression_variable.j
	Foundation/CPPredicate/CPPredicate.j
2011-01-16 10:03:42 +02:00

105 lines
2.6 KiB
Plaintext

/*
* CPExpression_variable.j
*
* Portions based on NSExpression_variable.m in Cocotron (http://www.cocotron.org/)
* Copyright (c) 2006-2007 Christopher J. W. Lloyd
*
* Created by cacaodev.
* Copyright 2010.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
@import "CPDictionary.j"
@import "CPException.j"
@import "CPExpression.j"
@import "CPString.j"
@implementation CPExpression_variable : CPExpression
{
CPString _variable;
}
- (id)initWithVariable:(CPString)variable
{
self = [super initWithExpressionType:CPVariableExpressionType];
if (self)
{
_variable = [variable copy];
}
return self;
}
- (BOOL)isEqual:(id)object
{
if (self == object)
return YES;
if (object.isa != self.isa || [object expressionType] != [self expressionType] || ![[object variable] isEqualToString:[self variable]])
return NO;
return YES;
}
- (CPString)variable
{
return _variable;
}
- (id)expressionValueWithObject:object context:(CPDictionary)context
{
var expression = [self _expressionWithSubstitutionVariables:context];
return [expression expressionValueWithObject:object context:context];
}
- (CPString)description
{
return [CPString stringWithFormat:@"$%s", _variable];
}
- (CPExpression)_expressionWithSubstitutionVariables:(CPDictionary)variables
{
var value = [variables objectForKey:_variable];
if (value == nil)
[CPException raise:CPInvalidArgumentException reason:@"Can't get value for '" + _variable + "' in bindings" + variables];
if ([value isKindOfClass:[CPExpression class]])
return value;
return [CPExpression expressionForConstantValue:value];
}
@end
var CPVariableKey = @"CPVariable";
@implementation CPExpression_variable (CPCoding)
- (id)initWithCoder:(CPCoder)coder
{
var variable = [coder decodeObjectForKey:CPVariableKey];
return [self initWithVariable:variable];
}
- (void)encodeWithCoder:(CPCoder)coder
{
[coder encodeObject:_variable forKey:CPVariableKey];
}
@end