Initial revision

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@419 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-05-05 21:03:04 +00:00
parent 8efd1730c4
commit bfc8c30324
2 changed files with 287 additions and 0 deletions

View file

@ -0,0 +1,66 @@
/* Interface for NSCharacterSet for GNUStep
Copyright (C) 1994 NeXT Computer, Inc.
This file is part of the GNU Objective C Class 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; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __NSCharacterSet_h_OBJECTS_INCLUDE
#define __NSCharacterSet_h_OBJECTS_INCLUDE
#include <Foundation/NSString.h>
@class NSData;
@interface NSCharacterSet : NSObject <NSCopying, NSMutableCopying>
// Creating standard character sets
+ (NSCharacterSet *)alphanumericCharacterSet;
+ (NSCharacterSet *)controlCharacterSet;
+ (NSCharacterSet *)decimalDigitCharacterSet;
+ (NSCharacterSet *)decomposableCharacterSet;
+ (NSCharacterSet *)illegalCharacterSet;
+ (NSCharacterSet *)letterCharacterSet;
+ (NSCharacterSet *)lowercaseLetterCharacterSet;
+ (NSCharacterSet *)nonBaseCharacterSet;
+ (NSCharacterSet *)uppercaseLetterCharacterSet;
+ (NSCharacterSet *)whitespaceAndNewlineCharacterSet;
+ (NSCharacterSet *)whitespaceCharacterSet;
// Creating custom character sets
+ (NSCharacterSet *)characterSetWithBitmapRepresentation:(NSData *)data;
+ (NSCharacterSet *)characterSetWithCharactersInString:(NSString *)aString;
+ (NSCharacterSet *)characterSetWithRange:(NSRange)aRange;
- (NSData *)bitmapRepresentation;
- (BOOL)characterIsMember:(unichar)aCharacter;
- (NSCharacterSet *)invertedSet;
@end
@interface NSMutableCharacterSet : NSCharacterSet <NSCopying, NSMutableCopying>
- (void)addCharactersInRange:(NSRange)aRange;
- (void)addCharactersInString:(NSString *)aString;
- (void)formUnionWithCharacterSet:(NSCharacterSet *)otherSet;
- (void)formIntersectionWithCharacterSet:(NSCharacterSet *)otherSet;
- (void)removeCharactersInRange:(NSRange)aRange;
- (void)removeCharactersInString:(NSString *)aString;
- (void)invert;
@end
#endif /* __NSCharacterSet_h_OBJECTS_INCLUDE */

221
Source/NSCharacterSet.m Normal file
View file

@ -0,0 +1,221 @@
/* NSCharacterSet - Character set holder
Copyright (C) 1993,1994 Free Software Foundation, Inc.
Written by: Adam Fedor <fedor@boulder.colorado.edu>
Date: Apr 1995
This file is part of the GNU Objective C Class 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; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <Foundation/NSCharacterSet.h>
@implementation NSCharacterSet
// Creating standard character sets
+ (NSCharacterSet *)alphanumericCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)controlCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)decimalDigitCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)decomposableCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)illegalCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)letterCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)lowercaseLetterCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)nonBaseCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)uppercaseLetterCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)whitespaceAndNewlineCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)whitespaceCharacterSet
{
[self notImplemented:_cmd];
return 0;
}
// Creating custom character sets
+ (NSCharacterSet *)characterSetWithBitmapRepresentation:(NSData *)data
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)characterSetWithCharactersInString:(NSString *)aString
{
[self notImplemented:_cmd];
return 0;
}
+ (NSCharacterSet *)characterSetWithRange:(NSRange)aRange
{
[self notImplemented:_cmd];
return 0;
}
/* Other instance methods - only the first TWO must be implemented by all
subclasses. There is an abstract implementation of the inverted set.
*/
- (NSData *)bitmapRepresentation
{
[self notImplemented:_cmd];
return 0;
}
- (BOOL)characterIsMember:(unichar)aCharacter
{
[self notImplemented:_cmd];
return 0;
}
- (NSCharacterSet *)invertedSet
{
[self notImplemented:_cmd];
return 0;
}
// NSCopying, NSMutableCopying
/* deepening is done by concrete subclasses */
- deepen
{
return self;
}
- (id)copyWithZone:(NSZone *)zone
{
if (NSShouldRetainWithZone(self, zone))
return [self retain];
else
return [[super copyWithZone:zone] deepen];
}
- (id)mutableCopyWithZone:(NSZone *)zone
{
NSMutableCharacterSet *copy;
copy = [[NSMutableCharacterSet allocWithZone:zone] init];
[copy formUnionWithCharacterSet:self];
return copy;
}
@end
@implementation NSMutableCharacterSet
/* Mutable subclasses must implement ALL of these methods. */
- (void)addCharactersInRange:(NSRange)aRange
{
[self notImplemented:_cmd];
}
- (void)addCharactersInString:(NSString *)aString
{
[self notImplemented:_cmd];
}
- (void)formUnionWithCharacterSet:(NSCharacterSet *)otherSet
{
[self notImplemented:_cmd];
}
- (void)formIntersectionWithCharacterSet:(NSCharacterSet *)otherSet
{
[self notImplemented:_cmd];
}
- (void)removeCharactersInRange:(NSRange)aRange
{
[self notImplemented:_cmd];
}
- (void)removeCharactersInString:(NSString *)aString
{
[self notImplemented:_cmd];
}
- (void)invert
{
[self notImplemented:_cmd];
}
// NSCopying, NSMutableCopying
/* deepening is done by concrete subclasses */
- deepen
{
return self;
}
- (id)copyWithZone:(NSZone *)zone
{
return [[super copyWithZone:zone] deepen];
}
- (id)mutableCopyWithZone:(NSZone *)zone
{
return [[super copyWithZone:zone] deepen];
}
@end