1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Copyright (c) 2008 - 2010
* Jonathan Schleifer <js@webkeks.org>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE included in
* the packaging of this file.
*/
#import "OFObject.h"
/**
* \brief 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.
*/
@interface OFDataArray: OFObject <OFCopying>
|
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* Copyright (c) 2008 - 2010
* Jonathan Schleifer <js@webkeks.org>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE included in
* the packaging of this file.
*/
#import "OFObject.h"
@class OFString;
/**
* \brief 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.
*/
@interface OFDataArray: OFObject <OFCopying>
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
* Creates a new OFDataArray whose items all have the same size.
*
* \param is The size of each element in the OFDataArray
* \return A new autoreleased OFDataArray
*/
+ dataArrayWithItemSize: (size_t)is;
/**
* Initializes an already allocated OFDataArray whose items all have the same
* size.
*
* \param is The size of each element in the OFDataArray
* \return An initialized OFDataArray
*/
- initWithItemSize: (size_t)is;
/**
* \return The number of items in the OFDataArray
*/
- (size_t)count;
/**
* \return The size of each item in the OFDataArray in bytes
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
* Creates a new OFDataArray whose items all have the same size.
*
* \param is The size of each element in the OFDataArray
* \return A new autoreleased OFDataArray
*/
+ dataArrayWithItemSize: (size_t)is;
/**
* Creates a new OFDataArary with an item size of 1, containing the data of the
* specified file.
*
* \param path The path of the file
* \return A new autoreleased OFDataArray
*/
+ dataArrayWithContentsOfFile: (OFString*)path;
/**
* Initializes an already allocated OFDataArray whose items all have the same
* size.
*
* \param is The size of each element in the OFDataArray
* \return An initialized OFDataArray
*/
- initWithItemSize: (size_t)is;
/**
* Initializes an already allocated OFDataArray with an item size of 1,
* containing the data of the specified file.
*
* \param path The path of the file
* \return An initialized OFDataArray
*/
- initWithContentsOfFile: (OFString*)path;
/**
* \return The number of items in the OFDataArray
*/
- (size_t)count;
/**
* \return The size of each item in the OFDataArray in bytes
|