2017-05-08 19:40:07 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-05-08 19:40:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import "RCTUIManagerObserverCoordinator.h"
|
|
|
|
|
2017-09-18 20:34:24 +00:00
|
|
|
#import <mutex>
|
|
|
|
|
2017-05-08 19:40:07 +00:00
|
|
|
#import "RCTUIManager.h"
|
|
|
|
|
|
|
|
@implementation RCTUIManagerObserverCoordinator {
|
|
|
|
NSHashTable<id<RCTUIManagerObserver>> *_observers;
|
2017-09-18 20:34:24 +00:00
|
|
|
std::mutex _mutex;
|
2017-05-08 19:40:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)init
|
|
|
|
{
|
|
|
|
if (self = [super init]) {
|
|
|
|
_observers = [[NSHashTable alloc] initWithOptions:NSHashTableWeakMemory capacity:0];
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)addObserver:(id<RCTUIManagerObserver>)observer
|
|
|
|
{
|
2017-09-18 20:34:24 +00:00
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
[self->_observers addObject:observer];
|
2017-05-08 19:40:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)removeObserver:(id<RCTUIManagerObserver>)observer
|
|
|
|
{
|
2017-09-18 20:34:24 +00:00
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
[self->_observers removeObject:observer];
|
2017-05-08 19:40:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - RCTUIManagerObserver
|
|
|
|
|
|
|
|
- (void)uiManagerWillPerformLayout:(RCTUIManager *)manager
|
|
|
|
{
|
2017-09-18 20:34:24 +00:00
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
|
2017-05-08 19:40:07 +00:00
|
|
|
for (id<RCTUIManagerObserver> observer in _observers) {
|
|
|
|
if ([observer respondsToSelector:@selector(uiManagerWillPerformLayout:)]) {
|
|
|
|
[observer uiManagerWillPerformLayout:manager];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)uiManagerDidPerformLayout:(RCTUIManager *)manager
|
|
|
|
{
|
2017-09-18 20:34:24 +00:00
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
|
2017-05-08 19:40:07 +00:00
|
|
|
for (id<RCTUIManagerObserver> observer in _observers) {
|
|
|
|
if ([observer respondsToSelector:@selector(uiManagerDidPerformLayout:)]) {
|
|
|
|
[observer uiManagerDidPerformLayout:manager];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-12 00:54:52 +00:00
|
|
|
- (void)uiManagerWillPerformMounting:(RCTUIManager *)manager
|
2017-05-08 19:40:07 +00:00
|
|
|
{
|
2017-09-18 20:34:24 +00:00
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
|
2017-05-08 19:40:07 +00:00
|
|
|
for (id<RCTUIManagerObserver> observer in _observers) {
|
2017-12-12 00:54:52 +00:00
|
|
|
if ([observer respondsToSelector:@selector(uiManagerWillPerformMounting:)]) {
|
|
|
|
[observer uiManagerWillPerformMounting:manager];
|
2017-05-08 19:40:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-21 06:11:55 +00:00
|
|
|
- (BOOL)uiManager:(RCTUIManager *)manager performMountingWithBlock:(RCTUIManagerMountingBlock)block
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
|
|
|
|
for (id<RCTUIManagerObserver> observer in _observers) {
|
|
|
|
if ([observer respondsToSelector:@selector(uiManager:performMountingWithBlock:)]) {
|
|
|
|
if ([observer uiManager:manager performMountingWithBlock:block]) {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2017-12-12 00:54:54 +00:00
|
|
|
- (void)uiManagerDidPerformMounting:(RCTUIManager *)manager
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
|
|
|
|
for (id<RCTUIManagerObserver> observer in _observers) {
|
|
|
|
if ([observer respondsToSelector:@selector(uiManagerDidPerformMounting:)]) {
|
|
|
|
[observer uiManagerDidPerformMounting:manager];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-08 19:40:07 +00:00
|
|
|
@end
|