mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-02 08:53:37 +00:00
102 lines
2.5 KiB
Plaintext
102 lines
2.5 KiB
Plaintext
/*
|
|
* CPExpression_variable.j
|
|
* Foundation
|
|
*
|
|
* Copyright 2009, 280 North, Inc.
|
|
*
|
|
* 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
|
|
|