]> err.no Git - sope/blob - sope-core/EOCoreData/EOKeyComparisonQualifier+CoreData.m
15c62c9cb23c05c3ca74b12600f30a34fdb6b504
[sope] / sope-core / EOCoreData / EOKeyComparisonQualifier+CoreData.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 #include "EOQualifier+CoreData.h"
23 #include "NSPredicate+EO.h"
24 #include "NSExpression+EO.h"
25 #include "common.h"
26
27 @implementation EOKeyComparisonQualifier(CoreData)
28
29 + (EOQualifier *)qualifierForComparisonPredicate:(NSComparisonPredicate *)_p {
30   SEL sel;
31   
32   if ((sel = [self eoSelectorForForComparisonPredicate:_p]) == nil)
33     return (EOQualifier *)_p;
34   
35   return [[[self alloc] initWithLeftKey:[[_p leftExpression] keyPath]
36                         operatorSelector:sel
37                         rightKey:[[_p rightExpression] keyPath]] autorelease];
38 }
39
40 - (NSPredicate *)asPredicate {
41   NSLog(@"TODO(%s): implement me for class %@!", __PRETTY_FUNCTION__,
42         NSStringFromClass([self class]));
43   return nil;
44 }
45
46 /* CoreData compatibility */
47
48 - (NSComparisonPredicateModifier)comparisonPredicateModifier {
49   return NSDirectPredicateModifier;
50 }
51
52 - (NSPredicateOperatorType)predicateOperatorType {
53   return [[self class] predicateOperatorTypeForEOSelector:[self selector]];
54 }
55
56 - (unsigned)options {
57   return (SEL_EQ([self selector], EOQualifierOperatorCaseInsensitiveLike))
58     ? NSCaseInsensitivePredicateOption : 0;
59 }
60
61 - (SEL)customSelector {
62   return [self predicateOperatorType] == NSCustomSelectorPredicateOperatorType
63     ? [self selector] : nil;
64 }
65
66 @end /* EOKeyComparisonQualifier(CoreData) */