-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.rs
179 lines (164 loc) · 7.02 KB
/
install.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
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
// Install all the dependencies listed within
// package.json in the local node_modules folder.
// If tyr.lock is present and is enough to satisfy all the dependencies listed in package.json, the exact versions recorded in tyr.lock are installed, and tyr.lock will be unchanged. tyr will not check for newer versions.
// If tyr.lock is absent, or is not enough to satisfy all the dependencies listed in package.json (for example, if you manually add a dependency to package.json), Tyrr should look for the newest versions available that satisfy the constraints in package.json. The results are written to tyrr.lock.
use std::collections::{HashMap, HashSet};
// use std::collections::HashMap;
use crate::resolve_package_from_registry;
// use std::fs;
// use itertools::Itertools;
use std::fs;
// use crate::resolve_package_from_registry;
// use yarn_lock_parser::{parse_str, Entry};
use serde_json;
use serde_json::Value;
use std::io::BufReader;
// use crate::resolve_package_from_registry;
// Step 1: Load Entries from Lockfile
pub fn load_entries_from_lockfile(lockfile_path: &str) {
// Implement logic to read and parse the lockfile
//read package json file metadata
let path_name = "./package.json".to_string();
let file = fs::File::open(path_name).unwrap();
let reader = BufReader::new(file);
let json_file_data: HashMap<String, Value> = serde_json::from_reader(reader).unwrap();
//get dependency from json structure
match json_file_data.contains_key("dependencies") {
//if not true dependency object is not available
true => {
let value = json_file_data.get("dependencies").unwrap();
let json_deps: HashMap<String, Value> = serde_json::from_value(value.clone()).unwrap();
//format and flatten to a vec string@version
let flattened_json_packages: Vec<String> = json_deps
.iter()
.map(|(key, value)| {
if let Value::String(version) = value {
format!("{}@{}", key, version)
} else {
format!("{}@UNKNOWN", key)
}
})
.collect();
// parse lock file
let lock_file_text = fs::read_to_string(lockfile_path).unwrap();
// Split input into lines and filter out empty lines
let packages = parse_lock_file(lock_file_text.as_str());
//remove non string char from packages
//flatten lock file deps to a vec also of string@version
let flattened_lock_packages = flatten_packages(&packages);
//turn both values to sets and compare differences
let lock_file_set: HashSet<String> = flattened_lock_packages.into_iter().collect();
let json_data_set: HashSet<String> = flattened_json_packages.into_iter().collect();
// Symmetric difference of hashsets:
//the values that are in self or in other but not in both
let results: HashSet<&String> =
json_data_set.symmetric_difference(&lock_file_set).collect();
// println!("The sym difference is: {:?}", results);
// let result =Vec::from_iter(res);
for pckg in results {
//update controlls when to create/update the the dependencies field...
//...on the package json file. Here it should be set to false
resolve_package_from_registry(pckg.to_string(), false)
}
}
false => {
println!("Cannot find dependencies to install, Check your package.json file")
}
}
}
fn remove_non_numbers(input: &str) -> String {
let result: String = input
.chars()
.filter(|c| c.is_digit(10) || *c == '.')
.collect();
result
}
#[derive(Debug)]
struct Package {
version: String,
// _resolved: String,
// _integrity: String,
dependencies: HashMap<String, String>,
}
fn parse_lock_file(lock_file_content: &str) -> HashMap<String, Package> {
let mut packages = HashMap::new();
let mut current_package = String::new();
let mut current_package_data = Vec::new();
for line in lock_file_content.lines() {
let trimmed_line = line.trim();
if trimmed_line.is_empty() {
continue; // Skip empty lines
}
if trimmed_line.ends_with(':') {
if !current_package_data.is_empty() {
let package = parse_package_data(¤t_package_data.join("\n"));
packages.insert(current_package.clone(), package);
current_package_data.clear();
}
current_package = trimmed_line[..trimmed_line.len() - 1].to_string();
// Remove trailing colon
} else {
current_package_data.push(trimmed_line.to_string());
}
}
if !current_package_data.is_empty() {
let package = parse_package_data(¤t_package_data.join("\n"));
packages.insert(current_package.clone(), package);
}
packages
}
fn parse_package_data(data: &str) -> Package {
let mut version = String::new();
// let mut resolved = String::new();
// let mut integrity = String::new();
let mut dependencies = HashMap::new();
let mut parsing_dependencies = false;
for line in data.lines() {
let trimmed_line = line.trim();
if trimmed_line.is_empty() {
continue; // Skip empty lines
}
if trimmed_line.starts_with("dependencies") {
parsing_dependencies = true;
continue;
}
if parsing_dependencies {
if let Ok(deps) = serde_json::from_str::<HashMap<String, String>>(trimmed_line) {
dependencies.extend(deps);
for (_, value) in dependencies.iter_mut() {
// Remove non-number characters from the value
*value = value
.chars()
.filter(|c| c.is_digit(10) || *c == '.')
.collect();
}
}
} else {
let parts: Vec<_> = trimmed_line.split_whitespace().collect();
if parts.len() >= 2 {
match parts[0] {
"version" => version = remove_non_numbers(parts[1]),
// "resolved" => resolved = parts[1].to_string(),
// "integrity" => integrity = parts[1].to_string(),
_ => {}
}
}
}
}
Package {
version,
dependencies,
}
}
fn flatten_packages(packages: &HashMap<String, Package>) -> Vec<String> {
let mut flattened_packages = Vec::new();
for (package_name, package) in packages {
let package_str = format!("{}@{}", package_name, package.version);
flattened_packages.push(package_str);
for (dependency_name, dependency_version) in &package.dependencies {
let dependency_str = format!("{}@{}", dependency_name, dependency_version);
flattened_packages.push(dependency_str);
}
}
flattened_packages
}