@@ -89,55 +89,12 @@ + (NSString*) setterKey: (SEL)sel {return setterKey(sel);}
89
89
90
90
#pragma mark - GENERIC ACCESSOR METHOD IMPS:
91
91
92
-
93
- #if USE_BLOCKS
94
-
95
92
static inline void setIdProperty (ParseModelBase *self, NSString * property, id value) {
96
93
// TODO: Add support for UIImage
97
94
BOOL result = [self setValue: value ofProperty: property];
98
95
NSCAssert (result, @" Property %@ .%@ is not settable" , [self class ], property);
99
96
}
100
97
101
- #else
102
-
103
- static id getIdProperty (CouchDynamicObject *self, SEL _cmd) {
104
- return [self getValueOfProperty: getterKey (_cmd )];
105
- }
106
-
107
- static void setIdProperty (CouchDynamicObject *self, SEL _cmd, id value) {
108
- NSString * property = setterKey (_cmd);
109
- BOOL result = [self setValue: value ofProperty: property];
110
- NSCAssert (result, @" Property %@ .%@ is not settable" , [self class ], property);
111
- }
112
-
113
- static int getIntProperty (CouchDynamicObject *self, SEL _cmd) {
114
- return [getIdProperty (self ,_cmd ) intValue ];
115
- }
116
-
117
- static void setIntProperty (CouchDynamicObject *self, SEL _cmd, int value) {
118
- setIdProperty (self, _cmd, [NSNumber numberWithInt: value]);
119
- }
120
-
121
- static bool getBoolProperty (CouchDynamicObject *self, SEL _cmd) {
122
- return [getIdProperty (self ,_cmd ) boolValue ];
123
- }
124
-
125
- static void setBoolProperty (CouchDynamicObject *self, SEL _cmd, bool value) {
126
- setIdProperty (self, _cmd, [NSNumber numberWithBool: value]);
127
- }
128
-
129
- static double getDoubleProperty (CouchDynamicObject *self, SEL _cmd) {
130
- id number = getIdProperty (self,_cmd);
131
- return number ?[number doubleValue ] :0.0 ;
132
- }
133
-
134
- static void setDoubleProperty (CouchDynamicObject *self, SEL _cmd, double value) {
135
- setIdProperty (self, _cmd, [NSNumber numberWithDouble: value]);
136
- }
137
-
138
- #endif // USE_BLOCKS
139
-
140
-
141
98
#pragma mark - PROPERTY INTROSPECTION:
142
99
143
100
@@ -247,67 +204,75 @@ + (Class) classOfProperty: (NSString*)propertyName {
247
204
return classFromType (propertyType);
248
205
}
249
206
207
+ + (id )performBoxingIfNecessary : (id )object
208
+ {
209
+ id boxedObject = object;
210
+ if ([object isKindOfClass: [CLLocation class ]]) {
211
+ boxedObject = [PFGeoPoint geoPointWithLocation: object];
212
+ }
213
+ else if ([object isKindOfClass: [NSURL class ]]) {
214
+ boxedObject = [(NSURL *)object absoluteString ];
215
+ }
216
+
217
+ return boxedObject;
218
+ }
250
219
251
- + (IMP ) impForGetterOfProperty : (NSString *)property ofClass : (Class )propertyClass {
252
- #if USE_BLOCKS
220
+ + (id )performUnboxingIfNecessary : (id )object targetClass : (Class )targetClass
221
+ {
222
+ id unboxedObject = object;
223
+ if ((targetClass == [CLLocation class ]) && [object isKindOfClass: [PFGeoPoint class ]]) {
224
+ unboxedObject = [[CLLocation alloc ] initWithLatitude: [(PFGeoPoint *)object latitude ] longitude: [(PFGeoPoint *)object longitude ]];
225
+ }
226
+ else if ((targetClass == [NSURL class ]) && [object isKindOfClass: [NSString class ]]) {
227
+ unboxedObject = [NSURL URLWithString: object];
228
+ }
229
+
230
+ return unboxedObject;
231
+ }
232
+
233
+ + (IMP )impForGetterOfProperty : (NSString *)property ofClass : (Class )propertyClass {
253
234
return imp_implementationWithBlock (^id (ParseModelBase* receiver) {
254
- return [receiver getValueOfProperty: property];
235
+ id object = [receiver getValueOfProperty: property];
236
+ object = [ParseModelBase performUnboxingIfNecessary: object targetClass: propertyClass];
237
+ return object;
255
238
});
256
- #else
257
- return (IMP )getIdProperty;
258
- #endif
259
239
}
260
240
261
- + (IMP ) impForSetterOfProperty : (NSString *)property ofClass : (Class )propertyClass {
262
- #if USE_BLOCKS
241
+ + (IMP )impForSetterOfProperty : (NSString *)property ofClass : (Class )propertyClass {
263
242
return imp_implementationWithBlock (^(ParseModelBase* receiver, id value) {
264
- setIdProperty (receiver, property, value);
243
+ id boxedValue = [ParseModelBase performBoxingIfNecessary: value];
244
+ setIdProperty (receiver, property, boxedValue);
265
245
});
266
- #else
267
- return (IMP )setIdProperty;
268
- #endif
269
246
}
270
247
271
248
272
- + (IMP ) impForGetterOfProperty : (NSString *)property ofType : (const char *)propertyType {
249
+ + (IMP )impForGetterOfProperty : (NSString *)property ofType : (const char *)propertyType {
273
250
switch (propertyType[0 ]) {
274
251
case _C_ID:
275
- return [self impForGetterOfProperty: property ofClass: classFromType (propertyType)];
252
+ return [self impForGetterOfProperty: property ofClass: classFromType (propertyType)];
276
253
case _C_INT:
277
254
case _C_SHT:
278
255
case _C_USHT:
279
256
case _C_CHR:
280
257
case _C_UCHR:
281
- #if USE_BLOCKS
282
258
return imp_implementationWithBlock (^int (ParseModelBase* receiver) {
283
259
return [[receiver getValueOfProperty: property] intValue ];
284
260
});
285
- #else
286
- return (IMP )getIntProperty;
287
- #endif
288
261
case _C_BOOL:
289
- #if USE_BLOCKS
290
262
return imp_implementationWithBlock (^bool (ParseModelBase* receiver) {
291
263
return [[receiver getValueOfProperty: property] boolValue ];
292
264
});
293
- #else
294
- return (IMP )getBoolProperty;
295
- #endif
296
265
case _C_DBL:
297
- #if USE_BLOCKS
298
266
return imp_implementationWithBlock (^double (ParseModelBase* receiver) {
299
267
return [[receiver getValueOfProperty: property] doubleValue ];
300
268
});
301
- #else
302
- return (IMP )getDoubleProperty;
303
- #endif
304
269
default :
305
270
// TODO: handle more scalar property types.
306
271
return NULL ;
307
272
}
308
273
}
309
274
310
- + (IMP ) impForSetterOfProperty : (NSString *)property ofType : (const char *)propertyType {
275
+ + (IMP )impForSetterOfProperty : (NSString *)property ofType : (const char *)propertyType {
311
276
switch (propertyType[0 ]) {
312
277
case _C_ID:
313
278
return [self impForSetterOfProperty: property ofClass: classFromType (propertyType)];
@@ -316,29 +281,17 @@ + (IMP) impForSetterOfProperty: (NSString*)property ofType: (const char*)propert
316
281
case _C_USHT:
317
282
case _C_CHR: // Note that "BOOL" is a typedef so it compiles to 'char'
318
283
case _C_UCHR:
319
- #if USE_BLOCKS
320
284
return imp_implementationWithBlock (^(ParseModelBase* receiver, int value) {
321
285
setIdProperty (receiver, property, [NSNumber numberWithInt: value]);
322
286
});
323
- #else
324
- return (IMP )setIntProperty;
325
- #endif
326
287
case _C_BOOL: // This is the true native C99/C++ "bool" type
327
- #if USE_BLOCKS
328
288
return imp_implementationWithBlock (^(ParseModelBase* receiver, bool value) {
329
289
setIdProperty (receiver, property, [NSNumber numberWithBool: value]);
330
290
});
331
- #else
332
- return (IMP )setBoolProperty;
333
- #endif
334
291
case _C_DBL:
335
- #if USE_BLOCKS
336
292
return imp_implementationWithBlock (^(ParseModelBase* receiver, double value) {
337
293
setIdProperty (receiver, property, [NSNumber numberWithDouble: value]);
338
294
});
339
- #else
340
- return (IMP )setDoubleProperty;
341
- #endif
342
295
default :
343
296
// TODO: handle more scalar property types.
344
297
return NULL ;
0 commit comments