Description
Proposal
Problem statement
While indexing of a slice has a non-panicking counterpart in the form of get method, no such counterpart exists for split_at method. This forces users (who wish not to panic) to explicitly check for length which is something that the split_at function is already doing. This makes caller code more verbose, marginally more error-prone as the mid point is passed twice and potentially harder to reason about panicking behaviours.
Motivating examples or use cases
Proposed methods don’t offer any kind of ground breaking feature and the same effect can be achieved by just a couple additional statements so the motivating examples are by no means impressive. Nonetheless, they represent that occasionally codebases need to check the length.
if key.len() < 8 {
return Err(io::Error::other(/* ... */));
}
let (shard_uid_bytes, trie_key) = key.split_at(8);
Could be rewritten as:
let (shard_uid_bytes, trie_key) = key
.checked_split_at(8)
.ok_or_else(|| io::Error::other(/* ... */))?;
let accounts = iter.as_slice();
if accounts.len() < count {
return Err(ProgramError::NotEnoughAccountKeys);
}
let (accounts, remaining) = accounts.split_at(count);
Could be rewritten as:
let (accounts, remaining) = iter
.as_slice()
.checked_split_at(count)
.ok_or(ProgramError::NotEnoughAccountKeys)?;
.filter_map(|name| {
if name.len() > REQUIRES_PREFIX.len() {
let (_, required_capability) = name.split_at(REQUIRES_PREFIX.len());
Some(required_capability.to_string())
} else {
None
}
})
Could be rewritten as:
.filter_map(|name| {
name
.checked_split_at(REQUIRES_PREFIX.len())
.map(|(_, required_capability) required_capability.to_string())
})
I’m currently working on code which looks as follows:
// Check unused bytes after the slice.
let (bytes, tail) = stdx::checked_split_at(bytes, bytes_len)?;
if !tail.iter().all(|&byte| byte == 0) {
return None;
}
There, bytes
argument must by at least length bytes_len
and tail must be all zeros.
Solution sketch
Addition of checked_split_at{,_mut} methods to slice and str types. See rust-lang/rust#118578.
Alternatives
- Do nothing. The feature can be achieved by
(mid <= slice.len()).then(|| slice.split_at(mid)
however priori art for convenience non-panicking methods exists (namelyget
method) and, at least to me, it feels like split_at falls within same category. - Rather than having checked_split_at have a clamping_split_at which would clamp the mid point to the length of the slice. This is however less versatile.
Links and related work
This was mentioned in an old thread though the discussion fizzled out without any conclusion.
What happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
- We think this problem seems worth solving, and the standard library might be the right place to solve it.
- We think that this probably doesn't belong in the standard library.
Second, if there's a concrete solution:
- We think this specific solution looks roughly right, approved, you or someone else should implement this. (Further review will still happen on the subsequent implementation PR.)
- We're not sure this is the right solution, and the alternatives or other materials don't give us enough information to be sure about that. Here are some questions we have that aren't answered, or rough ideas about alternatives we'd want to see discussed.