#macros #android #codebase #bug #stable #api

bugsalot

Debugging macros and APIs for shipping stable codebases

12 releases

0.2.2 Jan 26, 2022
0.2.1 Dec 23, 2019
0.1.8 Dec 1, 2019
0.1.4 Jun 30, 2019

#291 in Debugging

Download history 27/week @ 2023-11-20 33/week @ 2023-11-27 26/week @ 2023-12-04 50/week @ 2023-12-11 52/week @ 2024-02-19 21/week @ 2024-02-26 7/week @ 2024-03-04

80 downloads per month
Used in 4 crates

MIT/Apache

41KB
391 lines

bugsalot

GitHub unsafe: yes rust: 1.36.0+ License dependency status

This crate provides macros and methods for bug wrangling. Specifically, I want all the advantages of crashing (bug reports, ease of debugging, etc.) with none of the drawbacks (lost progress, pissed off gamers, etc). Rust's error handling mechanisms (Try, ?, Results, etc.) are great, but leave something to be desired when it comes to actual bugs. Similarly, Rust's panic!, .unwrap(), .expect(), etc. are decent when it comes to giving context for bugs, but less great for writing stable software. This crate will attempt to bridge the gap.

Branch Badges Notes
publish Crates.io Docs Stable/published version
master Build Status Open issues "Completed" stuff that hasn't been published.
wip/* "Work In Progress" - incomplete, use at your own risk.
dead/* Abandoned threads of work

Platforms

Platform Breakpoints Debugger CI Stable Beta Nightly
Windows Supported Supported Tests Status
Android Supported Supported Build Status
Linux Supported Supported Tests Status Status Status
(Release) Status
FreeBSD Untested Untested No
NetBSD Untested Untested No
OS X Untested Untested Tests Status
iOS Untested Untested Build Status
WASM Supported N/A Build Status

Quick Start

Add one of the following bugsalot dependencies to your Cargo.toml:

[dependencies]
bugsalot = "0.2"                                            # Or...
bugsalot = { version = "0.2", features = ["wasm-bindgen"] } # If using: wasm-pack
bugsalot = { version = "0.2", features = ["stdweb"]       } # If using: cargo web build

Write your code (see examples and documentation for more code):

use bugsalot::*;

fn main() {
    let _ = debugger::wait_until_attached(None); // Wait for a debugger to be attached

    loop {
        let a : Option<i32> = Some(42);
        let b : Result<i32, &'static str> = Err("Unavailable");
        let a = expect!(a, "Unable to do something or other", return);
        let b = expect!(b, "Unable to do something or other", break);
        // Debugger will pause on the above line, continuing will break out of the loop
    }

    expect!(true, "Booleans work too");
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0–620KB
~12K SLoC