mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
clean code
This commit is contained in:
@@ -1,43 +0,0 @@
|
||||
package com.taobao.arthas.core.advisor;
|
||||
|
||||
/**
|
||||
* 代码锁<br/>
|
||||
* 什么叫代码锁?代码锁的出现是由于在字节码中,我们无法用简单的if语句来判定这段代码是生成的还是原有的。
|
||||
* 这会导致一些监控逻辑的混乱,比如trace命令如果不使用代码锁保护,将能看到Arthas所植入的代码并进行跟踪
|
||||
* Created by vlinux on 15/5/28.
|
||||
*/
|
||||
public interface CodeLock {
|
||||
|
||||
/**
|
||||
* 根据字节码流锁或解锁代码<br/>
|
||||
* 通过对字节码流的判断,决定当前代码是锁定和解锁
|
||||
*
|
||||
* @param opcode 字节码
|
||||
*/
|
||||
void code(int opcode);
|
||||
|
||||
/**
|
||||
* 判断当前代码是否还在锁定中
|
||||
*
|
||||
* @return true/false
|
||||
*/
|
||||
boolean isLock();
|
||||
|
||||
/**
|
||||
* 将一个代码块纳入代码锁保护范围
|
||||
*
|
||||
* @param block 代码块
|
||||
*/
|
||||
void lock(Block block);
|
||||
|
||||
/**
|
||||
* 代码块
|
||||
*/
|
||||
interface Block {
|
||||
/**
|
||||
* 代码
|
||||
*/
|
||||
void code();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user