Skip to content

Commit be4af63

Browse files
Ericson2314sgeisler
andcommitted
Allow doing more things without alloc
Co-Authored-By: Sebastian <[email protected]>
1 parent e26863a commit be4af63

File tree

6 files changed

+406
-75
lines changed

6 files changed

+406
-75
lines changed

Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,7 @@ alloc = []
1919
# Only for CI to make all warnings errors, do not activate otherwise (may break forward compatibility)
2020
strict = []
2121

22-
[dependencies]
22+
[dependencies.arrayvec]
23+
version = "0.7.1"
24+
default-features = false
25+
optional = true

contrib/test.sh

+15-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,24 @@ rustc --version
1414
cargo build --no-default-features --features="strict"
1515
cargo test --no-default-features --features="strict"
1616

17-
# Check "std" feature (implies "alloc").
18-
cargo build --no-default-features --features="strict std"
19-
cargo test --no-default-features --features="strict std"
17+
# Check "arrayvec" feature alone.
18+
cargo build --no-default-features --features="strict arrayvec"
19+
cargo test --no-default-features --features="strict arrayvec"
2020

2121
# Check "alloc" feature alone.
2222
cargo build --no-default-features --features="strict alloc"
2323
cargo test --no-default-features --features="strict alloc"
2424

25+
# Check "alloc" & "arrayvec" features together.
26+
cargo build --no-default-features --features="strict alloc arrayvec"
27+
cargo test --no-default-features --features="strict alloc arrayvec"
28+
29+
# Check "std" feature (implies "alloc").
30+
cargo build --no-default-features --features="strict std"
31+
cargo test --no-default-features --features="strict std"
32+
33+
# Check "std" & "arrayvec" features together.
34+
cargo build --no-default-features --features="strict std arrayvec"
35+
cargo test --no-default-features --features="strict std arrayvec"
36+
2537
exit 0

embedded/no-allocator/Cargo.toml

+16-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,24 @@ readme = "README.md"
55
name = "no-allocator"
66
version = "0.1.0"
77

8+
[dependencies]
9+
cortex-m = "0.6.0"
10+
cortex-m-rt = "0.6.10"
11+
cortex-m-semihosting = "0.3.3"
12+
panic-halt = "0.2.0"
13+
arrayvec = { version = "0.7.1", default-features = false }
14+
bech32 = { path = "../../", default-features = false, features = ["arrayvec"] }
15+
16+
[[bin]]
17+
name = "no-allocator"
18+
test = false
19+
bench = false
20+
821
[profile.dev]
922
panic = "abort"
1023

1124
[profile.release]
1225
panic = "abort"
13-
14-
[dependencies]
15-
bech32 = { path = "../../", default_features = false }
26+
codegen-units = 1 # better optimizations
27+
debug = true # symbols are nice and they don't increase the size on Flash
28+
lto = true # better optimizations

embedded/no-allocator/src/main.rs

+39-11
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,52 @@
33
//! Build with: `cargo rustc -- -C link-arg=-nostartfiles`.
44
//!
55
6-
#![no_std]
6+
#![feature(alloc_error_handler)]
77
#![no_main]
8+
#![no_std]
9+
10+
use panic_halt as _;
811

9-
use core::panic::PanicInfo;
12+
use arrayvec::{ArrayString, ArrayVec};
13+
use bech32::{self, u5, ComboError, FromBase32, ToBase32, Variant};
14+
use cortex_m_rt::entry;
15+
use cortex_m_semihosting::{debug, hprintln};
1016

1117
// Note: `#[global_allocator]` is NOT set.
1218

13-
#[allow(unused_imports)]
14-
use bech32;
19+
#[entry]
20+
fn main() -> ! {
21+
let mut encoded = ArrayString::<30>::new();
22+
23+
let mut base32 = ArrayVec::<u5, 30>::new();
24+
25+
[0x00u8, 0x01, 0x02].write_base32(&mut base32).unwrap();
26+
27+
bech32::encode_to_fmt_anycase(&mut encoded, "bech32", &base32, Variant::Bech32)
28+
.unwrap()
29+
.unwrap();
30+
test(&*encoded == "bech321qqqsyrhqy2a");
31+
32+
hprintln!("{}", encoded).unwrap();
33+
34+
let mut decoded = ArrayVec::<u5, 30>::new();
35+
36+
let mut scratch = ArrayVec::<u5, 30>::new();
37+
38+
let (hrp, data, variant) =
39+
bech32::decode_lowercase::<ComboError, _, _>(&encoded, &mut decoded, &mut scratch).unwrap();
40+
test(hrp == "bech32");
41+
let res = ArrayVec::<u8, 30>::from_base32(&data).unwrap();
42+
test(&res == [0x00, 0x01, 0x02].as_ref());
43+
test(variant == Variant::Bech32);
44+
45+
debug::exit(debug::EXIT_SUCCESS);
1546

16-
/// This function is called on panic, defining this ensures build will fail if `std` is enabled
17-
/// because `panic` will be defined twice.
18-
#[panic_handler]
19-
fn panic(_info: &PanicInfo) -> ! {
2047
loop {}
2148
}
2249

23-
#[no_mangle]
24-
pub extern "C" fn _start() -> ! {
25-
loop {}
50+
fn test(result: bool) {
51+
if !result {
52+
debug::exit(debug::EXIT_FAILURE);
53+
}
2654
}

embedded/with-allocator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cortex-m-rt = "0.6.10"
1111
cortex-m-semihosting = "0.3.3"
1212
panic-halt = "0.2.0"
1313
alloc-cortex-m = "0.4.1"
14-
bech32 = { path="../../", default-features = false }
14+
bech32 = { path = "../../", default-features = false, features = ["alloc"] }
1515

1616
[[bin]]
1717
name = "with-allocator"

0 commit comments

Comments
 (0)