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
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTBridgeModule.h"
|
2015-04-21 12:26:51 +00:00
|
|
|
#import "RCTDefines.h"
|
2015-04-15 14:07:19 +00:00
|
|
|
#import "RCTFrameUpdate.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTInvalidating.h"
|
|
|
|
#import "RCTJavaScriptExecutor.h"
|
|
|
|
|
2015-02-24 17:06:57 +00:00
|
|
|
@class RCTBridge;
|
2015-02-20 04:10:52 +00:00
|
|
|
@class RCTEventDispatcher;
|
|
|
|
|
2015-04-11 22:08:00 +00:00
|
|
|
/**
|
|
|
|
* This notification triggers a reload of all bridges currently running.
|
|
|
|
*/
|
|
|
|
extern NSString *const RCTReloadNotification;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This notification fires when the bridge has finished loading.
|
|
|
|
*/
|
|
|
|
extern NSString *const RCTJavaScriptDidLoadNotification;
|
|
|
|
|
2015-05-07 11:29:31 +00:00
|
|
|
/**
|
|
|
|
* This notification fires when the bridge failed to load.
|
|
|
|
*/
|
|
|
|
extern NSString *const RCTJavaScriptDidFailToLoadNotification;
|
|
|
|
|
2015-02-24 17:06:57 +00:00
|
|
|
/**
|
|
|
|
* This block can be used to instantiate modules that require additional
|
|
|
|
* init parameters, or additional configuration prior to being used.
|
2015-03-01 23:33:55 +00:00
|
|
|
* The bridge will call this block to instatiate the modules, and will
|
|
|
|
* be responsible for invalidating/releasing them when the bridge is destroyed.
|
|
|
|
* For this reason, the block should always return new module instances, and
|
|
|
|
* module instances should not be shared between bridges.
|
2015-02-24 17:06:57 +00:00
|
|
|
*/
|
2015-03-01 23:33:55 +00:00
|
|
|
typedef NSArray *(^RCTBridgeModuleProviderBlock)(void);
|
2015-02-24 17:06:57 +00:00
|
|
|
|
2015-04-07 14:36:26 +00:00
|
|
|
/**
|
|
|
|
* This function returns the module name for a given class.
|
|
|
|
*/
|
2015-04-21 12:26:51 +00:00
|
|
|
RCT_EXTERN NSString *RCTBridgeModuleNameForClass(Class bridgeModuleClass);
|
2015-04-07 14:36:26 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
/**
|
|
|
|
* Async batched bridge used to communicate with the JavaScript application.
|
|
|
|
*/
|
|
|
|
@interface RCTBridge : NSObject <RCTInvalidating>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The designated initializer. This creates a new bridge on top of the specified
|
|
|
|
* executor. The bridge should then be used for all subsequent communication
|
2015-02-24 17:06:57 +00:00
|
|
|
* with the JavaScript code running in the executor. Modules will be automatically
|
2015-03-01 23:33:55 +00:00
|
|
|
* instantiated using the default contructor, but you can optionally pass in an
|
|
|
|
* array of pre-initialized module instances if they require additional init
|
|
|
|
* parameters or configuration.
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
2015-04-11 22:08:00 +00:00
|
|
|
- (instancetype)initWithBundleURL:(NSURL *)bundleURL
|
|
|
|
moduleProvider:(RCTBridgeModuleProviderBlock)block
|
|
|
|
launchOptions:(NSDictionary *)launchOptions NS_DESIGNATED_INITIALIZER;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is used to call functions in the JavaScript application context.
|
|
|
|
* It is primarily intended for use by modules that require two-way communication
|
2015-04-20 19:06:02 +00:00
|
|
|
* with the JavaScript code. Method should be registered using the
|
2015-04-08 12:42:43 +00:00
|
|
|
* RCT_IMPORT_METHOD macro below. Attempting to call a method that has not been
|
2015-04-20 19:06:02 +00:00
|
|
|
* registered will result in an error. Safe to call from any thread.
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
- (void)enqueueJSCall:(NSString *)moduleDotMethod args:(NSArray *)args;
|
|
|
|
|
2015-04-08 12:42:43 +00:00
|
|
|
/**
|
|
|
|
* This macro is used to register a JS method to be called via the enqueueJSCall
|
|
|
|
* bridge method. You should place this macro inside any file that uses the
|
|
|
|
* imported method. If a method has already been registered by another class, it
|
|
|
|
* is not necessary to register it again, but it is good practice. Registering
|
|
|
|
* the same method more than once will not result in an error.
|
|
|
|
*/
|
|
|
|
#define RCT_IMPORT_METHOD(module, method) \
|
|
|
|
__attribute__((used, section("__DATA,RCTImport"))) \
|
|
|
|
static const char *__rct_import_##module##_##method##__ = #module"."#method;
|
|
|
|
|
2015-04-20 21:04:53 +00:00
|
|
|
/**
|
|
|
|
* URL of the script that was loaded into the bridge.
|
|
|
|
*/
|
2015-04-22 23:16:48 +00:00
|
|
|
@property (nonatomic, copy) NSURL *bundleURL;
|
2015-04-20 21:04:53 +00:00
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
@property (nonatomic, strong) Class executorClass;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
/**
|
|
|
|
* The event dispatcher is a wrapper around -enqueueJSCall:args: that provides a
|
|
|
|
* higher-level interface for sending UI events such as touches and text input.
|
|
|
|
*/
|
|
|
|
@property (nonatomic, readonly) RCTEventDispatcher *eventDispatcher;
|
|
|
|
|
2015-02-24 17:06:57 +00:00
|
|
|
/**
|
|
|
|
* A dictionary of all registered RCTBridgeModule instances, keyed by moduleName.
|
|
|
|
*/
|
|
|
|
@property (nonatomic, copy, readonly) NSDictionary *modules;
|
|
|
|
|
2015-04-08 12:42:43 +00:00
|
|
|
/**
|
|
|
|
* The launch options that were used to initialize the bridge.
|
|
|
|
*/
|
2015-03-26 01:59:42 +00:00
|
|
|
@property (nonatomic, copy, readonly) NSDictionary *launchOptions;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
/**
|
2015-04-08 12:42:43 +00:00
|
|
|
* Use this to check if the bridge is currently loading.
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
2015-04-11 22:08:00 +00:00
|
|
|
@property (nonatomic, readonly, getter=isLoading) BOOL loading;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-04-08 12:42:43 +00:00
|
|
|
/**
|
2015-04-20 19:06:02 +00:00
|
|
|
* Reload the bundle and reset executor & modules. Safe to call from any thread.
|
2015-04-08 12:42:43 +00:00
|
|
|
*/
|
2015-04-02 14:33:21 +00:00
|
|
|
- (void)reload;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@end
|