Example usage for org.objectweb.asm Opcodes interface-usage

List of usage examples for org.objectweb.asm Opcodes interface-usage

Introduction

In this page you can find the example usage for org.objectweb.asm Opcodes interface-usage.

Usage

From source file scouter.agent.asm.jdbc.RsCloseMV.java

public class RsCloseMV extends MethodVisitor implements Opcodes {
    private static final String TRACESQL = TraceSQL.class.getName().replace('.', '/');
    private static final String METHOD = "rsclose";
    private static final String SIGNATURE = "(Ljava/lang/Object;)V";

    public RsCloseMV(MethodVisitor mv) {

From source file scouter.agent.asm.jdbc.RsInitMV.java

/**
 * BCI for a constructor of Resultset
 * @author Gun Lee (gunlee01@gmail.com)
 */
public class RsInitMV extends LocalVariablesSorter implements Opcodes {

From source file scouter.agent.asm.jdbc.RsNextMV.java

public class RsNextMV extends MethodVisitor implements Opcodes {
    private static final String TRACESQL = TraceSQL.class.getName().replace('.', '/');
    private static final String METHOD = "rsnext";
    private static final String SIGNATURE = "(Z)Z";

    public RsNextMV(MethodVisitor mv) {

From source file scouter.agent.asm.jdbc.StExecuteMV.java

public class StExecuteMV extends LocalVariablesSorter implements Opcodes {
    private static Set<String> target = new HashSet<String>();
    static {
        target.add("execute");
        target.add("executeQuery");
        target.add("executeUpdate");

From source file scouter.agent.asm.jdbc.StInitMV.java

public class StInitMV extends LocalVariablesSorter implements Opcodes {

    private final static String TRACESQL = TraceSQL.class.getName().replace('.', '/');
    private final static String METHOD_INIT = "stmtInit";
    private final static String SIGNATURE_INIT = "(Ljava/lang/Object;)V";

From source file scouter.agent.asm.JDBCConnectionOpenASM.java

public class JDBCConnectionOpenASM implements IASM, Opcodes {
    private List<HookingSet> target = HookingSet
            .getHookingMethodSet(Configure.getInstance().hook_connection_open_patterns);
    private Map<String, HookingSet> reserved = new HashMap<String, HookingSet>();

    public static class JDBCTargetRegister {

From source file scouter.agent.asm.JDBCDriverASM.java

public class JDBCDriverASM implements IASM, Opcodes {
    //user can define driver.connect()
    private Map<String, HookingSet> reserved = HookingSet
            .getHookingSet(Configure.getInstance().hook_jdbc_wrapping_driver_patterns);

    public JDBCDriverASM() {

From source file scouter.agent.asm.JDBCGetConnectionASM.java

public class JDBCGetConnectionASM implements IASM, Opcodes {
    private List<HookingSet> target = HookingSet
            .getHookingMethodSet(Configure.getInstance().hook_get_connection_patterns);
    private Map<String, HookingSet> reserved = new HashMap<String, HookingSet>();

    public JDBCGetConnectionASM() {

From source file scouter.agent.asm.JDBCPreparedStatementASM.java

/**
 * BCI for a JDBC PreparedStatement
 * @author @author Paul S.J. Kim(sjkim@whatap.io)
 * @author Gun Lee (gunlee01@gmail.com)
 */
public class JDBCPreparedStatementASM implements IASM, Opcodes {