This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.rs
92 lines (77 loc) · 2.75 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* This file is translated from implementation of libcrc (https://github.com/lammertb/libcrc)
*
* The translation is done by Darren Ldl as part of the blockyarchive project
*
* The translated source code is under the same license as stated and used by the
* original file (MIT License)
*
* Below is the original info text from crcccitt.c
*
* Library: libcrc
* File: src/crcccitt.c
* Author: Lammert Bies
*
* This file is licensed under the MIT License as stated below
*
* Copyright (c) 1999-2016 Lammert Bies
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Description
* -----------
* The module src/crcccitt.c contains routines which are used to calculate the
* CCITT CRC values of a string of bytes.
*/
use std::env;
use std::fs::File;
use std::io::Write;
use std::path::Path;
const CRC_POLY_CCITT: u16 = 0x1021;
fn make_crcccitt_tab() -> [u16; 256] {
let mut crc: u16;
let mut c: u16;
let mut table: [u16; 256] = [0; 256];
for i in 0u16..256u16 {
crc = 0;
c = i << 8;
for _ in 0..8 {
if ((crc ^ c) & 0x8000u16) != 0 {
crc = (crc << 1) ^ CRC_POLY_CCITT;
} else {
crc = crc << 1;
}
c = c << 1;
}
table[i as usize] = crc;
}
table
}
fn main() {
let table = make_crcccitt_tab();
let out_dir = env::var("OUT_DIR").unwrap();
let dest_path = Path::new(&out_dir).join("table.rs");
let mut f = File::create(&dest_path).unwrap();
let mut table_str = String::from("static CRCCCITT_TABLE : [u16; 256] = [");
for v in table.iter() {
let str = format!("{}, ", v);
table_str.push_str(&str);
}
table_str.push_str("];");
f.write_all(table_str.as_bytes()).unwrap();
}