blob: ce90fbacaa46c9094d21287fad2e55603788052a [file] [log] [blame]
Inna Palantff3f07a2019-07-11 16:15:26 -07001//! Calculation and management of a Strict Version Hash for crates
2//!
3//! The SVH is used for incremental compilation to track when HIR
4//! nodes have changed between compilations, and also to detect
5//! mismatches where we have two versions of the same crate that were
6//! compiled from distinct sources.
7
Matthew Maurer859223d2020-03-27 12:47:38 -07008use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
Inna Palantff3f07a2019-07-11 16:15:26 -07009use std::fmt;
10use std::hash::{Hash, Hasher};
Inna Palantff3f07a2019-07-11 16:15:26 -070011
12use crate::stable_hasher;
13
14#[derive(Copy, Clone, PartialEq, Eq, Debug)]
15pub struct Svh {
16 hash: u64,
17}
18
19impl Svh {
20 /// Creates a new `Svh` given the hash. If you actually want to
21 /// compute the SVH from some HIR, you want the `calculate_svh`
Chris Wailes32f78352021-07-20 14:04:55 -070022 /// function found in `rustc_incremental`.
Inna Palantff3f07a2019-07-11 16:15:26 -070023 pub fn new(hash: u64) -> Svh {
24 Svh { hash }
25 }
26
27 pub fn as_u64(&self) -> u64 {
28 self.hash
29 }
30
31 pub fn to_string(&self) -> String {
32 format!("{:016x}", self.hash)
33 }
34}
35
36impl Hash for Svh {
Matthew Maurer859223d2020-03-27 12:47:38 -070037 fn hash<H>(&self, state: &mut H)
38 where
39 H: Hasher,
40 {
Inna Palantff3f07a2019-07-11 16:15:26 -070041 self.hash.to_le().hash(state);
42 }
43}
44
45impl fmt::Display for Svh {
46 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
47 f.pad(&self.to_string())
48 }
49}
50
ThiƩbaud Weksteene40e7362020-10-28 15:03:00 +010051impl<S: Encoder> Encodable<S> for Svh {
52 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
Inna Palantff3f07a2019-07-11 16:15:26 -070053 s.emit_u64(self.as_u64().to_le())
54 }
55}
56
ThiƩbaud Weksteene40e7362020-10-28 15:03:00 +010057impl<D: Decoder> Decodable<D> for Svh {
58 fn decode(d: &mut D) -> Result<Svh, D::Error> {
Matthew Maurer859223d2020-03-27 12:47:38 -070059 d.read_u64().map(u64::from_le).map(Svh::new)
Inna Palantff3f07a2019-07-11 16:15:26 -070060 }
61}
62
63impl<T> stable_hasher::HashStable<T> for Svh {
64 #[inline]
Chih-Hung Hsieh2ccedcd2019-12-19 15:10:50 -080065 fn hash_stable(&self, ctx: &mut T, hasher: &mut stable_hasher::StableHasher) {
Matthew Maurer859223d2020-03-27 12:47:38 -070066 let Svh { hash } = *self;
Inna Palantff3f07a2019-07-11 16:15:26 -070067 hash.hash_stable(ctx, hasher);
68 }
69}