Table of Contents

About

Bwrap is a lightweight, embedded environment-friendly library for wrapping text. While Bwrap offers great flexibility in wrapping text, neither performance nor resource consumption compromises:

  1. The time/space complexity is O(n) by default, or O(n(p+a)) if there is appending/prepending. (n, p, a is the number of input bytes, prepended bytes, and appended bytes respectively)

  2. No heap allocation happens by default.

For the sake of readability, we (b)etter wrap our text.

Benchmark

The below is the performance comparison among several text-wrapping libraries, including Bwrap. Details about benchmark samples or methods are elaborated in bench-wrap-libs.

Time elapsed:

Memory usage:

Examples

Wrap multiple languages

Bwrap categorizes languages into two categories, the first is for the languages that depend on ASCII SPACE to delimit words, such as English, French, Italian, Spanish and so on. The second is for the languages that are space-insensitive, such as Chinese, Japanese, Thai and so on.

Space-sensitive (English, French, Spanish, etc.)

The languages that rely on SPACE(ASCII SPACE).

Space-insensitive (Chinese, Japanese, Thai, etc.)

The languages that does not rely on ASCII SPACE.

Wrap and append/prepend

Bwrap can append or prepend whatever string to newly added newline character. With this feature, one can effectively achieve indentation, line trailing notation or similar.

Indentation

ORIGINAL:

Here is our schedule:
- Do A, and do B, and do C, and do D, and do E, and do F
- Do G, and do H, and do I, and do J, and do K, and do L

WRAPPED:

Here is our schedule:
- Do A, and do B, and do C, and do
  D, and do E, and do F
- Do G, and do H, and do I, and do
  J, and do K, and do L

Code:

use bwrap::{EasyWrapper, ExistNlPref, WrapStyle::NoBrk};

let line = "Here is our schedule:\n- Do A, and do B, and do C, and do D, and do E, and do F\n- Do G, and\
        do H, and do I, and do J, and do K, and do L";
println!("ORIGINAL:\n\n{}\n", line);

let mut w = EasyWrapper::new(line, 35).unwrap();
let wrapped = w.wrap_use_style(NoBrk(Some("  "), ExistNlPref::KeepTrailSpc))
    .unwrap();
println!("WRAPPED:\n\n{}", wrapped);

Trailing notation

ORIGINAL:

VGhpcyBpcyBhIHNlY3JldCBtZXNzYWdlLCBwbGVhc2UgZGVsZXRlIGFmdGVyIHJlYWQK

WRAPPED:

VGhpcyBpcy |
BhIHNlY3Jl |
dCBtZXNzYW |
dlLCBwbGVh |
c2UgZGVsZX |
RlIGFmdGVy |
IHJlYWQK

Code:

use bwrap::{EasyWrapper, WrapStyle::MayBrk};

let line = "VGhpcyBpcyBhIHNlY3JldCBtZXNzYWdlLCBwbGVhc2UgZGVsZXRlIGFmdGVyIHJlYWQK";
println!("ORIGINAL:\n\n{}\n", line);

let mut w = EasyWrapper::new(line, 10).unwrap();
let wrapped = w.wrap_use_style(MayBrk(Some(" |"), None)).unwrap();
println!("WRAPPED:\n\n{}", wrapped);

License

Bwrap can be licensed under either MIT License or GNU General Public License Version 3.0. Which one you choose is totally up to you.