All Projects → Xyene → ASM-Late-Bind-Agent

Xyene / ASM-Late-Bind-Agent

Licence: other
A demo late binding Java agent utilising ASM for transforming classes.

Programming Languages

java
68154 projects - #9 most used programming language

ASM Late-Binding Agent

A demo late binding Java agent utilising ASM for transforming classes.

A simple library, it has a deliciously simple API for injecting code into already loaded classes.

Compilation

We use Maven to handle our dependencies.

Usage

There are two classes to be concerned with: AgentLoader and Tools. AgentLoader contains the meat of the injector, while Tools holds various IO helpers.

To load an agent, its as simple as:

    Tools.loadAgentLibrary(); // Loads the OS-specific attach library
    // Loads the agent in `Agent.class`, and packages `AgentLoader.class` as a dependency
    AgentLoader.attachAgentToJVM(Tools.getCurrentPID(), Agent.class, AgentLoader.class);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].