2002-11-15 22:57:05 +00:00
|
|
|
/*
|
|
|
|
EOUtilities.h
|
|
|
|
|
|
|
|
Copyright (C) 2000 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Author: Manuel Guesdon <mguesdon@orange-concept.com>
|
|
|
|
Date: Sep 2000
|
|
|
|
|
|
|
|
This file is part of the GNUstep Database Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with this library; see the file COPYING.LIB.
|
|
|
|
If not, write to the Free Software Foundation,
|
|
|
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __EOUtilities_h__
|
|
|
|
#define __EOUtilities_h__
|
|
|
|
|
2002-12-30 22:10:43 +00:00
|
|
|
|
2003-03-31 00:24:15 +00:00
|
|
|
#include <EOControl/EOEditingContext.h>
|
|
|
|
#include <EOControl/EOFetchSpecification.h>
|
|
|
|
#include <EOControl/EOObjectStoreCoordinator.h>
|
|
|
|
|
|
|
|
#include <EOAccess/EODefines.h>
|
2002-12-30 22:10:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
@class NSArray;
|
|
|
|
@class NSDictionary;
|
|
|
|
@class NSString;
|
2002-11-15 22:57:05 +00:00
|
|
|
|
|
|
|
@class EODatabaseContext;
|
|
|
|
@class EOModelGroup;
|
|
|
|
@class EOEntity;
|
|
|
|
|
2002-12-30 22:10:43 +00:00
|
|
|
|
2003-03-31 00:24:15 +00:00
|
|
|
GDL2ACCESS_EXPORT NSString *EOMoreThanOneException;
|
2002-11-15 22:57:05 +00:00
|
|
|
|
|
|
|
|
2002-12-30 22:10:43 +00:00
|
|
|
@interface EOEditingContext (EOUtilities)
|
2002-11-15 22:57:05 +00:00
|
|
|
|
|
|
|
- (NSArray*)objectsForEntityNamed: (NSString*)name;
|
|
|
|
- (NSArray*)objectsOfClass: (Class)classObject;
|
|
|
|
- (NSArray*)objectsWithFetchSpecificationNamed: (NSString*)fetchSpecName
|
|
|
|
entityNamed: (NSString*)entityName
|
|
|
|
bindings: (NSDictionary*)bindings;
|
|
|
|
- (NSArray*)objectsForEntityNamed: (NSString*)name
|
|
|
|
qualifierFormat: (NSString*)format, ...;
|
|
|
|
- (NSArray*)objectsMatchingValue: (id)value
|
|
|
|
forKey: (NSString*)key
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
- (NSArray*)objectsMatchingValues: (NSDictionary*)values
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
|
|
|
|
- (id)objectWithFetchSpecificationNamed: (NSString*)fetchSpecName
|
|
|
|
entityNamed: (NSString*)entityName
|
|
|
|
bindings: (NSDictionary*)bindings;
|
|
|
|
- (id)objectForEntityNamed: (NSString*)name
|
|
|
|
qualifierFormat: (NSString*)format, ...;
|
|
|
|
- (id)objectMatchingValue: (id)value
|
|
|
|
forKey: (NSString*)key
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
- (id)objectMatchingValues: (NSDictionary*)values
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
- (id)objectWithPrimaryKeyValue: (id)value
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
- (id)objectWithPrimaryKey: (NSDictionary*)pkDict
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
|
|
|
|
- (NSArray*)rawRowsForEntityNamed: (NSString*)name
|
|
|
|
qualifierFormat: (NSString*)format, ...;
|
|
|
|
- (NSArray*)rawRowsMatchingValue: (id)value
|
|
|
|
forKey: (NSString*)key
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
- (NSArray*)rawRowsMatchingValues: (NSDictionary*)values
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
- (NSArray*)rawRowsWithSQL: (NSString*)sqlString
|
|
|
|
modelNamed: (NSString*)name;
|
|
|
|
- (NSArray*)rawRowsWithStoredProcedureNamed: (NSString*)name
|
|
|
|
arguments: (NSDictionary*)args;
|
|
|
|
- (NSDictionary*)executeStoredProcedureNamed: (NSString*)name
|
|
|
|
arguments: (NSDictionary*)args;
|
|
|
|
- (id)objectFromRawRow: (NSDictionary*)row
|
|
|
|
entityNamed: (NSString*)name;
|
|
|
|
|
|
|
|
- (EODatabaseContext*)databaseContextForModelNamed: (NSString*)name;
|
|
|
|
- (void)connectWithModelNamed: (NSString*)name
|
|
|
|
connectionDictionaryOverrides: (NSDictionary*)overrides;
|
|
|
|
|
2002-12-06 20:09:34 +00:00
|
|
|
- (id)createAndInsertInstanceOfEntityNamed: (NSString *)entityName;
|
|
|
|
|
2002-11-15 22:57:05 +00:00
|
|
|
- (NSDictionary*)primaryKeyForObject: (id)object;
|
|
|
|
- (NSDictionary*)destinationKeyForSourceObject: (id)object
|
|
|
|
relationshipNamed: (NSString*)name;
|
|
|
|
|
|
|
|
- (id)localInstanceOfObject: (id)object;
|
|
|
|
- (NSArray*)localInstancesOfObjects: (NSArray*)objects;
|
|
|
|
|
|
|
|
- (EOModelGroup*)modelGroup;
|
|
|
|
- (EOEntity*)entityNamed: (NSString*)name;
|
|
|
|
- (EOEntity*)entityForClass: (Class)classObject;
|
|
|
|
- (EOEntity*)entityForObject: (id)obj;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2002-12-31 16:25:21 +00:00
|
|
|
|
|
|
|
@interface EOFetchSpecification (EOAccess)
|
|
|
|
|
|
|
|
+ (EOFetchSpecification *)fetchSpecificationNamed: (NSString *)name
|
|
|
|
entityNamed: (NSString *)entityName;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
@interface EOObjectStoreCoordinator (EOModelGroup)
|
|
|
|
|
|
|
|
- (id) modelGroup;
|
|
|
|
- (void) setModelGroup: (EOModelGroup*)modelGroup;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
2002-11-15 22:57:05 +00:00
|
|
|
#endif
|