2015-03-23 13:28:42 -07: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-19 20:10:52 -08:00
|
|
|
|
2015-03-01 15:33:55 -08:00
|
|
|
#import <tgmath.h>
|
|
|
|
|
2015-02-19 20:10:52 -08:00
|
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
#import "RCTAssert.h"
|
2015-04-21 05:26:51 -07:00
|
|
|
#import "RCTDefines.h"
|
2015-02-19 20:10:52 -08:00
|
|
|
|
2015-07-16 09:34:28 -07:00
|
|
|
// JSON serialization/deserialization
|
2015-04-21 05:26:51 -07:00
|
|
|
RCT_EXTERN NSString *RCTJSONStringify(id jsonObject, NSError **error);
|
|
|
|
RCT_EXTERN id RCTJSONParse(NSString *jsonString, NSError **error);
|
2015-06-03 16:57:08 -07:00
|
|
|
RCT_EXTERN id RCTJSONParseMutable(NSString *jsonString, NSError **error);
|
|
|
|
RCT_EXTERN id RCTJSONParseWithOptions(NSString *jsonString, NSError **error, NSJSONReadingOptions options);
|
2015-02-19 20:10:52 -08:00
|
|
|
|
2015-05-06 00:11:31 -07:00
|
|
|
// Strip non JSON-safe values from an object graph
|
|
|
|
RCT_EXTERN id RCTJSONClean(id object);
|
|
|
|
|
2015-07-16 09:34:28 -07:00
|
|
|
// Get MD5 hash of a string
|
2015-04-21 05:26:51 -07:00
|
|
|
RCT_EXTERN NSString *RCTMD5Hash(NSString *string);
|
2015-02-19 20:10:52 -08:00
|
|
|
|
|
|
|
// Get screen metrics in a thread-safe way
|
2015-04-21 05:26:51 -07:00
|
|
|
RCT_EXTERN CGFloat RCTScreenScale(void);
|
|
|
|
RCT_EXTERN CGSize RCTScreenSize(void);
|
2015-02-19 20:10:52 -08:00
|
|
|
|
|
|
|
// Round float coordinates to nearest whole screen pixel (not point)
|
2015-04-21 05:26:51 -07:00
|
|
|
RCT_EXTERN CGFloat RCTRoundPixelValue(CGFloat value);
|
|
|
|
RCT_EXTERN CGFloat RCTCeilPixelValue(CGFloat value);
|
|
|
|
RCT_EXTERN CGFloat RCTFloorPixelValue(CGFloat value);
|
2015-02-19 20:10:52 -08:00
|
|
|
|
|
|
|
// Method swizzling
|
2015-04-21 05:26:51 -07:00
|
|
|
RCT_EXTERN void RCTSwapClassMethods(Class cls, SEL original, SEL replacement);
|
|
|
|
RCT_EXTERN void RCTSwapInstanceMethods(Class cls, SEL original, SEL replacement);
|
2015-02-19 20:10:52 -08:00
|
|
|
|
|
|
|
// Module subclass support
|
2015-04-21 05:26:51 -07:00
|
|
|
RCT_EXTERN BOOL RCTClassOverridesClassMethod(Class cls, SEL selector);
|
|
|
|
RCT_EXTERN BOOL RCTClassOverridesInstanceMethod(Class cls, SEL selector);
|
2015-03-01 15:33:55 -08:00
|
|
|
|
2015-03-11 12:06:03 -07:00
|
|
|
// Creates a standardized error object
|
2015-04-21 05:26:51 -07:00
|
|
|
RCT_EXTERN NSDictionary *RCTMakeError(NSString *message, id toStringify, NSDictionary *extraData);
|
|
|
|
RCT_EXTERN NSDictionary *RCTMakeAndLogError(NSString *message, id toStringify, NSDictionary *extraData);
|
2015-07-13 10:33:39 -07:00
|
|
|
RCT_EXTERN NSDictionary *RCTJSErrorFromNSError(NSError *error);
|
2015-04-27 03:50:07 -07:00
|
|
|
|
|
|
|
// Returns YES if React is running in a test environment
|
|
|
|
RCT_EXTERN BOOL RCTRunningInTestEnvironment(void);
|
2015-05-22 07:17:08 -07:00
|
|
|
|
|
|
|
// Return YES if image has an alpha component
|
|
|
|
RCT_EXTERN BOOL RCTImageHasAlpha(CGImageRef image);
|
2015-06-09 06:46:49 -07:00
|
|
|
|
2015-07-07 08:47:23 -07:00
|
|
|
// Create an NSError in the RCTErrorDomain
|
2015-06-09 12:25:24 -07:00
|
|
|
RCT_EXTERN NSError *RCTErrorWithMessage(NSString *message);
|
|
|
|
|
|
|
|
// Convert nil values to NSNull, and vice-versa
|
2015-06-09 06:46:49 -07:00
|
|
|
RCT_EXTERN id RCTNilIfNull(id value);
|
2015-07-13 10:33:39 -07:00
|
|
|
RCT_EXTERN id RCTNullIfNil(id value);
|
[ReactNative] Move module info from bridge to RCTModuleData
Summary:
@public
The info about bridge modules (such as id, name, queue, methods...) was spread
across arrays & dictionaries on the bridge, move it into a specific class.
It also removes a lot of information that was statically cached, and now have
the same lifecycle of the bridge.
Also moved RCTModuleMethod, RCTFrameUpdate and RCTBatchedBridge into it's own
files, for organization sake.
NOTE: This diff seems huge, but most of it was just moving code :)
Test Plan:
Tested UIExplorer & UIExplorer tests, Catalyst, MAdMan and Groups. Everything
looks fine.
2015-06-24 16:34:56 -07:00
|
|
|
|
2015-07-13 10:33:39 -07:00
|
|
|
// Convert data to a Base64-encoded data URL
|
|
|
|
RCT_EXTERN NSURL *RCTDataURL(NSString *mimeType, NSData *data);
|
2015-07-16 09:34:28 -07:00
|
|
|
|
|
|
|
// Gzip functionality - compression level in range 0 - 1 (-1 for default)
|
|
|
|
RCT_EXTERN NSData *RCTGzipData(NSData *data, float level);
|