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
|
use std::collections::HashMap;
use serde::Deserialize;
use crate::version::DownloadInfo;
#[derive(Debug, Deserialize)]
pub struct Availability {
pub group: u32, // unknown meaning
pub progress: u32 // unknown meaning
}
#[derive(Debug, Deserialize)]
pub struct Version {
pub name: String,
pub version: String
}
#[derive(Debug, Deserialize)]
pub struct JavaRuntimeInfo {
// I don't see how half of this information is useful with how the JRE system currently functions -figboot
pub availability: Availability,
pub manifest: DownloadInfo,
pub version: Version
}
pub type JavaRuntimesManifest = HashMap<String, HashMap<String, Vec<JavaRuntimeInfo>>>;
#[derive(Debug, Deserialize, Clone, Copy, Eq, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum FileType {
File,
Directory,
Link
}
#[derive(Debug, Deserialize)]
pub struct JavaRuntimeFile {
#[serde(rename = "type")]
pub file_type: FileType,
#[serde(default)]
pub executable: bool,
pub lzma: DownloadInfo,
pub raw: DownloadInfo
}
#[derive(Debug, Deserialize)]
pub struct JavaRuntimeManifest {
pub files: HashMap<String, JavaRuntimeFile>
}
|