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
use crate::lagrange_basis::WithLagrangeBasis;
use ark_poly::{univariate::DensePolynomial, DenseUVPolynomial, EvaluationDomain, Evaluations};
use paste::paste;
use poly_commitment::{
    commitment::{b_poly_coefficients, caml::CamlPolyComm},
    ipa::SRS,
    SRS as _,
};
use serde::{Deserialize, Serialize};
use std::{
    fs::{File, OpenOptions},
    io::{BufReader, BufWriter, Seek, SeekFrom::Start},
};

macro_rules! impl_srs {
    ($name: ident, $CamlF: ty, $CamlG: ty, $F: ty, $G: ty) => {

        impl_shared_reference!($name => SRS<$G>);

        paste! {
            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _create>](depth: ocaml::Int) -> $name {
                $name::new(SRS::create(depth as usize))
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _write>](
                append: Option<bool>,
                srs: $name,
                path: String,
            ) -> Result<(), ocaml::Error> {
                let file = OpenOptions::new()
                    .append(append.unwrap_or(true))
                    .open(path)
                    .map_err(|_| {
                        ocaml::Error::invalid_argument("CamlSRS::write")
                            .err()
                            .unwrap()
                    })?;
                let file = BufWriter::new(file);

                srs.0.serialize(&mut rmp_serde::Serializer::new(file))
                .map_err(|e| e.into())
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _read>](
                offset: Option<ocaml::Int>,
                path: String,
            ) -> Result<Option<$name>, ocaml::Error> {
                let file = File::open(path).map_err(|_| {
                    ocaml::Error::invalid_argument("CamlSRS::read")
                        .err()
                        .unwrap()
                })?;
                let mut reader = BufReader::new(file);

                if let Some(offset) = offset {
                    reader.seek(Start(offset as u64))?;
                }

                // TODO: shouldn't we just error instead of returning None?
                let srs = match SRS::<$G>::deserialize(&mut rmp_serde::Deserializer::new(reader)) {
                    Ok(srs) => srs,
                    Err(_) => return Ok(None),
                };

                Ok(Some($name::new(srs)))
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            /// This is same as _lagrange_commitments, but returns the result for every
            /// i <= domain_size.
            pub fn [<$name:snake _lagrange_commitments_whole_domain>](
                srs: $name,
                domain_size: ocaml::Int,
            ) -> Vec<CamlPolyComm<$CamlG>> {
                srs.get_lagrange_basis_from_domain_size(domain_size as usize).clone().into_iter().map(|x| x.into()).collect()
            }


            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _lagrange_commitment>](
                srs: $name,
                domain_size: ocaml::Int,
                i: ocaml::Int,
            ) -> Result<CamlPolyComm<$CamlG>, ocaml::Error> {
                let x_domain = EvaluationDomain::<$F>::new(domain_size as usize).ok_or_else(|| {
                    ocaml::Error::invalid_argument("CamlSRS::lagrange_commitment")
                        .err()
                        .unwrap()
                })?;
                srs.with_lagrange_basis(x_domain);
                let vec_polycomm = srs.get_lagrange_basis_from_domain_size(domain_size as usize);
                Ok(vec_polycomm[i as usize].clone().into())
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _add_lagrange_basis>](
                srs: $name,
                log2_size: ocaml::Int,
            ) {
                let domain = EvaluationDomain::<$F>::new(1 << (log2_size as usize)).expect("invalid domain size");
                srs.with_lagrange_basis(domain);
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _commit_evaluations>](
                srs: $name,
                domain_size: ocaml::Int,
                evals: Vec<$CamlF>,
            ) -> Result<CamlPolyComm<$CamlG>, ocaml::Error> {
                    let x_domain = EvaluationDomain::<$F>::new(domain_size as usize).ok_or_else(|| {
                        ocaml::Error::invalid_argument("CamlSRS::evaluations")
                            .err()
                            .unwrap()
                    })?;

                let evals = evals.into_iter().map(Into::into).collect();
                let p = Evaluations::<$F>::from_vec_and_domain(evals, x_domain).interpolate();

                Ok(srs.commit_non_hiding(&p, 1).into())
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _b_poly_commitment>](
                srs: $name,
                chals: Vec<$CamlF>,
            ) -> Result<CamlPolyComm<$CamlG>, ocaml::Error> {
                let chals: Vec<$F> = chals.into_iter().map(Into::into).collect();
                let coeffs = b_poly_coefficients(&chals);
                let p = DensePolynomial::<$F>::from_coefficients_vec(coeffs);

                Ok(srs.commit_non_hiding(&p, 1).into())
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _batch_accumulator_check>](
                srs: $name,
                comms: Vec<$CamlG>,
                chals: Vec<$CamlF>,
            ) -> bool {
                let comms: Vec<_> = comms.into_iter().map(Into::into).collect();
                let chals: Vec<_> = chals.into_iter().map(Into::into).collect();
                crate::urs_utils::batch_dlog_accumulator_check(&srs, &comms, &chals)
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _batch_accumulator_generate>](
                srs: $name,
                comms: ocaml::Int,
                chals: Vec<$CamlF>,
            ) -> Vec<$CamlG> {
                crate::urs_utils::batch_dlog_accumulator_generate::<$G>(
                    &srs,
                    comms as usize,
                    &chals.into_iter().map(From::from).collect(),
                ).into_iter().map(Into::into).collect()
            }

            #[ocaml_gen::func]
            #[ocaml::func]
            pub fn [<$name:snake _h>](srs: $name) -> $CamlG {
                srs.h.into()
            }
        }
    }
}

//
// Fp
//

pub mod fp {
    use super::*;
    use crate::arkworks::{CamlFp, CamlGVesta};
    use mina_curves::pasta::{Fp, Vesta};

    impl_srs!(CamlFpSrs, CamlFp, CamlGVesta, Fp, Vesta);
}

pub mod fq {
    use super::*;
    use crate::arkworks::{CamlFq, CamlGPallas};
    use mina_curves::pasta::{Fq, Pallas};

    impl_srs!(CamlFqSrs, CamlFq, CamlGPallas, Fq, Pallas);
}