Skip to content

Commit 98d124d

Browse files
authored
QSC: display the path when emitting HIR/QIR fails (#1215)
I wasted a little time on this error as I could not figure out why the emit was failing for me, so I hope the change makes sense to everyone. When emitting HIR/QIR fails (e.g. directory permissions or output path is invalid) it is not obvious where it failed because the code swallows the path: ``` Error: × could not emit QIR ╰─▶ Permission denied (os error 13) ``` or ``` Error: × could not emit QIR ╰─▶ No such file or directory (os error 2) ``` With this change the path is also shown: ``` Error: × could not emit QIR file `./../qir/qir.ll` ╰─▶ No such file or directory (os error 2) ``` This is symmetrical to how the path is already shown for source file errors ``` Error: × could not read source file `../source/foo.qs` ╰─▶ No such file or directory (os error 2) ```
1 parent bed9d8e commit 98d124d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

compiler/qsc/src/bin/qsc.rs

+6-7
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ fn read_source(path: impl AsRef<Path>) -> miette::Result<(SourceName, SourceCont
165165
fn emit_hir(package: &Package, dir: impl AsRef<Path>) -> miette::Result<()> {
166166
let path = dir.as_ref().join("hir.txt");
167167
info!(
168-
"Writing hir output file to: {}",
168+
"Writing HIR output file to: {}",
169169
path.to_str().unwrap_or_default()
170170
);
171-
fs::write(path, package.to_string())
171+
fs::write(&path, package.to_string())
172172
.into_diagnostic()
173-
.context("could not emit HIR")
173+
.with_context(|| format!("could not emit HIR file `{}`", path.display()))
174174
}
175175

176176
fn emit_qir(out_dir: &Path, store: &PackageStore, package_id: PackageId) -> Result<(), Report> {
@@ -179,13 +179,12 @@ fn emit_qir(out_dir: &Path, store: &PackageStore, package_id: PackageId) -> Resu
179179
match result {
180180
Ok(qir) => {
181181
info!(
182-
"Writing qir output file to: {}",
182+
"Writing QIR output file to: {}",
183183
path.to_str().unwrap_or_default()
184184
);
185-
fs::write(path, qir)
185+
fs::write(&path, qir)
186186
.into_diagnostic()
187-
.context("could not emit QIR")?;
188-
Ok(())
187+
.with_context(|| format!("could not emit QIR file `{}`", path.display()))
189188
}
190189
Err((error, _)) => {
191190
let unit = store.get(package_id).expect("package should be in store");

0 commit comments

Comments
 (0)