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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#![warn(missing_docs)]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::style))]
extern crate proc_macro;
use proc_macro::TokenStream;
use core::fmt;
#[cold]
#[inline(never)]
fn compile_error<T: core::fmt::Display>(text: T) -> TokenStream {
format!("core::compile_error!(\"{}\")", text).parse().unwrap()
}
enum Type {
U8,
U16,
U32,
U64,
U128,
}
impl Type {
fn write_bytes<O: fmt::Write>(&self, out: &mut O, bytes: &[u8]) -> usize {
match self {
Type::U8 => {
for byte in bytes {
core::fmt::write(out, format_args!("0x{:x}u8, ", byte)).expect("To write string");
}
bytes.len()
},
Type::U16 => {
let mut written = 0;
for chunk in bytes.chunks_exact(2) {
written += chunk.len();
let byte = u16::from_ne_bytes([chunk[0], chunk[1]]);
core::fmt::write(out, format_args!("0x{:x}u16, ", byte)).expect("To write string");
}
written
},
Type::U32 => {
let mut written = 0;
for chunk in bytes.chunks_exact(4) {
written += chunk.len();
let byte = u32::from_ne_bytes([chunk[0], chunk[1], chunk[2], chunk[3]]);
core::fmt::write(out, format_args!("0x{:x}u32, ", byte)).expect("To write string");
}
written
}
Type::U64 => {
let mut written = 0;
for chunk in bytes.chunks_exact(8) {
written += chunk.len();
let byte = u64::from_ne_bytes([chunk[0], chunk[1], chunk[2], chunk[3], chunk[4], chunk[5], chunk[6], chunk[7]]);
core::fmt::write(out, format_args!("0x{:x}u64, ", byte)).expect("To write string");
}
written
},
Type::U128 => {
let mut written = 0;
for chunk in bytes.chunks_exact(16) {
written += chunk.len();
let byte = u128::from_ne_bytes([chunk[0], chunk[1], chunk[2], chunk[3], chunk[4], chunk[5], chunk[6], chunk[7], chunk[8], chunk[9], chunk[10], chunk[11], chunk[12], chunk[13], chunk[14], chunk[15]]);
core::fmt::write(out, format_args!("0x{:x}u128, ", byte)).expect("To write string");
}
written
},
}
}
}
impl fmt::Display for Type {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match self {
Type::U8 => fmt.write_str("u8"),
Type::U16 => fmt.write_str("u16"),
Type::U32 => fmt.write_str("u32"),
Type::U64 => fmt.write_str("u64"),
Type::U128 => fmt.write_str("u128"),
}
}
}
struct Input<'a> {
file: &'a str,
typ: Type,
}
impl<'a> Input<'a> {
fn parse(input: &'a str) -> Result<Self, TokenStream> {
let (file, input) = if let Some(input) = input.strip_prefix('"') {
if let Some(end_file_idx) = input.find('"') {
(&input[..end_file_idx], &input[end_file_idx+1..])
} else {
return Err(compile_error("Missing '\"' at the end of file path"));
}
} else {
let mut split = input.split_whitespace();
let file = split.next().unwrap();
(file, &input[file.len()..])
};
let mut split = input.trim().split_whitespace();
let typ = match split.next() {
Some("as") => match split.next() {
None => return Err(compile_error("'as' is missing type")),
Some("u8") => Type::U8,
Some("u16") => Type::U16,
Some("u32") => Type::U32,
Some("u64") => Type::U64,
Some("u128") => Type::U128,
Some(other) => return Err(compile_error(format_args!("'as' specifies unsupported type '{}'", other))),
},
Some(other) => return Err(compile_error(format_args!("Unsupported syntax after file name '{}'", other))),
None => Type::U8,
};
Ok(Self {
file,
typ,
})
}
}
#[proc_macro]
pub fn include_bytes(input: TokenStream) -> TokenStream {
let input = input.to_string();
let input = input.trim();
let args = match Input::parse(input) {
Ok(args) => args,
Err(error) => return error,
};
if args.file.is_empty() {
return compile_error("Empty file name");
}
let mut file = match std::fs::File::open(args.file) {
Ok(file) => file,
Err(error) => return compile_error(format_args!("{}: Cannot open file: {}", args.file, error)),
};
let mut cursor = 0;
let mut file_len = 0;
let mut buf = [0u8; 4096];
let mut result = "[".to_owned();
loop {
match std::io::Read::read(&mut file, &mut buf[cursor..]) {
Ok(0) => {
result.push(']');
if cursor != 0 {
return compile_error(format_args!("File input with size {}b cannot be reinterpret as {}", file_len, args.typ));
}
break;
},
Ok(size) => {
file_len += size;
let buf_len = cursor + size;
let written = args.typ.write_bytes(&mut result, &buf[..buf_len]);
unsafe {
core::ptr::copy(buf.as_ptr().add(written), buf.as_mut_ptr(), buf_len - written);
}
cursor = buf_len - written;
},
Err(error) => {
return compile_error(format_args!("{}: Error reading file: {}", args.file, error))
},
}
}
result.parse().expect("To parse")
}