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

ref(debuginfo): Switch to error with kind #299

Merged
merged 11 commits into from
Nov 30, 2020
Merged

Conversation

jan-auer
Copy link
Member

@jan-auer jan-auer commented Nov 30, 2020

Follows the conventions set by std::io::Error.

* master:
  ref(minidump): Switch to error with kind (#298)
  ref(unreal): Switch to error with kind (#297)
  ref(symcache): Switch to error with kind (#296)
@jan-auer jan-auer self-assigned this Nov 30, 2020
@jan-auer jan-auer marked this pull request as ready for review November 30, 2020 13:56
@jan-auer jan-auer requested a review from a team November 30, 2020 13:56
Copy link
Member

@Swatinem Swatinem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haven’t looked at the descriptions & docs in detail, high level looks very good, and getting rid of the details in ObjectError sounds good

fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self.repr {
ObjectErrorRepr::Transparent(ref inner) => inner.fmt(f),
_ => self.repr.fmt(f),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we maybe call fmt::Debug::fmt directly? Otherwise, which fmt method does this resolve to? Same for the other .fmt calls.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question. This always used to resolve correctly in the past, but it's probably worth disambiguating this.

@jan-auer jan-auer merged commit 0b8e083 into master Nov 30, 2020
@jan-auer jan-auer deleted the ref/debuginfo-error branch November 30, 2020 14:56
InvertedFunctionRange,

/// The DWARF file is corrupted. See the cause for more information.
#[error("corrupted dwarf debug data")]
CorruptedData(#[from] GimliError),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GimliError was exposed because of the pub usage here. Maybe we can hide all the gimli re-exports again?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, I'll create a follow-up.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

jan-auer added a commit that referenced this pull request Dec 22, 2020
* master: (21 commits)
  fix: New nightly clippy lint (#295)
  fix(release): Do not publish examples to crates.io
  release: 8.0.0
  ref(debuginfo): Remove re-exports of error types (#300)
  meta: Update changelog
  ref(debuginfo): Switch to error with kind (#299)
  ref(minidump): Switch to error with kind (#298)
  ref(unreal): Switch to error with kind (#297)
  ref(symcache): Switch to error with kind (#296)
  feat: Rename architecture to wasm32 (#294)
  fix(debuginfo): Prefer DWARF names for Dart functions (#293)
  fix: clippy (#292)
  hack(dwarf): Skip line program sequences at 0 (#291)
  feat(wasm): support for wasm (#166)
  ci: Run rust nighlty on a schedule (#289)
  ref: Updates for rust 1.48 (#288)
  fix(debuginfo): Update dmsort to 1.0.1 to avoid panic due to UB (#287)
  ci: Use GHA instead of zeus (#286)
  ref: Introduce explicit NameMangling and better DemangleOptions (#275)
  meta: Bump all semver-major dependencies (#283)
  ...
jan-auer added a commit that referenced this pull request Dec 23, 2020
* master:
  fix: Update breakpad to version which fixes debug_id (#281)
  fix(pytest): Pin pytest 5 for debugfail customizations (#305)
  fix: New nightly clippy lint (#295)
  fix(release): Do not publish examples to crates.io
  release: 8.0.0
  ref(debuginfo): Remove re-exports of error types (#300)
  meta: Update changelog
  ref(debuginfo): Switch to error with kind (#299)
  ref(minidump): Switch to error with kind (#298)
  ref(unreal): Switch to error with kind (#297)
  ref(symcache): Switch to error with kind (#296)
  feat: Rename architecture to wasm32 (#294)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants