Make DicomValue a homogeneous collection instead of heterogeneous#13
Open
shepmaster wants to merge 2 commits intoStrongResearch:mainfrom
Open
Make DicomValue a homogeneous collection instead of heterogeneous#13shepmaster wants to merge 2 commits intoStrongResearch:mainfrom
shepmaster wants to merge 2 commits intoStrongResearch:mainfrom
Conversation
Contributor
|
Looks awesome, thanks for the PR. I've run the tests and some errors are occuring. 36/195 are failing so seeing what is common among those should make fixing this easy. Merging this PR is not a massive priority at the moment, so I'll debug this one when I get a chance, possibly next week. |
Contributor
|
This is what each of the tracebacks look like. Error messages look very nice :) |
Contributor
Author
|
Very odd. Are those tests that are not run via |
Contributor
Author
|
Ah! I have to run |
The previous type allowed for a collection of mixed integers / strings / floats, etc. Since the DICOM format doesn't allow for that, we can change the type to enforce a single inner type. We also create our own `Value` enum instead of using `rmpv::Value`. This allows us to ignore non-UTF8 strings and integers that cannot be represented as i64.
5aac4c0 to
d65a2a3
Compare
Contributor
Author
|
OK, should be fixed now. I got confused and thought that both |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The previous type allowed for a collection of mixed integers / strings
/ floats, etc. Since the DICOM format doesn't allow for that, we can
change the type to enforce a single inner type.
We also create our own
Valueenum instead of usingrmpv::Value. This allows us to ignore non-UTF8 strings and integersthat cannot be represented as i64.