mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
94f040ac28
In https://github.com/denoland/deno/pull/23955 we changed the sqlite db journal mode to WAL. This causes issues when someone is running an old version of Deno using TRUNCATE and a new version because the two fight against each other.
50 lines
1 KiB
Rust
50 lines
1 KiB
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use std::hash::Hasher;
|
|
|
|
/// A very fast insecure hasher that uses the xxHash algorithm.
|
|
pub struct FastInsecureHasher(twox_hash::XxHash64);
|
|
|
|
impl FastInsecureHasher {
|
|
pub fn new_without_deno_version() -> Self {
|
|
Self(Default::default())
|
|
}
|
|
|
|
pub fn new_deno_versioned() -> Self {
|
|
let mut hasher = Self::new_without_deno_version();
|
|
hasher.write_str(crate::version::deno());
|
|
hasher
|
|
}
|
|
|
|
pub fn write_str(&mut self, text: &str) -> &mut Self {
|
|
self.write(text.as_bytes());
|
|
self
|
|
}
|
|
|
|
pub fn write(&mut self, bytes: &[u8]) -> &mut Self {
|
|
self.0.write(bytes);
|
|
self
|
|
}
|
|
|
|
pub fn write_u8(&mut self, value: u8) -> &mut Self {
|
|
self.0.write_u8(value);
|
|
self
|
|
}
|
|
|
|
pub fn write_u64(&mut self, value: u64) -> &mut Self {
|
|
self.0.write_u64(value);
|
|
self
|
|
}
|
|
|
|
pub fn write_hashable(
|
|
&mut self,
|
|
hashable: impl std::hash::Hash,
|
|
) -> &mut Self {
|
|
hashable.hash(&mut self.0);
|
|
self
|
|
}
|
|
|
|
pub fn finish(&self) -> u64 {
|
|
self.0.finish()
|
|
}
|
|
}
|