2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-09-21 08:26:41 -04:00
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
use deno_core::parking_lot::Mutex;
|
2020-09-21 12:36:37 -04:00
|
|
|
use deno_core::serde_json;
|
|
|
|
use deno_core::serde_json::json;
|
2021-10-10 17:26:22 -04:00
|
|
|
use deno_core::ModuleSpecifier;
|
2021-03-26 12:34:25 -04:00
|
|
|
use log::debug;
|
2021-10-10 17:26:22 -04:00
|
|
|
use std::cell::RefCell;
|
2020-07-02 11:54:51 -04:00
|
|
|
use std::collections::BTreeMap;
|
2019-11-03 10:39:27 -05:00
|
|
|
use std::io::Result;
|
2020-10-19 15:19:20 -04:00
|
|
|
use std::path::PathBuf;
|
2021-10-10 17:26:22 -04:00
|
|
|
use std::rc::Rc;
|
|
|
|
use std::sync::Arc;
|
2019-11-03 10:39:27 -05:00
|
|
|
|
2021-12-07 19:21:04 -05:00
|
|
|
use crate::tools::fmt::format_json;
|
|
|
|
|
2020-09-24 18:31:17 -04:00
|
|
|
#[derive(Debug, Clone)]
|
2019-11-03 10:39:27 -05:00
|
|
|
pub struct Lockfile {
|
2020-07-02 11:54:51 -04:00
|
|
|
write: bool,
|
|
|
|
map: BTreeMap<String, String>,
|
2020-10-19 15:19:20 -04:00
|
|
|
pub filename: PathBuf,
|
2019-11-03 10:39:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lockfile {
|
2020-10-19 15:19:20 -04:00
|
|
|
pub fn new(filename: PathBuf, write: bool) -> Result<Lockfile> {
|
2020-07-02 11:54:51 -04:00
|
|
|
let map = if write {
|
|
|
|
BTreeMap::new()
|
|
|
|
} else {
|
|
|
|
let s = std::fs::read_to_string(&filename)?;
|
|
|
|
serde_json::from_str(&s)?
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(Lockfile {
|
|
|
|
write,
|
|
|
|
map,
|
2019-11-03 10:39:27 -05:00
|
|
|
filename,
|
2020-07-02 11:54:51 -04:00
|
|
|
})
|
2019-11-03 10:39:27 -05:00
|
|
|
}
|
|
|
|
|
2020-07-02 11:54:51 -04:00
|
|
|
// Synchronize lock file to disk - noop if --lock-write file is not specified.
|
2019-11-03 10:39:27 -05:00
|
|
|
pub fn write(&self) -> Result<()> {
|
2020-07-02 11:54:51 -04:00
|
|
|
if !self.write {
|
|
|
|
return Ok(());
|
|
|
|
}
|
2020-11-26 07:16:48 -05:00
|
|
|
let j = json!(&self.map);
|
2019-11-03 10:39:27 -05:00
|
|
|
let s = serde_json::to_string_pretty(&j).unwrap();
|
2021-12-07 19:21:04 -05:00
|
|
|
|
|
|
|
let format_s = format_json(&s, &Default::default()).unwrap_or(s);
|
2019-11-03 10:39:27 -05:00
|
|
|
let mut f = std::fs::OpenOptions::new()
|
|
|
|
.write(true)
|
|
|
|
.create(true)
|
|
|
|
.truncate(true)
|
|
|
|
.open(&self.filename)?;
|
|
|
|
use std::io::Write;
|
2021-12-07 19:21:04 -05:00
|
|
|
f.write_all(format_s.as_bytes())?;
|
2020-10-19 15:19:20 -04:00
|
|
|
debug!("lockfile write {}", self.filename.display());
|
2019-11-03 10:39:27 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-07-02 11:54:51 -04:00
|
|
|
pub fn check_or_insert(&mut self, specifier: &str, code: &str) -> bool {
|
|
|
|
if self.write {
|
|
|
|
// In case --lock-write is specified check always passes
|
|
|
|
self.insert(specifier, code);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
self.check(specifier, code)
|
|
|
|
}
|
2019-11-03 10:39:27 -05:00
|
|
|
}
|
|
|
|
|
2020-07-02 11:54:51 -04:00
|
|
|
/// Checks the given module is included.
|
|
|
|
/// Returns Ok(true) if check passed.
|
|
|
|
fn check(&mut self, specifier: &str, code: &str) -> bool {
|
|
|
|
if specifier.starts_with("file:") {
|
|
|
|
return true;
|
2019-11-03 10:39:27 -05:00
|
|
|
}
|
2020-07-02 11:54:51 -04:00
|
|
|
if let Some(lockfile_checksum) = self.map.get(specifier) {
|
|
|
|
let compiled_checksum = crate::checksum::gen(&[code.as_bytes()]);
|
2019-11-03 10:39:27 -05:00
|
|
|
lockfile_checksum == &compiled_checksum
|
|
|
|
} else {
|
|
|
|
false
|
2020-07-02 11:54:51 -04:00
|
|
|
}
|
2019-11-03 10:39:27 -05:00
|
|
|
}
|
|
|
|
|
2020-07-02 11:54:51 -04:00
|
|
|
fn insert(&mut self, specifier: &str, code: &str) {
|
|
|
|
if specifier.starts_with("file:") {
|
|
|
|
return;
|
2019-11-03 10:39:27 -05:00
|
|
|
}
|
2020-07-02 11:54:51 -04:00
|
|
|
let checksum = crate::checksum::gen(&[code.as_bytes()]);
|
|
|
|
self.map.insert(specifier.to_string(), checksum);
|
2019-11-03 10:39:27 -05:00
|
|
|
}
|
|
|
|
}
|
2020-10-04 19:32:18 -04:00
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub(crate) struct Locker(Option<Arc<Mutex<Lockfile>>>);
|
|
|
|
|
|
|
|
impl deno_graph::source::Locker for Locker {
|
|
|
|
fn check_or_insert(
|
|
|
|
&mut self,
|
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
source: &str,
|
|
|
|
) -> bool {
|
|
|
|
if let Some(lock_file) = &self.0 {
|
|
|
|
let mut lock_file = lock_file.lock();
|
|
|
|
lock_file.check_or_insert(specifier.as_str(), source)
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_checksum(&self, content: &str) -> String {
|
|
|
|
crate::checksum::gen(&[content.as_bytes()])
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_filename(&self) -> Option<String> {
|
|
|
|
let lock_file = self.0.as_ref()?.lock();
|
|
|
|
lock_file.filename.to_str().map(|s| s.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn as_maybe_locker(
|
|
|
|
lockfile: Option<Arc<Mutex<Lockfile>>>,
|
|
|
|
) -> Option<Rc<RefCell<Box<dyn deno_graph::source::Locker>>>> {
|
|
|
|
lockfile.as_ref().map(|lf| {
|
|
|
|
Rc::new(RefCell::new(
|
|
|
|
Box::new(Locker(Some(lf.clone()))) as Box<dyn deno_graph::source::Locker>
|
|
|
|
))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-10-04 19:32:18 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use deno_core::serde_json;
|
|
|
|
use deno_core::serde_json::json;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io::prelude::*;
|
|
|
|
use std::io::Write;
|
|
|
|
use tempfile::TempDir;
|
|
|
|
|
2020-10-19 15:19:20 -04:00
|
|
|
fn setup() -> (TempDir, PathBuf) {
|
2020-10-04 19:32:18 -04:00
|
|
|
let temp_dir = TempDir::new().expect("could not create temp dir");
|
|
|
|
|
|
|
|
let file_path = temp_dir.path().join("valid_lockfile.json");
|
|
|
|
let mut file = File::create(file_path).expect("write file fail");
|
|
|
|
|
|
|
|
let value: serde_json::Value = json!({
|
|
|
|
"https://deno.land/std@0.71.0/textproto/mod.ts": "3118d7a42c03c242c5a49c2ad91c8396110e14acca1324e7aaefd31a999b71a4",
|
|
|
|
"https://deno.land/std@0.71.0/async/delay.ts": "35957d585a6e3dd87706858fb1d6b551cb278271b03f52c5a2cb70e65e00c26a"
|
|
|
|
});
|
|
|
|
|
|
|
|
file.write_all(value.to_string().as_bytes()).unwrap();
|
|
|
|
|
2020-10-19 15:19:20 -04:00
|
|
|
let file_path = temp_dir.path().join("valid_lockfile.json");
|
2020-10-04 19:32:18 -04:00
|
|
|
|
|
|
|
(temp_dir, file_path)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn teardown(temp_dir: TempDir) {
|
|
|
|
temp_dir.close().expect("file close error");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_nonexistent_lockfile() {
|
2020-10-19 15:19:20 -04:00
|
|
|
let file_path = PathBuf::from("nonexistent_lock_file.json");
|
2020-10-04 19:32:18 -04:00
|
|
|
assert!(Lockfile::new(file_path, false).is_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_valid_lockfile() {
|
|
|
|
let (temp_dir, file_path) = setup();
|
|
|
|
|
|
|
|
let result = Lockfile::new(file_path, false).unwrap();
|
|
|
|
|
|
|
|
let keys: Vec<String> = result.map.keys().cloned().collect();
|
|
|
|
let expected_keys = vec![
|
|
|
|
String::from("https://deno.land/std@0.71.0/async/delay.ts"),
|
|
|
|
String::from("https://deno.land/std@0.71.0/textproto/mod.ts"),
|
|
|
|
];
|
|
|
|
|
|
|
|
assert_eq!(keys.len(), 2);
|
|
|
|
assert_eq!(keys, expected_keys);
|
|
|
|
|
|
|
|
teardown(temp_dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_lockfile_from_file_and_insert() {
|
|
|
|
let (temp_dir, file_path) = setup();
|
|
|
|
|
|
|
|
let mut lockfile = Lockfile::new(file_path, false).unwrap();
|
|
|
|
|
|
|
|
lockfile.insert(
|
|
|
|
"https://deno.land/std@0.71.0/io/util.ts",
|
|
|
|
"Here is some source code",
|
|
|
|
);
|
|
|
|
|
|
|
|
let keys: Vec<String> = lockfile.map.keys().cloned().collect();
|
|
|
|
let expected_keys = vec![
|
|
|
|
String::from("https://deno.land/std@0.71.0/async/delay.ts"),
|
|
|
|
String::from("https://deno.land/std@0.71.0/io/util.ts"),
|
|
|
|
String::from("https://deno.land/std@0.71.0/textproto/mod.ts"),
|
|
|
|
];
|
|
|
|
assert_eq!(keys.len(), 3);
|
|
|
|
assert_eq!(keys, expected_keys);
|
|
|
|
|
|
|
|
teardown(temp_dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_lockfile_and_write() {
|
|
|
|
let (temp_dir, file_path) = setup();
|
|
|
|
|
|
|
|
let mut lockfile = Lockfile::new(file_path, true).unwrap();
|
|
|
|
|
|
|
|
lockfile.insert(
|
|
|
|
"https://deno.land/std@0.71.0/textproto/mod.ts",
|
|
|
|
"Here is some source code",
|
|
|
|
);
|
|
|
|
lockfile.insert(
|
|
|
|
"https://deno.land/std@0.71.0/io/util.ts",
|
|
|
|
"more source code here",
|
|
|
|
);
|
|
|
|
lockfile.insert(
|
|
|
|
"https://deno.land/std@0.71.0/async/delay.ts",
|
|
|
|
"this source is really exciting",
|
|
|
|
);
|
|
|
|
|
|
|
|
lockfile.write().expect("unable to write");
|
|
|
|
|
|
|
|
let file_path_buf = temp_dir.path().join("valid_lockfile.json");
|
|
|
|
let file_path = file_path_buf.to_str().expect("file path fail").to_string();
|
|
|
|
|
|
|
|
// read the file contents back into a string and check
|
|
|
|
let mut checkfile = File::open(file_path).expect("Unable to open the file");
|
|
|
|
let mut contents = String::new();
|
|
|
|
checkfile
|
|
|
|
.read_to_string(&mut contents)
|
|
|
|
.expect("Unable to read the file");
|
|
|
|
|
2020-11-26 07:16:48 -05:00
|
|
|
let contents_json =
|
|
|
|
serde_json::from_str::<serde_json::Value>(&contents).unwrap();
|
|
|
|
let object = contents_json.as_object().unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
object
|
|
|
|
.get("https://deno.land/std@0.71.0/textproto/mod.ts")
|
|
|
|
.and_then(|v| v.as_str()),
|
|
|
|
// sha-256 hash of the source 'Here is some source code'
|
|
|
|
Some("fedebba9bb82cce293196f54b21875b649e457f0eaf55556f1e318204947a28f")
|
|
|
|
);
|
|
|
|
|
|
|
|
// confirm that keys are sorted alphabetically
|
|
|
|
let mut keys = object.keys().map(|k| k.as_str());
|
|
|
|
assert_eq!(
|
|
|
|
keys.next(),
|
|
|
|
Some("https://deno.land/std@0.71.0/async/delay.ts")
|
|
|
|
);
|
|
|
|
assert_eq!(keys.next(), Some("https://deno.land/std@0.71.0/io/util.ts"));
|
|
|
|
assert_eq!(
|
|
|
|
keys.next(),
|
|
|
|
Some("https://deno.land/std@0.71.0/textproto/mod.ts")
|
|
|
|
);
|
|
|
|
assert!(keys.next().is_none());
|
2020-10-04 19:32:18 -04:00
|
|
|
|
|
|
|
teardown(temp_dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn check_or_insert_lockfile_false() {
|
|
|
|
let (temp_dir, file_path) = setup();
|
|
|
|
|
|
|
|
let mut lockfile = Lockfile::new(file_path, false).unwrap();
|
|
|
|
|
|
|
|
lockfile.insert(
|
|
|
|
"https://deno.land/std@0.71.0/textproto/mod.ts",
|
|
|
|
"Here is some source code",
|
|
|
|
);
|
|
|
|
|
|
|
|
let check_true = lockfile.check_or_insert(
|
|
|
|
"https://deno.land/std@0.71.0/textproto/mod.ts",
|
|
|
|
"Here is some source code",
|
|
|
|
);
|
|
|
|
assert!(check_true);
|
|
|
|
|
|
|
|
let check_false = lockfile.check_or_insert(
|
|
|
|
"https://deno.land/std@0.71.0/textproto/mod.ts",
|
|
|
|
"This is new Source code",
|
|
|
|
);
|
|
|
|
assert!(!check_false);
|
|
|
|
|
|
|
|
teardown(temp_dir);
|
|
|
|
}
|
|
|
|
}
|