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
use std::collections::hash_map::DefaultHasher;
use std::fs;
use std::hash::{Hash, Hasher};
use std::path::Path;
pub const DEFAULT_FLATPAK_BUILDER_CACHE_DIR: &str = ".flatpak-builder/";
pub const DEFAULT_FLATPAK_BUILDER_OUTPUT_DIR: &str = ".flatpak-builder-out/";
pub const DEFAULT_GIT_CACHE_DIR: &str = ".git/";
pub fn get_module_hash(module: &flatpak_rs::module::FlatpakModule) -> String {
let mut s = DefaultHasher::new();
module.hash(&mut s);
s.finish().to_string()
}
pub fn get_all_paths(dir: &Path) -> Result<Vec<std::path::PathBuf>, String> {
let mut all_paths: Vec<std::path::PathBuf> = vec![];
let dir_entries = match fs::read_dir(dir) {
Ok(entries) => entries,
Err(err) => {
return Err(format!(
"Could not read dir {}: {}",
dir.to_str().unwrap(),
err.to_string()
))
}
};
for entry in dir_entries {
let entry_path = entry.unwrap().path();
let entry_path_str = entry_path.to_str().unwrap();
if entry_path_str.contains(DEFAULT_GIT_CACHE_DIR) {
continue;
}
if entry_path_str.contains(DEFAULT_FLATPAK_BUILDER_CACHE_DIR) {
continue;
}
if entry_path_str.contains(DEFAULT_FLATPAK_BUILDER_OUTPUT_DIR) {
continue;
}
if entry_path.is_dir() {
let mut dir_paths: Vec<std::path::PathBuf> = get_all_paths(&entry_path)?;
all_paths.append(&mut dir_paths);
} else {
all_paths.push(entry_path);
}
}
Ok(all_paths)
}
pub fn get_build_system(file_path: String) -> Option<String> {
if file_path.ends_with("CMakeLists.txt") {
return Some("cmake".to_string());
}
if file_path.ends_with("autogen.sh") || file_path.ends_with("autogen") {
return Some("autotools".to_string());
}
if file_path.ends_with("bootstrap.sh") || file_path.ends_with("bootstrap") {
return Some("autotools".to_string());
}
if file_path.ends_with(".pro") {
return Some("qmake".to_string());
}
if file_path.ends_with("meson.build") || file_path.ends_with("meson_options.txt") {
return Some("meson".to_string());
}
if file_path.ends_with("Cargo.toml") || file_path.ends_with("Cargo.lock") {
return Some("cargo".to_string());
}
if file_path.ends_with("pom.xml") {
return Some("maven".to_string());
}
if file_path.ends_with("debian/control") {
return Some("debian".to_string());
}
if file_path.ends_with("snapcraft.yml") || file_path.ends_with("snapcraft.yaml") {
return Some("snap".to_string());
}
if file_path.ends_with("go.mod") || file_path.ends_with("go.sum") {
return Some("go".to_string());
}
if file_path.ends_with("package.json") || file_path.ends_with("package-lock.json") {
return Some("npm".to_string());
}
if file_path.ends_with("pyproject.toml") {
return Some("pip".to_string());
}
if file_path.ends_with("vcpkg.json") {
return Some("vcpkg".to_string());
}
None
}
pub fn format_bytes(bytes: usize) -> String {
let SIZES: Vec<&str> = vec!["B", "KB", "MB", "GB", "TB"];
let mut i = 0;
let mut approximated_bytes = bytes as f64;
while i < 5 && approximated_bytes >= 1024.0 {
i += 1;
approximated_bytes = approximated_bytes / 1024.0;
}
return format!("{:.2} {}", approximated_bytes, SIZES[i]);
}