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
#![deny(
missing_copy_implementations,
missing_debug_implementations,
missing_docs,
trivial_casts,
trivial_numeric_casts,
unsafe_code,
unstable_features,
unused_import_braces,
unused_qualifications,
warnings
)]
mod linuxkernel;
mod strings;
mod uboot;
use crate::{linuxkernel::LinuxKernel, uboot::UBoot};
use std::io::{Read, Seek};
#[derive(Debug, Copy, Clone)]
pub enum BinaryKind {
UBoot,
LinuxKernel,
}
trait VersionFinder {
fn get_version(&mut self) -> Option<String>;
}
pub fn version<R>(kind: BinaryKind, mut buffer: &mut R) -> Option<String>
where
R: Read + Seek,
{
match kind {
BinaryKind::UBoot => UBoot::from_reader(&mut buffer).get_version(),
BinaryKind::LinuxKernel => LinuxKernel::from_reader(&mut buffer).get_version(),
}
}