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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
use kimchi::{
    circuits::scalars::RandomOracles, proof::ProverProof,
    verifier_index::VerifierIndex as DlogVerifierIndex,
};
use mina_poseidon::{
    self,
    constants::PlonkSpongeConstantsKimchi,
    sponge::{DefaultFqSponge, DefaultFrSponge},
    FqSponge,
};
use paste::paste;
use poly_commitment::{
    commitment::{shift_scalar, PolyComm},
    ipa::OpeningProof,
    SRS,
};
use wasm_bindgen::prelude::*;
// use wasm_bindgen::convert::{IntoWasmAbi, FromWasmAbi};
use crate::wasm_vector::WasmVector;
// use crate::wasm_flat_vector::WasmFlatVector;
use ark_ff::{One, Zero};

//
// CamlOracles
//

//
// Implementation
//

macro_rules! impl_oracles {
    ($WasmF: ty,
     $F: ty,
     $WasmG: ty,
     $G: ty,
     $WasmPolyComm: ty,
     $WasmProverProof: ty,
     $index: ty,
     $curve_params: ty,
     $field_name: ident) => {

        paste! {
            use crate::wasm_flat_vector::WasmFlatVector;
            use mina_poseidon::sponge::ScalarChallenge;

            #[wasm_bindgen]
            #[derive(Clone, Copy)]
            pub struct [<Wasm $field_name:camel RandomOracles>] {
                pub joint_combiner_chal: Option<$WasmF>,
                pub joint_combiner: Option<$WasmF>,
                pub beta: $WasmF,
                pub gamma: $WasmF,
                pub alpha_chal: $WasmF,
                pub alpha: $WasmF,
                pub zeta: $WasmF,
                pub v: $WasmF,
                pub u: $WasmF,
                pub zeta_chal: $WasmF,
                pub v_chal: $WasmF,
                pub u_chal: $WasmF,
            }
            type WasmRandomOracles = [<Wasm $field_name:camel RandomOracles>];

            #[wasm_bindgen]
            impl [<Wasm $field_name:camel RandomOracles>] {
                #[allow(clippy::too_many_arguments)]
                #[wasm_bindgen(constructor)]
                pub fn new(
                    joint_combiner_chal: Option<$WasmF>,
                    joint_combiner: Option<$WasmF>,
                    beta: $WasmF,
                    gamma: $WasmF,
                    alpha_chal: $WasmF,
                    alpha: $WasmF,
                    zeta: $WasmF,
                    v: $WasmF,
                    u: $WasmF,
                    zeta_chal: $WasmF,
                    v_chal: $WasmF,
                    u_chal: $WasmF) -> Self  {
                    Self {
                        joint_combiner_chal,
                        joint_combiner,
                        beta,
                        gamma,
                        alpha_chal,
                        alpha,
                        zeta,
                        v,
                        u,
                        zeta_chal,
                        v_chal,
                        u_chal,
                    }
                }
            }

            impl From<RandomOracles<$F>> for WasmRandomOracles
            {
                fn from(ro: RandomOracles<$F>) -> Self {
                    Self {
                        joint_combiner_chal: ro.joint_combiner.as_ref().map(|x| x.0.0.into()),
                        joint_combiner: ro.joint_combiner.as_ref().map(|x| x.1.into()),
                        beta: ro.beta.into(),
                        gamma: ro.gamma.into(),
                        alpha_chal: ro.alpha_chal.0.into(),
                        alpha: ro.alpha.into(),
                        zeta: ro.zeta.into(),
                        v: ro.v.into(),
                        u: ro.u.into(),
                        zeta_chal: ro.zeta_chal.0.into(),
                        v_chal: ro.v_chal.0.into(),
                        u_chal: ro.u_chal.0.into(),
                    }
                }
            }

            impl Into<RandomOracles<$F>> for WasmRandomOracles
            {
                fn into(self) -> RandomOracles<$F> {
                    let joint_combiner =
                        match (self.joint_combiner_chal, self.joint_combiner) {
                            (Some(joint_combiner_chal), Some(joint_combiner)) => {
                                Some((ScalarChallenge(joint_combiner_chal.into()), joint_combiner.into()))
                            },
                            _ => None
                        };
                    RandomOracles {
                        joint_combiner,
                        beta: self.beta.into(),
                        gamma: self.gamma.into(),
                        alpha_chal: ScalarChallenge(self.alpha_chal.into()),
                        alpha: self.alpha.into(),
                        zeta: self.zeta.into(),
                        v: self.v.into(),
                        u: self.u.into(),
                        zeta_chal: ScalarChallenge(self.zeta_chal.into()),
                        v_chal: ScalarChallenge(self.v_chal.into()),
                        u_chal: ScalarChallenge(self.u_chal.into()),
                    }
                }
            }

            #[wasm_bindgen]
            #[derive(Clone)]
            pub struct [<Wasm $field_name:camel Oracles>] {
                pub o: [<Wasm $field_name:camel RandomOracles>],
                pub p_eval0: $WasmF,
                pub p_eval1: $WasmF,
                #[wasm_bindgen(skip)]
                pub opening_prechallenges: WasmFlatVector<$WasmF>,
                pub digest_before_evaluations: $WasmF,
            }

            #[wasm_bindgen]
            impl [<Wasm $field_name:camel Oracles>] {
                #[wasm_bindgen(constructor)]
                pub fn new(
                    o: WasmRandomOracles,
                    p_eval0: $WasmF,
                    p_eval1: $WasmF,
                    opening_prechallenges: WasmFlatVector<$WasmF>,
                    digest_before_evaluations: $WasmF) -> Self {
                    Self {o, p_eval0, p_eval1, opening_prechallenges, digest_before_evaluations}
                }

                #[wasm_bindgen(getter)]
                pub fn opening_prechallenges(&self) -> WasmFlatVector<$WasmF> {
                    self.opening_prechallenges.clone()
                }

                #[wasm_bindgen(setter)]
                pub fn set_opening_prechallenges(&mut self, x: WasmFlatVector<$WasmF>) {
                    self.opening_prechallenges = x;
                }
            }

            #[wasm_bindgen]
            pub fn [<$F:snake _oracles_create>](
                lgr_comm: WasmVector<$WasmPolyComm>, // the bases to commit polynomials
                index: $index,    // parameters
                proof: $WasmProverProof, // the final proof (contains public elements at the beginning)
            ) -> Result<[<Wasm $field_name:camel Oracles>], JsError> {
                // conversions
                let result = crate::rayon::run_in_pool(|| {
                    let index: DlogVerifierIndex<$G, OpeningProof<$G>> = index.into();

                    let lgr_comm: Vec<PolyComm<$G>> = lgr_comm
                        .into_iter()
                        .take(proof.public.len())
                        .map(Into::into)
                        .collect();
                    let lgr_comm_refs: Vec<_> = lgr_comm.iter().collect();

                    let p_comm = PolyComm::<$G>::multi_scalar_mul(
                        &lgr_comm_refs,
                        &proof
                            .public
                            .iter()
                            .map(|a| a.clone().into())
                            .map(|s: $F| -s)
                            .collect::<Vec<_>>(),
                    );
                    let p_comm = {
                        index
                            .srs()
                            .mask_custom(
                                p_comm.clone(),
                                &p_comm.map(|_| $F::one()),
                            )
                            .unwrap()
                            .commitment
                    };

                    let (proof, public_input): (ProverProof<$G, OpeningProof<$G>>, Vec<$F>) = proof.into();

                    let oracles_result =
                        proof.oracles::<
                            DefaultFqSponge<$curve_params, PlonkSpongeConstantsKimchi>,
                            DefaultFrSponge<$F, PlonkSpongeConstantsKimchi>
                        >(&index, &p_comm, Some(&public_input));
                    let oracles_result = match oracles_result {
                        Err(e) => {
                            return Err(format!("oracles_create: {}", e));
                        }
                        Ok(cs) => cs,
                    };

                    let (mut sponge, combined_inner_product, p_eval, digest, oracles) = (
                        oracles_result.fq_sponge,
                        oracles_result.combined_inner_product,
                        oracles_result.public_evals,
                        oracles_result.digest,
                        oracles_result.oracles,
                    );

                    sponge.absorb_fr(&[shift_scalar::<$G>(combined_inner_product)]);

                    let opening_prechallenges = proof
                        .proof
                        .prechallenges(&mut sponge)
                        .into_iter()
                        .map(|x| x.0.into())
                        .collect();

                    Ok((oracles, p_eval, opening_prechallenges, digest))
                });

                match result {
                    Ok((oracles, p_eval, opening_prechallenges, digest)) => Ok([<Wasm $field_name:camel Oracles>] {
                        o: oracles.into(),
                        p_eval0: p_eval[0][0].into(),
                        p_eval1: p_eval[1][0].into(),
                        opening_prechallenges,
                        digest_before_evaluations: digest.into()
                    }),
                    Err(err) => Err(JsError::new(&err))
                }
            }

            #[wasm_bindgen]
            pub fn [<$F:snake _oracles_dummy>]() -> [<Wasm $field_name:camel Oracles>] {
                [<Wasm $field_name:camel Oracles>] {
                    o: RandomOracles::<$F>::default().into(),
                    p_eval0: $F::zero().into(),
                    p_eval1: $F::zero().into(),
                    opening_prechallenges: vec![].into(),
                    digest_before_evaluations: $F::zero().into(),
                }
            }

            #[wasm_bindgen]
            pub fn [<$F:snake _oracles_deep_copy>](
                x: $WasmProverProof,
            ) -> $WasmProverProof {
                x
            }
        }
    }
}

//
//
//

pub mod fp {
    use super::*;
    use crate::{
        arkworks::WasmPastaFp, plonk_proof::fp::WasmFpProverProof as WasmProverProof,
        plonk_verifier_index::fp::WasmFpPlonkVerifierIndex as WasmPlonkVerifierIndex,
        poly_comm::vesta::WasmFpPolyComm as WasmPolyComm,
    };
    use mina_curves::pasta::{Fp, Vesta as GAffine, VestaParameters};

    impl_oracles!(
        WasmPastaFp,
        Fp,
        WasmGVesta,
        GAffine,
        WasmPolyComm,
        WasmProverProof,
        WasmPlonkVerifierIndex,
        VestaParameters,
        Fp
    );
}

pub mod fq {
    use super::*;
    use crate::{
        arkworks::WasmPastaFq, plonk_proof::fq::WasmFqProverProof as WasmProverProof,
        plonk_verifier_index::fq::WasmFqPlonkVerifierIndex as WasmPlonkVerifierIndex,
        poly_comm::pallas::WasmFqPolyComm as WasmPolyComm,
    };
    use mina_curves::pasta::{Fq, Pallas as GAffine, PallasParameters};

    impl_oracles!(
        WasmPastaFq,
        Fq,
        WasmGPallas,
        GAffine,
        WasmPolyComm,
        WasmProverProof,
        WasmPlonkVerifierIndex,
        PallasParameters,
        Fq
    );
}