mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-20 15:00:59 +00:00
99 lines
3.2 KiB
Objective-C
99 lines
3.2 KiB
Objective-C
/** NSRange - range functions
|
|
* Copyright (C) 1993-2015 Free Software Foundation, Inc.
|
|
*
|
|
* Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
|
* Date: Mar 1995
|
|
*
|
|
* This file is part of the GNUstep Base Library.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free
|
|
* Software Foundation, Inc., 31 Milk Street #960789 Boston, MA 02196 USA.
|
|
|
|
<title>NSRange class reference</title>
|
|
$Date$ $Revision$
|
|
*/
|
|
|
|
#import "common.h"
|
|
|
|
#define IN_NSRANGE_M 1
|
|
#import "Foundation/NSException.h"
|
|
#import "Foundation/NSRange.h"
|
|
#import "Foundation/NSScanner.h"
|
|
|
|
@class NSString;
|
|
|
|
static Class NSStringClass = 0;
|
|
static Class NSScannerClass = 0;
|
|
static SEL scanIntegerSel;
|
|
static SEL scanStringSel;
|
|
static SEL scannerSel;
|
|
static BOOL (*scanIntegerImp)(NSScanner*, SEL, NSInteger*);
|
|
static BOOL (*scanStringImp)(NSScanner*, SEL, NSString*, NSString**);
|
|
static id (*scannerImp)(Class, SEL, NSString*);
|
|
|
|
static inline void
|
|
setupCache(void)
|
|
{
|
|
if (NSStringClass == 0)
|
|
{
|
|
NSStringClass = [NSString class];
|
|
NSScannerClass = [NSScanner class];
|
|
scanIntegerSel = @selector(scanInteger:);
|
|
scanStringSel = @selector(scanString:intoString:);
|
|
scannerSel = @selector(scannerWithString:);
|
|
scanIntegerImp = (BOOL (*)(NSScanner*, SEL, NSInteger*))
|
|
[NSScannerClass instanceMethodForSelector: scanIntegerSel];
|
|
scanStringImp = (BOOL (*)(NSScanner*, SEL, NSString*, NSString**))
|
|
[NSScannerClass instanceMethodForSelector: scanStringSel];
|
|
scannerImp = (id (*)(Class, SEL, NSString*))
|
|
[NSScannerClass methodForSelector: scannerSel];
|
|
}
|
|
}
|
|
|
|
NSRange
|
|
NSRangeFromString(NSString *aString)
|
|
{
|
|
NSScanner *scanner;
|
|
NSRange range;
|
|
|
|
setupCache();
|
|
scanner = (*scannerImp)(NSScannerClass, scannerSel, aString);
|
|
if ((*scanStringImp)(scanner, scanStringSel, @"{", NULL)
|
|
&& (*scanStringImp)(scanner, scanStringSel, @"location", NULL)
|
|
&& (*scanStringImp)(scanner, scanStringSel, @"=", NULL)
|
|
&& (*scanIntegerImp)(scanner, scanIntegerSel, (NSInteger*)&range.location)
|
|
&& (*scanStringImp)(scanner, scanStringSel, @",", NULL)
|
|
&& (*scanStringImp)(scanner, scanStringSel, @"length", NULL)
|
|
&& (*scanStringImp)(scanner, scanStringSel, @"=", NULL)
|
|
&& (*scanIntegerImp)(scanner, scanIntegerSel, (NSInteger*)&range.length)
|
|
&& (*scanStringImp)(scanner, scanStringSel, @"}", NULL))
|
|
return range;
|
|
else
|
|
return NSMakeRange(0, 0);
|
|
}
|
|
|
|
NSString *
|
|
NSStringFromRange(NSRange range)
|
|
{
|
|
setupCache();
|
|
return [NSStringClass
|
|
stringWithFormat: @"{location=%"PRIuPTR", length=%"PRIuPTR"}",
|
|
range.location, range.length];
|
|
}
|
|
|
|
GS_EXPORT void _NSRangeExceptionRaise ()
|
|
{
|
|
[NSException raise: NSRangeException
|
|
format: @"Range location + length too great"];
|
|
}
|