2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2015-04-23 15:04:16 +00:00
|
|
|
#import "Layout.h"
|
|
|
|
#import "RCTAnimationType.h"
|
2015-04-21 12:26:51 +00:00
|
|
|
#import "RCTDefines.h"
|
2015-03-25 23:22:59 +00:00
|
|
|
#import "RCTLog.h"
|
2015-04-23 15:04:16 +00:00
|
|
|
#import "RCTPointerEvents.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides a collection of conversion functions for mapping
|
|
|
|
* JSON objects to native types and classes. These are useful when writing
|
|
|
|
* custom RCTViewManager setter methods.
|
|
|
|
*/
|
|
|
|
@interface RCTConvert : NSObject
|
|
|
|
|
2015-06-05 15:46:17 +00:00
|
|
|
+ (id)id:(id)json;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (BOOL)BOOL:(id)json;
|
|
|
|
+ (double)double:(id)json;
|
|
|
|
+ (float)float:(id)json;
|
|
|
|
+ (int)int:(id)json;
|
|
|
|
|
2015-03-25 00:37:03 +00:00
|
|
|
+ (int64_t)int64_t:(id)json;
|
|
|
|
+ (uint64_t)uint64_t:(id)json;
|
|
|
|
|
2015-03-11 02:03:59 +00:00
|
|
|
+ (NSInteger)NSInteger:(id)json;
|
|
|
|
+ (NSUInteger)NSUInteger:(id)json;
|
|
|
|
|
2015-03-09 10:04:44 +00:00
|
|
|
+ (NSArray *)NSArray:(id)json;
|
|
|
|
+ (NSDictionary *)NSDictionary:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (NSString *)NSString:(id)json;
|
|
|
|
+ (NSNumber *)NSNumber:(id)json;
|
2015-04-10 03:18:31 +00:00
|
|
|
+ (NSData *)NSData:(id)json;
|
2015-05-06 17:46:45 +00:00
|
|
|
+ (NSIndexSet *)NSIndexSet:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
+ (NSURL *)NSURL:(id)json;
|
|
|
|
+ (NSURLRequest *)NSURLRequest:(id)json;
|
|
|
|
|
2015-06-23 12:17:36 +00:00
|
|
|
typedef NSURL RCTFileURL;
|
|
|
|
+ (RCTFileURL *)RCTFileURL:(id)json;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (NSDate *)NSDate:(id)json;
|
|
|
|
+ (NSTimeZone *)NSTimeZone:(id)json;
|
|
|
|
+ (NSTimeInterval)NSTimeInterval:(id)json;
|
|
|
|
|
|
|
|
+ (NSTextAlignment)NSTextAlignment:(id)json;
|
|
|
|
+ (NSWritingDirection)NSWritingDirection:(id)json;
|
2015-03-17 14:04:39 +00:00
|
|
|
+ (UITextAutocapitalizationType)UITextAutocapitalizationType:(id)json;
|
2015-03-26 04:29:28 +00:00
|
|
|
+ (UITextFieldViewMode)UITextFieldViewMode:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (UIKeyboardType)UIKeyboardType:(id)json;
|
2015-03-31 01:25:30 +00:00
|
|
|
+ (UIReturnKeyType)UIReturnKeyType:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-03-26 04:29:28 +00:00
|
|
|
+ (UIViewContentMode)UIViewContentMode:(id)json;
|
|
|
|
+ (UIBarStyle)UIBarStyle:(id)json;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (CGFloat)CGFloat:(id)json;
|
|
|
|
+ (CGPoint)CGPoint:(id)json;
|
|
|
|
+ (CGSize)CGSize:(id)json;
|
|
|
|
+ (CGRect)CGRect:(id)json;
|
|
|
|
+ (UIEdgeInsets)UIEdgeInsets:(id)json;
|
|
|
|
|
2015-03-15 23:08:42 +00:00
|
|
|
+ (CGLineCap)CGLineCap:(id)json;
|
|
|
|
+ (CGLineJoin)CGLineJoin:(id)json;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (CATransform3D)CATransform3D:(id)json;
|
|
|
|
+ (CGAffineTransform)CGAffineTransform:(id)json;
|
|
|
|
|
|
|
|
+ (UIColor *)UIColor:(id)json;
|
|
|
|
+ (CGColorRef)CGColor:(id)json;
|
|
|
|
|
|
|
|
+ (UIImage *)UIImage:(id)json;
|
|
|
|
+ (CGImageRef)CGImage:(id)json;
|
|
|
|
|
2015-05-06 00:38:32 +00:00
|
|
|
+ (UIFont *)UIFont:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withSize:(id)json;
|
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withWeight:(id)json;
|
2015-03-25 23:22:59 +00:00
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withStyle:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withFamily:(id)json;
|
2015-03-26 04:29:28 +00:00
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withFamily:(id)family
|
|
|
|
size:(id)size weight:(id)weight style:(id)style;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-04-08 15:52:48 +00:00
|
|
|
typedef NSArray NSStringArray;
|
|
|
|
+ (NSStringArray *)NSStringArray:(id)json;
|
|
|
|
|
|
|
|
typedef NSArray NSDictionaryArray;
|
|
|
|
+ (NSDictionaryArray *)NSDictionaryArray:(id)json;
|
|
|
|
|
|
|
|
typedef NSArray NSURLArray;
|
|
|
|
+ (NSURLArray *)NSURLArray:(id)json;
|
|
|
|
|
2015-06-23 12:17:36 +00:00
|
|
|
typedef NSArray RCTFileURLArray;
|
|
|
|
+ (RCTFileURLArray *)RCTFileURLArray:(id)json;
|
|
|
|
|
2015-04-08 15:52:48 +00:00
|
|
|
typedef NSArray NSNumberArray;
|
|
|
|
+ (NSNumberArray *)NSNumberArray:(id)json;
|
|
|
|
|
|
|
|
typedef NSArray UIColorArray;
|
|
|
|
+ (UIColorArray *)UIColorArray:(id)json;
|
|
|
|
|
|
|
|
typedef NSArray CGColorArray;
|
|
|
|
+ (CGColorArray *)CGColorArray:(id)json;
|
|
|
|
|
2015-05-05 12:34:38 +00:00
|
|
|
/**
|
|
|
|
* Convert a JSON object to a Plist-safe equivalent by stripping null values.
|
|
|
|
*/
|
|
|
|
typedef id NSPropertyList;
|
|
|
|
+ (NSPropertyList)NSPropertyList:(id)json;
|
|
|
|
|
2015-05-28 16:29:27 +00:00
|
|
|
typedef BOOL css_clip_t;
|
|
|
|
+ (css_clip_t)css_clip_t:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (css_flex_direction_t)css_flex_direction_t:(id)json;
|
|
|
|
+ (css_justify_t)css_justify_t:(id)json;
|
|
|
|
+ (css_align_t)css_align_t:(id)json;
|
|
|
|
+ (css_position_type_t)css_position_type_t:(id)json;
|
|
|
|
+ (css_wrap_type_t)css_wrap_type_t:(id)json;
|
|
|
|
|
|
|
|
+ (RCTPointerEvents)RCTPointerEvents:(id)json;
|
|
|
|
+ (RCTAnimationType)RCTAnimationType:(id)json;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will attempt to set a property using a json value by first
|
|
|
|
* inferring the correct type from all available information, and then
|
|
|
|
* applying an appropriate conversion method. If the property does not
|
|
|
|
* exist, or the type cannot be inferred, the function will return NO.
|
|
|
|
*/
|
2015-04-21 12:26:51 +00:00
|
|
|
RCT_EXTERN BOOL RCTSetProperty(id target, NSString *keyPath, SEL type, id json);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function attempts to copy a property from the source object to the
|
|
|
|
* destination object using KVC. If the property does not exist, or cannot
|
|
|
|
* be set, it will do nothing and return NO.
|
|
|
|
*/
|
2015-04-21 12:26:51 +00:00
|
|
|
RCT_EXTERN BOOL RCTCopyProperty(id target, id source, NSString *keyPath);
|
2015-03-10 21:23:03 +00:00
|
|
|
|
[Bridge] `RCT_REMAP_METHOD(js_name, selector)`
Summary:
cc @a2 @nicklockwood
This diff introduces a new macro called `RCT_EXPORT_NAMED_METHOD`, which is like `RCT_EXPORT_METHOD` but lets you choose the name of the method in JS. This diff is backwards compatible with the `RCT_EXPORT_METHOD` and legacy `RCT_EXPORT` macros.
The entries in the data segment now contain `__func__`, the Obj-C selector signature, and the JS name. If the JS name is `NULL`, we take the legacy `RCT_EXPORT` code path. If the JS name is an empty string, we use the Obj-C selector's name up to the first colon (that is, the behavior of `RCT_EXPORT_METHOD`).
Since there are three values in each data segment entry, the macros now specify 1-byte alignment. Without the byte alignment, the compiler defaults to 2-byte alignment meaning that each entry takes up 4 bytes instead of 3. The extra byte isn't a concern but being explicit about the alignment should reduce compiler surprises.
Closes https://github.com/facebook/react-native/pull/802
Github Author: James Ide <ide@jameside.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-04-14 20:03:16 +00:00
|
|
|
/**
|
2015-04-21 16:48:29 +00:00
|
|
|
* Underlying implementations of RCT_XXX_CONVERTER macros. Ignore these.
|
[Bridge] `RCT_REMAP_METHOD(js_name, selector)`
Summary:
cc @a2 @nicklockwood
This diff introduces a new macro called `RCT_EXPORT_NAMED_METHOD`, which is like `RCT_EXPORT_METHOD` but lets you choose the name of the method in JS. This diff is backwards compatible with the `RCT_EXPORT_METHOD` and legacy `RCT_EXPORT` macros.
The entries in the data segment now contain `__func__`, the Obj-C selector signature, and the JS name. If the JS name is `NULL`, we take the legacy `RCT_EXPORT` code path. If the JS name is an empty string, we use the Obj-C selector's name up to the first colon (that is, the behavior of `RCT_EXPORT_METHOD`).
Since there are three values in each data segment entry, the macros now specify 1-byte alignment. Without the byte alignment, the compiler defaults to 2-byte alignment meaning that each entry takes up 4 bytes instead of 3. The extra byte isn't a concern but being explicit about the alignment should reduce compiler surprises.
Closes https://github.com/facebook/react-native/pull/802
Github Author: James Ide <ide@jameside.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-04-14 20:03:16 +00:00
|
|
|
*/
|
2015-04-21 12:26:51 +00:00
|
|
|
RCT_EXTERN NSNumber *RCTConvertEnumValue(const char *, NSDictionary *, NSNumber *, id);
|
2015-05-18 14:32:21 +00:00
|
|
|
RCT_EXTERN NSNumber *RCTConvertMultiEnumValue(const char *, NSDictionary *, NSNumber *, id);
|
2015-04-21 16:48:29 +00:00
|
|
|
RCT_EXTERN NSArray *RCTConvertArrayValue(SEL, id);
|
|
|
|
RCT_EXTERN void RCTLogConvertError(id, const char *);
|
2015-03-15 23:08:42 +00:00
|
|
|
|
2015-03-30 13:07:07 +00:00
|
|
|
/**
|
|
|
|
* This macro is used for creating simple converter functions that just call
|
|
|
|
* the specified getter method on the json value.
|
|
|
|
*/
|
|
|
|
#define RCT_CONVERTER(type, name, getter) \
|
|
|
|
RCT_CUSTOM_CONVERTER(type, name, [json getter])
|
|
|
|
|
2015-03-15 23:08:42 +00:00
|
|
|
/**
|
|
|
|
* This macro is used for creating converter functions with arbitrary logic.
|
|
|
|
*/
|
2015-03-30 13:07:07 +00:00
|
|
|
#define RCT_CUSTOM_CONVERTER(type, name, code) \
|
2015-03-15 23:08:42 +00:00
|
|
|
+ (type)name:(id)json \
|
|
|
|
{ \
|
2015-04-21 16:48:29 +00:00
|
|
|
json = (json == (id)kCFNull) ? nil : json; \
|
|
|
|
if (!RCT_DEBUG) { \
|
2015-03-15 23:08:42 +00:00
|
|
|
return code; \
|
2015-04-21 16:48:29 +00:00
|
|
|
} else { \
|
|
|
|
@try { \
|
|
|
|
return code; \
|
|
|
|
} \
|
|
|
|
@catch (__unused NSException *e) { \
|
|
|
|
RCTLogConvertError(json, #type); \
|
|
|
|
json = nil; \
|
|
|
|
return code; \
|
|
|
|
} \
|
2015-03-15 23:08:42 +00:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2015-03-25 00:37:03 +00:00
|
|
|
/**
|
|
|
|
* This macro is similar to RCT_CONVERTER, but specifically geared towards
|
|
|
|
* numeric types. It will handle string input correctly, and provides more
|
[Bridge] `RCT_REMAP_METHOD(js_name, selector)`
Summary:
cc @a2 @nicklockwood
This diff introduces a new macro called `RCT_EXPORT_NAMED_METHOD`, which is like `RCT_EXPORT_METHOD` but lets you choose the name of the method in JS. This diff is backwards compatible with the `RCT_EXPORT_METHOD` and legacy `RCT_EXPORT` macros.
The entries in the data segment now contain `__func__`, the Obj-C selector signature, and the JS name. If the JS name is `NULL`, we take the legacy `RCT_EXPORT` code path. If the JS name is an empty string, we use the Obj-C selector's name up to the first colon (that is, the behavior of `RCT_EXPORT_METHOD`).
Since there are three values in each data segment entry, the macros now specify 1-byte alignment. Without the byte alignment, the compiler defaults to 2-byte alignment meaning that each entry takes up 4 bytes instead of 3. The extra byte isn't a concern but being explicit about the alignment should reduce compiler surprises.
Closes https://github.com/facebook/react-native/pull/802
Github Author: James Ide <ide@jameside.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-04-14 20:03:16 +00:00
|
|
|
* detailed error reporting if an invalid value is passed in.
|
2015-03-25 00:37:03 +00:00
|
|
|
*/
|
|
|
|
#define RCT_NUMBER_CONVERTER(type, getter) \
|
2015-03-30 13:07:07 +00:00
|
|
|
RCT_CUSTOM_CONVERTER(type, type, [[self NSNumber:json] getter])
|
2015-03-25 00:37:03 +00:00
|
|
|
|
2015-03-15 23:08:42 +00:00
|
|
|
/**
|
|
|
|
* This macro is used for creating converters for enum types.
|
|
|
|
*/
|
|
|
|
#define RCT_ENUM_CONVERTER(type, values, default, getter) \
|
|
|
|
+ (type)type:(id)json \
|
|
|
|
{ \
|
|
|
|
static NSDictionary *mapping; \
|
|
|
|
static dispatch_once_t onceToken; \
|
|
|
|
dispatch_once(&onceToken, ^{ \
|
|
|
|
mapping = values; \
|
|
|
|
}); \
|
2015-04-21 22:08:20 +00:00
|
|
|
return [RCTConvertEnumValue(#type, mapping, @(default), json) getter]; \
|
2015-03-15 23:08:42 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 14:32:21 +00:00
|
|
|
/**
|
|
|
|
* This macro is used for creating converters for enum types for
|
|
|
|
* multiple enum values combined with | operator
|
|
|
|
*/
|
|
|
|
#define RCT_MULTI_ENUM_CONVERTER(type, values, default, getter) \
|
|
|
|
+ (type)type:(id)json \
|
|
|
|
{ \
|
|
|
|
static NSDictionary *mapping; \
|
|
|
|
static dispatch_once_t onceToken; \
|
|
|
|
dispatch_once(&onceToken, ^{ \
|
|
|
|
mapping = values; \
|
|
|
|
}); \
|
|
|
|
return [RCTConvertMultiEnumValue(#type, mapping, @(default), json) getter]; \
|
|
|
|
}
|
|
|
|
|
2015-03-15 23:08:42 +00:00
|
|
|
/**
|
|
|
|
* This macro is used for creating converter functions for typed arrays.
|
|
|
|
*/
|
2015-04-21 16:48:29 +00:00
|
|
|
#define RCT_ARRAY_CONVERTER(type) \
|
|
|
|
+ (NSArray *)type##Array:(id)json \
|
|
|
|
{ \
|
|
|
|
return RCTConvertArrayValue(@selector(type:), json); \
|
2015-03-15 23:08:42 +00:00
|
|
|
}
|