jens@0: // jens@0: // ValueArray.m jens@0: // MYUtilities jens@0: // jens@0: // Copyright 2008 Jens Alfke. All rights reserved. jens@0: // jens@0: jens@0: #import "ValueArray.h" jens@0: jens@0: jens@0: @implementation ValueArray jens@0: jens@0: jens@0: - (id) initWithCount: (unsigned)count valueSize: (size_t)valueSize jens@0: { jens@0: self = [super init]; jens@0: if( self ) { jens@0: _count = count; jens@0: _valueSize = valueSize; jens@0: } jens@0: return self; jens@0: } jens@0: jens@0: + (ValueArray*) valueArrayWithCount: (unsigned)count valueSize: (size_t)valueSize jens@0: { jens@0: return [[(ValueArray*)NSAllocateObject(self,count*valueSize,nil) jens@0: initWithCount: count valueSize: valueSize] jens@0: autorelease]; jens@0: } jens@0: jens@0: - (unsigned) count {return _count;} jens@0: - (size_t) valueSize {return _valueSize;} jens@0: jens@0: - (const void*) valueAtIndex: (unsigned)i jens@0: { jens@0: NSParameterAssert(i<_count); jens@0: return (const char*)object_getIndexedIvars(self) + i*_valueSize; jens@0: } jens@0: jens@0: - (void) getValue: (void*)value atIndex: (unsigned)i jens@0: { jens@0: NSParameterAssert(i<_count); jens@0: NSParameterAssert(value!=NULL); jens@0: memcpy(value, object_getIndexedIvars(self) + i*_valueSize, _valueSize); jens@0: } jens@0: jens@0: - (void) setValue: (const void*)value atIndex: (unsigned)i jens@0: { jens@0: NSParameterAssert(i<_count); jens@0: NSParameterAssert(value!=NULL); jens@0: memcpy(object_getIndexedIvars(self) + i*_valueSize, value, _valueSize); jens@0: } jens@0: jens@0: jens@0: jens@0: - (id)initWithCoder:(NSCoder *)decoder jens@0: { jens@0: NSParameterAssert([decoder allowsKeyedCoding]); jens@0: NSKeyedUnarchiver *arch = (NSKeyedUnarchiver*)decoder; jens@0: unsigned count = [arch decodeIntForKey: @"count"]; jens@0: size_t valueSize = [arch decodeIntForKey: @"valueSize"]; jens@0: jens@0: [super release]; jens@0: self = [[[self class] valueArrayWithCount: count valueSize: valueSize] retain]; jens@0: if( self ) { jens@0: unsigned nBytes; jens@0: const void *bytes = [arch decodeBytesForKey: @"values" returnedLength: &nBytes]; jens@0: NSAssert(nBytes==count*valueSize,@"Value size mismatch"); jens@0: memcpy( object_getIndexedIvars(self), bytes, nBytes ); jens@0: } jens@0: return self; jens@0: } jens@0: jens@0: jens@0: - (void)encodeWithCoder:(NSCoder *)coder jens@0: { jens@0: NSParameterAssert([coder allowsKeyedCoding]); jens@0: NSKeyedArchiver *arch = (NSKeyedArchiver*)coder; jens@0: jens@0: [arch encodeInt: _count forKey: @"count"]; jens@0: [arch encodeInt: _valueSize forKey: @"valueSize"]; jens@0: [arch encodeBytes: object_getIndexedIvars(self) jens@0: length: _count*_valueSize jens@0: forKey: @"values"]; jens@0: } jens@0: jens@0: jens@0: @end jens@0: jens@0: jens@0: ImplementValueArrayOf(Int,int) jens@0: jens@0: ImplementValueArrayOf(Double,double) jens@11: jens@11: jens@11: /* jens@11: Copyright (c) 2008, Jens Alfke . All rights reserved. jens@11: jens@11: Redistribution and use in source and binary forms, with or without modification, are permitted jens@11: provided that the following conditions are met: jens@11: jens@11: * Redistributions of source code must retain the above copyright notice, this list of conditions jens@11: and the following disclaimer. jens@11: * Redistributions in binary form must reproduce the above copyright notice, this list of conditions jens@11: and the following disclaimer in the documentation and/or other materials provided with the jens@11: distribution. jens@11: jens@11: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR jens@11: IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND jens@11: FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI- jens@11: BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES jens@11: (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR jens@11: PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN jens@11: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF jens@11: THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. jens@11: */