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,85 @@
/*
* 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 "FlipperKitUIDebuggerPlugin.h"
#import <UIKit/UIKit.h>
#import <FlipperKit/FlipperClient.h>
#import <FlipperKit/FlipperConnection.h>
#import <FlipperKit/FlipperResponder.h>
#import "Core/UIDContext.h"
#import "PluginSockets.h"
#import "Plugins.h"
#import "Descriptors/UIDDescriptorRegister.h"
#import "Observer/UIDTreeObserverFactory.h"
#import "Observer/UIDTreeObserverManager.h"
@implementation FlipperKitUIDebuggerPlugin {
UIDContext* _context;
}
- (instancetype)initWithContext:(UIDContext*)context {
if (self = [super init]) {
self->_context = context;
}
return self;
}
- (instancetype)init {
UIDContext* context = [[UIDContext alloc]
initWithApplication:[UIApplication sharedApplication]
descriptorRegister:[UIDDescriptorRegister defaultRegister]
observerFactory:[UIDTreeObserverFactory shared]];
return [self initWithContext:context];
}
- (NSString*)identifier {
return @"ui-debugger";
}
- (void)didConnect:(id<FlipperConnection>)connection {
if (!_context.application) {
_context.application = [UIApplication sharedApplication];
}
_context.connection = connection;
[[UIDTreeObserverManager shared] startWithContext:_context];
}
- (void)didDisconnect {
_context.connection = nil;
[[UIDTreeObserverManager shared] stop];
}
@end
void FlipperKitUIDebuggerAddPlugin(FlipperClient* client) {
UIDContext* context = [[UIDContext alloc]
initWithApplication:[UIApplication sharedApplication]
descriptorRegister:[UIDDescriptorRegister defaultRegister]
observerFactory:[UIDTreeObserverFactory shared]];
FlipperKitUIDebuggerPlugin* plugin =
[[FlipperKitUIDebuggerPlugin alloc] initWithContext:context];
for (const auto& p : FlipperUIDebuggerDescriptorRegisterSocket_Plugins()) {
FlipperUIDebuggerDescriptorRegisterSocket_InvokeConfigure(p, context);
}
[client addPlugin:plugin];
}
void FlipperKitUIDebuggerPluginInit(FlipperClient* client) {
FlipperKitUIDebuggerAddPlugin(client);
}
#endif