blob: 071bc2bbf527fe158f9e711b0662080d9adcd0e5 [file] [log] [blame]
/**
* Created by Weex.
* Copyright (c) 2016, Alibaba, Inc. All rights reserved.
*
* This source code is licensed under the Apache Licence 2.0.
* For the full copyright and license information,please view the LICENSE file in the root directory of this source tree.
*/
#import "WXSDKManager.h"
#import "WXThreadSafeMutableDictionary.h"
@interface WXSDKManager ()
@property (nonatomic, strong) WXBridgeManager *bridgeMgr;
@property (nonatomic, strong) WXThreadSafeMutableDictionary *instanceDict;
@end
@implementation WXSDKManager
static WXSDKManager *_sharedInstance = nil;
+ (WXSDKManager *)sharedInstance
{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
if (!_sharedInstance) {
_sharedInstance = [[self alloc] init];
_sharedInstance.instanceDict = [[WXThreadSafeMutableDictionary alloc] init];
}
});
return _sharedInstance;
}
+ (WXBridgeManager *)bridgeMgr
{
WXBridgeManager *bridgeMgr = [self sharedInstance].bridgeMgr;
if (!bridgeMgr) {
bridgeMgr = [[WXBridgeManager alloc] init];
[self sharedInstance].bridgeMgr = bridgeMgr;
}
return bridgeMgr;
}
+ (id)instanceForID:(NSString *)identifier
{
return [[self sharedInstance].instanceDict objectForKey:identifier];
}
+ (void)storeInstance:(WXSDKInstance *)instance forID:(NSString *)identifier
{
[[self sharedInstance].instanceDict setObject:instance forKey:identifier];
}
+ (void)removeInstanceforID:(NSString *)identifier
{
if (identifier) {
[[self sharedInstance].instanceDict removeObjectForKey:identifier];
}
}
+ (void)unload
{
for (NSString *instanceID in [self sharedInstance].instanceDict) {
WXSDKInstance *instance = [[self sharedInstance].instanceDict objectForKey:instanceID];
[instance destroyInstance];
}
[self sharedInstance].bridgeMgr = nil;
}
+ (WXModuleManager *)moduleMgr
{
return nil;
}
@end