mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
91 lines
2.2 KiB
Plaintext
91 lines
2.2 KiB
Plaintext
//
|
|
// ASDisplayNode+Ancestry.mm
|
|
// Texture
|
|
//
|
|
// Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
// Changes after 4/13/2017 are: Copyright (c) Pinterest, Inc. All rights reserved.
|
|
// Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
|
|
#import <AsyncDisplayKit/ASDisplayNode+Ancestry.h>
|
|
#import <AsyncDisplayKit/ASThread.h>
|
|
#import <AsyncDisplayKit/ASDisplayNodeExtras.h>
|
|
|
|
AS_SUBCLASSING_RESTRICTED
|
|
@interface ASNodeAncestryEnumerator : NSEnumerator
|
|
@end
|
|
|
|
@implementation ASNodeAncestryEnumerator {
|
|
ASDisplayNode *_lastNode; // This needs to be strong because enumeration will not retain the current batch of objects
|
|
BOOL _initialState;
|
|
}
|
|
|
|
- (instancetype)initWithNode:(ASDisplayNode *)node
|
|
{
|
|
if (self = [super init]) {
|
|
_initialState = YES;
|
|
_lastNode = node;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (id)nextObject
|
|
{
|
|
if (_initialState) {
|
|
_initialState = NO;
|
|
return _lastNode;
|
|
}
|
|
|
|
ASDisplayNode *nextNode = _lastNode.supernode;
|
|
if (nextNode == nil && ASDisplayNodeThreadIsMain()) {
|
|
CALayer *layer = _lastNode.nodeLoaded ? _lastNode.layer.superlayer : nil;
|
|
while (layer != nil) {
|
|
nextNode = ASLayerToDisplayNode(layer);
|
|
if (nextNode != nil) {
|
|
break;
|
|
}
|
|
layer = layer.superlayer;
|
|
}
|
|
}
|
|
_lastNode = nextNode;
|
|
return nextNode;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation ASDisplayNode (Ancestry)
|
|
|
|
- (id<NSFastEnumeration>)supernodes
|
|
{
|
|
NSEnumerator *result = [[ASNodeAncestryEnumerator alloc] initWithNode:self];
|
|
[result nextObject]; // discard first object (self)
|
|
return result;
|
|
}
|
|
|
|
- (id<NSFastEnumeration>)supernodesIncludingSelf
|
|
{
|
|
return [[ASNodeAncestryEnumerator alloc] initWithNode:self];
|
|
}
|
|
|
|
- (nullable __kindof ASDisplayNode *)supernodeOfClass:(Class)supernodeClass includingSelf:(BOOL)includeSelf
|
|
{
|
|
id<NSFastEnumeration> chain = includeSelf ? self.supernodesIncludingSelf : self.supernodes;
|
|
for (ASDisplayNode *ancestor in chain) {
|
|
if ([ancestor isKindOfClass:supernodeClass]) {
|
|
return ancestor;
|
|
}
|
|
}
|
|
return nil;
|
|
}
|
|
|
|
- (NSString *)ancestryDescription
|
|
{
|
|
NSMutableArray *strings = [NSMutableArray array];
|
|
for (ASDisplayNode *node in self.supernodes) {
|
|
[strings addObject:ASObjectDescriptionMakeTiny(node)];
|
|
}
|
|
return strings.description;
|
|
}
|
|
|
|
@end
|