]> err.no Git - sope/blob - sope-core/NGExtensions/EOExt.subproj/EOQualifier+plist.m
minor code cleanups
[sope] / sope-core / NGExtensions / EOExt.subproj / EOQualifier+plist.m
1 /*
2   Copyright (C) 2000-2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo 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   OGo 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 OGo; 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 <NGExtensions/EOQualifier+plist.h>
23 #include "common.h"
24
25 @implementation EOQualifier(plist)
26
27 - (id)initWithDictionary:(NSDictionary *)_dict {
28   [self release];
29   return [[EOQualifier qualifierToMatchAllValues:_dict] retain];
30 }
31
32 - (id)initWithArray:(NSArray *)_array {
33   unsigned count;
34   NSString *fmt;
35   NSArray  *args;
36   
37   [self release];
38
39   if ((count = [_array count]) == 0) {
40     NSLog(@"%s: invalid array for qualifier: %@", __PRETTY_FUNCTION__, _array);
41     return nil;
42   }
43   
44   fmt = [_array objectAtIndex:0];
45   if (count == 1)
46     args = nil;
47   else
48     args = [_array subarrayWithRange:NSMakeRange(1, (count - 1))];
49   
50   return [[EOQualifier qualifierWithQualifierFormat:fmt arguments:args]
51                        retain];
52 }
53
54 - (id)initWithString:(NSString *)_string {
55   [self release];
56   return [[EOQualifier qualifierWithQualifierFormat:_string] retain];
57 }
58
59 - (id)initWithPropertyList:(id)_plist owner:(id)_owner {
60   if ([_plist isKindOfClass:[NSDictionary class]])
61     return [self initWithDictionary:_plist];
62   
63   if ([_plist isKindOfClass:[NSString class]])
64     return [self initWithString:_plist];
65   
66   if ([_plist isKindOfClass:[NSArray class]])
67     return [self initWithArray:_plist];
68   
69   if ([_plist isKindOfClass:[self class]]) {
70     [self release];
71     return [_plist copy];
72   }
73
74   [self release];
75   return nil;
76 }
77 - (id)initWithPropertyList:(id)_plist {
78   return [self initWithPropertyList:_plist owner:nil];
79 }
80
81 @end /* EOQualifier(plist) */