]> err.no Git - sope/blob - sope-core/EOCoreData/EOCoreDataSource.h
Drop apache 1 build-dependency
[sope] / sope-core / EOCoreData / EOCoreDataSource.h
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 #ifndef __EOCoreDataSource_H__
23 #define __EOCoreDataSource_H__
24
25 #include <EOControl/EODataSource.h>
26
27 /*
28   EOCoreDataSource
29   
30   This wraps a NSManagedObjectContext in an EODataSource. It corresponds to
31   the EODatabaseDataSource available in EOF.
32   
33   Note: if you use -setFetchRequest: all the EO related methods will be reset!
34 */
35
36 @class NSArray, NSDictionary;
37 @class NSManagedObjectContext, NSEntityDescription, NSFetchRequest;
38 @class EOQualifier, EOFetchSpecification;
39
40 @interface EOCoreDataSource : EODataSource
41 {
42   NSManagedObjectContext *managedObjectContext;
43   NSEntityDescription    *entity;
44   EOFetchSpecification   *fetchSpecification;
45   EOQualifier            *auxiliaryQualifier;
46   NSDictionary           *qualifierBindings;
47   NSFetchRequest         *fetchRequest;
48   struct {
49     int isFetchEnabled:1;
50     int isEntityFromFetchSpec:1;
51     int reserved:30;
52   } ecdFlags;
53 }
54
55 - (id)initWithManagedObjectContext:(NSManagedObjectContext *)_moc
56   entity:(NSEntityDescription *)_entity;
57
58 /* fetch-spec */
59
60 - (void)setFetchSpecification:(EOFetchSpecification *)_fspec;
61 - (EOFetchSpecification *)fetchSpecification;
62 - (EOFetchSpecification *)fetchSpecificationForFetch;
63
64 - (void)setAuxiliaryQualifier:(EOQualifier *)_qualifier;
65 - (EOQualifier *)auxiliaryQualifier;
66
67 - (void)setIsFetchEnabled:(BOOL)_flag;
68 - (BOOL)isFetchEnabled;
69
70 - (NSArray *)qualifierBindingKeys;
71 - (void)setQualifierBindings:(NSDictionary *)_bindings;
72 - (NSDictionary *)qualifierBindings;
73
74 /* directly access a CoreData fetch request */
75
76 - (void)setFetchRequest:(NSFetchRequest *)_fr;
77 - (NSFetchRequest *)fetchRequest;
78
79 /* accessors */
80
81 - (NSEntityDescription *)entity;
82 - (NSManagedObjectContext *)managedObjectContext;
83
84 @end
85
86 #endif /* __EOCoreDataSource_H__ */