Summary: Move UIDebugger plugin to OSS space.

Reviewed By: passy

Differential Revision: D47634848

fbshipit-source-id: 90e8c0181a2434d0e5d76bdb99b902051e6d702e
This commit is contained in:
Lorenzo Blasa
2023-07-21 04:47:13 -07:00
committed by Facebook GitHub Bot
parent af5b9532ec
commit db7aa9eeaf
134 changed files with 6368 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#if FB_SONARKIT_ENABLED
#import "UIDTreeObserver.h"
#import "UIDContext.h"
#import "UIDHierarchyTraversal.h"
#import "UIDTimeUtilities.h"
@implementation UIDTreeObserver
- (instancetype)init {
self = [super init];
if (self) {
_children = [NSMutableDictionary new];
}
return self;
}
- (void)subscribe:(id)node {
}
- (void)unsubscribe {
}
- (void)processNode:(id)node withContext:(UIDContext*)context {
[self processNode:node withSnapshot:false withContext:context];
}
- (void)processNode:(id)node
withSnapshot:(BOOL)snapshot
withContext:(UIDContext*)context {
NSTimeInterval timestamp = UIDPerformanceTimeIntervalSince1970();
uint64_t t0 = UIDPerformanceNow();
UIDHierarchyTraversal* traversal = [UIDHierarchyTraversal
createWithDescriptorRegister:context.descriptorRegister];
UIDNodeDescriptor* descriptor =
[context.descriptorRegister descriptorForClass:[node class]];
UIDNodeDescriptor* rootDescriptor = [context.descriptorRegister
descriptorForClass:[context.application class]];
NSArray* nodes = [traversal traverse:node];
uint64_t t1 = UIDPerformanceNow();
UIImage* screenshot = [rootDescriptor snapshotForNode:context.application];
uint64_t t2 = UIDPerformanceNow();
UIDSubtreeUpdate* update = [UIDSubtreeUpdate new];
update.observerType = _type;
update.rootId = [descriptor identifierForNode:node];
update.nodes = nodes;
update.snapshot = screenshot;
update.timestamp = timestamp;
update.traversalMS = UIDMonotonicTimeConvertMachUnitsToMS(t1 - t0);
update.snapshotMS = UIDMonotonicTimeConvertMachUnitsToMS(t2 - t1);
[context.updateDigester digest:update];
}
- (void)cleanup {
}
@end
#endif