-
Notifications
You must be signed in to change notification settings - Fork 30
feature: add support for slicing above i32 where u64 can safely be coerced to f64 losslessly #861
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
Merged
+48
−16
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
fedef7d
feature: add support for slicing above i32 where u64 can safely be co…
mobiusklein d921288
chore: fmt
mobiusklein f9baa54
address review comments
mobiusklein 61fa689
chore: fmt
mobiusklein 05c2c0c
chore: clippy
mobiusklein d4afa80
change: rework error conversion and pipelining
mobiusklein 735e7a6
fix: variant is not always available
mobiusklein File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -326,12 +326,24 @@ impl WrappedFile { | |
| let (sender, receiver) = oneshot::channel(); | ||
| let file = self.inner.clone(); | ||
| spawn_local(async move { | ||
| let subset_blob = file | ||
| .slice_with_i32_and_i32( | ||
| let subset_blob = if (range.start <= i32::MAX as u64) && (range.end <= i32::MAX as u64) | ||
| { | ||
| file.slice_with_i32_and_i32( | ||
| range.start.try_into().unwrap(), | ||
| range.end.try_into().unwrap(), | ||
| ) | ||
| .unwrap(); | ||
| .unwrap() | ||
| } else { | ||
| let start = range.start as f64; | ||
| if start as u64 != range.start { | ||
| panic!("Cannot safely convert start index of {range:?}"); | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of panicking, we should change this method to be fallible and return an |
||
| } | ||
| let end = range.end as f64; | ||
| if end as u64 != range.end { | ||
| panic!("Cannot safely convert start index of {range:?}"); | ||
| } | ||
| file.slice_with_f64_and_f64(start, end).unwrap() | ||
| }; | ||
| let buf = JsFuture::from(subset_blob.array_buffer()).await.unwrap(); | ||
| let out_vec = Uint8Array::new_with_byte_offset(&buf, 0).to_vec(); | ||
| sender.send(out_vec).unwrap(); | ||
|
|
||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of having two branches for i32 and f64, we can probably first check that the range start and end is representable as an integer in f64, and then only use the
f64slice api