Integrate bloks into flipper and monitor state updates

Summary: Client implementation for the flipper send data lispy api

Reviewed By: adamjernst

Differential Revision: D19862378

fbshipit-source-id: 7a5cc8b47772bdbc0e89d723d0099ff824a81ed5
This commit is contained in:
Sarah Dong
2020-02-13 08:56:14 -08:00
committed by Facebook Github Bot
parent d99635c85e
commit 00bfa39992
2 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/*
* Copyright (c) Facebook, Inc. and its 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 <Foundation/Foundation.h>
#import <FlipperKit/FlipperPlugin.h>
@interface FlipperKitBloksPlugin : NSObject<FlipperPlugin>
- (void)logAction:(NSString *)action
withData:(NSDictionary *)data;
@end
#endif

View File

@@ -0,0 +1,48 @@
/*
* Copyright (c) Facebook, Inc. and its 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 "FlipperKitBloksPlugin.h"
#import <FlipperKit/FlipperClient.h>
#import <FlipperKit/FlipperConnection.h>
#import <FlipperKit/FlipperResponder.h>
#import "Plugins.h"
@implementation FlipperKitBloksPlugin
{
id<FlipperConnection> _connection;
}
- (void)didConnect:(id<FlipperConnection>)connection {
_connection = connection;
}
- (void)didDisconnect {
_connection = nil;
}
- (NSString *)identifier {
return @"flipper-plugin-bloks";
}
- (BOOL)runInBackground {
return YES;
}
- (void)logAction:(NSString *)action
withData:(NSDictionary *)data {
[_connection send:action withParams:data];
}
@end
void IGBloksFlipperPluginInit(FlipperClient *client)
{
[client addPlugin:[FlipperKitBloksPlugin new]];
}
#endif