ftp.nice.ch/Attic/openStep/implementation/gnustep/sources/libFoundation.0.7.tgz#/libFoundation-0.7/libFoundation/Foundation/FormatScanner.m

This is FormatScanner.m in view mode; [Download] [Up]

/* 
   FormatScanner.m

   Copyright (C) 1995, 1996 Ovidiu Predescu and Mircea Oancea.
   All rights reserved.

   Author: Ovidiu Predescu <ovidiu@bx.logicnet.ro>

   This file is part of libFoundation.

   Permission to use, copy, modify, and distribute this software and its
   documentation for any purpose and without fee is hereby granted, provided
   that the above copyright notice appear in all copies and that both that
   copyright notice and this permission notice appear in supporting
   documentation.

   We disclaim all warranties with regard to this software, including all
   implied warranties of merchantability and fitness, in no event shall
   we be liable for any special, indirect or consequential damages or any
   damages whatsoever resulting from loss of use, data or profits, whether in
   an action of contract, negligence or other tortious action, arising out of
   or in connection with the use or performance of this software.
*/

#include <ctype.h>

#include "common.h"

#include <Foundation/NSDictionary.h>
#include <Foundation/NSString.h>
#include <Foundation/NSValue.h>
#include <Foundation/NSCharacterSet.h>

#include <extensions/support.h>
#include <extensions/FormatScanner.h>

@implementation FormatScanner

enum { SPECIFIER_SIZE = 1000 }; /* This value should be sufficient */

- init
{
    currentSpecifier = Malloc(specifierSize = SPECIFIER_SIZE);
    boolFlags.allowFlags = YES;
    boolFlags.allowWidth = YES;
    boolFlags.allowPeriod = YES;
    boolFlags.allowPrecision = YES;
    boolFlags.allowModifier = YES;
    return self;
}

- (void)dealloc
{
    Free(currentSpecifier);
    [handler release];
    [super dealloc];
}

- (void)setFormatScannerHandler:(id)anObject
{
    [anObject retain];
    [handler release];
    handler = anObject;
}

- setAllowOnlySpecifier:(BOOL)flag
{
    boolFlags.allowFlags = !flag;
    boolFlags.allowWidth = !flag;
    boolFlags.allowPeriod = !flag;
    boolFlags.allowPrecision = !flag;
    boolFlags.allowModifier = !flag;
    return self;
}

- setAllowFlags:(BOOL)flag	{ boolFlags.allowFlags = flag; return self; }
- setAllowWidth:(BOOL)flag	{ boolFlags.allowWidth = flag; return self; }
- setAllowPeriod:(BOOL)flag	{ boolFlags.allowPeriod = flag; return self; }
- setAllowPrecision:(BOOL)flag { boolFlags.allowPrecision = flag; return self;}
- setAllowModifier:(BOOL)flag  { boolFlags.allowModifier = flag; return self; }

- (id)formatScannerHandler	{ return handler; }
- (unsigned int)flags		{ return flags; }
- (int)width			{ return width; }
- (int)precision		{ return precision; }
- (char)modifier		{ return modifier; }
- (char)characterSpecifier	{ return characterSpecifier; }
- (const char*)currentSpecifier	{ return currentSpecifier; }
- (BOOL)allowFlags		{ return boolFlags.allowFlags; }
- (BOOL)allowWidth		{ return boolFlags.allowWidth; }
- (BOOL)allowPeriod		{ return boolFlags.allowPeriod; }
- (BOOL)allowPrecision		{ return boolFlags.allowPrecision; }
- (BOOL)allowModifier		{ return boolFlags.allowModifier; }

#define CHECK_END \
    if(i >= length) { \
	/* An unterminated specifier. Break the loop. */ \
	[self handleOrdinaryString: \
		    [NSString stringWithCString:currentSpecifier]]; \
	goto _return; \
    }

/* Scans the format string looking after specifiers. Doesn't handle '*' as a
   valid width or precision. */
- (BOOL)parseFormatString:(NSString*)format context:(void*)context
{
    NSRange searchRange, foundRange;
    int i = 0, length = [format length];
    unichar ch;
    NSCharacterSet* decimals = [NSCharacterSet decimalDigitCharacterSet];

    *currentSpecifier = 0;
    specifierLen = 0;

    while(i < length) {
	searchRange.location = i;
	searchRange.length = length - i;

	foundRange = [format rangeOfString:@"%" options:0 range:searchRange];
	if (foundRange.length == 0)
	    foundRange.location = length;
	searchRange.length = foundRange.location - searchRange.location;

	if (searchRange.length) {
	    if (![self handleOrdinaryString:
			[format substringWithRange:searchRange]])
		return NO;
	}

	i = foundRange.location;
	CHECK_END

	i++;
	strcpy(currentSpecifier, "%");
	specifierLen = 1;
	CHECK_END

	flags = width = precision = modifier = characterSpecifier = 0;

	/* Check for flags. */
	if(boolFlags.allowFlags) {
	    for(; i < length; i++) {
		ch = [format characterAtIndex:i];
		switch(ch) {
		    case '#':	strcat(currentSpecifier, "#");
				flags |= FS_ALTERNATE_FORM;
				break;
		    case '0':	strcat(currentSpecifier, "0");
				flags |= FS_ZERO;
				break;
		    case '-':	strcat(currentSpecifier, "-");
				flags |= FS_MINUS_SIGN;
				break;
		    case '+':	strcat(currentSpecifier, "+");
				flags |= FS_PLUS_SIGN;
				break;
		    case ' ':	strcat(currentSpecifier, " ");
				flags |= FS_BLANK;
				break;
		    default:	goto quit;
		}
		if(++specifierLen == specifierSize)
		    currentSpecifier = Realloc(currentSpecifier,
					    specifierSize += SPECIFIER_SIZE);
	    }
	quit:
	    CHECK_END
	}

	/* Check for width. */
	if(boolFlags.allowWidth) {
	    for(; i < length; i++) {
		char str[2] = { 0, 0 };

		ch = [format characterAtIndex:i];
		if (![decimals characterIsMember:ch])
		    break;
		str[0] = ch;

		strcat(currentSpecifier, str);
		if(++specifierLen == specifierSize)
		    currentSpecifier = Realloc(currentSpecifier,
					    specifierSize += SPECIFIER_SIZE);

		width = 10 * width + (ch - '0');
	    }
	    CHECK_END
	}

	/* Check for period. */
	if(boolFlags.allowPeriod) {
	    ch = [format characterAtIndex:i];
	    if(ch == '.') {
		char str[2] = { ch, 0 };

		strcat(currentSpecifier, str);
		if(++specifierLen == specifierSize)
		    currentSpecifier = Realloc(currentSpecifier,
					    specifierSize += SPECIFIER_SIZE);

		i++;
		CHECK_END
	    }
	}

	/* Check for precision. */
	if(boolFlags.allowPrecision) {
	    for(; i < length; i++) {
		char str[2] = { 0, 0 };

		ch = [format characterAtIndex:i];
		if (![decimals characterIsMember:ch])
		    break;
		str[0] = ch;

		strcat(currentSpecifier, str);
		if(++specifierLen == specifierSize)
		    currentSpecifier = Realloc(currentSpecifier,
					    specifierSize += SPECIFIER_SIZE);

		precision = 10 * precision + (ch - '0');
	    }
	    CHECK_END
	}

	/* Check for data-width modifier. */
	if(boolFlags.allowModifier) {
	    ch = [format characterAtIndex:i];
	    if(ch == 'h' || ch == 'l') {
		char str[2] = { ch, 0 };

		strcat(currentSpecifier, str);
		if(++specifierLen == specifierSize)
		    currentSpecifier = Realloc(currentSpecifier,
					    specifierSize += SPECIFIER_SIZE);

		modifier = ch;
		i++;
		CHECK_END
	    }
	}

	/* Finally, the conversion character. */
	{
	    char str[2] = { 0, 0 };
	    ch = [format characterAtIndex:i];
	    str[0] = ch;

	    strcat(currentSpecifier, str);
	    if(++specifierLen == specifierSize)
		currentSpecifier = Realloc(currentSpecifier,
					specifierSize += SPECIFIER_SIZE);

	    characterSpecifier = ch;
	}

	if (![self handleFormatSpecifierWithContext:context])
	    return NO;

	i++;
	*currentSpecifier = 0;
	specifierLen = 0;

	CHECK_END
    }

_return:
    return YES;
}

- (BOOL)handleOrdinaryString:(NSString*)string
{
    return YES;
}

- (BOOL)handleFormatSpecifierWithContext:(void*)context
{
    return YES;
}

@end /* FormatScanner */

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.