1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
use crate::caml::caml_bytes_string::CamlBytesString;
use ark_ff::{BigInteger as ark_BigInteger, BigInteger256};
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
use core::{
    cmp::Ordering::{Equal, Greater, Less},
    convert::{TryFrom, TryInto},
    fmt::{Display, Formatter},
    ops::Deref,
};
use num_bigint::BigUint;

//
// Handy constants
//

const BIGINT256_NUM_BITS: i32 = 256;
const BIGINT256_LIMB_BITS: i32 = 64;
const BIGINT256_LIMB_BYTES: i32 = BIGINT256_LIMB_BITS / 8;
const BIGINT256_NUM_LIMBS: i32 =
    (BIGINT256_NUM_BITS + BIGINT256_LIMB_BITS - 1) / BIGINT256_LIMB_BITS;

//
// Wrapper struct to implement OCaml bindings
//

#[derive(Clone, Copy, Debug, ocaml_gen::CustomType)]
pub struct CamlBigInteger256(pub BigInteger256);

impl From<BigInteger256> for CamlBigInteger256 {
    fn from(big: BigInteger256) -> Self {
        Self(big)
    }
}

unsafe impl<'a> ocaml::FromValue<'a> for CamlBigInteger256 {
    fn from_value(value: ocaml::Value) -> Self {
        let x: ocaml::Pointer<Self> = ocaml::FromValue::from_value(value);
        *x.as_ref()
    }
}

impl CamlBigInteger256 {
    unsafe extern "C" fn caml_pointer_finalize(v: ocaml::Raw) {
        let ptr = v.as_pointer::<Self>();
        ptr.drop_in_place()
    }

    unsafe extern "C" fn ocaml_compare(x: ocaml::Raw, y: ocaml::Raw) -> i32 {
        let x = x.as_pointer::<Self>();
        let y = y.as_pointer::<Self>();
        match x.as_ref().0.cmp(&y.as_ref().0) {
            core::cmp::Ordering::Less => -1,
            core::cmp::Ordering::Equal => 0,
            core::cmp::Ordering::Greater => 1,
        }
    }
}

ocaml::custom!(CamlBigInteger256 {
    finalize: CamlBigInteger256::caml_pointer_finalize,
    compare: CamlBigInteger256::ocaml_compare,
});

impl Deref for CamlBigInteger256 {
    type Target = BigInteger256;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

//
// BigUint handy methods
//

impl From<CamlBigInteger256> for BigUint {
    fn from(x: CamlBigInteger256) -> BigUint {
        x.0.into()
    }
}

impl From<&CamlBigInteger256> for BigUint {
    fn from(x: &CamlBigInteger256) -> BigUint {
        x.0.into()
    }
}

impl TryFrom<BigUint> for CamlBigInteger256 {
    type Error = String;

    fn try_from(x: BigUint) -> Result<Self, Self::Error> {
        Ok(Self(
            BigInteger256::try_from(x).map_err(|()| "Biginteger was too big")?,
        ))
    }
}

impl TryFrom<&BigUint> for CamlBigInteger256 {
    type Error = String;

    fn try_from(x: &BigUint) -> Result<Self, Self::Error> {
        Ok(Self(
            BigInteger256::try_from(x.clone()).map_err(|()| "Biginteger was too big")?,
        ))
    }
}

impl Display for CamlBigInteger256 {
    fn fmt(&self, f: &mut Formatter) -> core::fmt::Result {
        write!(f, "{}", Into::<BigUint>::into(self))
    }
}

//
// OCaml stuff
//

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_of_numeral(
    s: CamlBytesString,
    _len: ocaml::Int,
    base: ocaml::Int,
) -> Result<CamlBigInteger256, ocaml::Error> {
    match BigUint::parse_bytes(
        s.0,
        base.try_into()
            .map_err(|_| ocaml::Error::Message("caml_bigint_256_of_numeral"))?,
    ) {
        Some(data) => CamlBigInteger256::try_from(data)
            .map_err(|_| ocaml::Error::Message("caml_bigint_256_of_numeral")),
        None => Err(ocaml::Error::Message("caml_bigint_256_of_numeral")),
    }
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_of_decimal_string(
    s: CamlBytesString,
) -> Result<CamlBigInteger256, ocaml::Error> {
    match BigUint::parse_bytes(s.0, 10) {
        Some(data) => CamlBigInteger256::try_from(data)
            .map_err(|_| ocaml::Error::Message("caml_bigint_256_of_decimal_string")),
        None => Err(ocaml::Error::Message("caml_bigint_256_of_decimal_string")),
    }
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_num_limbs() -> ocaml::Int {
    BIGINT256_NUM_LIMBS.try_into().unwrap()
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_bytes_per_limb() -> ocaml::Int {
    BIGINT256_LIMB_BYTES.try_into().unwrap()
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_div(x: CamlBigInteger256, y: CamlBigInteger256) -> CamlBigInteger256 {
    let x: BigUint = x.into();
    let y: BigUint = y.into();
    let res: BigUint = x / y;
    let inner: BigInteger256 = res.try_into().expect("BigUint division has a bug");
    inner.into()
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_compare(
    x: ocaml::Pointer<CamlBigInteger256>,
    y: ocaml::Pointer<CamlBigInteger256>,
) -> ocaml::Int {
    match x.as_ref().cmp(y.as_ref()) {
        Less => -1,
        Equal => 0,
        Greater => 1,
    }
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_print(x: CamlBigInteger256) {
    println!("{}", x)
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_to_string(x: CamlBigInteger256) -> String {
    x.to_string()
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_test_bit(
    x: ocaml::Pointer<CamlBigInteger256>,
    i: ocaml::Int,
) -> Result<bool, ocaml::Error> {
    match i.try_into() {
        Ok(i) => Ok(x.as_ref().get_bit(i)),
        Err(_) => Err(ocaml::Error::invalid_argument("caml_bigint_256_test_bit")
            .err()
            .unwrap()),
    }
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_to_bytes(
    x: ocaml::Pointer<CamlBigInteger256>,
) -> [u8; core::mem::size_of::<BigInteger256>()] {
    let mut res = [0u8; core::mem::size_of::<BigInteger256>()];
    x.as_ref().0.serialize_compressed(&mut res[..]).unwrap();
    res
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_of_bytes(x: &[u8]) -> Result<CamlBigInteger256, ocaml::Error> {
    let len = core::mem::size_of::<BigInteger256>();
    if x.len() != len {
        ocaml::Error::failwith("caml_bigint_256_of_bytes")?;
    };
    let result = BigInteger256::deserialize_compressed(&mut &*x)
        .map_err(|_| ocaml::Error::Message("deserialization error"))?;
    Ok(CamlBigInteger256(result))
}

#[ocaml_gen::func]
#[ocaml::func]
pub fn caml_bigint_256_deep_copy(x: CamlBigInteger256) -> CamlBigInteger256 {
    x
}

//
// Tests
//

#[cfg(test)]
mod tests {
    use super::*;
    use num_bigint::ToBigUint;

    #[test]
    fn biguint() {
        let x = 10000.to_biguint().unwrap();
        println!("biguint.to_string: {}", x);
        let y = CamlBigInteger256::try_from(x.clone()).unwrap();
        println!("camlbigint.to_string: {}", y);
        //assert!(&y.to_string() == "10000");
        let x2: BigUint = y.into();
        assert!(x2 == x);
        println!("biguint.to_string: {}", x2);
    }
}