]> err.no Git - sope/blob - sope-core/EOCoreData/NSExpression+EO.m
added key/value archiving to NSExpression
[sope] / sope-core / EOCoreData / NSExpression+EO.m
1 /*
2   Copyright (C) 2005 SKYRIX Software AG
3   
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #import <Foundation/NSExpression.h>
23 #include "common.h"
24
25 @implementation NSExpression(EOCoreData)
26
27 - (NSPredicate *)asPredicate {
28   return nil;
29 }
30 - (NSExpression *)asExpression {
31   return self;
32 }
33
34 /* key/value archiving */
35
36 - (id)initWithKeyValueUnarchiver:(EOKeyValueUnarchiver *)_unarchiver {
37   id tmp;
38
39   [self release]; self = nil;
40   
41   if ((tmp = [_unarchiver decodeObjectForKey:@"constantValue"]) != nil)
42     return [[NSExpression expressionForConstantValue:tmp] retain];
43
44   if ((tmp = [_unarchiver decodeObjectForKey:@"keyPath"]) != nil)
45     return [[NSExpression expressionForKeyPath:tmp] retain];
46   
47   if ((tmp = [_unarchiver decodeObjectForKey:@"variable"]) != nil)
48     return [[NSExpression expressionForVariable:tmp] retain];
49   
50   if ((tmp = [_unarchiver decodeObjectForKey:@"function"]) != nil) {
51     NSArray *args;
52     
53     args = [_unarchiver decodeObjectForKey:@"arguments"];
54     return [[NSExpression expressionForFunction:tmp arguments:args] retain];
55   }
56   
57   return [[NSExpression expressionForEvaluatedObject] retain];
58 }
59
60 - (void)encodeWithKeyValueArchiver:(EOKeyValueArchiver *)_archiver {
61   switch ([self expressionType]) {
62   case NSConstantValueExpressionType:
63     [_archiver encodeObject:[self constantValue] forKey:@"constantValue"];
64     return;
65   case NSEvaluatedObjectExpressionType:
66     /* encode no marker */
67     return;
68   case NSVariableExpressionType:
69     [_archiver encodeObject:[self variable] forKey:@"variable"];
70     return;
71   case NSKeyPathExpressionType:
72     [_archiver encodeObject:[self keyPath] forKey:@"keyPath"];
73     return;
74   case NSFunctionExpressionType:
75     [_archiver encodeObject:[self function]  forKey:@"function"];
76     [_archiver encodeObject:[self arguments] forKey:@"arguments"];
77     return;
78     
79   default:
80       NSLog(@"WARNING(%s): could not encode NSExpression: %@!",
81             __PRETTY_FUNCTION__, self);
82   }
83 }
84
85 @end /* NSPredicate(EOCoreData) */