/* * CPSet.j * Foundation * * Created by Bailey Carlson. * * TODO: Needs to implement CPCoding, CPCopying, CPEnumerator. */ import "CPObject.j" import "CPArray.j" import "CPString.j" import "CPDate.j" import "CPNumber.j" //import "CPEnumerator.j" @implementation CPSet : CPObject { var _contents; unsigned _count; } /* Creates and returns an empty set. */ + (id)set { return [[self alloc] init]; } /* Creates and returns a set containing a uniqued collection of those objects contained in a given array. @param anArray array containing the objects to add to the new set. If the same object appears more than once objects, it is added only once to the returned set. */ + (id)setWithArray:(CPArray)array { return [[self alloc] initWithArray:array]; } /* Creates and returns a set that contains a single given object. @param anObject The object to add to the new set. */ + (id)setWithObject:(id)anObject { return [[self alloc] initWithObjects:anObject]; } /* Creates and returns a set containing a specified number of objects from a given array of objects. @param objects A array of objects to add to the new set. If the same object appears more than once objects, it is added only once to the returned set. @param count The number of objects from objects to add to the new set. */ + (id)setWithObjects:(id)objects count:(unsigned)count { return [[self alloc] initWithObjects:objects count:count]; } /* Creates and returns a set containing the objects in a given argument list. @param anObject The first object to add to the new set. @param ... A comma-separated list of objects, ending with nil, to add to the new set. If the same object appears more than once objects, it is added only once to the returned set. */ + (id)setWithObjects:(id)anObject, ... { return [[self alloc] initWithObjects:arguments]; } /* Creates and returns a set containing the objects from another set. @param aSet A set containing the objects to add to the new set. */ + (id)setWithSet:(CPSet)set { return [[self alloc] initWithSet:set]; } /* Basic initializer, returns an empty set */ - (id)init { self = [super init]; if (self) { _count = 0; _contents = {}; } return self; } /* Initializes a newly allocated set with the objects that are contained in a given array. @param array An array of objects to add to the new set. If the same object appears more than once in array, it is represented only once in the returned set. */ - (id)initWithArray:(CPArray)array { self = [self init]; if (self) { for (var i = 0; i 0; i--) { // If the sets share at least one item, they intersect if ([self containsObject:items[i]]) return YES; } return NO; } /* Compares the receiver to another set. @param set The set with which to compare the receiver. */ - (BOOL)isEqualToSet:(CPSet)set { // If both are subsets of each other, they are equal return [self isSubsetOfSet:set] && [set isSubsetOfSet:self]; } /* Returns a Boolean value that indicates whether every object in the receiver is also present in another given set. @param set The set with which to compare the receiver. */ - (BOOL)isSubsetOfSet:(CPSet)set { var items = [self allObjects]; for (var i = 0; i < items.length; i++) { // If at least one item is not in both sets, self isn't a subset if (![set containsObject:items[i]]) { return NO; } } return YES; } /* Sends to each object in the receiver a message specified by a given selector. @param aSelector A selector that specifies the message to send to the members of the receiver. The method must not take any arguments. It should not have the side effect of modifying the receiver. This value must not be NULL. */ - (void)makeObjectsPerformSelector:(SEL)aSelector { [self makeObjectsPerformSelector:aSelector withObject:nil]; } /* Sends to each object in the receiver a message specified by a given selector. @param aSelector A selector that specifies the message to send to the receiver's members. The method must take a single argument of type id. The method should not, as a side effect, modify the receiver. The value must not be NULL. @param anObject The object to pass as an argument to the method specified by aSelector. */ - (void)makeObjectsPerformSelector:(SEL)aSelector withObject:(id)argument { var items = [self allObjects]; for (var i = 0; i < items.length; i++) { [items[i] performSelector:aSelector withObject:argument]; } } /* Determines whether the receiver contains an object equal to a given object, and returns that object if it is present. @param anObject The object for which to test for membership of the receiver. */ - (id)member:(id)object { if ([self containsObject:object]) { return object; } return nil; } //- (CPEnumerator)objectEnumerator; // Mutable Set Methods /* Returns an initialized set with a given initial capacity. @param numItems, only present for compatability */ - (id)initWithCapacity:(unsigned)numItems { // Only here for compatability with Cocoa self = [self init]; return self; } /* Creates and returns a set with a given initial capacity. @param numItems, only present for compatability */ + (id)setWithCapacity:(unsigned)numItems { return [[self alloc] initWithCapacity:numItems]; } /* Empties the receiver, then adds to the receiver each object contained in another given set. @param set The set whose members replace the receiver's content. */ - (void)setSet:(CPSet)set { [self removeAllObjects]; [self addObjectsFromArray:[set allObjects]]; } /* Adds a given object to the receiver, if it is not already a member. @param anObject The object to add to the receiver. */ - (void)addObject:(id)anObject { if (![self containsObject:anObject]) { _contents[[anObject hash]] = anObject; _count++; } } /* Adds to the receiver each object contained in a given array that is not already a member. @param array An array of objects to add to the receiver. */ - (void)addObjectsFromArray:(CPArray)array { for (var i = 0; i < array.length; i++) { [self addObject:array[i]]; } } /* Removes a given object from the receiver. @param anObject The object to remove from the receiver. */ - (void)removeObject:(id)anObject { if ([self containsObject:anObject]) { delete _contents[[anObject hash]]; _count--; } } /* Empties the receiver of all of its members. */ - (void)removeAllObjects { _contents = {}; _count = 0; } /* Removes from the receiver each object that isn’t a member of another given set. @param set The set with which to perform the intersection. */ - (void)intersectSet:(CPSet)set { var items = [self allObjects]; for (var i = 0; i < items.length; i++) { if (![set containsObject:items[i]]) { [self removeObject:items[i]]; } } } /* Removes from the receiver each object contained in another given set that is present in the receiver. @param set The set of objects to remove from the receiver. */ - (void)minusSet:(CPSet)set { var items = [set allObjects]; for (var i = 0; i < items.length; i++) { if ([self containsObject:items[i]]) { [self removeObject:items[i]]; } } } /* Adds to the receiver each object contained in another given set that is not already a member. @param set The set of objects to add to the receiver. */ - (void)unionSet:(CPSet)set { var items = [set allObjects]; for (var i = 0; i < items.length; i++) { if (![self containsObject:items[i]]) { [self addObject:items[i]]; } } } @end @implementation CPMutableSet : CPSet @end