Skip to content

Fixed capacity stack based generic string that works on stable

Notifications You must be signed in to change notification settings

paulocsanz/arraystring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

For experimentation with nightly only const generics features try staticvec

ArrayString

Fixed capacity stack based generic string

Can't outgrow initial capacity (defined at compile time), always occupies capacity + 1 bytes of memory

Maximum Capacity is 255

Doesn't allocate memory on the heap and should never panic in release (except in Index/IndexMut traits, since they are supposed to)

The no panic garantee can be ensured at compilation time with the no-panic feature, just be aware that a compiler update might break this garantee, therefore making the crate uncompilable, open an issue if you notice.

Why

Data is generally bounded, you don't want a phone number with 30 characters, nor a username with 100. You probably don't even support it in your database.

Why pay the cost of heap allocations of strings with unlimited capacity if you have limited boundaries?

Stack based strings are generally faster to create, clone and append to than heap based strings (custom allocators and thread-locals may help with heap based ones).

But that becomes less true as you increase the array size, CacheString occuppies a full cache line and 255 bytes is the maximum we accept (MaxString and it's probably already slower than heap based strings of that size - like in std::string::String

There are other stack based strings out there, they generally don't use stable const generics and a lot of them only support stack based strings in the context of small string optimizations.

Be aware that array based strings always occupy the full space in memory, so they may use more memory (although in the stack) than dynamic strings.

Features

default: std

  • std enabled by default, enables std compatibility, implementing std only traits (disable it to be #[no_std] compatible)

  • serde-traits enables serde traits integration (Serialize/Deserialize)

    Opperates like String, but truncates it if it's bigger than capacity

  • diesel-traits enables diesel 2.0 traits integration

    Opperates like String, but truncates it if it's bigger than capacity

  • no-panic checks at compile time that the panic function is not linked by the library

    Be careful before using this, it won't change functions behaviors, it will just enforce that panic functions can't be linked by this library. This may break your compilation and won't improve the safety of this library. It's mostly for testing and environments where if the non panicking invariant can't be garanteed compilation should fail. This should not apply to most projects.

    Only works when all optimizations are enabled, and may break in future compiler updates. Please open an issue if you notice.

  • logs enables internal logging

    You will probably only need this if you are debugging this library

Examples

use arraystring::{Error, ArrayString};

type Username = ArrayString<20>;
type Role = ArrayString<5>;

#[derive(Debug)]
pub struct User {
    pub username: Username,
    pub role: Role,
}

fn main() -> Result<(), Error> {
    let user = User {
        username: Username::try_from_str("user")?,
        role: Role::try_from_str("admin")?
    };
    println!("{:?}", user);

    Ok(())
}

Miri

Tests can be run through Miri to ensure Undefined Behavior isn't triggered by them. It excludes diesel's integration sqlite tests as it's impossible to link to C libraries from Miri. And logs won't be persisted in doc tests as env_logger isn't supported by Miri either.

To run the tests with it do (requires nightly installed):

cargo +nightly miri test --release --all-features

No Panic

There is a feature to enable the no_panic dependency, that will be enforced in every function. To be sure every panicking branch is removed. This depends on compiler optimizations and compilation may break on compiler updates, or in different environments. We generally don't recommend using it, but it's useful in environments with extreme garantees of trust.

This feature will only be enforced in release builds (it checks for not(debug_assertions))

It's mostly used to test the library.

To run the tests with it do:

cargo test --lib --tests --release --features=no-panic

Index trait implementations will panic if a out of bounds index is provided (or invalid utf-8 char boundaries).

Licenses

MIT and Apache-2.0

About

Fixed capacity stack based generic string that works on stable

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages