Bwrap is a fast, lightweight, embedded system-friendly library for wrapping text. While bwrap offers great flexibility in wrapping text, neither resource consumption nor performance compromises:
-
No heap allocation happens by default.
-
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/prepending/appending bytes respectively)
For the sake of readability, we better wrap our text.
Below are the performance comparisons among several text-wrapping libraries in different dimensions:
Time:
Memory:
Note:
-
The benchmark is reproduciable, details about benchmark samples or methods are elaborated in bench-wrap-libs.
-
The data above is obtained on an i5-3337u/8G machine and is for reference only. It is possible to have a slightly different result on a different machine or with different idle system resource.
use_std
: Use Rust standard library(libstd) for automatic memory management.
Note that the following examples require use_std
feature.
bwrap suuport multiple languages, it categorizes languages into two categories: space-sensitive and space-insensitive. The former is for the languages that depend on ASCII SPACE to delimit words, such as English, Ukrainian, Greek and so on. The latter is for the languages that are space-insensitive, such as Chinese, Japanese, Thai and so on.
-
English
Original:
one two three four five six seven eight nine ten one two three four five six seven eight nine ten one two three four five six seven eight nine ten
Wrapped:
one two three four five six seven eight nine ten one two three four five six seven eight nine ten one two three four five six seven eight nine ten
Source code:
let line = "one two three four five six seven eight nine ten one two three four five six seven eight nine ten one two three four five six seven eight nine ten"; println!("ORIGINAL:\n\n{}\n", line); println!("WRAPPED:\n\n{}", bwrap::wrap!(line, 50));
-
Ukrainian
Original:
один два три чотири п'ять шість сім вісім дев'ять десять один два три чотири п'ять шість сім вісім дев'ять десять один два три чотири п'ять шість сім вісім дев'ять десять
Wrapped:
один два три чотири п'ять шість сім вісім дев'ять десять один два три чотири п'ять шість сім вісім дев'ять десять один два три чотири п'ять шість сім вісім дев'ять десять
Source code:
let line = "один два три чотири п'ять шість сім вісім дев'ять десять один два три чотири п'ять шість сім вісім дев'ять десять один два три чотири п'ять шість сім вісім дев'ять десять"; println!("ORIGINAL:\n\n{}\n", line); println!("WRAPPED:\n\n{}", bwrap::wrap!(line, 60));
-
Greek
Original:
ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα
Wrapped:
ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα
Source code:
let line = "ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα ένα δύο τρία τέσσερα πέντε έξι επτά οκτώ εννέα δέκα"; println!("ORIGINAL:\n\n{}\n", line); println!("WRAPPED:\n\n{}", bwrap::wrap!(line, 51));
-
Chinese
Original:
一二三四五六七八九十一二三四五六七八九十一二三四五六七八九十
Wrapped:
一二三四五六七八九十 一二三四五六七八九十 一二三四五六七八九十
Source code:
let line = "一二三四五六七八九十一二三四五六七八九十一二三四五六七八九十"; println!("ORIGINAL:\n\n{}\n", line); println!("WRAPPED:\n\n{}", bwrap::wrap_maybrk!(line, 20));
-
Japanese
Original:
ありがとうございますありがとうございますありがとうございます
Wrapped:
ありがとうございます ありがとうございます ありがとうございます
Source code:
let line = "ありがとうございますありがとうございますありがとうございます"; println!("ORIGINAL:\n\n{}\n", line); println!("WRAPPED:\n\n{}", bwrap::wrap_maybrk!(line, 20));
-
Thai
Original:
หนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบหนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบหนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบ
Wrapped:
หนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบ หนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบ หนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบ
Source code:
let line = "หนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบหนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบหนึ่งสองสามสี่ห้าหกเจ็ดแปดเก้าสิบ"; println!("ORIGINAL:\n\n{}\n", line); println!("WRAPPED:\n\n{}", bwrap::wrap_maybrk!(line, 25));
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.
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
Source code:
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);
println!("WRAPPED:\n\n{}", bwrap::wrap_nobrk!(line, 35, " "));
Original:
VGhpcyBpcyBhIHNlY3JldCBtZXNzYWdlLCBwbGVhc2UgZGVsZXRlIGFmdGVyIHJlYWQK
Wrapped:
VGhpcyBpcy |
BhIHNlY3Jl |
dCBtZXNzYW |
dlLCBwbGVh |
c2UgZGVsZX |
RlIGFmdGVy |
IHJlYWQK
Source code:
let line = "VGhpcyBpcyBhIHNlY3JldCBtZXNzYWdlLCBwbGVhc2UgZGVsZXRlIGFmdGVyIHJlYWQK";
println!("ORIGINAL:\n\n{}\n", line);
println!("WRAPPED:\n\n{}", bwrap::wrap_maybrk!(line, 10, " |"));
bwrap is still far from perfect, any form of contribution is welcomed!
This is not an exhaustive list:
- Ask question (label )
- Bug Report (label )
- Feature Request (label )
- Documentation Improvement (label )
- Code Contribution
bwrap can be licensed under either MIT License or GNU General Public License Version 3.0. The choice is entirely up to you.