Skip to content

Commit 73ae218

Browse files
committed
chore: change &PathBuf to &Path
1 parent 4451c71 commit 73ae218

File tree

5 files changed

+28
-30
lines changed

5 files changed

+28
-30
lines changed

crates/compilers/src/cache.rs

+14-16
Original file line numberDiff line numberDiff line change
@@ -708,18 +708,16 @@ impl<T: ArtifactOutput<CompilerContract = C::CompilerContract>, C: Compiler>
708708

709709
/// Gets or calculates the interface representation hash for the given source file.
710710
fn interface_repr_hash(&mut self, source: &Source, file: &Path) -> &str {
711-
self.interface_repr_hashes
712-
.entry(file.to_path_buf())
713-
.or_insert_with(|| {
714-
if let Some(r) = interface_repr_hash(&source.content, file) {
715-
return r;
716-
}
717-
self.content_hashes
718-
.entry(file.to_path_buf())
719-
.or_insert_with(|| source.content_hash())
720-
.clone()
721-
})
722-
.as_str()
711+
self.interface_repr_hashes.entry(file.to_path_buf()).or_insert_with(|| {
712+
if let Some(r) = interface_repr_hash(&source.content, file) {
713+
return r;
714+
}
715+
// self.content_hash(source, file).into()
716+
self.content_hashes
717+
.entry(file.to_path_buf())
718+
.or_insert_with(|| source.content_hash())
719+
.clone()
720+
})
723721
}
724722

725723
/// Returns the set of [Source]s that need to be compiled to produce artifacts for requested
@@ -742,7 +740,7 @@ impl<T: ArtifactOutput<CompilerContract = C::CompilerContract>, C: Compiler>
742740

743741
// If we are missing artifact for file, compile it.
744742
if self.is_missing_artifacts(file, version, profile) {
745-
compile_complete.insert(file.clone());
743+
compile_complete.insert(file.to_path_buf());
746744
}
747745

748746
// Ensure that we have a cache entry for all sources.
@@ -756,15 +754,15 @@ impl<T: ArtifactOutput<CompilerContract = C::CompilerContract>, C: Compiler>
756754
for source in &compile_complete {
757755
for import in self.edges.imports(source) {
758756
if !compile_complete.contains(import) {
759-
compile_optimized.insert(import.clone());
757+
compile_optimized.insert(import);
760758
}
761759
}
762760
}
763761

764762
sources.retain(|file, source| {
765-
source.kind = if compile_complete.contains(file) {
763+
source.kind = if compile_complete.contains(file.as_path()) {
766764
SourceCompilationKind::Complete
767-
} else if compile_optimized.contains(file) {
765+
} else if compile_optimized.contains(file.as_path()) {
768766
SourceCompilationKind::Optimized
769767
} else {
770768
return false;

crates/compilers/src/filter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl<'a> SparseOutputFilter<'a> {
121121
let mut required_sources = vec![file.clone()];
122122
if let Some(data) = graph.get_parsed_source(file) {
123123
let imports = graph.imports(file).into_iter().filter_map(|import| {
124-
graph.get_parsed_source(import).map(|data| (import.as_path(), data))
124+
graph.get_parsed_source(import).map(|data| (import, data))
125125
});
126126
for import in data.compilation_dependencies(imports) {
127127
let import = import.to_path_buf();

crates/compilers/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,13 +180,13 @@ where
180180
let mut sources = Vec::new();
181181
let mut unique_paths = HashSet::new();
182182
let (path, source) = graph.node(*target_index).unpack();
183-
unique_paths.insert(path.clone());
183+
unique_paths.insert(path);
184184
sources.push((path, source));
185185
sources.extend(
186186
graph
187187
.all_imported_nodes(*target_index)
188188
.map(|index| graph.node(index).unpack())
189-
.filter(|(p, _)| unique_paths.insert(p.to_path_buf())),
189+
.filter(|(p, _)| unique_paths.insert(*p)),
190190
);
191191

192192
let root = self.root();

crates/compilers/src/resolver/mod.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -169,18 +169,18 @@ impl<D> GraphEdges<D> {
169169
}
170170

171171
/// Returns all files imported by the given file
172-
pub fn imports(&self, file: &Path) -> HashSet<&PathBuf> {
172+
pub fn imports(&self, file: &Path) -> HashSet<&Path> {
173173
if let Some(start) = self.indices.get(file).copied() {
174-
NodesIter::new(start, self).skip(1).map(move |idx| &self.rev_indices[&idx]).collect()
174+
NodesIter::new(start, self).skip(1).map(move |idx| &*self.rev_indices[&idx]).collect()
175175
} else {
176176
HashSet::new()
177177
}
178178
}
179179

180180
/// Returns all files that import the given file
181-
pub fn importers(&self, file: &Path) -> HashSet<&PathBuf> {
181+
pub fn importers(&self, file: &Path) -> HashSet<&Path> {
182182
if let Some(start) = self.indices.get(file).copied() {
183-
self.rev_edges[start].iter().map(move |idx| &self.rev_indices[idx]).collect()
183+
self.rev_edges[start].iter().map(move |idx| &*self.rev_indices[idx]).collect()
184184
} else {
185185
HashSet::new()
186186
}
@@ -192,7 +192,7 @@ impl<D> GraphEdges<D> {
192192
}
193193

194194
/// Returns the path of the given node
195-
pub fn node_path(&self, id: usize) -> &PathBuf {
195+
pub fn node_path(&self, id: usize) -> &Path {
196196
&self.rev_indices[&id]
197197
}
198198

@@ -327,7 +327,7 @@ impl<L: Language, D: ParsedSource<Language = L>> Graph<D> {
327327
}
328328

329329
/// Returns all files imported by the given file
330-
pub fn imports(&self, path: &Path) -> HashSet<&PathBuf> {
330+
pub fn imports(&self, path: &Path) -> HashSet<&Path> {
331331
self.edges.imports(path)
332332
}
333333

@@ -1121,7 +1121,7 @@ impl<D: ParsedSource> Node<D> {
11211121
&self.source.content
11221122
}
11231123

1124-
pub fn unpack(&self) -> (&PathBuf, &Source) {
1124+
pub fn unpack(&self) -> (&Path, &Source) {
11251125
(&self.path, &self.source)
11261126
}
11271127
}
@@ -1199,8 +1199,8 @@ mod tests {
11991199
let dapp_test = graph.node(1);
12001200
assert_eq!(dapp_test.path, paths.sources.join("Dapp.t.sol"));
12011201
assert_eq!(
1202-
dapp_test.data.imports.iter().map(|i| i.data().path()).collect::<Vec<&PathBuf>>(),
1203-
vec![&PathBuf::from("ds-test/test.sol"), &PathBuf::from("./Dapp.sol")]
1202+
dapp_test.data.imports.iter().map(|i| i.data().path()).collect::<Vec<&Path>>(),
1203+
vec![Path::new("ds-test/test.sol"), Path::new("./Dapp.sol")]
12041204
);
12051205
assert_eq!(graph.imported_nodes(1).to_vec(), vec![2, 0]);
12061206
}

crates/compilers/src/resolver/parse.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,11 @@ impl SolImport {
187187
Self { path, aliases: vec![] }
188188
}
189189

190-
pub fn path(&self) -> &PathBuf {
190+
pub fn path(&self) -> &Path {
191191
&self.path
192192
}
193193

194-
pub fn aliases(&self) -> &Vec<SolImportAlias> {
194+
pub fn aliases(&self) -> &[SolImportAlias] {
195195
&self.aliases
196196
}
197197

0 commit comments

Comments
 (0)