feat:use global anchor hook to print log
This commit is contained in:
parent
17e14e7119
commit
a021aae3de
@ -52,12 +52,7 @@ public class DoricDev {
|
||||
private DoricDev() {
|
||||
this.isRunningInEmulator = SimulatorUtil.isSimulator(Doric.application());
|
||||
DoricNativeDriver.getInstance().getRegistry().registerMonitor(new DoricDevMonitor());
|
||||
DoricNativeDriver.getInstance().getRegistry().setGlobalPerformanceAnchorHook(new DoricPerformanceProfile.AnchorHook() {
|
||||
@Override
|
||||
public void onAnchor(String name, long prepare, long start, long end) {
|
||||
|
||||
}
|
||||
});
|
||||
DoricNativeDriver.getInstance().getRegistry().setGlobalPerformanceAnchorHook(new DoricDevPerformanceAnchorHook());
|
||||
}
|
||||
|
||||
public static DoricDev getInstance() {
|
||||
|
@ -15,6 +15,8 @@
|
||||
*/
|
||||
package pub.doric.devkit;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
import pub.doric.performance.DoricPerformanceProfile;
|
||||
|
||||
/**
|
||||
@ -22,9 +24,17 @@ import pub.doric.performance.DoricPerformanceProfile;
|
||||
* @Author: pengfei.zhou
|
||||
* @CreateDate: 2021/7/20
|
||||
*/
|
||||
public class DoricDevPerformanceAnchorHook implements DoricPerformanceProfile.AnchorHook {
|
||||
public class DoricDevPerformanceAnchorHook implements DoricPerformanceProfile.GlobalAnchorHook {
|
||||
private static final String TAG = "DoricPerformance";
|
||||
|
||||
@Override
|
||||
public void onAnchor(DoricPerformanceProfile profile, String name, long prepare, long start, long end) {
|
||||
Log.d(TAG, String.format("%s: %s prepared %dms, cost %dms.",
|
||||
profile.getName(), name, start - prepare, end - start));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onAnchor(String name, long prepare, long start, long end) {
|
||||
|
||||
//DO nothing
|
||||
}
|
||||
}
|
||||
|
@ -78,24 +78,24 @@ public class DoricDevPerfActivity extends DoricDevBaseActivity {
|
||||
private List<AnchorNode> anchorNodes = new ArrayList<>();
|
||||
|
||||
private MyAdapter() {
|
||||
Map<String, Long> anchorMap = doricContext.getPerformanceProfile().getAnchorMap();
|
||||
for (String key : anchorMap.keySet()) {
|
||||
if (key.endsWith("#prepare")) {
|
||||
Long prepare = anchorMap.get(key);
|
||||
if (prepare != null) {
|
||||
AnchorNode anchorNode = new AnchorNode();
|
||||
anchorNode.name = key.substring(0, key.lastIndexOf("#prepare"));
|
||||
anchorNode.prepare = prepare;
|
||||
anchorNodes.add(anchorNode);
|
||||
}
|
||||
}
|
||||
}
|
||||
Collections.sort(anchorNodes, new Comparator<AnchorNode>() {
|
||||
@Override
|
||||
public int compare(AnchorNode o1, AnchorNode o2) {
|
||||
return (int) (o1.prepare - o2.prepare);
|
||||
}
|
||||
});
|
||||
// Map<String, Long> anchorMap = doricContext.getPerformanceProfile().getAnchorMap();
|
||||
// for (String key : anchorMap.keySet()) {
|
||||
// if (key.endsWith("#prepare")) {
|
||||
// Long prepare = anchorMap.get(key);
|
||||
// if (prepare != null) {
|
||||
// AnchorNode anchorNode = new AnchorNode();
|
||||
// anchorNode.name = key.substring(0, key.lastIndexOf("#prepare"));
|
||||
// anchorNode.prepare = prepare;
|
||||
// anchorNodes.add(anchorNode);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// Collections.sort(anchorNodes, new Comparator<AnchorNode>() {
|
||||
// @Override
|
||||
// public int compare(AnchorNode o1, AnchorNode o2) {
|
||||
// return (int) (o1.prepare - o2.prepare);
|
||||
// }
|
||||
// });
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -65,6 +65,10 @@ public class DoricPerformanceProfile {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void addAnchorHook(AnchorHook hook) {
|
||||
this.hooks.add(hook);
|
||||
}
|
||||
@ -136,8 +140,6 @@ public class DoricPerformanceProfile {
|
||||
if (prepare == null) {
|
||||
prepare = start;
|
||||
}
|
||||
Log.d(TAG, String.format("%s: %s prepared %dms, cost %dms.",
|
||||
name, anchorName, start - prepare, end - start));
|
||||
for (AnchorHook hook : hooks) {
|
||||
if (hook instanceof GlobalAnchorHook) {
|
||||
((GlobalAnchorHook) hook).onAnchor(DoricPerformanceProfile.this, anchorName, prepare, start, end);
|
||||
|
@ -27,7 +27,7 @@
|
||||
#import "DoricDebugDriver.h"
|
||||
#import "DoricDevViewController.h"
|
||||
#import "DoricDevMonitor.h"
|
||||
#import "DoricUtil.h"
|
||||
#import "DoricDevPerformanceAnchorHook.h"
|
||||
|
||||
@interface DoricContextDebuggable : NSObject
|
||||
@property(nonatomic, weak) DoricContext *doricContext;
|
||||
@ -79,6 +79,7 @@ - (instancetype)init {
|
||||
_callbacks = [NSHashTable hashTableWithOptions:NSPointerFunctionsWeakMemory];
|
||||
_reloadingContexts = [NSHashTable hashTableWithOptions:NSPointerFunctionsWeakMemory];
|
||||
[DoricNativeDriver.instance.registry registerMonitor:[DoricDevMonitor new]];
|
||||
DoricNativeDriver.instance.registry.globalPerformanceAnchorHook = [DoricDevPerformanceAnchorHook new];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
9
doric-iOS/Devkit/Classes/DoricDevPerformanceAnchorHook.h
Normal file
9
doric-iOS/Devkit/Classes/DoricDevPerformanceAnchorHook.h
Normal file
@ -0,0 +1,9 @@
|
||||
//
|
||||
// Created by pengfei.zhou on 2021/7/20.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <DoricCore/Doric.h>
|
||||
|
||||
@interface DoricDevPerformanceAnchorHook : NSObject<DoricPerformanceGlobalAnchorHookProtocol>
|
||||
@end
|
17
doric-iOS/Devkit/Classes/DoricDevPerformanceAnchorHook.m
Normal file
17
doric-iOS/Devkit/Classes/DoricDevPerformanceAnchorHook.m
Normal file
@ -0,0 +1,17 @@
|
||||
//
|
||||
// Created by pengfei.zhou on 2021/7/20.
|
||||
//
|
||||
|
||||
#import "DoricDevPerformanceAnchorHook.h"
|
||||
|
||||
|
||||
@implementation DoricDevPerformanceAnchorHook
|
||||
- (void)onAnchorName:(NSString *)name prepare:(NSNumber *)prepare start:(NSNumber *)start end:(NSNumber *)end in:(DoricPerformanceProfile *)profile {
|
||||
NSLog(@"[DoricPerformance] %@: %@ prepared %@ms, cost %@ms",
|
||||
profile.name,
|
||||
name,
|
||||
@(start.integerValue - prepare.integerValue),
|
||||
@(end.integerValue - start.integerValue)
|
||||
);
|
||||
}
|
||||
@end
|
@ -42,6 +42,7 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
@end
|
||||
|
||||
@interface DoricPerformanceProfile : NSObject
|
||||
@property(nonatomic, copy) NSString *name;
|
||||
|
||||
- (instancetype)initWithName:(NSString *)name;
|
||||
|
||||
|
@ -24,7 +24,6 @@
|
||||
#import "DoricRegistry.h"
|
||||
|
||||
@interface DoricPerformanceProfile ()
|
||||
@property(nonatomic, copy) NSString *name;
|
||||
@property(nonatomic, strong) dispatch_queue_t anchorQueue;
|
||||
@property(nonatomic, assign) BOOL enable;
|
||||
@property(nonatomic, strong) NSHashTable<id <DoricPerformanceAnchorHookProtocol>> *hooks;
|
||||
@ -108,15 +107,9 @@ - (void)print:(NSString *)anchorName {
|
||||
if (!prepare) {
|
||||
prepare = start;
|
||||
}
|
||||
NSLog(@"[DoricPerformanceProfile] %@: %@ prepared %@ms, cost %@ms",
|
||||
self.name,
|
||||
anchorName,
|
||||
@(start.integerValue - prepare.integerValue),
|
||||
@(end.integerValue - start.integerValue)
|
||||
);
|
||||
for (id <DoricPerformanceAnchorHookProtocol> hook in self.hooks) {
|
||||
if ([hook conformsToProtocol:@protocol(DoricPerformanceGlobalAnchorHookProtocol)]) {
|
||||
[hook onAnchorName:anchorName prepare:end start:end end:end in:self];
|
||||
[(id <DoricPerformanceGlobalAnchorHookProtocol>) hook onAnchorName:anchorName prepare:end start:end end:end in:self];
|
||||
} else {
|
||||
[hook onAnchorName:anchorName prepare:prepare start:start end:end];
|
||||
}
|
||||
|
Reference in New Issue
Block a user