]> err.no Git - sope/blob - sope-core/EOControl/EODataSource.m
added a new mkdirs like method to NSFileManager
[sope] / sope-core / EOControl / EODataSource.m
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
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 <EOControl/EODataSource.h>
24 #include <EOControl/EOClassDescription.h>
25 #include "common.h"
26
27 @implementation EODataSource
28
29 + (int)version {
30   return 1;
31 }
32
33 /* reflection */
34
35 - (EOClassDescription *)classDescriptionForObjects {
36   return nil;
37 }
38
39 /* master-detail */
40
41 - (EODataSource *)dataSourceQualifiedByKey:(NSString *)_relKey {
42   [NSException raise:@"NSInvalidArgumentException"
43                format:@"datasource %@ can't return a ds qualified by key '%@'",
44                  self, _relKey];
45   return nil;
46 }
47
48 - (void)qualifyWithRelationshipKey:(NSString *)_relKey ofObject:(id)_object {
49   [NSException raise:@"NSInvalidArgumentException"
50                format:@"datasource %@ can't qualify by key '%@' of object %@",
51                  self, _relKey, _object];
52 }
53
54 /* operations */
55
56 - (NSArray *)fetchObjects {
57   return nil;
58 }
59 - (NSEnumerator *)fetchEnumerator {
60   return [[self fetchObjects] objectEnumerator];
61 }
62
63 - (void)deleteObject:(id)_object {
64   [NSException raise:@"NSInvalidArgumentException"
65                format:@"datasource %@ can't delete object %@",
66                  self, _object];
67 }
68
69 - (void)insertObject:(id)_object {
70   [NSException raise:@"NSInvalidArgumentException"
71                format:@"datasource %@ can't insert object %@",
72                  self, _object];
73 }
74
75 - (id)createObject {
76   EOClassDescription *cd;
77   
78   if ((cd = [self classDescriptionForObjects]) == nil)
79     return nil;
80   
81   return [cd createInstanceWithEditingContext:nil globalID:nil zone:NULL];
82 }
83
84 @end /* EODataSource */