Skip to content

A simple thread safe progress bar and spinner library

License

Notifications You must be signed in to change notification settings

BrookJeynes/progress

Repository files navigation

progress

Demo of library

A simple thread safe progress bar and spinner library.

Installation

  1. Fetch the package.
    zig fetch --save git+https://github.com/BrookJeynes/progress
  2. Add to your build.zig.
    const progress = b.dependency("progress", .{}).module("progress");
    exe.root_module.addImport("progress", progress);

Example

const std = @import("std");
const ProgressBar = @import("progress").Bar;
const ProgressSpinner = @import("progress").Spinner;

pub fn bar() !void {
    const stdout = std.io.getStdOut().writer();
    var pb = ProgressBar.init(10, stdout.any(), .{});

    while (!pb.isFinished()) {
        pb.add(1);
        try pb.render();

        std.time.sleep(std.time.ns_per_ms * 150);
    }
}

pub fn spinner() !void {
    const stdout = std.io.getStdOut().writer();
    var ps = ProgressSpinner.init(stdout.any(), .{
        .symbols = ProgressSpinner.PredefinedSymbols.default,
    });

    var iterations: usize = 0;
    while (!ps.isFinished()) {
        iterations += 1;
        try ps.render();

        if (iterations == 20) try ps.finish();

        std.time.sleep(std.time.ns_per_ms * 150);
    }
}

You can find more examples in the examples/ folder.
For more information, see the source code or documentation (zig build docs).

Contributing

Contributions, issues, and feature requests are always welcome! This project is using the latest stable release of Zig (0.14.0).

About

A simple thread safe progress bar and spinner library

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages