Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Render diagnostics without exiting? #384

Open
zmitchell opened this issue Jun 19, 2024 · 5 comments
Open

Render diagnostics without exiting? #384

zmitchell opened this issue Jun 19, 2024 · 5 comments
Labels
question Further information is requested

Comments

@zmitchell
Copy link

zmitchell commented Jun 19, 2024

Say I have a user editing a file and if it doesn’t parse to the correct format I want to display the error and ask if they’d like to try again. Essentially we have an edit loop that runs until they get it right or quit. How do I get miette to render the error on each loop iteration?

I’ve tried just using println!, but only the error(…) annotation is displayed (no snippet, etc). I’ve checked that the span and source code are as expected. I checked which type of report handler is being used, and it’s not the graphical handler, though it also seems like I don’t have a way to force one to be used.

Any advice?

@zkat zkat added the question Further information is requested label Jun 19, 2024
@zkat
Copy link
Owner

zkat commented Jun 19, 2024

Try eprintln!("{:?}", err.into_diagnostic()), iirc

@zmitchell
Copy link
Author

That doesn't seem to do the trick. Just to be concrete, let's say I have this type:

#[derive(Debug, Error, Diagnostic)]
#[error("Invalid manifest")]
#[diagnostic(
    code("manifest::parse"),
    url("http://example.com"),
    help("Please check the documentation for the correct format.")
)]
pub struct InvalidManifest {
    #[source_code]
    pub manifest_contents: String,

    #[label = "here"]
    pub span: SourceSpan,
}

If I construct that manually and try printing it with

let err = InvalidManifest {...};
eprintln!("{:?}", err);

I get the debug representation of the InvalidManifest struct. If I print it as

eprintln!("{}", err);

I only see Invalid manifest.

I can also call read_span manually to verify that the span is picking up the correct location of the error.

@zkat
Copy link
Owner

zkat commented Jun 20, 2024

@zmitchell you're not calling .into_diagnostic(). The graphical printer is on Report's Debug impl, so you first need to turn your error into a Report.

@zmitchell
Copy link
Author

I see, I guess I was confused why I needed to call into_diagnostic on something that already impls Diagnostic

@zkat
Copy link
Owner

zkat commented Jun 20, 2024

Yeah I guess the naming is weird. What it actually does it get you a Report :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants