Skip to content

henryhchchc/mokapot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MokaPot

CI - GitHub Actions Codecov Crates.io docs.rs Contributor Covenant

MokaPot is a Java bytecode analysis library written in Rust.

Warning

API Stability: This project is in an early development stage and breaking changes can happen before v1.0.0. Documentations are incomplete, which will be added when the basic functionalities works. Using this project for production is currently NOT RECOMMENDED.

Documentation

The documentation of the released version is available at docs.rs. The documentation of the latest commit is available at github.io

Usage

Adding the dependency

Run the following command in the root directory of your project.

cargo add mokapot

Alternatively, to follow the latest commit version, run the following command instead. Before building your project, run cargo update to fetch the latest commit.

cargo add --git https://github.com/henryhchchc/mokapot.git mokapot

Parsing a class

use mokapot::jvm::class::Class;

fn parse_class() -> Result<Class, Box<dyn std::error::Error>> {
    let reader: std::io::Read = todo!("Some reader for the byte code");
    let class = Class::from_reader(reader)?;
    Ok(class)
}

MokaIR

MokaIR is an intermediate representation of JVM bytecode in mokapot. To learn more, please refer to docs/MokaIR.md

Building

Make sure you have the following tools installed:

  • The latest stable version of Rust
  • The latest release version of JDK

Compile the project and run the tests with the following command.

cargo build --all-features
cargo test --all-features

Contributing

Cool. Contributions are welcomed. See the contribution guide for more information.