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