-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Decoder/Encoder support for i/u128 (#600)
- Loading branch information
Showing
7 changed files
with
177 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,130 @@ | ||
use crate::{Decoder, Encoder, Env, Error, NifResult, Term}; | ||
use std::convert::TryFrom; | ||
|
||
const EXTERNAL_TERM_FORMAT_VERSION: u8 = 131; | ||
const SMALL_BIG_EXT: u8 = 110; | ||
|
||
impl Encoder for i128 { | ||
fn encode<'a>(&self, env: Env<'a>) -> Term<'a> { | ||
if let Ok(int) = i64::try_from(*self) { | ||
int.encode(env) | ||
} else { | ||
let mut etf = [0u8; 4 + 16]; | ||
etf[0] = EXTERNAL_TERM_FORMAT_VERSION; | ||
etf[1] = SMALL_BIG_EXT; | ||
etf[2] = 16; // length in bytes | ||
if *self < 0 { | ||
etf[3] = 1; | ||
let bytes = (-self).to_le_bytes(); | ||
etf[4..].copy_from_slice(&bytes); | ||
} else { | ||
etf[4..].copy_from_slice(&self.to_le_bytes()); | ||
} | ||
let (term, _) = env.binary_to_term(&etf).unwrap(); | ||
term | ||
} | ||
} | ||
} | ||
|
||
impl Encoder for u128 { | ||
fn encode<'a>(&self, env: Env<'a>) -> Term<'a> { | ||
if let Ok(int) = u64::try_from(*self) { | ||
int.encode(env) | ||
} else { | ||
let mut etf = [0u8; 4 + 16]; | ||
etf[0] = EXTERNAL_TERM_FORMAT_VERSION; | ||
etf[1] = SMALL_BIG_EXT; | ||
etf[2] = 16; // length in bytes | ||
etf[4..].copy_from_slice(&self.to_le_bytes()); | ||
let (term, _) = env.binary_to_term(&etf).unwrap(); | ||
term | ||
} | ||
} | ||
} | ||
|
||
impl<'a> Decoder<'a> for i128 { | ||
fn decode(term: Term<'a>) -> NifResult<Self> { | ||
if !term.is_integer() { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
if let Ok(int) = term.decode::<i64>() { | ||
return Ok(int as i128); | ||
} | ||
|
||
let input = term.to_binary(); | ||
let input = input.as_slice(); | ||
if input.len() < 4 { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
if input[0] != EXTERNAL_TERM_FORMAT_VERSION { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
if input[1] != SMALL_BIG_EXT { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
let n = input[2] as usize; | ||
if n > 16 { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
let mut res = [0u8; 16]; | ||
res[16 - n..].copy_from_slice(&input[4..4 + n]); | ||
let res = i128::from_le_bytes(res); | ||
if res < 0 { | ||
// The stored data is supposed to be unsigned, so if we interpret it as negative here, | ||
// it was too large. | ||
return Err(Error::BadArg); | ||
} | ||
|
||
if input[3] == 0 { | ||
Ok(res) | ||
} else { | ||
Ok(-res) | ||
} | ||
} | ||
} | ||
|
||
impl<'a> Decoder<'a> for u128 { | ||
fn decode(term: Term<'a>) -> NifResult<Self> { | ||
if !term.is_integer() { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
if let Ok(int) = term.decode::<u64>() { | ||
return Ok(int as u128); | ||
} | ||
|
||
let input = term.to_binary(); | ||
let input = input.as_slice(); | ||
|
||
if input.len() < 4 { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
if input[0] != EXTERNAL_TERM_FORMAT_VERSION { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
if input[1] != SMALL_BIG_EXT { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
let n = input[2] as usize; | ||
if n > 16 { | ||
return Err(Error::BadArg); | ||
} | ||
|
||
if input[3] == 1 { | ||
// Negative value | ||
return Err(Error::BadArg); | ||
} | ||
|
||
let mut res = [0u8; 16]; | ||
res[16 - n..].copy_from_slice(&input[4..4 + n]); | ||
Ok(u128::from_le_bytes(res)) | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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