1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
|
/**
EOAdaptor.m <title>EOAdaptor Class</title>
Copyright (C) 1996-2001,2002,2003,2004,2005 Free Software Foundation, Inc.
Author: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
Date: October 1996
Author: Mirko Viviani <mirko.viviani@gmail.com>
Date: February 2000
Author: David Wetzel <dave@turbocat.de>
Date: 2010
$Revision$
$Date$
<abstract></abstract>
This file is part of the GNUstep Database Library.
<license>
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 3 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,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
</license>
**/
#include "config.h"
#if HAVE_LIBC_H
# include <libc.h>
#else
#ifndef __WIN32__
# include <unistd.h>
#endif /* !__WIN32__ */
#endif
#include <Foundation/Foundation.h>
#ifndef GNUSTEP
#include <GNUstepBase/GNUstep.h>
#include <GNUstepBase/NSDebug+GNUstepBase.h>
#include <GNUstepBase/NSObject+GNUstepBase.h>
#include <GNUstepBase/NSString+GNUstepBase.h>
#endif
#include <GNUstepBase/GSMime.h>
#include <GNUstepBase/Unicode.h>
#include <EOControl/EONSAddOns.h>
#include <EOControl/EODebug.h>
#include "EOAccess/EOAdaptor.h"
#include "EOAccess/EOAdaptorContext.h"
#include "EOAccess/EOAdaptorChannel.h"
#include "EOAccess/EOAttribute.h"
#include "EOAccess/EOEntity.h"
#include "EOAccess/EOModel.h"
#include "EOAccess/EOSQLExpression.h"
#include "EOAdaptorPriv.h"
NSString *EOGeneralAdaptorException = @"EOGeneralAdaptorException";
NSString *EOAdministrativeConnectionDictionaryNeededNotification
= @"EOAdministrativeConnectionDictionaryNeededNotification";
NSString *EOAdaptorKey = @"EOAdaptorKey";
NSString *EOModelKey = @"EOModelKey";
NSString *EOConnectionDictionaryKey = @"EOConnectionDictionaryKey";
NSString *EOAdministrativeConnectionDictionaryKey
= @"EOAdministrativeConnectionDictionaryKey";
@implementation EOAdaptor
+ (id)adaptorWithModel: (EOModel *)model
{
//OK
/* Check first to see if the adaptor class exists in the running program
by testing the existence of [_model adaptorClassName]. */
EOAdaptor *adaptor = nil;
if(!model)
[NSException raise: NSInvalidArgumentException
format: @"%@ -- %@ %p: no model specified",
NSStringFromSelector(_cmd),
NSStringFromClass([self class]),
self];
else
{
NSString *adaptorName = [model adaptorName];
if (!adaptorName)
[NSException raise: NSInvalidArgumentException
format: @"%@ -- %@ %p: no adaptor name in model named %@",
NSStringFromSelector(_cmd),
NSStringFromClass([self class]),
self,
[model name]];
else
{
NSString *className;
Class adaptorClass;
className = [adaptorName stringByAppendingString: @"Adaptor"];
adaptorClass = NSClassFromString(className);
if(adaptorClass)
adaptor = AUTORELEASE([[adaptorClass alloc] initWithName: adaptorName]);
else
adaptor = [self adaptorWithName: adaptorName];
[adaptor setModel: model];
[adaptor setConnectionDictionary: [model connectionDictionary]];
}
}
return adaptor;
}
+ (id) adaptorWithName: (NSString *)name
{
//OK
NSBundle *bundle = [NSBundle mainBundle];
NSString *adaptorBundlePath;
NSArray *paths;
Class adaptorClass;
NSString *adaptorClassName;
unsigned i, count;
/* Check error */
if ([name length] == 0)
[NSException raise: NSInvalidArgumentException
format: @"%@ -- %@ 0x%p: adaptor name can't be nil",
NSStringFromSelector(_cmd),
NSStringFromClass([self class]),
self];
// append EOAdaptor
if ([name hasSuffix: @"EOAdaptor"] == NO)
name = [name stringByAppendingString: @"EOAdaptor"];
/* Look in application bundle */
adaptorBundlePath = [bundle pathForResource: name
ofType: @"framework"];
// should be NSString *path=[NSBundle pathForLibraryResource:libraryResource type:@"framework" directory:@"Frameworks"]; ?
/* Look in standard paths */
if (!adaptorBundlePath)
{
SEL sel = @selector(stringByAppendingPathComponent:);
/*
The path of where to search for the adaptor files.
*/
paths
= NSSearchPathForDirectoriesInDomains(NSAllLibrariesDirectory,
NSAllDomainsMask, NO);
paths = [paths resultsOfPerformingSelector: sel
withObject: @"Frameworks"];
/* Loop through the paths and check each one */
for(i = 0, count = [paths count]; i < count; i++)
{
bundle = [NSBundle bundleWithPath: [paths objectAtIndex: i]];
adaptorBundlePath = [bundle pathForResource: name
ofType: @"framework"];
if(adaptorBundlePath && [adaptorBundlePath length])
break;
}
}
/* Make adaptor bundle */
if(adaptorBundlePath)
bundle = [NSBundle bundleWithPath: adaptorBundlePath];
else
bundle = nil;
/* Check bundle */
if (!bundle)
[NSException raise: NSInvalidArgumentException
format: @"%@ -- %@ 0x%p: the adaptor bundle '%@' does not exist",
NSStringFromSelector(_cmd),
NSStringFromClass([self class]),
self,
name];
/* Get the adaptor bundle "infoDictionary", and pricipal class, ie. the
adaptor class. Other info about the adaptor should be put in the
bundle's "Info.plist" file (property list format - see NSBundle class
documentation for details about reserved keys in this dictionary
property list containing one entry whose key is adaptorClassName. It
identifies the actual adaptor class from the bundle. */
if(![bundle isLoaded])
EOFLOGClassLevelArgs(@"gsdb", @"Loaded %@? %@", bundle, ([bundle load]? @"YES":@"NO"));
adaptorClassName = [[bundle infoDictionary] objectForKey: @"EOAdaptorClassName"];
EOFLOGClassLevelArgs(@"gsdb", @"adaptorClassName is %@", adaptorClassName);
adaptorClass = NSClassFromString(adaptorClassName);
if (adaptorClass == Nil)
{
adaptorClass = [bundle principalClass];
}
if(adaptorClass == Nil)
{
[NSException raise: NSInvalidArgumentException
format: @"%@ -- %@ 0x%p: value of EOAdaptorClassName '%@' for adaptor '%@' is not a valid class and bundle does not contain a principal class",
NSStringFromSelector(_cmd),
NSStringFromClass([self class]),
self,
adaptorClassName,
name];
}
if ([adaptorClass isSubclassOfClass: [self class]] == NO)
{
[NSException raise: NSInvalidArgumentException
format: @"%@ -- %@ 0x%p: principal class is not a subclass of EOAdaptor:%@",
NSStringFromSelector(_cmd),
NSStringFromClass([self class]),
self,
NSStringFromClass([adaptorClass class])];
}
return AUTORELEASE([[adaptorClass alloc] initWithName: name]);
}
+ (void)setExpressionClassName: (NSString *)sqlExpressionClassName
adaptorClassName: (NSString *)adaptorClassName
{
// TODO
[self notImplemented: _cmd];
}
+ (EOLoginPanel *)sharedLoginPanelInstance
{
static NSMutableDictionary *panelDict = nil;
NSString *name;
EOLoginPanel *panel = nil;
if ([self isMemberOfClass: [EOAdaptor class]] == NO)
{
if (panelDict == nil)
{
panelDict = [NSMutableDictionary new];
}
name = NSStringFromClass(self);
panel = [panelDict objectForKey: name];
if (panel == nil
&& NSClassFromString(@"NSApplication") != nil)
{
NSBundle *adaptorFramework;
NSBundle *loginBundle;
NSString *path;
Class loginClass;
adaptorFramework = [NSBundle bundleForClass: self];
path = [adaptorFramework pathForResource: @"LoginPanel"
ofType: @"bundle"];
loginBundle = [NSBundle bundleWithPath: path];
loginClass = [loginBundle principalClass];
panel = [loginClass new];
if (panel != nil)
{
[panelDict setObject: panel forKey: name];
}
}
}
return panel;
}
/**
* Returns an array of EOAdaptor frameworks found in the standard
* framework locations. If an adaptor is found in multiple locations
* the name is listed only once. An adaptor framework is recognized
* the the "EOAdaptor.framework" suffix. The framework name without
* this suffix is the name returned in the array.
*/
+ (NSArray *)availableAdaptorNames
{
NSArray *pathArray = NSSearchPathForDirectoriesInDomains(NSAllLibrariesDirectory,
NSAllDomainsMask, YES);
NSEnumerator *pathEnum = [pathArray objectEnumerator];
NSString *searchPath;
NSFileManager *defaultManager = [NSFileManager defaultManager];
NSArray *fileNames;
NSEnumerator *filesEnum;
NSString *fileName;
NSMutableSet *adaptorNames = [NSMutableSet set];
NSString *adaptorSuffix = @"EOAdaptor.framework";
EOFLOGObjectFnStartOrCond2(@"AdaptorLevel", @"EOAdaptor");
while ((searchPath = [pathEnum nextObject]))
{
searchPath = [searchPath stringByAppendingPathComponent: @"Frameworks"];
fileNames = [defaultManager directoryContentsAtPath: searchPath];
filesEnum = [fileNames objectEnumerator];
while ((fileName = [filesEnum nextObject]))
{
if ([fileName hasSuffix: adaptorSuffix])
{
fileName = [fileName stringByDeletingSuffix: adaptorSuffix];
[adaptorNames addObject: fileName];
}
}
}
EOFLOGObjectFnStopOrCond2(@"AdaptorLevel", @"EOAdaptor");
return [adaptorNames allObjects];
}
- (void)_performAdministativeStatementsForSelector: (SEL)sel
connectionDictionary: (NSDictionary *)connDict
administrativeConnectionDictionary: (NSDictionary *)admConnDict
{
if (admConnDict == nil)
{
admConnDict
= [[[self class] sharedLoginPanelInstance]
administrativeConnectionDictionaryForAdaptor: self];
}
if (connDict == nil)
{
connDict = [self connectionDictionary];
}
if (admConnDict != nil)
{
EOAdaptor *admAdaptor;
EOAdaptorContext *admContext;
EOAdaptorChannel *admChannel;
NSArray *stmts;
unsigned i;
stmts = [(id)[self expressionClass] performSelector: sel
withObject: connDict
withObject: admConnDict];
/*TODO: check if we need a model. */
admAdaptor = [EOAdaptor adaptorWithName: [self name]];
[admAdaptor setConnectionDictionary: admConnDict];
admContext = [admAdaptor createAdaptorContext];
admChannel = [admContext createAdaptorChannel];
NS_DURING
{
unsigned stmtsCount=0;
[admChannel openChannel];
stmtsCount=[stmts count];
for (i = 0; i < stmtsCount; i++)
{
[admChannel evaluateExpression: [stmts objectAtIndex: i]];
}
[admChannel closeChannel];
}
NS_HANDLER
{
if ([admChannel isOpen])
{
[admChannel closeChannel];
}
[localException raise];
}
NS_ENDHANDLER;
}
}
- (NSArray *)prototypeAttributes
{
NSBundle *bundle;
NSString *path;
NSString *modelName;
EOModel *model;
NSMutableArray *attributes = nil;
bundle = [NSBundle bundleForClass: [self class]];
modelName = [NSString stringWithFormat: @"EO%@Prototypes.eomodeld", _name];
path = [[bundle resourcePath] stringByAppendingPathComponent: modelName];
model = [[EOModel alloc] initWithContentsOfFile: path];
if (model)
{
NSArray *entities;
unsigned i, count;
attributes = [NSMutableArray arrayWithCapacity: 20];
entities = [model entities];
count = [entities count];
for (i = 0; i < count; i++)
{
EOEntity *entity = [entities objectAtIndex: i];
[attributes addObjectsFromArray: [entity attributes]];
}
RELEASE(model);
}
return attributes;
}
- initWithName:(NSString *)name
{
if ((self = [super init]))
{
ASSIGN(_name, name);
_contexts = [NSMutableArray new];
}
return self;
}
- (void)dealloc
{
DESTROY(_model);
DESTROY(_name);
DESTROY(_connectionDictionary);
DESTROY(_contexts);
[super dealloc];
}
- (void)setConnectionDictionary: (NSDictionary *)dictionary
{
//OK
if ([self hasOpenChannels])
[NSException raise: NSInvalidArgumentException
format: @"%@ -- %@ 0x%p: cannot set the connection dictionary while the adaptor is connected!",
NSStringFromSelector(_cmd),
NSStringFromClass([self class]),
self];
ASSIGN(_connectionDictionary, dictionary);
// [model setConnectionDictionary:dictionary]; // TODO ??
}
- (void)assertConnectionDictionaryIsValid
{
return;
}
- (EOAdaptorContext *)createAdaptorContext
{
[self subclassResponsibility: _cmd];
return nil;
}
- (NSArray *)contexts
{
SEL sel = @selector(nonretainedObjectValue);
return [_contexts resultsOfPerformingSelector: sel];
}
- (BOOL)hasOpenChannels
{
unsigned i;
i = [_contexts count];
while (i--)
{
EOAdaptorContext *ctx
= [[_contexts objectAtIndex: i] nonretainedObjectValue];
if([ctx hasOpenChannels] == YES)
return YES;
}
return NO;
}
- (void)setDelegate:delegate
{
_delegate = delegate;
_delegateRespondsTo.processValue
= [delegate respondsToSelector:
@selector(adaptor:fetchedValueForValue:attribute:)];
}
- (void)setModel: (EOModel *)model
{
ASSIGN(_model, model);
}
- (NSString *)name
{
return _name;
}
- (NSDictionary *)connectionDictionary
{
return _connectionDictionary;
}
- (EOModel *)model
{
return _model;
}
- delegate
{
return _delegate;
}
- (Class)expressionClass
{
Class expressionClass = Nil;
/* retrieve EOAdaptorQuotesExternalNames from ? or from user default */
expressionClass = _expressionClass;
if(!expressionClass)
expressionClass = [self defaultExpressionClass];
return expressionClass;
}
- (Class)defaultExpressionClass
{
[self subclassResponsibility: _cmd];
return Nil; //TODO vedere setExpressionClass
}
- (BOOL)canServiceModel: (EOModel *)model
{
return [_connectionDictionary isEqual: [model connectionDictionary]];
}
- (NSStringEncoding)databaseEncoding
{
NSString *encodingValue;
NSStringEncoding stringEncoding;
encodingValue = [[self connectionDictionary] objectForKey: @"databaseEncoding"];
if (encodingValue == nil)
{
stringEncoding = [NSString defaultCStringEncoding];
} else {
// + GSMimeDocument encodingFromCharset should be in NSString Additions,
// but better there than in GSWeb and GDL -- dw
stringEncoding = [GSMimeDocument encodingFromCharset:encodingValue];
if (stringEncoding == 0) {
return [NSString defaultCStringEncoding];
}
}
return stringEncoding;
}
- (id)fetchedValueForValue: (id)value
attribute: (EOAttribute *)attribute
{
//Should be OK
SEL valueFactoryMethod;
valueFactoryMethod = [attribute valueFactoryMethod];
if (valueFactoryMethod)
{
NSEmitTODO();
[self notImplemented: _cmd]; //TODO
}
else
{
if ([value isKindOfClass: [NSString class]])
[self fetchedValueForStringValue: value
attribute: attribute];
else if ([value isKindOfClass: [NSNumber class]])
value = [self fetchedValueForNumberValue: value
attribute: attribute];
else if ([value isKindOfClass: [NSDate class]])
value = [self fetchedValueForDateValue: value
attribute: attribute];
else if ([value isKindOfClass: [NSData class]])
value = [self fetchedValueForDataValue: value
attribute: attribute];
}
if(_delegateRespondsTo.processValue)
value = [_delegate adaptor: self
fetchedValueForValue: value
attribute: attribute];
return value;
}
- (NSString *)fetchedValueForStringValue: (NSString *)value
attribute: (EOAttribute *)attribute
{
NSString *resultValue = nil;
if([value length]>0)
{
//TODO-NOW: correct this code which loop!
/*
const char *cstr=NULL;
unsigned i=0, spc=0;
cstr = [value cString];
while(*cstr)
{
if(*cstr == ' ')
spc++;
else
spc = 0;
i++;
}
cstr = &cstr[-i];
if(!spc)
resultValue=value;
else if(!(&cstr[i-spc]-cstr))
resultValue=nil;
else
resultValue=[NSString stringWithCString:cstr
length:&cstr[i-spc]-cstr];
*/
resultValue = value;
}
return resultValue;
}
- (NSNumber *)fetchedValueForNumberValue: (NSNumber *)value
attribute: (EOAttribute *)attribute
{
return value;
}
- (NSCalendarDate *)fetchedValueForDateValue: (NSCalendarDate *)value
attribute: (EOAttribute *)attribute
{
return value;
}
- (NSData *)fetchedValueForDataValue: (NSData *)value
attribute: (EOAttribute *)attribute
{
return value;
}
/* Reconnection to database */
- (void)handleDroppedConnection
{
NSDictionary *newConnectionDictionary = nil;
NSUInteger i;
for (i = 0; i < [_contexts count]; i++)
{
EOAdaptorContext *ctx = [[_contexts objectAtIndex:i]
nonretainedObjectValue];
[ctx handleDroppedConnection];
}
[_contexts removeAllObjects];
if (_delegate
&& [_delegate
respondsToSelector: @selector(reconnectionDictionaryForAdaptor:)])
{
if ((newConnectionDictionary = [_delegate
reconnectionDictionaryForAdaptor: self]))
{
[self setConnectionDictionary: newConnectionDictionary];
}
}
}
/**
* Returns YES if the exception is one that the adaptor can attempt to recover from by reconnecting.
* NO otherwise.
* The default implementation returns NO.
*
* Subclasses that support database reconnection should override this
* to allow for automatic database reconnection.
*/
- (BOOL)isDroppedConnectionException: (NSException *)exception
{
return NO;
}
/**
* Attempts to create a database using
* the statments returned by the Adaptor's expression class
* for @selector(createDatabaseStatementsForConnectionDictionary:administrativeConnectionDictionary:);
* using the connectionDictionary as the administrative connection dictionary.
*/
- (void)createDatabaseWithAdministrativeConnectionDictionary: (NSDictionary *)connectionDictionary
{
SEL sel;
sel = @selector(createDatabaseStatementsForConnectionDictionary:administrativeConnectionDictionary:);
[self _performAdministativeStatementsForSelector: sel
connectionDictionary: [self connectionDictionary]
administrativeConnectionDictionary: connectionDictionary];
}
/**
* Attempts to drop a database using
* the statments returned by the Adaptor's expression class
* for @selector(dropDatabaseStatementsForConnectionDictionary:administrativeConnectionDictionary:);
* using the connectionDictionary as the administrative connection dictionary.
*/
- (void)dropDatabaseWithAdministrativeConnectionDictionary: (NSDictionary *)connectionDictionary
{
SEL sel;
sel = @selector(dropDatabaseStatementsForConnectionDictionary:administrativeConnectionDictionary:);
[self _performAdministativeStatementsForSelector: sel
connectionDictionary: [self connectionDictionary]
administrativeConnectionDictionary: connectionDictionary];
}
- (BOOL) isValidQualifierType: (NSString *)attribute
model: (EOModel *)model
{
[self subclassResponsibility: _cmd];
return NO;
}
-(EOSQLExpressionFactory*)expressionFactory
{
[self subclassResponsibility: _cmd];
return nil;
}
@end /* EOAdaptor */
@implementation EOAdaptor (EOAdaptorLoginPanel)
/**
* Invokes [EOLoginPanel-runPanelForAdaptor:validate:allowsCreation:]
* for the adaptor's [+sharedLoginPanelInstance],
* with YES as the validate flag.
* If the user supplies valid connection information,
* the reciever's connection dictionary is updated,
* and the method return YES. Otherwise it returns NO.
* Subclass shouldn't need to override this method,
* yet if the do, they should call this implementation.
*/
- (BOOL)runLoginPanelAndValidateConnectionDictionary
{
EOLoginPanel *panel;
NSDictionary *connDict;
panel = [[self class] sharedLoginPanelInstance];
connDict = [panel runPanelForAdaptor: self
validate: YES
allowsCreation: NO];
if (connDict != nil)
{
[self setConnectionDictionary: connDict];
}
return (connDict != nil ? YES : NO);
}
/**
* Invokes [EOLoginPanel-runPanelForAdaptor:validate:allowsCreation:]
* for the adaptor's [+sharedLoginPanelInstance],
* with YES as the validate flag.
* Returns the dictionary without
* changing the recievers connection dictionary.
* Subclass shouldn't need to override this method,
* yet if the do, they should call this implementation.
*/
- (NSDictionary *)runLoginPanel
{
EOLoginPanel *panel;
NSDictionary *connDict;
panel = [[self class] sharedLoginPanelInstance];
connDict = [panel runPanelForAdaptor: self
validate: NO
allowsCreation: NO];
return connDict;
}
@end
@implementation EOAdaptor (EOExternalTypeMapping)
/**
* Subclasses must override this method without invoking this implementation
* to return the name of the class used internal to the database
* for the extType provided.
* A subclass may use information provided by
* an optional model to determine the exact type.
*/
+ (NSString *)internalTypeForExternalType: (NSString *)extType
model: (EOModel *)model
{
[self subclassResponsibility: _cmd];
return nil;
}
/**
* Subclasses must override this method without invoking this implementation
* to return an array of types available for the RDBMS.
* A subclass may use information provided by
* an optional model to determine the exact available types.
*/
+ (NSArray *)externalTypesWithModel: (EOModel *)model
{
[self subclassResponsibility: _cmd];
return nil;
}
/**
* Subclasses must override this method without invoking this implementation
* to set the the external type according to the internal type information.
* It should take into account width, precesion and scale accordingly.
*/
+ (void)assignExternalTypeForAttribute: (EOAttribute *)attribute
{
[self subclassResponsibility: _cmd];
}
/**
* Invokes [+assignExternalTypeForAttribute:]
* and unless the attribute is derived
* it sets the column name if it hasn't been set.
* An 'attributeName' result in a column named 'ATTRIBUTE_NAME'. <br/>
* NOTE: This differs from the EOF implementation as EOF unconditionally
* sets the the external name attributes that are not derived.
* This can cause trouble on certain RDMS which may not support
* the extended names used internally in an application.
* Subclass shouldn't need to override this method,
* yet if the do, they should call this implementation.
*/
+ (void)assignExternalInfoForAttribute: (EOAttribute *)attribute
{
if ([[attribute columnName] length] == 0
&& [attribute isFlattened] == NO)
{
NSString *name;
name = [NSString externalNameForInternalName: [attribute name]
separatorString: @"_"
useAllCaps: YES];
[attribute setColumnName: name];
}
[self assignExternalTypeForAttribute: attribute];
}
/**
* Invokes [+assignExternalInfoForAttribute:]
* for each of the model's entities.
* If the externalName of the entity hasn't been set,
* this method sets it to a standardized name
* according to the entities name.
* An 'entityName' will be converted to 'ENTITY_NAME'. <br/>
* Subclass shouldn't need to override this method,
* yet if the do, they should call this implementation.
*/
+ (void)assignExternalInfoForEntity: (EOEntity *)entity
{
NSArray *attributes=nil;
unsigned i=0;
unsigned attributesCount=0;
if ([[entity externalName] length] == 0)
{
NSString *name;
name = [NSString externalNameForInternalName: [entity name]
separatorString: @"_"
useAllCaps: YES];
[entity setExternalName: name];
}
attributes = [entity attributes];
attributesCount=[attributes count];
for (i = 0; i < attributesCount; i++)
{
[self assignExternalInfoForAttribute: [attributes objectAtIndex: i]];
}
}
/**
* Invokes [+assignExternalInfoForEntity:]
* for each of the model's entities.
* Subclass shouldn't need to override this method,
* yet if the do, they should call this implementation.
*/
+ (void)assignExternalInfoForEntireModel: (EOModel *)model
{
NSArray *entities=nil;
unsigned i=0;
unsigned entitiesCount=0;
entities = [model entities];
entitiesCount=[entities count];
for (i = 0; i < entitiesCount; i++)
{
[self assignExternalInfoForEntity: [entities objectAtIndex: i]];
}
}
@end
@implementation EOAdaptor (EOAdaptorPrivate)
- (void) _requestConcreteImplementationForSelector: (SEL)param0
{
[self notImplemented: _cmd]; //TODO
}
- (void) _unregisterAdaptorContext: (EOAdaptorContext*)adaptorContext
{
NSUInteger i = 0;
for (i = 0; i < [_contexts count]; i++)
{
if ([[_contexts objectAtIndex: i] nonretainedObjectValue]
== adaptorContext)
{
// this works, since it breaks out on first find
[_contexts removeObjectAtIndex: i];
break;
}
}
}
- (void) _registerAdaptorContext: (EOAdaptorContext*)adaptorContext
{
[_contexts addObject: [NSValue valueWithNonretainedObject: adaptorContext]];
}
@end
@implementation EOLoginPanel
- (NSDictionary *) runPanelForAdaptor: (EOAdaptor *)adaptor
validate: (BOOL)yn
allowsCreation: (BOOL)allowsCreation
{
[self subclassResponsibility: _cmd];
return nil;
}
/**
Subclasses should implement this method to return a connection dictionary
for an administrative user able to create databases etc. Or nil if the
the user cancels.
*/
- (NSDictionary *) administrativeConnectionDictionaryForAdaptor: (EOAdaptor *)adaptor
{
[self subclassResponsibility: _cmd];
return nil;
}
@end
@implementation EOLoginPanel (Deprecated)
- (NSDictionary *) runPanelForAdaptor: (EOAdaptor *)adaptor validate: (BOOL)yn
{
return [self runPanelForAdaptor: adaptor validate: yn allowsCreation: NO];
}
@end
|