ObjFW
 All Classes Functions Variables
Instance Methods | Class Methods | List of all members
OFDataArray Class Reference

A class for storing arbitrary data in an array. More...

#import <OFDataArray.h>

Inheritance diagram for OFDataArray:
OFObject <OFCopying> <OFComparing> <OFSerialization> <OFObject> <OFObject> OFBigDataArray

Instance Methods

(id) - init
 Initializes an already allocated OFDataArray with an item size of 1.
 
(id) - initWithItemSize:
 Initializes an already allocated OFDataArray whose items all have the same size.
 
(id) - initWithContentsOfFile:
 Initializes an already allocated OFDataArray with an item size of 1, containing the data of the specified file.
 
(id) - initWithContentsOfURL:
 Initializes an already allocated OFDataArray with an item size of 1, containing the data of the specified URL.
 
(id) - initWithStringRepresentation:
 Initializes an already allocated OFDataArray with an item size of 1, containing the data of the string representation.
 
(id) - initWithBase64EncodedString:
 Initializes an already allocated OFDataArray with an item size of 1, containing the data of the Base64-encoded string.
 
(size_t) - count
 Returns the number of items in the OFDataArray.
 
(size_t) - itemSize
 Returns the size of each item in the OFDataArray in bytes.
 
(void *) - OF_RETURNS_INNER_POINTER
 Returns all elements of the OFDataArray as a C array.
 
(void *) - itemAtIndex:
 Returns a specific item of the OFDataArray.
 
(void *) - OF_RETURNS_INNER_POINTER
 Returns the first item of the OFDataArray.
 
(void *) - OF_RETURNS_INNER_POINTER
 Returns the last item of the OFDataArray.
 
(void) - addItem:
 Adds an item to the OFDataArray.
 
(void) - insertItem:atIndex:
 Adds an item to the OFDataArray at the specified index.
 
(void) - addItemsFromCArray:count:
 Adds items from a C array to the OFDataArray.
 
(void) - insertItemsFromCArray:atIndex:count:
 Adds items from a C array to the OFDataArray at the specified index.
 
(void) - removeItemAtIndex:
 Removes the item at the specified index.
 
(void) - removeItemsInRange:
 Removes the specified amount of items at the specified index.
 
(void) - removeLastItem
 Removes the last item.
 
(void) - removeAllItems
 Removes all items.
 
(OFString *) - stringRepresentation
 Returns the string representation of the data array.
 
(OFString *) - stringByBase64Encoding
 Returns a string containing the data in Base64 encoding.
 
(void) - writeToFile:
 Writes the OFDataArray into the specified file.
 
(OFString *) - MD5Hash
 Returns the MD5 hash of the data array as an autoreleased OFString.
 
(OFString *) - SHA1Hash
 Returns the SHA-1 hash of the data array as an autoreleased OFString.
 
- Instance Methods inherited from OFObject
(OFString *) - className
 Returns the name of the object's class.
 
(OFString *) - description
 Returns a description for the object.
 
(void *) - allocMemoryWithSize:
 Allocates memory and stores it in the object's memory pool.
 
(void *) - allocMemoryWithSize:count:
 Allocates memory for the specified number of items and stores it in the object's memory pool.
 
(void *) - resizeMemory:size:
 Resizes memory in the object's memory pool to the specified size.
 
(void *) - resizeMemory:size:count:
 Resizes memory in the object's memory pool to the specific number of items of the specified size.
 
(void) - freeMemory:
 Frees allocated memory and removes it from the object's memory pool.
 
(void) - dealloc
 Deallocates the object.
 
(void) - performSelector:afterDelay:
 Performs the specified selector after the specified delay.
 
(void) - performSelector:withObject:afterDelay:
 Performs the specified selector with the specified object after the specified delay.
 
(void) - performSelector:withObject:withObject:afterDelay:
 Performs the specified selector with the specified objects after the specified delay.
 
(void) - performSelector:onThread:waitUntilDone:
 Performs the specified selector on the specified thread.
 
(void) - performSelector:onThread:withObject:waitUntilDone:
 Performs the specified selector on the specified thread with the specified object.
 
(void) - performSelector:onThread:withObject:withObject:waitUntilDone:
 Performs the specified selector on the specified thread with the specified objects.
 
(void) - performSelectorOnMainThread:waitUntilDone:
 Performs the specified selector on the main thread.
 
(void) - performSelectorOnMainThread:withObject:waitUntilDone:
 Performs the specified selector on the main thread with the specified object.
 
(void) - performSelectorOnMainThread:withObject:withObject:waitUntilDone:
 Performs the specified selector on the main thread with the specified objects.
 
(void) - performSelector:onThread:afterDelay:
 Performs the specified selector on the specified thread after the specified delay.
 
(void) - performSelector:onThread:withObject:afterDelay:
 Performs the specified selector on the specified thread with the specified object after the specified delay.
 
(void) - performSelector:onThread:withObject:withObject:afterDelay:
 Performs the specified selector on the specified thread with the specified objects after the specified delay.
 
(OFString *) - stringBySerializing
 Creates a string by serializing the receiver.
 
- Instance Methods inherited from <OFObject>
(BOOL) - isKindOfClass:
 Returns a boolean whether the object of the specified kind.
 
(BOOL) - isMemberOfClass:
 Returns a boolean whether the object is a member of the specified class.
 
(BOOL) - respondsToSelector:
 Returns a boolean whether the object responds to the specified selector.
 
(IMP) - methodForSelector:
 Returns the implementation for the specified selector.
 
(const char *) - typeEncodingForSelector:
 Returns the type encoding for the specified selector.
 
(id) - performSelector:
 Performs the specified selector.
 
(id) - performSelector:withObject:
 Performs the specified selector with the specified object.
 
(id) - performSelector:withObject:withObject:
 Performs the specified selector with the specified objects.
 
(BOOL) - isEqual:
 Checks two objects for equality.
 
(uint32_t) - hash
 Calculates a hash for the object.
 
(id) - retain
 Increases the retain count.
 
(unsigned int) - retainCount
 Returns the retain count.
 
(void) - release
 Decreases the retain count.
 
(id) - autorelease
 Adds the object to the topmost OFAutoreleasePool of the thread's autorelease pool stack.
 
(id) - self
 Returns the receiver.
 
(BOOL) - isProxy
 Returns whether the object is a proxy object.
 
- Instance Methods inherited from <OFCopying>
(id) - copy
 Copies the object.
 
- Instance Methods inherited from <OFComparing>
(of_comparison_result_t) - compare:
 Compares the object with another object.
 
- Instance Methods inherited from <OFSerialization>
(id) - initWithSerialization:
 Initializes the object with the specified XML element serialization.
 
(OFXMLElement *) - XMLElementBySerializing
 Serializes the object into an XML element.
 

Class Methods

(instancetype) + dataArray
 Creates a new OFDataArray with an item size of 1.
 
(instancetype) + dataArrayWithItemSize:
 Creates a new OFDataArray whose items all have the same size.
 
(instancetype) + dataArrayWithContentsOfFile:
 Creates a new OFDataArary with an item size of 1, containing the data of the specified file.
 
(instancetype) + dataArrayWithContentsOfURL:
 Creates a new OFDataArray with an item size of 1, containing the data of the specified URL.
 
(instancetype) + dataArrayWithStringRepresentation:
 Creates a new OFDataArray with an item size of 1, containing the data of the string representation.
 
(instancetype) + dataArrayWithBase64EncodedString:
 Creates a new OFDataArray with an item size of 1, containing the data of the Base64-encoded string.
 
- Class Methods inherited from OFObject
(void) + load
 A method which is called once when the class is loaded into the runtime.
 
(void) + initialize
 A method which is called the moment before the first call to the class is being made.
 
(id) + alloc
 Allocates memory for an instance of the class and sets up the memory pool for the object.
 
(id) + new
 Allocates memory for a new instance and calls -[init] on it.
 
(Class) + class
 Returns the class.
 
(OFString *) + className
 Returns the name of the class as a string.
 
(BOOL) + isSubclassOfClass:
 Returns a boolean whether the class is a subclass of the specified class.
 
(Class) + superclass
 Returns the superclass of the class.
 
(BOOL) + instancesRespondToSelector:
 Checks whether instances of the class respond to a given selector.
 
(BOOL) + conformsToProtocol:
 Checks whether the class conforms to a given protocol.
 
(IMP) + instanceMethodForSelector:
 Returns the implementation of the instance method for the specified selector.
 
(const char *) + typeEncodingForInstanceSelector:
 Returns the type encoding of the instance method for the specified selector.
 
(OFString *) + description
 Returns a description for the class, which is usually the class name.
 
(IMP) + replaceClassMethod:withMethodFromClass:
 Replaces a class method with a class method from another class.
 
(IMP) + replaceInstanceMethod:withMethodFromClass:
 Replaces an instance method with an instance method from another class.
 
(IMP) + replaceClassMethod:withImplementation:typeEncoding:
 Replaces or adds a class method.
 
(IMP) + replaceInstanceMethod:withImplementation:typeEncoding:
 Replaces or adds an instance method.
 
(void) + inheritMethodsFromClass:
 Adds all methods from the specified class to the class that is the receiver.
 
(BOOL) + resolveClassMethod:
 Try to resolve the specified class method.
 
(BOOL) + resolveInstanceMethod:
 Try to resolve the specified instance method.
 

Additional Inherited Members

- Public Attributes inherited from OFObject
Class isa
 The class of the object.
 

Detailed Description

A class for storing arbitrary data in an array.

If you plan to store large hunks of data, you should consider using OFBigDataArray, which allocates the memory in pages rather than in bytes.

For security reasons, serialization and deserialization is only implemented for OFDataArrays with item size 1.

Method Documentation

- (void) addItem: (const void*)  item

Adds an item to the OFDataArray.

Parameters
itemA pointer to an arbitrary item
- (void) addItemsFromCArray: (const void*)  cArray
count: (size_t)  count 

Adds items from a C array to the OFDataArray.

Parameters
countThe number of items to add
cArrayA C array containing the items to add
- (size_t) count

Returns the number of items in the OFDataArray.

Returns
The number of items in the OFDataArray
+ (instancetype) dataArray

Creates a new OFDataArray with an item size of 1.

Returns
A new autoreleased OFDataArray
+ (instancetype) dataArrayWithBase64EncodedString: (OFString*)  string

Creates a new OFDataArray with an item size of 1, containing the data of the Base64-encoded string.

Parameters
stringThe string with the Base64-encoded data
Returns
A new autoreleased OFDataArray
+ (instancetype) dataArrayWithContentsOfFile: (OFString*)  path

Creates a new OFDataArary with an item size of 1, containing the data of the specified file.

Parameters
pathThe path of the file
Returns
A new autoreleased OFDataArray
+ (instancetype) dataArrayWithContentsOfURL: (OFURL*)  URL

Creates a new OFDataArray with an item size of 1, containing the data of the specified URL.

Parameters
URLThe URL to the contents for the OFDataArray
Returns
A new autoreleased OFDataArray
+ (instancetype) dataArrayWithItemSize: (size_t)  itemSize

Creates a new OFDataArray whose items all have the same size.

Parameters
itemSizeThe size of each element in the OFDataArray
Returns
A new autoreleased OFDataArray
+ (instancetype) dataArrayWithStringRepresentation: (OFString*)  string

Creates a new OFDataArray with an item size of 1, containing the data of the string representation.

Parameters
stringThe string representation of the data
Returns
A new autoreleased OFDataArray
- (id) init

Initializes an already allocated OFDataArray with an item size of 1.

Returns
A initialized OFDataArray

Reimplemented from OFObject.

- (id) initWithBase64EncodedString: (OFString*)  string

Initializes an already allocated OFDataArray with an item size of 1, containing the data of the Base64-encoded string.

Parameters
stringThe string with the Base64-encoded data
Returns
A initialized OFDataArray
- (id) initWithContentsOfFile: (OFString*)  path

Initializes an already allocated OFDataArray with an item size of 1, containing the data of the specified file.

Parameters
pathThe path of the file
Returns
An initialized OFDataArray
- (id) initWithContentsOfURL: (OFURL*)  URL

Initializes an already allocated OFDataArray with an item size of 1, containing the data of the specified URL.

Parameters
URLThe URL to the contents for the OFDataArray
Returns
A new autoreleased OFDataArray
- (id) initWithItemSize: (size_t)  itemSize

Initializes an already allocated OFDataArray whose items all have the same size.

Parameters
itemSizeThe size of each element in the OFDataArray
Returns
An initialized OFDataArray
- (id) initWithStringRepresentation: (OFString*)  string

Initializes an already allocated OFDataArray with an item size of 1, containing the data of the string representation.

Parameters
stringThe string representation of the data
Returns
A new autoreleased OFDataArray
- (void) insertItem: (const void*)  item
atIndex: (size_t)  index 

Adds an item to the OFDataArray at the specified index.

Parameters
itemA pointer to an arbitrary item
indexThe index where the item should be added
- (void) insertItemsFromCArray: (const void*)  cArray
atIndex: (size_t)  index
count: (size_t)  count 

Adds items from a C array to the OFDataArray at the specified index.

Parameters
cArrayA C array containing the items to add
indexThe index where the items should be added
countThe number of items to add
- (void *) itemAtIndex: (size_t)  OF_RETURNS_INNER_POINTER

Returns a specific item of the OFDataArray.

Parameters
indexThe number of the item to return
Returns
The specified item of the OFDataArray
- (size_t) itemSize

Returns the size of each item in the OFDataArray in bytes.

Returns
The size of each item in the OFDataArray in bytes
- (OFString *) MD5Hash

Returns the MD5 hash of the data array as an autoreleased OFString.

Returns
The MD5 hash of the data array as an autoreleased OFString

Provided by category OFDataArray(Hashing).

- (void*) OF_RETURNS_INNER_POINTER

Returns all elements of the OFDataArray as a C array.

Warning
The pointer is only valid until the OFDataArray is changed!

Modifying the returned array directly is allowed and will change the contents of the data array.

Returns
All elements of the OFDataArray as a C array
- (void*) OF_RETURNS_INNER_POINTER

Returns the first item of the OFDataArray.

Returns
The first item of the OFDataArray or NULL
- (void*) OF_RETURNS_INNER_POINTER

Returns the last item of the OFDataArray.

Returns
The last item of the OFDataArray or NULL
- (void) removeItemAtIndex: (size_t)  index

Removes the item at the specified index.

Parameters
indexThe index of the item to remove
- (void) removeItemsInRange: (of_range_t range

Removes the specified amount of items at the specified index.

Parameters
rangeThe range of items to remove
- (OFString *) SHA1Hash

Returns the SHA-1 hash of the data array as an autoreleased OFString.

Returns
The SHA-1 hash of the data array as an autoreleased OFString

Provided by category OFDataArray(Hashing).

- (OFString *) stringByBase64Encoding

Returns a string containing the data in Base64 encoding.

Returns
A string containing the data in Base64 encoding
- (OFString *) stringRepresentation

Returns the string representation of the data array.

Returns
The string representation of the data array.
- (void) writeToFile: (OFString*)  path

Writes the OFDataArray into the specified file.

Parameters
pathThe path of the file to write to

The documentation for this class was generated from the following files: