1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
76
77
78
79
80
81
82
83
84
85
86
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
+
+
-
-
+
+
-
+
+
-
+
+
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
/*
* Copyright (c) 2008-2022 Jonathan Schleifer <js@nil.im>
* Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im>
*
* 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.QPL included in
* the packaging of this file.
*
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#import "OFValue.h"
#import "OFBytesValue.h"
#import "OFConcreteValue.h"
#import "OFMethodSignature.h"
#import "OFNonretainedObjectValue.h"
#import "OFPointValue.h"
#import "OFPointerValue.h"
#import "OFRangeValue.h"
#import "OFRectValue.h"
#import "OFSizeValue.h"
#import "OFString.h"
#import "OFOutOfMemoryException.h"
#import "OFString.h"
#import "OFOutOfMemoryException.h"
static struct {
Class isa;
} placeholder;
@interface OFPlaceholderValue: OFValue
@end
@implementation OFPlaceholderValue
#ifdef __clang__
/* We intentionally don't call into super, so silence the warning. */
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wunknown-pragmas"
# pragma clang diagnostic ignored "-Wobjc-designated-initializers"
#endif
- (instancetype)initWithBytes: (const void *)bytes
objCType: (const char *)objCType
{
return (id)[[OFConcreteValue alloc] initWithBytes: bytes
objCType: objCType];
}
#ifdef __clang__
# pragma clang diagnostic pop
#endif
OF_SINGLETON_METHODS
@end
@implementation OFValue
+ (void)initialize
{
if (self == [OFValue class])
object_setClass((id)&placeholder, [OFPlaceholderValue class]);
}
+ (instancetype)alloc
{
if (self == [OFValue class])
return [OFBytesValue alloc];
return (id)&placeholder;
return [super alloc];
}
+ (instancetype)valueWithBytes: (const void *)bytes
objCType: (const char *)objCType
{
return [[[OFBytesValue alloc] initWithBytes: bytes
objCType: objCType] autorelease];
return [[[OFValue alloc] initWithBytes: bytes
objCType: objCType] autorelease];
}
+ (instancetype)valueWithPointer: (const void *)pointer
{
return [[[OFPointerValue alloc] initWithPointer: pointer] autorelease];
return [[[OFValue alloc]
initWithBytes: &pointer
objCType: @encode(const void *)] autorelease];
}
+ (instancetype)valueWithNonretainedObject: (id)object
{
return [[[OFNonretainedObjectValue alloc]
initWithNonretainedObject: object] autorelease];
return [[[OFValue alloc] initWithBytes: &object
objCType: @encode(id)] autorelease];
}
+ (instancetype)valueWithRange: (OFRange)range
{
return [[[OFRangeValue alloc] initWithRange: range] autorelease];
return [[[OFValue alloc] initWithBytes: &range
objCType: @encode(OFRange)] autorelease];
}
+ (instancetype)valueWithPoint: (OFPoint)point
{
return [[[OFPointValue alloc] initWithPoint: point] autorelease];
return [[[OFValue alloc] initWithBytes: &point
objCType: @encode(OFPoint)] autorelease];
}
+ (instancetype)valueWithSize: (OFSize)size
{
return [[[OFSizeValue alloc] initWithSize: size] autorelease];
return [[[OFValue alloc] initWithBytes: &size
objCType: @encode(OFSize)] autorelease];
}
+ (instancetype)valueWithRect: (OFRect)rect
{
return [[[OFRectValue alloc] initWithRect: rect] autorelease];
return [[[OFValue alloc] initWithBytes: &rect
objCType: @encode(OFRect)] autorelease];
}
+ (instancetype)valueWithVector3D: (OFVector3D)vector3D
{
return [[[OFValue alloc]
initWithBytes: &vector3D
objCType: @encode(OFVector3D)] autorelease];
}
+ (instancetype)valueWithVector4D: (OFVector4D)vector4D
{
return [[[OFValue alloc]
initWithBytes: &vector4D
objCType: @encode(OFVector4D)] autorelease];
}
- (instancetype)initWithBytes: (const void *)bytes
objCType: (const char *)objCType
{
if ([self isMemberOfClass: [OFValue class]]) {
@try {
[self doesNotRecognizeSelector: _cmd];
} @catch (id e) {
[self release];
@throw e;
}
abort();
}
return [super init];
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (bool)isEqual: (id)object
{
const char *objCType;
|
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
- (OFRect)rectValue
{
OFRect ret;
[self getValue: &ret size: sizeof(ret)];
return ret;
}
- (OFVector3D)vector3DValue
{
OFVector3D ret;
[self getValue: &ret size: sizeof(ret)];
return ret;
}
- (OFVector4D)vector4DValue
{
OFVector4D ret;
[self getValue: &ret size: sizeof(ret)];
return ret;
}
- (OFString *)description
{
const char *objCType = self.objCType;
OFMutableString *ret =
OFMutableString *ret;
[OFMutableString stringWithString: @"<OFValue: "];
size_t size = OFSizeOfTypeEncoding(self.objCType);
size_t size;
unsigned char *value;
if (strcmp(objCType, @encode(OFRange)) == 0 ||
strcmp(objCType, @encode(const OFRange)) == 0) {
OFRange rangeValue;
[self getValue: &rangeValue size: sizeof(rangeValue)];
return [OFString stringWithFormat:
@"<OFValue: OFRange { %zd, %zd }>",
rangeValue.location, rangeValue.length];
} else if (strcmp(objCType, @encode(OFPoint)) == 0 ||
strcmp(objCType, @encode(const OFPoint)) == 0) {
OFPoint pointValue;
[self getValue: &pointValue size: sizeof(pointValue)];
return [OFString stringWithFormat:
@"<OFValue: OFPoint { %g, %g }>",
pointValue.x, pointValue.y];
} else if (strcmp(objCType, @encode(OFSize)) == 0 ||
strcmp(objCType, @encode(const OFSize)) == 0) {
OFSize sizeValue;
[self getValue: &sizeValue size: sizeof(sizeValue)];
return [OFString stringWithFormat:
@"<OFValue: OFSize { %g, %g }>",
sizeValue.width, sizeValue.height];
} else if (strcmp(objCType, @encode(OFRect)) == 0 ||
strcmp(objCType, @encode(const OFRect)) == 0) {
OFRect rectValue;
[self getValue: &rectValue size: sizeof(rectValue)];
return [OFString stringWithFormat:
@"<OFValue: OFRect { %g, %g, %g, %g }>",
rectValue.origin.x, rectValue.origin.y,
rectValue.size.width, rectValue.size.height];
} else if (strcmp(objCType, @encode(OFVector3D)) == 0 ||
strcmp(objCType, @encode(const OFVector3D)) == 0) {
OFVector3D vector3DValue;
[self getValue: &vector3DValue size: sizeof(vector3DValue)];
return [OFString stringWithFormat:
@"<OFValue: OFVector3D { %g, %g, %g }>",
vector3DValue.x, vector3DValue.y, vector3DValue.z];
} else if (strcmp(objCType, @encode(OFVector4D)) == 0 ||
strcmp(objCType, @encode(const OFVector4D)) == 0) {
OFVector4D vector4DValue;
[self getValue: &vector4DValue size: sizeof(vector4DValue)];
return [OFString stringWithFormat:
@"<OFValue: OFVector4D { %g, %g, %g, %g }>",
vector4DValue.x, vector4DValue.y, vector4DValue.z,
vector4DValue.w];
}
ret = [OFMutableString stringWithString: @"<OFValue: "];
size = OFSizeOfTypeEncoding(objCType);
value = OFAllocMemory(1, size);
@try {
[self getValue: value size: size];
for (size_t i = 0; i < size; i++) {
if (i > 0)
[ret appendString: @" "];
|