⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 antlrbitset.m

📁 antlr最新版本V3源代码
💻 M
字号:
// [The "BSD licence"]// Copyright (c) 2006-2007 Kay Roepke// All rights reserved.//// Redistribution and use in source and binary forms, with or without// modification, are permitted provided that the following conditions// are met:// 1. Redistributions of source code must retain the above copyright//    notice, this list of conditions and the following disclaimer.// 2. Redistributions in binary form must reproduce the above copyright//    notice, this list of conditions and the following disclaimer in the//    documentation and/or other materials provided with the distribution.// 3. The name of the author may not be used to endorse or promote products//    derived from this software without specific prior written permission.//// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT// NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.#import "ANTLRBitSet.h"@implementation ANTLRBitSet// initializer#pragma mark Initializer- (ANTLRBitSet *) init{	if (nil != (self = [super init])) {		bitVector = CFBitVectorCreateMutable(kCFAllocatorDefault,0);	}	return self;}- (ANTLRBitSet *) initWithBitVector:(CFMutableBitVectorRef)theBitVector{	if (nil != (self = [super init])) {		bitVector = theBitVector;	}	return self;}// Initialize the bit vector with a constant array of ulonglongs like ANTLR generates.// Converts to big endian, because the underlying CFBitVector works like that.- (ANTLRBitSet *) initWithBits:(const unsigned long long *)theBits count:(unsigned int)longCount{	if (nil != (self = [self init])) {		int longNo;		CFIndex bitIdx;		CFBitVectorSetCount(bitVector,sizeof(unsigned long long)*8*longCount);		for (longNo = 0; longNo < longCount; longNo++) {			for (bitIdx = 0; bitIdx < sizeof(unsigned long long)*8; bitIdx++) {				unsigned long long swappedBits = CFSwapInt64HostToBig(theBits[longNo]);				if (swappedBits & (1LL << bitIdx)) {					CFBitVectorSetBitAtIndex(bitVector,bitIdx+(longNo*sizeof(unsigned long long)*8),1);				}			}		}	}	return self;}// Initialize bit vector with an array of anything. Just test the boolValue and set the corresponding bit.// Note: This is big-endian!- (ANTLRBitSet *) initWithArrayOfBits:(NSArray *)theArray{	if (nil != (self = [self init])) {		NSEnumerator *enumerator = [theArray objectEnumerator];		id value;		int bit = 0;		while (value = [enumerator nextObject]) {			if ([value boolValue] == YES) {				CFBitVectorSetBitAtIndex(bitVector,bit,1);			}			bit++;		}	}	return self;}- (void) dealloc{	CFRelease(bitVector);	[super dealloc];}	// operations#pragma mark Operations// return a copy of (self|aBitSet)- (ANTLRBitSet *) or:(ANTLRBitSet *) aBitSet{	ANTLRBitSet *bitsetCopy = [self copy];	[bitsetCopy orInPlace:aBitSet];	return bitsetCopy;}// perform a bitwise OR operation in place by changing underlying bit vector, growing it if necessary- (void) orInPlace:(ANTLRBitSet *) aBitSet{	CFIndex selfCnt = CFBitVectorGetCount(bitVector);	CFMutableBitVectorRef otherBitVector = [aBitSet _bitVector];	CFIndex otherCnt = CFBitVectorGetCount(otherBitVector);	CFIndex maxBitCnt = selfCnt > otherCnt ? selfCnt : otherCnt;	CFBitVectorSetCount(bitVector,maxBitCnt);		// be sure to grow the CFBitVector manually!		CFIndex currIdx;	for (currIdx = 0; currIdx < maxBitCnt; currIdx++) {		if (CFBitVectorGetBitAtIndex(bitVector,currIdx) | CFBitVectorGetBitAtIndex(otherBitVector,currIdx)) {			CFBitVectorSetBitAtIndex(bitVector,currIdx,1);		}	}}// set a bit, grow the bit vector if necessary- (void) add:(unsigned int) bit{	if (bit > CFBitVectorGetCount(bitVector))		CFBitVectorSetCount(bitVector,bit);	CFBitVectorSetBitAtIndex(bitVector,bit,1);}// unset a bit- (void) remove:(unsigned int) bit{	CFBitVectorSetBitAtIndex(bitVector,bit,0);}// returns the number of bits in the bit vector.- (unsigned int) size{	return CFBitVectorGetCount(bitVector);}- (void) setSize:(unsigned int) noOfWords{	// not supported - not needed :)}#pragma mark Informational// return a bitmask representation of this bitvector for easy operations- (unsigned long long) bitMask:(unsigned int) bitNumber{	return 1LL << bitNumber;}// test a bit (no pun intended)- (BOOL) isMember:(unsigned int) bitNumber{	return CFBitVectorGetBitAtIndex(bitVector,bitNumber) ? YES : NO;}// are all bits off?- (BOOL) isNil{	return CFBitVectorGetCountOfBit(bitVector,CFRangeMake(0,CFBitVectorGetCount(bitVector)),1)==0 ? YES : NO;}// return a string representation of the bit vector, indicating by their bitnumber which bits are set- (NSString *) toString{	CFIndex length = CFBitVectorGetCount(bitVector);	CFIndex currBit;	NSMutableString *descString = [[NSMutableString alloc] initWithString:@"{"];	BOOL haveInsertedBit = false;	for (currBit = 0; currBit < length; currBit++) {		if (CFBitVectorGetBitAtIndex(bitVector,currBit)) {			if (haveInsertedBit) {				[descString appendString:@","];			}			[descString appendString:[NSString stringWithFormat:@"%d", currBit]];			haveInsertedBit = YES;		}	}	[descString appendString:@"}"];	return descString;}// debugging aid. GDB invokes this automagically- (NSString *) description{	return [self toString];}	// NSCopying#pragma mark NSCopying support- (id) copyWithZone:(NSZone *) theZone{	ANTLRBitSet *newBitSet = [[ANTLRBitSet allocWithZone:theZone] initWithBitVector:CFBitVectorCreateMutableCopy(kCFAllocatorDefault,0,bitVector)];	return newBitSet;}- (CFMutableBitVectorRef) _bitVector{	return bitVector;}@end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -