8 个版本

使用旧的 Rust 2015

0.0.8 2016年9月2日
0.0.7 2016年1月11日
0.0.5 2015年9月18日

#3#fountain

每月 21 次下载

MIT/Apache

16KB
276 代码行(不含注释)

Fountain 码

Build status

该库实现了 Rust 中的 Luby 变换码。更多信息请参考 维基百科 或 IEEE Xplore 上的论文 LT 码

未来我可能会添加 RaptorQ在线

依赖

rand

用法

Cargo.toml 中将 fountaincode 添加为依赖项

[dependencies]
fountaincode = "*"

示例

let mut buf = Vec::new();
let mut f = File::open("testfile.bin").unwrap();
try!(f.read_to_end(&mut buf));

let length = buf.len();
let buf_org = buf.clone();

//create an Encoder, and set the length of the chunks.
//In case UDP is used you may want to stay below the MTU size
let enc = Encoder::new(buf, 1024);

//create a Decoder
let mut dec = Decoder::new(length, 1024);

//Encoder is exposed as Iterator
//In practice you may want to send over a Binary Error Channel, e.g., UDP
for drop in enc {

    //Decoder catches droplets
    //In practice you may want to listen on a UDP port for packages
    match dec.catch(drop) {
        Missing(stats) => {
            trace!("{:?} chunks are unknown", cnt.unknown_chunks);
        }
        Finished(data, stats) => {
            done = true;
            println!("finished! {:?}", stats);
            for i in 0..length {
                assert!(buf_org[i], data[i]);
            }
            println!("and the data is correct!");
        }
    }
}

许可证

许可协议为以下之一

任选其一。

贡献

除非您明确声明,否则根据 Apache-2.0 许可证定义,您提交给作品的所有有意包含的贡献将按上述方式双许可,没有任何额外的条款或条件。

依赖

~330–560KB